/* Logo文字动画*/
.animate {
  font-size: 22px;
  padding: 0px 0 0;
  margin:0 10px;
}

.animate span {
  display: inline-block;
}
 
.animate span:nth-of-type(2) {
  animation-delay: .05s;
}

.animate span:nth-of-type(3) {
  animation-delay: .1s;
}

.animate span:nth-of-type(4) {
  animation-delay: .15s;
}

.animate span:nth-of-type(5) {
  animation-delay: .2s;
}

.animate span:nth-of-type(6) {
  animation-delay: .25s;
}

.animate span:nth-of-type(7) {
  animation-delay: .3s;
}

.animate span:nth-of-type(8) {
  animation-delay: .35s;
}

.animate span:nth-of-type(9) {
  animation-delay: .4s;
}

.animate span:nth-of-type(10) {
  animation-delay: .45s;
}

.animate span:nth-of-type(11) {
  animation-delay: .5s;
}

.animate span:nth-of-type(12) {
  animation-delay: .55s;
}

.animate span:nth-of-type(13) {
  animation-delay: .6s;
}

.animate span:nth-of-type(14) {
  animation-delay: .65s;
}

/* Animation Three */

.three span {
  color: #fff;
  opacity: 0;
  transform: translate(-300px, 0) scale(0);
  animation: sideSlide .5s forwards;
}

@keyframes sideSlide {
  60% {
    transform: translate(20px, 0) scale(1);
    color: #fff;
  }
  80% {
    transform: translate(20px, 0) scale(1);
    color: #fff;
  }
  99% {
    transform: translate(0) scale(1.2);
    color: #fff;
  }
  100% {
    transform: translate(0) scale(1);
    opacity: 1;
    color: #fff;
  }
}


/* Animation four */

.four span {
  color: #000;
  opacity: 0;
  transform: translate(-300px, 0) scale(0);
  animation: sideSlideFour .5s forwards;
}

@keyframes sideSlideFour {
  60% {
    transform: translate(20px, 0) scale(1);
    color: #000;
  }
  80% {
    transform: translate(20px, 0) scale(1);
    color: #000;
  }
  99% {
    transform: translate(0) scale(1.2);
    color: #000;
  }
  100% {
    transform: translate(0) scale(1);
    opacity: 1;
    color: #000;
  }
}