@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}

.friend {
  /*滚动条*/
}
.friend .banner {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}
.friend .banner img {
  position: absolute;
  left: 50%;
  width: auto;
  max-width: none;
  height: 100%;
  transform: translateX(-50%);
}
.friend .banner .banner-body {
  position: absolute;
  left: 50%;
  z-index: 2;
  box-sizing: border-box;
  width: 1200px;
  padding: 240px 600px 0 0;
  transform: translateX(-50%);
}
.friend .banner .banner-body h1 {
  color: #1a1b20;
  font-size: 40px;
  font-weight: bold;
  line-height: 56px;
}
.friend .banner .banner-body .zzm99999 {
  color: #1a1b20;
  font-size: 40px;
  font-weight: bold;
  line-height: 56px;
}
.friend .banner .banner-body div.text {
  padding-top: 8px;
  color: #666;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 6px;
}
.friend .banner .banner-body div.text-2 {
  padding-top: 24px;
  color: #666;
  font-size: 14px;
}
.friend .banner .banner-body div.button {
  display: flex;
  justify-content: flex-start;
  padding-top: 30px;
}
.friend .banner .banner-body div.button a {
  box-sizing: border-box;
  height: 32px;
  margin-right: 30px;
  padding: 0 40px;
  color: #00A4C5;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #00A4C5;
  border-radius: 4px;
  cursor: pointer;
}
.friend .banner .banner-body div.button a:hover {
  color: white;
  background: #00A4C5;
}
.friend .banner .banner-body div.button a:nth-child(1) {
  color: white;
  background: #00A4C5;
}
.friend .content-nav {
  display: flex;
  border-bottom: 1px solid rgba(204, 212, 226, 0.5);
  box-shadow: 0 0.5px 15px #ccd4e2;
  position: sticky;
  top: 70px;
  z-index: 9;
  background: white;
}
.friend .content-nav .wrapper {
  display: table;
}
.friend .content-nav .wrapper a {
  display: table-cell;
  height: 64px;
  color: #666;
  font-size: 20px;
  line-height: 64px;
  text-align: center;
  border-bottom: 2px solid transparent;
  font-weight: bold;
}
.friend .content-nav .wrapper a:hover {
  color: #000;
  border-bottom: 2px solid #00a4c5;
}
.friend .section {
  width: 100%;
  padding: 80px 0;
}
.friend .section .title {
  width: 100%;
  text-align: center;
  padding-bottom: 40px;
}
.friend .section .title h1 {
  font-weight: 500;
  font-size: 32px;
  color: #1A1B20;
  line-height: 46px;
  text-align: center;
}
.friend .section .title .zzm99999 {
  font-weight: 500;
  font-size: 32px;
  color: #1A1B20;
  line-height: 46px;
  text-align: center;
}
.friend .section .title span {
  display: block;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  text-align: center;
  padding-top: 8px;
}
.friend .section .sec-body {
  width: 1184px;
  margin: auto;
}
.friend .sec1 .sec-body {
  display: flex;
}
.friend .sec1 .sec-body dl {
  width: 278px;
  height: 428px;
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/b248fcd64e847f177bd3783367d9950d.png);
  background-size: 100% 100%;
  margin-left: 24px;
}
.friend .sec1 .sec-body dl:first-child {
  margin-left: 0;
}
.friend .sec1 .sec-body dl dt {
  width: 100%;
  font-size: 22px;
  font-weight: 500;
  color: #1A1B20;
  line-height: 96px;
  text-align: left;
  padding-left: 26px;
}
.friend .sec1 .sec-body dl dd {
  padding: 10px 0px 24px 26px;
}
.friend .sec1 .sec-body dl dd .scroll {
  width: 100%;
  height: 278px;
  position: relative;
}
.friend .sec1 .sec-body dl dd .scroll .mask {
  padding-right: 26px;
  width: 100%;
}
.friend .sec1 .sec-body dl dd .scroll .mask .mask-item {
  margin-top: 10px;
  width: 100%;
  font-weight: 400;
  font-size: 15px;
  color: #1A1B20;
  line-height: 24px;
  display: flex;
}
.friend .sec1 .sec-body dl dd .scroll .mask .mask-item:first-child {
  margin-top: 0;
}
.friend .sec1 .sec-body dl dd .scroll .mask .mask-item span:first-child {
  width: 20px;
  height: 20px;
  background-color: rgba(178, 181, 189, 0.15);
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  color: #00A4C5;
  text-align: center;
  line-height: 20px;
  margin-top: 2px;
}
.friend .sec1 .sec-body dl dd .scroll .mask .mask-item span:last-child {
  flex: 1;
  padding-left: 10px;
}
.friend .sec2 {
  background: #F9FAFB;
}
.friend .sec2 .sec-body img {
  width: 100%;
  display: block;
}
.friend .sec3 {
  background: #F9FAFB;
  padding-top: 0;
}
.friend .sec3 .title {
  padding-top: 80px;
  padding-bottom: 0;
  background-color: white;
}
.friend .sec3 .title .nav {
  width: 1184px;
  margin: auto;
  display: flex;
  padding-top: 60px;
}
.friend .sec3 .title .nav a {
  width: 394px;
  padding-bottom: 26px;
  position: relative;
  text-align: center;
  cursor: pointer;
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  line-height: 24px;
}
.friend .sec3 .title .nav a::before {
  content: "";
  width: 100%;
  height: 2px;
  background: white;
  bottom: 0;
  left: 0;
  position: absolute;
  transition: all;
  transition-duration: 0.4s;
}
.friend .sec3 .title .nav a:hover,
.friend .sec3 .title .nav a.cur {
  color: #00a4c5;
}
.friend .sec3 .title .nav a:hover::before,
.friend .sec3 .title .nav a.cur::before {
  background: #00A4C5;
}
.friend .sec3 .sec-body .list {
  width: 100%;
}
.friend .sec3 .sec-body .list ul {
  display: none;
}
.friend .sec3 .sec-body .list ul:first-child {
  margin-top: 32px;
  display: block;
  padding: 38px 52px;
  display: flex;
  background: #FFFFFF;
  border-radius: 8px;
}
.friend .sec3 .sec-body .list ul:first-child li {
  width: 541px;
  height: 437px;
  background: linear-gradient(to bottom, #FFFFFF 0%, #EFF7F9 100%);
  transition: all;
  transition-duration: 0.4s;
  border-radius: 8px;
  overflow: hidden;
  padding: 51px 31px;
  position: relative;
}
.friend .sec3 .sec-body .list ul:first-child li:first-child {
  margin-right: 25px;
}
.friend .sec3 .sec-body .list ul:first-child li:hover {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/29bf2aabd99de4951885675c615a8f41.png);
  background-size: 100% 100%;
  box-shadow: 0 4px 10px 0 #F3F3F3;
}
.friend .sec3 .sec-body .list ul:first-child li .tit {
  font-weight: 500;
  font-size: 24px;
  color: #00A4C5;
  line-height: 34px;
  padding-bottom: 16px;
}
.friend .sec3 .sec-body .list ul:first-child li .sub-tit {
  font-weight: 500;
  font-size: 18px;
  color: #1A1B20;
  line-height: 24px;
  padding-bottom: 32px;
}
.friend .sec3 .sec-body .list ul:first-child li .desc {
  width: 395px;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 24px;
}
.friend .sec3 .sec-body .list ul:first-child li .button {
  width: 140px;
  cursor: pointer;
  height: 30px;
  line-height: 28px;
  border: 1px solid #00A4C5;
  border-radius: 4px;
  box-sizing: border-box;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  color: #00A4C5;
  line-height: 30px;
  position: absolute;
  bottom: 50px;
  left: 31px;
  transition: all;
  transition-duration: 0.4s;
}
.friend .sec3 .sec-body .list ul:first-child li .button:hover {
  color: white;
  background-color: #00A4C5;
}
.friend .sec3 .sec-body .list ul > img {
  width: 100%;
  margin-top: 32px;
  display: block;
}
.friend .sec4 .sec-body dl {
  display: flex;
}
.friend .sec4 .sec-body dl > div {
  width: 378px;
  height: 205px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 24px;
  transition: all;
  transition-duration: 0.4s;
  padding: 0 24px;
  box-sizing: border-box;
  position: relative;
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/bd510b8a9ec8b3d69852b3cd446f2512.png);
  background-size: cover;
}
.friend .sec4 .sec-body dl > div:last-child {
  margin-right: 0;
}
.friend .sec4 .sec-body dl > div:hover {
  box-shadow: 0 10px 20px #F3F3F3;
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/d5234bc96d3d69329bf281b7ba3b6c8b.png);
}
.friend .sec4 .sec-body dl > div dt {
  padding-top: 70px;
  padding-bottom: 22px;
  font-weight: 500;
  font-size: 24px;
  color: #1A1B20;
  line-height: 24px;
}
.friend .sec4 .sec-body dl > div a {
  font-weight: 400;
  font-size: 14px;
  color: #00A4C5;
  line-height: 20px;
}
.friend .sec4 .sec-body dl > div img {
  position: absolute;
  top: 59px;
  right: 46px;
  width: 88px;
}
.friend .sec5 {
  background: #F9FAFB;
}
.friend .sec5 .sec-body dl {
  display: flex;
}
.friend .sec5 .sec-body dl > div {
  width: 580px;
  height: 278px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 24px;
  transition: all;
  transition-duration: 0.4s;
  padding: 0 34px;
  box-sizing: border-box;
  position: relative;
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/1945c9b020806331dc25db1becdcd24a.png);
  background-size: cover;
}
.friend .sec5 .sec-body dl > div:nth-child(2) {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/03956ccb852c3b03714c23c53f96f3d3.png);
}
.friend .sec5 .sec-body dl > div dt {
  padding-top: 97px;
  padding-bottom: 33px;
  font-weight: 500;
  font-size: 24px;
  color: white;
  line-height: 24px;
}
.friend .sec5 .sec-body dl > div a {
  font-weight: 400;
  font-size: 14px;
  color: white;
  border: 1px solid white;
  border-radius: 4px;
  line-height: 32px;
  box-sizing: border-box;
  display: block;
  width: 140px;
  text-align: center;
}
.friend .sec5 .sec-body dl > div a:hover {
  background-color: white;
  color: #00A4C5;
}
.friend .sec6 .sec-body dl {
  display: flex;
}
.friend .sec6 .sec-body dl > div {
  width: 100%;
  height: 366px;
  border-radius: 8px;
  overflow: hidden;
  transition: all;
  transition-duration: 0.4s;
  padding: 0 75px;
  box-sizing: border-box;
  position: relative;
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/9acec574a582c9a10647bf1e2d12d307.png);
  background-size: cover;
}
.friend .sec6 .sec-body dl > div dt {
  padding-top: 124px;
  padding-bottom: 22px;
  font-weight: 500;
  font-size: 32px;
  color: #1A1B20;
  line-height: 24px;
}
.friend .sec6 .sec-body dl > div span {
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 20px;
  padding-bottom: 38px;
  display: block;
}
.friend .sec6 .sec-body dl > div a {
  font-weight: 400;
  font-size: 14px;
  color: white;
  border: 1px solid #00A4C5;
  background-color: #00A4C5;
  border-radius: 4px;
  line-height: 32px;
  box-sizing: border-box;
  display: block;
  width: 140px;
  text-align: center;
}
.friend .sec6 .sec-body dl > div a:hover {
  background-color: white;
  color: #00A4C5;
}
.friend .sec7 {
  background: #F9FAFB;
}
.friend .sec7 .sec-body dl {
  display: flex;
  margin-bottom: 26px;
}
.friend .sec7 .sec-body dl > div {
  width: 378px;
  height: 286px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 24px;
  padding: 32px 47px;
  box-sizing: border-box;
  background-color: white;
}
.friend .sec7 .sec-body dl > div:last-child {
  margin-right: 0;
}
.friend .sec7 .sec-body dl > div > img {
  width: 88px;
  display: block;
  margin: auto;
}
.friend .sec7 .sec-body dl > div dt {
  padding-top: 20px;
  padding-bottom: 34px;
  font-weight: 500;
  line-height: 20px;
  font-size: 18px;
  color: #1A1B20;
  text-align: center;
}
.friend .sec7 .sec-body dl > div:first-child dt {
  font-size: 24px;
  color: #666666;
}
.friend .sec7 .sec-body dl > div a {
  font-weight: 400;
  font-size: 14px;
  color: #00A4C5;
  border: 1px solid #00A4C5;
  border-radius: 4px;
  line-height: 32px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  text-align: center;
}
.friend .sec7 .sec-body dl > div a:hover {
  background-color: #00A4C5;
  color: white;
}
.friend .scroll-bar {
  height: 100%;
  width: 10px;
  position: absolute;
  top: 0px;
  right: 10px;
}
.friend .scroll-bar .scroll-bg {
  height: 100%;
  width: 1px;
  background-color: #666666;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 2px;
  border-radius: 6px;
}
.friend .scroll-bar .scroll-prominent {
  width: 3px;
  height: 0px;
  position: absolute;
  top: 0;
  left: 2px;
  /* background-color:#00A4C5; */
  border-radius: 10px 10px 0 0;
}
.friend .scroll-bar .scroll-icon {
  height: 30px;
  width: 3px;
  background-color: #00A4C5;
  position: absolute;
  top: 0;
  left: 1px;
  border-radius: 4px;
}
.friend .box-mask {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.friend .box-mask .box-content {
  position: absolute;
  top: 0;
}

.detail-content pre {
  margin-bottom: 12px;
  color: #60646d;
  font-size: 13px;
  font-family: inherit;
  line-height: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.detail-content p {
  flex: 1;
  color: #60646d;
  font-size: 13px;
  line-height: 20px;
}
.detail-content .detail-list {
  display: flex;
  margin-bottom: 8px;
}
.detail-content .detail-list:last-child {
  margin-bottom: 0;
}
.detail-content .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-top: 7px;
  margin-right: 7px;
  background: #ababab;
}
.detail-content .detail-obj {
  flex: 1;
}
.detail-content .detail-obj span {
  color: #1a1b20;
  font-size: 13px;
  line-height: 20px;
}

.product-banner {
  position: relative;
  width: 100%;
  height: 550px;
}
.product-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.product-banner-text {
  position: absolute;
  top: 54%;
  left: 50%;
  width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  color: #fff;
  text-align: start;
  transform: translate(-50%, -50%);
}
.product-banner-text h2 {
  margin-bottom: 14px;
  color: #fff;
  font-weight: 500;
  font-size: 46px;
  line-height: 65px;
}
.product-banner-text h3 {
  color: #fff;
  font-size: 24px;
  line-height: 33px;
  opacity: 0.6;
}
.product-banner-btn {
  display: block;
  width: 160px;
  height: 44px;
  margin-top: 57px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 44px;
  text-align: center;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 2px;
  cursor: pointer;
  transition: 0.3s;
}
.product-banner-btn:hover {
  color: #00a4c5;
  background-color: #fff;
}
.temp-banner {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}
.temp-banner img {
  position: absolute;
  left: 50%;
  width: auto;
  max-width: none;
  height: 100%;
  transform: translateX(-50%);
}
.temp-banner .banner-body {
  position: absolute;
  left: 50%;
  z-index: 2;
  box-sizing: border-box;
  width: 1200px;
  padding: 180px 600px 0 0;
  transform: translateX(-50%);
}
.temp-banner .banner-body h1 {
  color: #1a1b20;
  font-size: 40px;
  font-weight: bold;
  line-height: 56px;
}
.temp-banner .banner-body .zzm99999 {
  color: #1a1b20;
  font-size: 40px;
  font-weight: bold;
  line-height: 56px;
}
.temp-banner .banner-body div.text {
  padding-top: 8px;
  color: #666;
  font-size: 18px;
  line-height: 24px;
}
.temp-banner .banner-body div.text-2 {
  padding-top: 24px;
  color: #666;
  font-size: 14px;
}
.temp-banner .banner-body div.button {
  display: flex;
  justify-content: flex-start;
  padding-top: 54px;
}
.temp-banner .banner-body div.button a {
  box-sizing: border-box;
  height: 32px;
  margin-right: 30px;
  padding: 0 40px;
  color: #00A4C5;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #00A4C5;
  border-radius: 4px;
  cursor: pointer;
}
.temp-banner .banner-body div.button a:hover {
  color: white;
  background: #00A4C5;
}
.temp-banner .banner-body div.button a:nth-child(1) {
  color: white;
  background: #00A4C5;
}
.content-nav {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(204, 212, 226, 0.5);
  box-shadow: 0 0.5px 15px #ccd4e2;
  position: sticky;
  top: 70px;
  z-index: 9;
  background: white;
}
.content-nav .wrapper a {
  display: inline-block;
  width: 224px;
  height: 64px;
  color: #666;
  font-size: 20px;
  line-height: 64px;
  text-align: center;
  border-bottom: 2px solid transparent;
  font-weight: bold;
}
.content-nav .wrapper a:hover {
  color: #000;
  border-bottom: 2px solid #00a4c5;
}
.report {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.report-title {
  margin-top: 120px;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 32px;
  text-align: center;
}
.report-content {
  display: flex;
  justify-content: space-between;
  width: 1160px;
  margin: 60px auto 120px;
}
.report-item {
  display: inline-block;
  width: 362px;
  height: 293px;
  background-color: #fff;
  border: 2px solid #f3f3f3;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 #dcf0f5;
  cursor: pointer;
}
.report-item-pic {
  width: 362px;
  height: 218px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  object-fit: cover;
  display: block;
}
.report-item-text {
  max-height: 48px;
  padding: 14px 22px;
  overflow: hidden;
  color: #1a1b20;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  text-overflow: ellipsis;
}
.report-item:hover {
  border: 2px solid #b7e5ef;
}
.report-item:active {
  border: 2px solid #00a4c5;
}
.att-ck-table {
  width: 2520px;
  border: 2px solid #d7d7d7;
}
.att-ck-table thead td {
  width: 180px;
  height: 70px;
  color: #fff;
  text-align: center;
  background-color: #00a4c5;
  border: 2px solid #d7d7d7;
}
.att-ck-table thead td .table-title {
  font-weight: 500;
  font-size: 18px;
}
.att-ck-table thead td .table-description {
  font-weight: 500;
}
.att-ck-table thead td:first-child {
  border-top-left-radius: 8px;
}
.att-ck-table tbody td {
  width: 180px;
  height: 40px;
  color: #666;
  font-size: 12px;
  line-height: 40px;
  text-align: center;
  background-color: #fff;
  border: 2px solid #d7d7d7;
}
.att-ck-table tbody .table-no-border {
  border: none;
}
.att-ck .container {
  width: 1184px;
  margin: auto;
}
.att-ck .banner .banner-body {
  padding-top: 190px;
}
.att-ck .content-nav .wrapper {
  display: flex;
}
.att-ck .content-nav .wrapper a {
  display: inline-block;
  width: calc(100% / 4);
}
.att-ck .title {
  padding-top: 80px;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 34px;
  line-height: 45px;
  text-align: center;
}
.att-ck-description {
  padding-bottom: 80px;
}
.att-ck-description p {
  padding: 8px 0 40px 0;
  color: #666;
  line-height: 24px;
}
.att-ck-description .table-container {
  width: 1184px;
  height: 750px;
  overflow-x: overlay;
  overflow-y: overlay;
  border-radius: 8px;
}
.att-ck-description .table-container::-webkit-scrollbar {
  width: 20px;
}
.att-ck-description .table-container::-webkit-scrollbar-button {
  display: none;
}
.att-ck-description .table-container::-webkit-scrollbar-thumb {
  width: 12px;
  height: 60px;
  background-color: #fff;
  border: 4px solid rgba(102, 102, 102, 0.3);
  border-radius: 8px;
}
.att-ck-description .table-container::-webkit-scrollbar-track {
  background-color: rgba(102, 102, 102, 0.3);
  border-radius: 8px;
}
.att-ck-description .table-container::-webkit-scrollbar-corner {
  display: none;
}
.att-ck-description-more {
  display: block;
  width: 220px;
  margin: 40px auto 0;
  color: #00a4c5;
}
.att-ck-description-arrow {
  position: relative;
  top: 1px;
  width: 12px;
  height: 12px;
  margin-left: -4px;
}
.att-ck-share .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.att-ck-share .title {
  margin-bottom: 60px;
}
.att-ck-share .list {
  background-color: #fff;
}
.att-ck-share .list-content-fill-item {
  background-color: #fff;
}
.att-ck-share .list-content-item {
  border: 2px solid #f3f3f3;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 #dcf0f5;
}
.att-ck-share .list-content-item:hover {
  border: 2px solid #b7e5ef;
  box-shadow: 0 0 10px 0 #dcf0f5;
}
.att-ck-share .list-content-fill-item {
  border: none;
  box-shadow: none;
}
.att-ck-share .list-content-fill-item:hover {
  border: none;
  box-shadow: none;
}
.att-ck-application {
  padding-bottom: 80px;
  background-color: #f9fafb;
}
.att-ck-application p {
  width: 1184px;
  margin: 8px 0 40px;
  color: #666;
  line-height: 24px;
}
.att-ck-application-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1184px;
  margin: 0 auto;
}
.att-ck-application-item {
  display: flex;
  width: 580px;
  height: 184px;
  margin-bottom: 24px;
  padding: 28px;
  background-color: #fff;
  border: 2px solid #eaeaea;
}
.att-ck-application-item-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 20px;
  border-right: 2px solid #dcf0f5;
}
.att-ck-application-item-right {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 34px;
}
.att-ck-application-item-pic {
  width: 76px;
  height: 76px;
}
.att-ck-application-item-title {
  padding-left: 2px;
  color: #666;
  font-size: 18px;
  line-height: 25px;
  padding-bottom: 5px;
}
.att-ck-application-item-content {
  color: #666;
  line-height: 20px;
  text-align: justify;
}
.att-ck-application-item-arrow {
  width: 12px;
  height: 12px;
  margin-left: -4px;
}
.att-ck-application-item a {
  color: #00a4c5;
}
.att-ck-classroom {
  height: 490px;
  padding: 120px 0;
  text-align: left;
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/a399a781a7ab1fa8b1c7c45061e810ad.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}
.att-ck-classroom .container {
  width: 1200px;
  margin: 0 auto;
  padding-right: 630px;
}
.att-ck-classroom .title {
  margin-bottom: 14px;
  padding-top: 0;
  text-align: left;
}
.att-ck-classroom p {
  margin-bottom: 28px;
  color: #414652;
  line-height: 24px;
  text-align: justify;
}
.att-ck-classroom ul {
  width: 520px;
}
.att-ck-classroom ul li {
  display: inline-block;
  width: 254px;
  color: #414652;
  line-height: 24px;
}
.att-ck-classroom ul span {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 5px;
  margin-bottom: 2px;
  background-color: #00a4c5;
  border-radius: 2px;
}
.att-ck-classroom-btn {
  display: block;
  width: 178px;
  height: 39px;
  margin-top: 30px;
  color: #fff;
  font-size: 18px;
  line-height: 39px;
  text-align: center;
  background-color: #00a4c5;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.att-ck-classroom-btn:hover {
  color: #00a4c5;
  background-color: #fff;
  border: 1px solid #00a4c5;
}
.att-ck-result .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
}
.att-ck-result .title {
  margin-bottom: 32px;
}
.att-ck-result-item {
  width: 1184px;
  margin: 0 auto;
}
.att-ck-result-item h3 {
  margin-bottom: 16px;
  color: #666;
  font-weight: 500;
  font-size: 24px;
  line-height: 33px;
}
.att-ck-result-item > p {
  margin-bottom: 37px;
  color: #666;
  line-height: 20px;
  font-size: 14px;
  text-align: justify;
  letter-spacing: -0.3px;
}
.att-ck-result-item-newbook {
  display: flex;
  justify-content: space-between;
  height: 346px;
}
.att-ck-result-item-newbook dl {
  flex: 1;
  margin-right: 34px;
}
.att-ck-result-item-newbook dl:first-child {
  padding: 20px 24px;
  box-sizing: border-box;
  background: linear-gradient(91deg, #FDFEFF 0%, #F1F9FC 100%);
  border-radius: 8px;
  border: 1px solid #B7E5EF;
}
.att-ck-result-item-newbook dl:last-child {
  width: 576px;
  height: 346px;
}
.att-ck-result-item-newbook dl:last-child img {
  width: 100%;
  height: 100%;
}
.att-ck-result-item-newbook dl dd {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 16px;
  padding: 7px 0;
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/58ded9d5cc8cb1617a25bf68a0ec14ba.png) left center no-repeat;
  background-size: 18px 17px;
  padding-left: 30px;
}
.att-ck-result-item a.getBtn {
  display: block;
  width: 220px;
  line-height: 44px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #00A4C5;
  margin: auto;
  text-align: center;
  margin-top: 35px;
  font-weight: bold;
  font-size: 18px;
  color: #00A4C5;
}
.att-ck-result-item a.getBtn:hover {
  background-color: #00A4C5;
  color: white;
}
.att-ck-result-item-box {
  display: flex;
  justify-content: space-between;
  height: 344px;
}
.att-ck-result-item-content {
  flex: 1;
  padding-left: 33px;
}
.att-ck-result-item-content li {
  width: 574px;
  height: 195px;
  margin-bottom: 16px;
  padding: 37px 25px;
  color: #666;
  line-height: 20px;
  background-image: linear-gradient(270deg, #F1F9FC, #FDFEFF);
  border: 1px solid #B7E5EF;
  border-radius: 8px;
}
.att-ck-result-item-content li div {
  margin-top: 15px;
  color: #00a4c5;
  font-weight: 500;
  text-align: right;
}
.att-ck-result-item-content li:first-child {
  height: 135px;
}
.att-ck-result-item-content p {
  margin-bottom: 28px;
  color: #666;
  line-height: 20px;
  text-align: justify;
}
.att-ck-result-item-pic {
  width: 574px;
  height: 344px;
  object-fit: cover;
}
.att-ck-result-item-card-content h3 {
  margin-top: 25px;
}
.att-ck-result-item-card-content a {
  margin-top: 60px;
}
.att-ck-result .border {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #d8d8d8;
}
.att-ck-result .border h3 {
  margin-bottom: 19px;
}
.att-ck-result-btn {
  display: block;
  width: 550px;
  height: 44px;
  margin-top: 28px;
  color: #00a4c5;
  font-weight: 500;
  font-size: 18px;
  line-height: 44px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #00a4c5;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.att-ck-result-btn:hover {
  color: #fff;
  background-color: #00a4c5;
}
.att-ck-result-book {
  width: 576px;
  height: 346px;
  border-radius: 8px;
}
.att-ck-result-card {
  margin-right: 36px;
  border-radius: 2px;
}
.att-ck-report {
  background-color: #f9fafb;
}
.att-ck .share-box {
  width: 1184px;
  margin: auto;
}
.att-ck .share-box ul {
  width: 100%;
  display: flex;
  padding-top: 40px;
}
.att-ck .share-box ul li {
  width: 580px;
  height: 236px;
  padding: 50px 34px;
  box-sizing: border-box;
}
.att-ck .share-box ul li:first-child {
  margin-right: 24px;
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/b4b96e257ce2ad708f8c649141f2eec2.png);
  background-size: cover;
}
.att-ck .share-box ul li:last-child {
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/034db51b88a3395e582af4e2926716a5.png);
  background-size: cover;
}
.att-ck .share-box ul li .share-box-title {
  font-weight: 500;
  font-size: 24px;
  color: #1A1B20;
  line-height: 34px;
  padding-bottom: 10px;
}
.att-ck .share-box ul li .share-box-desc {
  width: 330px;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 22px;
  padding-bottom: 16px;
}
.att-ck .share-box ul li a {
  display: block;
  width: 142px;
  line-height: 32px;
  border-radius: 8px;
  border: 1px solid #00A4C5;
  font-weight: 500;
  font-size: 14px;
  color: #00A4C5;
  text-align: center;
}
.att-ck .share-box ul li a:hover {
  background-color: #00A4C5;
  color: white;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
.zzm99999,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
.zzm99999,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}
ul {
  list-style: none;
}
button,
input,
select,
textarea {
  margin: 0;
}
img,
audio,
video {
  max-width: 100%;
  height: auto;
  border: none;
}
iframe {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
  text-align: left;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.display-none {
  display: none !important;
}
.clearfix::after {
  content: ' ';
  display: block;
  clear: both;
  width: 0;
  height: 0;
}
.container {
  width: 1200px;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.nav-mb {
  z-index: 1;
  display: none;
}
.wrapper {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
.img-hidden {
  opacity: 0;
}
@keyframes floats {
  0% {
    transform: translateY(40%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes bubble {
  0% {
    transform: translateY(20%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
::-webkit-input-placeholder {
  color: #ababab;
  opacity: 1;
}
::-moz-placeholder {
  color: #ababab;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #ababab;
  opacity: 1;
}
.findMore-btn {
  display: inline-block;
  width: 128px;
  height: 40px;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  background: #00a4c5;
  border: 1px solid #00a4c5;
  outline: none;
  cursor: pointer;
}
.icon-wxzc {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/db44d60dec348480a4e456f7d720dda7.png);
}
.icon-wxfx {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/b4e5334fb1d5dbb53e1177620e15cdc9.png);
}
.icon-wxrq {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/15e1854cef155bfaad2d6e5c98aa09f3.png);
}
.icon-wxhg {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/af91da6eec404975088bc5605e599b62.png);
}
.icon-wxbd {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/5e64771543593a4ae2e30c83f100b647.png);
}
.icon-fczc {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/750ac57eda314e3d6507285bba08597a.png);
}
.icon-fcjx {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/5a40fc1b9c1c94273bc1170fdec558e4.png);
}
.icon-fcrq {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/1223e0e0729f41b886af064f37e76f0b.png);
}
.icon-fchg {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/e0f7d05dbbafff0d55446d11427fb4fb.png);
}
.icon-active-wxzc {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/1ace42fdad758a4e5d216d6ea57650ca.png);
}
.icon-active-wxfx {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/fa5c6eb89aa6d1c6e05f214fed3640c3.png);
}
.icon-active-wxrq {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/403c7f0e07e30e1640a1ac242f6a544c.png);
}
.icon-active-wxhg {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/c85e4c19fff82dad7fa34863547a1b93.png);
}
.icon-active-wxbd {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/df4f0d94c770e65532651e46538282e7.png);
}
.icon-active-fczc {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/bbcc500deaa7e64ea70f9dfd51d51495.png);
}
.icon-active-fcjx {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/f154e7f74de4eac49b97e499b509a06b.png);
}
.icon-active-fcrq {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/63764981d5fc4b485cfe814ed90cc336.png);
}
.icon-active-fchg {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/bafde16f958a0cd47ee7d217d0e0d2ae.png);
}
.textLink {
  position: relative;
  height: 20px;
  margin-right: 16px;
  color: #00a4c5;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.12px;
  text-align: center;
}
.textLink::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -16px;
  width: 12px;
  height: 12px;
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/9350ff25483225c62774249d676a7797.png);
  background-size: contain;
  transform: translateY(-50%);
}
.ant-btn {
  position: relative;
  display: inline-block;
  height: 32px;
  padding: 0 15px;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.499;
  white-space: nowrap;
  text-align: center;
  background-color: #fff;
  background-image: none;
  border: 1px solid transparent;
  border-color: #d9d9d9;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.015);
  cursor: pointer;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}
.ant-btn-primary {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  background-color: #1890ff;
  border-color: #1890ff;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
}
.ant-btn-danger {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
  background-color: #ff4d4f;
  border-color: #ff4d4f;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.045);
}
.ant-btn-sm {
  height: 24px;
  padding: 0 7px;
  font-size: 14px;
  border-radius: 4px;
}
html,
body {
  min-width: 1200px;
  min-height: 100%;
  color: #000;
  font-size: 14px;
  font-family: 'Hiragino Sans GB', 'PingFangSC-Regular', 'PingFangSC-Medium', Arial, Helvetica, sans-serif, 'Microsoft YaHei', 'STHeiti Light', 'DINAlternate-Bold', 'SimSun';
}
.template_apply-btn {
  display: inline-block;
  width: 142px;
  height: 40px;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  background: #00a4c5;
  border: 1px solid #00a4c5;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}
.template_apply-btn:hover {
  color: #00a4c5;
  background-color: #fff;
}
.template_apply-btn--blue {
  display: inline-block;
  width: 142px;
  height: 40px;
  color: #00a4c5;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  background: white;
  border: 1px solid width;
  outline: none;
  cursor: pointer;
}
.template_title-des-title {
  height: 45px;
  margin-bottom: 10px;
  color: #1a1b20;
  font-weight: 500;
  font-size: 32px;
  line-height: 45px;
  text-align: center;
}
.template_title-des-des {
  height: 25px;
  color: #666;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
}
.template_apply-trail {
  text-align: center;
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/fd26c758bffa449014add8c45f10de3d.png) top center / cover no-repeat;
}
.template_apply-trail .apply-trail-cover {
  padding: 68px 0;
}
.template_apply-trail .apply-trail-title {
  margin-bottom: 24px;
  color: #fff;
  font-size: 28px;
  letter-spacing: 0.88px;
}
.template-try-banner {
  height: 371px;
  padding-top: 120px;
  color: #1a1b20;
  text-align: center;
}
.template-try-banner p {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 28px;
  line-height: 45px;
}
.template-try-banner .btns {
  width: 100%;
  text-align: center;
  font-size: 0;
}
.template-try-banner .btn,
.template-try-banner .btn1 {
  display: inline-block;
  width: 270px;
  height: 58px;
  margin: auto;
  color: #fff;
  font-size: 24px;
  line-height: 58px;
  background-color: #00a4c5;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  width: 136px;
  height: 48px;
  line-height: 48px;
  font-weight: 500;
  font-size: 18px;
}
.template-try-banner .btn:nth-child(1),
.template-try-banner .btn1:nth-child(1) {
  margin-right: 24px;
}
.template-try-banner .cur,
.template-try-banner .btn:hover {
  color: #00a4c5;
  border: 1px solid #00a4c5;
  background-color: #fff;
  box-shadow: 0 0 10px 0 #dcf0f5;
}
.apply-index {
  padding: 40px 0;
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/6d6882cb3cd0a3f60643bc5626895e8b.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;
}
.apply-index .apply-form-wrap {
  width: 1200px;
  margin: 30px auto;
  padding: 30px 66px 28px 66px;
  padding: 70px 320px;
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/2f05f7b4c9545c450dacadbbed71dce9.png);
  background-size: 100% 100%;
  border-left: 2px solid #dcf0f5;
}
.apply-index .apply-form-title {
  margin-bottom: 14px;
  color: #1a1b20;
  font-weight: bold;
  font-size: 32px;
  line-height: 45px;
  text-align: center;
}
.apply-index .apply-form-introduction {
  margin-bottom: 40px;
  color: #666;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
}
.apply-index .apply-submit-btn {
  display: block;
  width: 100%;
  height: 48px;
  margin-top: 40px;
  color: #00A4C5;
  font-size: 18px;
  font-weight: bold;
  background: white;
  border: 1px solid #00A4C5;
  border-radius: 8px;
  cursor: pointer;
  transition: all;
  transition-duration: 0.5s;
}
.apply-index .apply-submit-btn:hover {
  background-color: #00A4C5;
  color: white;
}
.apply-index .apply-submit-btn:focus {
  outline: none;
}
.apply-index .apply-submit-btn:disabled {
  background: #b7bcc8;
}
.apply-index .apply-form-des {
  margin-top: 28px;
  color: #c1c1c1;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
}
.input-item-old {
  font-size: 14px;
}
.input-item-old .input-container {
  display: flex;
  align-items: center;
  padding: 0 20px 0 8px;
  line-height: 24px;
  border-bottom: 2px solid #f3f3f3;
}
.input-item-old .input {
  flex: 1;
  width: 100%;
  height: 24px;
  padding: 20px 20px 24px 8px;
  color: #414652;
  font-size: 14px;
  line-height: 24px;
  border: none;
}
.input-item-old .input:focus {
  outline: none;
}
.input-item-old .input::placeholder {
  color: #c1c1c1;
  font-size: 14px;
}
.input-item-old .input-label {
  flex-shrink: 0;
  width: 97px;
  padding: 12px 0 16px 8px;
  color: #1a1b20;
  font-size: 18px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.input-item-old .required-tag {
  flex-shrink: 0;
  padding: 12px 0 16px 8px;
  color: #c1c1c1;
}
.input-item-old .send-code {
  width: 106px;
  height: 30px;
  margin: -3px 0;
  color: #00a4c5;
  font-size: 12px;
  line-height: 26px;
  text-align: center;
  background: none;
  border: 1px solid #00a4c5;
  border-radius: 17px;
}
.input-item-old .send-code-btn {
  cursor: pointer;
  transition: all;
  transition-duration: 0.5s;
}
.input-item-old .send-code-btn:hover {
  background-color: #00A4C5;
  color: white;
}
.input-item-old .send-code-time {
  color: #c1c1c1;
  border-color: #c1c1c1;
}
.input-item-old .send-code:focus {
  outline: none;
}
.input-item-old .send-code:disabled {
  color: #c1c1c1;
  border-color: #c1c1c1;
}
.input-item-old .send-code:disabled:hover {
  background: none;
}
.input-item-old .send-code.hidden {
  display: none;
}
.input-item-old .input-error {
  height: 16px;
  margin-left: 115px;
  color: #e24d60;
  font-size: 12px;
  line-height: 16px;
}
.input-item-old.error .input-container {
  border-color: #e24d60;
}
.input-item-old .send-code-disabled {
  color: #c1c1c1;
  border-color: #c1c1c1;
}
.product-more {
  margin-top: 100px;
  padding-top: 80px;
  padding-bottom: 160px;
  background: #f7f9fc;
}
.product-more h3 {
  color: #1a1b20;
  font-size: 34px;
  text-align: center;
}
.product-more .more-content {
  display: flex;
  justify-content: center;
  padding-top: 80px;
}
.product-more .more-content li {
  width: 384px;
  height: 216px;
  margin-right: 24px;
  padding-left: 20px;
  background: #fff;
  border: 1px solid #edeff2;
}
.product-more .more-content li:last-child {
  margin-right: 0;
}
.product-more .more-content li a span {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 8px;
  margin-bottom: 3px;
  background: #b3b5bd;
}
.product-more .more-content li a {
  display: block;
  margin-bottom: 16px;
  color: #1a1b20;
  font-size: 13px;
  line-height: 18px;
}
.product-more .more-content li a:hover {
  color: #0daade;
}
.product-more .more-content li a:last-child {
  margin-bottom: 0;
}
.product-more .more-content .more-title {
  margin: 24px 0 20px;
  color: #1a1b20;
  font-size: 20px;
  line-height: 28px;
}
.product-more .more-content .more-title span {
  display: inline-block;
  width: 4px;
  height: 16px;
  margin-right: 8px;
  background: #0daade;
}
.download-banner {
  position: relative;
  width: 100%;
  height: 400px;
}
.download-banner .feature-banner-mask {
  background-image: linear-gradient(0deg, #002957 0%, #001d49 100%);
  opacity: 0.7;
}
.download-banner .feature-banner-img,
.download-banner .feature-banner-mask {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.download-banner .feature-banner-title-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%);
}
.download-banner .feature-banner-title-content h2 {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
}
.download-banner .feature-banner-title-content p {
  font-size: 16px;
  line-height: 22px;
  opacity: 0.8;
}
.solution-banner-content {
  position: relative;
  height: 548px;
  overflow: hidden;
  color: #fff;
}
.solution-banner-content .banner-bg {
  position: absolute;
  top: -72px;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 72px;
  filter: blur(2px);
}
.solution-banner-content .banner-mask {
  background-image: linear-gradient(0deg, rgba(0, 41, 87, 0.6) 0%, rgba(1, 35, 79, 0.7) 100%);
}
.solution-banner-content .container {
  position: relative;
}
.solution-banner-content .container h2 {
  position: absolute;
  top: 208px;
  left: 10px;
  z-index: 1;
  font-size: 44px;
  line-height: 48px;
}
.solution-banner-content .container h3 {
  position: absolute;
  top: 278px;
  left: 10px;
  z-index: 1;
  font-size: 24px;
  line-height: 24px;
  opacity: 0.25;
}
.solution-banner-content .container .template_apply-btn {
  position: absolute;
  top: 369px;
  left: 10px;
  width: 142px;
  height: 40px;
  color: #fff;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  background: #0daade;
}
.solution-banner-content .container p {
  position: absolute;
  top: 208px;
  right: 0;
  z-index: 1;
  width: 880px;
  color: #a7b9cd;
  font-size: 16px;
  line-height: 36px;
}
.template_breadcrumb {
  display: flex;
  width: 1200px;
  height: 20px;
  margin: 21px auto 0 auto;
  color: #565d6e;
}
.template_breadcrumb a {
  height: 20px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.44px;
  text-align: justify;
}
.template_breadcrumb div {
  width: 12px;
  height: 12px;
  margin: 4px 4px 0 4px;
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/60539924afe20fd3719ebf1a28ad24cf.png);
  background-size: contain;
}
.template_breadcrumb-product {
  color: #9ca1ad;
  cursor: default;
}
.template_breadcrumb-title {
  color: #9ca1ad;
}
.template_breadcrumb-title:hover {
  color: #00a4c5;
}
.template_breadcrumb-feature {
  cursor: default;
}
.page_footer {
  width: 100%;
  min-width: 1200px;
  background-image: linear-gradient(to bottom, #182029, #11171E);
}
.page_footer .footer-container {
  width: 1200px;
  margin: auto;
}
.page_footer .footer-container .plans {
  width: 100%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.page_footer .footer-container .plans ul {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.page_footer .footer-container .plans ul li {
  width: 25%;
  height: 125px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 16px;
}
.page_footer .footer-container .plans ul li img {
  width: 40px;
}
.page_footer .footer-container .plans ul li span {
  padding-left: 30px;
}
.page_footer .footer-container .footer-nav {
  padding: 40px 0;
  display: flex;
  flex-direction: row;
}
.page_footer .footer-container .footer-nav .left {
  width: 250px;
}
.page_footer .footer-container .footer-nav .left h1 {
  font-size: 18px;
  color: #00A4C5;
  line-height: 24px;
  padding-bottom: 8px;
}
.page_footer .footer-container .footer-nav .left h1 span {
  font-size: 14px;
  color: #C1C1C1;
  line-height: 20px;
  padding-bottom: 8px;
}
.page_footer .footer-container .footer-nav .left .zzm99999 {
  font-size: 18px;
  color: #00A4C5;
  line-height: 24px;
  padding-bottom: 8px;
}
.page_footer .footer-container .footer-nav .left .zzm99999 span {
  font-size: 14px;
  color: #C1C1C1;
  line-height: 20px;
  padding-bottom: 8px;
}
.page_footer .footer-container .footer-nav .left h2 {
  font-size: 14px;
  color: #C1C1C1;
  line-height: 20px;
  padding-bottom: 8px;
}
.page_footer .footer-container .footer-nav .left a {
  display: inline-block;
  width: 106px;
  height: 24px;
  line-height: 23px;
  text-align: center;
  color: white;
  border: 1px solid white;
  border-radius: 4px;
  font-size: 14px;
  margin-top: 6px;
}
.page_footer .footer-container .footer-nav .left a:hover {
  background-color: white;
  color: #00A4C5;
}
.page_footer .footer-container .footer-nav .left .code {
  padding-top: 44px;
}
.page_footer .footer-container .footer-nav .left .code h1 {
  font-size: 18px;
  line-height: 24px;
}
.page_footer .footer-container .footer-nav .left .code .zzm99999 {
  font-size: 18px;
  line-height: 24px;
}
.page_footer .footer-container .footer-nav .left .code .code-contarner {
  display: flex;
  justify-content: flex-start;
}
.page_footer .footer-container .footer-nav .left .code .code-contarner .code-item {
  width: 64px;
  margin-right: 16px;
  position: relative;
}
.page_footer .footer-container .footer-nav .left .code .code-contarner .code-item:hover .msg {
  display: block;
}
.page_footer .footer-container .footer-nav .left .code .code-contarner .code-item .msg {
  width: 140px;
  height: 140px;
  padding: 10px;
  box-sizing: border-box;
  background-color: white;
  border-radius: 8px;
  position: absolute;
  left: 80px;
  top: -35px;
  display: none;
  z-index: 2;
}
.page_footer .footer-container .footer-nav .left .code .code-contarner .code-item .msg::after {
  content: "";
  width: 22px;
  height: 22px;
  transform: rotate(45deg) translateY(-50%);
  background-color: white;
  position: absolute;
  left: -11px;
  top: 50%;
  margin-top: -6px;
}
.page_footer .footer-container .footer-nav .left .code .code-contarner .code-item .msg img {
  width: 120px;
}
.page_footer .footer-container .footer-nav .left .code .code-contarner .code-item img {
  display: block;
}
.page_footer .footer-container .footer-nav .left .code .code-contarner .code-item span {
  display: block;
  text-align: center;
  font-size: 12px;
  color: white;
  padding-top: 8px;
}
.page_footer .footer-container .footer-nav .left .lang .child {
  display: none;
  position: absolute;
  top: 0;
  right: 55px;
  padding-top: 70px;
}
.page_footer .footer-container .footer-nav .left .lang .child-container {
  background-color: white;
  box-shadow: 0px 4px 12px 0 rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 12px 30px;
}
.page_footer .footer-container .footer-nav .left .lang .child-container a {
  display: block;
  line-height: 40px;
  font-size: 14px;
  color: #1A1B20;
}
.page_footer .footer-container .footer-nav .left .lang .child-container a:hover,
.page_footer .footer-container .footer-nav .left .lang .child-container a.cur {
  color: #00A4C5;
}
.page_footer .footer-container .footer-nav .left .lang > a {
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/a05b10bfc5119705faba9690c2da6520.png) 10px center no-repeat;
  background-size: 16px 16px;
  padding-left: 34px;
  padding-right: 0px;
  position: relative;
  z-index: 2;
  width: 120px;
  display: block;
  border: 1px solid #E5E6EB;
  border-radius: 4px;
  margin-left: 10px;
  height: 30px;
  line-height: 28px;
  cursor: pointer;
  color: white;
}
.page_footer .footer-container .footer-nav .left .lang > a::before {
  content: "";
  width: 8px;
  height: 4px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/7abdb1df514c0f4c8b4dc34c5917ec75.png);
  background-size: cover;
}
.page_footer .footer-container .footer-nav .left .lang:hover > a {
  border: 1px solid #00A4C5;
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/a05b10bfc5119705faba9690c2da6520.png);
  background-color: #00A4C5;
  color: white;
}
.page_footer .footer-container .footer-nav .left .lang:hover > a::before {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/7abdb1df514c0f4c8b4dc34c5917ec75.png);
  transform: rotate(180deg);
  margin-top: -2px;
}
.page_footer .footer-container .footer-nav .left .lang:hover .child {
  display: block;
}
.page_footer .footer-container .footer-nav .right {
  width: 950px;
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding-left: 78px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
}
.page_footer .footer-container .footer-nav .right dl:nth-child(1) {
  width: 120px;
}
.page_footer .footer-container .footer-nav .right dl:nth-child(2) {
  width: 260px;
}
.page_footer .footer-container .footer-nav .right dl:nth-child(3) {
  width: 180px;
}
.page_footer .footer-container .footer-nav .right dl:nth-child(4) {
  width: 170px;
}
.page_footer .footer-container .footer-nav .right dl:nth-child(5) {
  width: 60px;
}
.page_footer .footer-container .footer-nav .right dl dt {
  font-size: 15px;
  color: white;
  padding-bottom: 20px;
}
.page_footer .footer-container .footer-nav .right dl dd a {
  font-size: 14px;
  color: white;
  opacity: 0.6;
  display: block;
  line-height: 40px;
}
.page_footer .footer-container .footer-nav .right dl dd a:hover {
  opacity: 1;
  color: #00A4C5;
  transform: translateY(-4px);
}
.page_footer .footer-container .copy {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding-bottom: 80px;
}
.page_footer .footer-container .copy .left {
  width: 60%;
  color: white;
  font-size: 12px;
}
.page_footer .footer-container .copy .left span,
.page_footer .footer-container .copy .left a {
  opacity: 0.6;
}
.page_footer .footer-container .copy .left a:hover {
  opacity: 1;
  color: #00A4C5;
}
.page_footer .footer-container .copy .right {
  width: 40%;
  text-align: right;
  font-size: 12px;
  padding-right: 80px;
}
.page_footer .footer-container .copy .right a {
  color: white;
  opacity: 0.6;
}
.page_footer .footer-container .copy .right a:hover {
  opacity: 1;
  color: #00A4C5;
}
.page_footer .footer-container .copy .right span {
  color: white;
  opacity: 0.6;
  padding: 0 16px;
}
@font-face {
  font-family: pingfang;
  src: url(https://download5.qingteng.cn/frontendcdn/www/assets/font/pingfang.ttf);
}
* {
  font-family: "pingfang", "PingFang SC", 'Hiragino Sans GB', 'PingFangSC-Regular', 'PingFangSC-Medium', Arial, Helvetica, sans-serif, 'Microsoft YaHei', 'STHeiti Light', 'DINAlternate-Bold', 'SimSun';
  list-style: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: all;
}
input,
textarea,
select {
  font-family: "pingfang", "PingFang SC", 'Hiragino Sans GB', 'PingFangSC-Regular', 'PingFangSC-Medium', Arial, Helvetica, sans-serif, 'Microsoft YaHei', 'STHeiti Light', 'DINAlternate-Bold', 'SimSun';
  outline: none;
}
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type='file'],
button,
select {
  -webkit-appearance: none;
}
a {
  text-decoration: none;
  transition-duration: 0.5s;
}
.anim {
  opacity: 0;
  transform: translateY(2rem);
}
.anim_right {
  opacity: 0;
  transform: translateX(1rem);
}
.anim_left {
  opacity: 0;
  transform: translateX(-1rem);
}
.anim-area,
.anim-area .zzm99999,
.anim-area h1,
.anim-area span,
.anim-area div,
.anim-area h2,
.anim-area ul,
.anim-area li,
.anim-area img,
.anim-area dl,
.anim-area dt,
.anim-area dd {
  transition-duration: 0.5s;
}
.clear-anim {
  transition-duration: 0s !important;
}
.page_header_container {
  width: 100%;
  position: sticky;
  left: 0;
  top: 0;
  min-width: 1200px;
  z-index: 200;
}
.page_header_container .nav {
  width: 100%;
}
.page_header_container .nav .mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: black;
  opacity: 0.3;
  display: none;
}
.page_header_container .nav .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  background-color: rgba(255, 255, 255, 0.8);
  height: 70px;
  padding: 0 55px;
  box-sizing: border-box;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  position: absolute;
  z-index: 2;
}
.page_header_container .nav .content:hover {
  background-color: white;
}
.page_header_container .nav .content .left {
  width: 65%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.page_header_container .nav .content .left .header-logo img.logo {
  max-width: none;
  height: 26px;
}
.page_header_container .nav .content .left .header-logo img.logo-min {
  width: 105px;
  display: none;
}
.page_header_container .nav .content .left .header-nav {
  width: 100%;
  padding-left: 30px;
  box-sizing: border-box;
}
.page_header_container .nav .content .left .header-nav ul {
  display: flex;
  justify-content: flex-start;
}
.page_header_container .nav .content .left .header-nav ul li {
  padding: 0 10px;
  height: 70px;
  overflow: hidden;
}
.page_header_container .nav .content .left .header-nav ul li > a {
  color: #666;
  font-weight: bold;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  display: inline-block;
  height: 70px;
  line-height: 70px;
  box-sizing: border-box;
}
.page_header_container .nav .content .left .header-nav ul li:hover > a {
  color: #00A4C5;
  border-bottom: 2px solid #00A4C5;
}
.page_header_container .nav .content .left .header-nav ul li:hover .child {
  display: block;
}
.page_header_container .nav .content .left .header-nav ul li .child {
  width: 100%;
  position: absolute;
  top: 70px;
  left: 0;
  background-color: white;
  display: none;
  max-height: calc(100vh - 70px);
  overflow: auto;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner {
  width: 1200px;
  margin: auto;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) {
  width: 284px;
  min-height: 400px;
  border-right: 1px solid #F9FAFB;
  padding: 40px 30px 40px 34px;
  box-sizing: border-box;
  background-image: linear-gradient(to right bottom, white, #F8FDFF);
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd {
  width: 100%;
  height: 100%;
  position: relative;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd img {
  width: 80px;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd h1 {
  font-size: 24px;
  font-weight: bold;
  padding-top: 20px;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd .zzm99999 {
  font-size: 24px;
  font-weight: bold;
  padding-top: 20px;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd div.desc {
  font-size: 14px;
  color: #666;
  padding-top: 5px;
  line-height: 24px;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd div.tel {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 14px;
  color: #00A4C5;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd div.tel span {
  display: block;
  padding-top: 10px;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd div.web-search {
  width: 100%;
  position: relative;
  margin-top: 24px;
  z-index: 2;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd div.web-search input {
  display: block;
  width: 100%;
  height: 26px;
  border: 1px solid #F3F3F3;
  border-radius: 4px;
  line-height: 26px;
  color: #666;
  font-size: 12px;
  padding-left: 5px;
  box-sizing: border-box;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd div.web-search .icon-search {
  position: absolute;
  width: 17px;
  height: 17px;
  top: 4px;
  right: 14px;
  cursor: pointer;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd div.web-search .icon-close {
  position: absolute;
  width: 9px;
  height: 9px;
  top: 3px;
  right: 36px;
  cursor: pointer;
  display: none;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd div.web-search .search-list {
  width: 100%;
  max-height: 138px;
  position: absolute;
  top: 25px;
  left: 0;
  border: 1px solid #F3F3F3;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  overflow: auto;
  padding: 5px 0;
  display: none;
  background-color: white;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd div.web-search .search-list a {
  display: block;
  width: 100%;
  font-size: 12px;
  line-height: 22px;
  color: #C1C1C1;
  padding: 0 7px;
  box-sizing: border-box;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd div.web-search .search-list a:hover {
  color: #00A4C5;
  background-color: #F9FAFB;
  font-weight: bold;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(1) dd div.web-search .search-list span {
  font-size: 12px;
  line-height: 22px;
  color: #C1C1C1;
  display: block;
  text-align: center;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) {
  width: 630px;
  padding: 15px;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) dd {
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  border-bottom: 1px solid #F3F3F3;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) dd:last-child {
  border-bottom: none;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) dd h1 a,
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) dd h1 span {
  font-size: 14px;
  font-weight: bold;
  color: #1A1B20;
  padding: 7px 0;
  display: inline-block;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) dd h1 a:hover {
  color: #00A4C5;
  transform: translateY(-4px);
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) dd .zzm99999 a,
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) dd .zzm99999 span {
  font-size: 14px;
  font-weight: bold;
  color: #1A1B20;
  padding: 7px 0;
  display: inline-block;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) dd .zzm99999 a:hover {
  color: #00A4C5;
  transform: translateY(-4px);
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) dd div.dl-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) dd div.dl-list a {
  width: 33.33%;
  padding: 7px 0;
  font-size: 14px;
  color: #666;
  line-height: 20px;
  padding-right: 15px;
  box-sizing: border-box;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) dd div.dl-list a i.hot {
  font-style: normal;
  padding-right: 18px;
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/fb301159de6e3d95b8ff9f489c08823b.png) right center no-repeat;
  background-size: 10px 12px;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) dd div.dl-list a span {
  display: block;
  color: #C1C1C1;
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) dd div.dl-list a:hover {
  color: #00A4C5;
  transform: translateY(-4px);
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(2) dd div.dl-list a:hover span {
  color: #666;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(3) {
  width: 286px;
  padding: 40px 34px 40px 0px;
  box-sizing: border-box;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(3) dd {
  width: 100%;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(3) dd h1 {
  font-size: 14px;
  color: #666;
  font-weight: bold;
  padding-bottom: 16px;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(3) dd .zzm99999 {
  font-size: 14px;
  color: #666;
  font-weight: bold;
  padding-bottom: 16px;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(3) dd a {
  display: block;
  position: relative;
  width: 252px;
  overflow: hidden;
  border-radius: 8px;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(3) dd a div.con-text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 34px 0 0 17px;
  z-index: 2;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(3) dd a div.con-text span {
  display: inline-block;
  width: 100%;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(1) {
  font-size: 24px;
  color: black;
  line-height: 34px;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(2) {
  font-size: 14px;
  color: #666;
  line-height: 20px;
  padding-bottom: 5px;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(3) {
  width: auto;
  font-size: 12px;
  color: #00A4C5;
  border: 1px solid #00A4C5;
  height: 18px;
  line-height: 17px;
  box-sizing: border-box;
  text-align: center;
  padding: 0 10px;
  border-radius: 9px;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(3) dd a:hover div.con-text span:nth-child(3) {
  background-color: #00A4C5;
  color: white;
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(3) dd a:hover img {
  transform: scale(1.2);
}
.page_header_container .nav .content .left .header-nav ul li .child .child-contarner dl:nth-child(3) dd a img {
  width: 100%;
  display: block;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(1) dd div.desc a {
  display: inline-block;
  margin-top: 15px;
  height: 42px;
  line-height: 40px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 18px;
  border: 1px solid #00A4C5;
  color: #00A4C5;
  padding-left: 24px;
  position: relative;
  padding-right: 40px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(1) dd div.desc a::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  border-top: 1.5px solid #00A4C5;
  border-right: 1.5px solid #00A4C5;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 24px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(1) dd div.desc a:hover {
  background: #00A4C5;
  color: white;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(1) dd div.desc a:hover::after {
  border-top: 1.5px solid white;
  border-right: 1.5px solid white;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd h1 span {
  display: block;
  font-size: 12px;
  color: #C1C1C1;
  line-height: 18px;
  padding-top: 0;
  font-weight: normal;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd h1 a:hover span {
  color: #666;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd .zzm99999 span {
  display: block;
  font-size: 12px;
  color: #C1C1C1;
  line-height: 18px;
  padding-top: 0;
  font-weight: normal;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd .zzm99999 a:hover span {
  color: #666;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd div.dl-list a {
  font-size: 12px;
  padding: 4px 0;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:last-child div.dl-list a {
  position: relative;
  font-weight: bold;
  font-size: 14px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:last-child div.dl-list a::after {
  content: '';
  position: absolute;
  height: 32px;
  width: 1px;
  background-color: #F3F3F3;
  top: 5px;
  right: 16px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:last-child div.dl-list a:nth-child(2n) {
  padding-left: 4px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:last-child div.dl-list a:nth-child(2n)::after {
  display: none;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:last-child div.dl-list a:nth-last-child(2)::after {
  display: none;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:nth-child(3) .dl-list {
  position: relative;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:nth-child(3) .dl-list::after,
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:nth-child(3) .dl-list .liner {
  content: "";
  width: 600px;
  height: 1px;
  position: absolute;
  top: 52px;
  left: -15px;
  background-color: #F3F3F3;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:nth-child(3) .dl-list::before {
  content: "";
  width: 600px;
  height: 1px;
  position: absolute;
  top: 120px;
  left: -15px;
  background-color: #F3F3F3;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:nth-child(3) .dl-list .liner {
  top: 185px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:nth-child(3) .dl-list .liner2 {
  top: 250px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:nth-child(3) .dl-list a {
  color: #1A1B20;
  width: 50%;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 28px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:nth-child(3) .dl-list a span {
  font-size: 12px;
  color: #C1C1C1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  /* 控制显示的行数 */
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:nth-child(3) .dl-list a:hover {
  color: #00A4C5;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(1) .child .child-contarner dl:nth-child(2) dd:nth-child(3) .dl-list a:hover span {
  color: #666;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(2) .child .child-contarner dl:nth-child(1) dd div.desc a {
  display: inline-block;
  margin-top: 15px;
  height: 42px;
  line-height: 40px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 18px;
  border: 1px solid #00A4C5;
  color: #00A4C5;
  padding-left: 24px;
  position: relative;
  padding-right: 40px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(2) .child .child-contarner dl:nth-child(1) dd div.desc a::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  border-top: 1.5px solid #00A4C5;
  border-right: 1.5px solid #00A4C5;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 24px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(2) .child .child-contarner dl:nth-child(1) dd div.desc a:hover {
  background: #00A4C5;
  color: white;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(2) .child .child-contarner dl:nth-child(1) dd div.desc a:hover::after {
  border-top: 1.5px solid white;
  border-right: 1.5px solid white;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(2) .child .child-contarner dl:nth-child(2) {
  width: 860px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(2) .child .child-contarner dl:nth-child(2) dd div.dl-list a {
  width: 25%;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(3) .child .child-contarner dl:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(3) .child .child-contarner dl:nth-child(2) dd {
  width: 33.3%;
  border-bottom: none;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(3) .child .child-contarner dl:nth-child(2) dd h1 a {
  color: #1A1B20;
  font-weight: bold;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(3) .child .child-contarner dl:nth-child(2) dd h1 a:hover {
  color: #00A4C5;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(3) .child .child-contarner dl:nth-child(2) dd .zzm99999 a {
  color: #1A1B20;
  font-weight: bold;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(3) .child .child-contarner dl:nth-child(2) dd .zzm99999 a:hover {
  color: #00A4C5;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(3) .child .child-contarner dl:nth-child(2) dd div.dl-list {
  display: block;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(3) .child .child-contarner dl:nth-child(2) dd div.dl-list a {
  width: 100%;
  display: block;
  padding-right: 0;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(3) .child .child-contarner dl:nth-child(3) dd a div.con-text {
  text-align: center;
  padding: 20px 0 0 0;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(3) .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(1) {
  font-size: 18px;
  color: #666;
  line-height: 28px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(3) .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(2) {
  font-size: 14px;
  color: #666;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(3) .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(3) {
  margin-top: 190px;
  background-color: white;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(3) .child .child-contarner dl:nth-child(3) dd a:hover div.con-text span:nth-child(3) {
  background-color: #00A4C5;
  color: white;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(4) .child .child-contarner dl:nth-child(2) dd div.dl-list a {
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  color: #1A1B20;
  margin-bottom: 30px;
  font-weight: bold;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(4) .child .child-contarner dl:nth-child(2) dd div.dl-list a span {
  font-size: 14px;
  font-weight: normal;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(4) .child .child-contarner dl:nth-child(2) dd div.dl-list a:hover {
  color: #00A4C5;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(4) .child .child-contarner dl:nth-child(2) dd div.dl-list a:hover span {
  color: #666;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(4) .child .child-contarner dl:nth-child(3) dd a div.con-text {
  text-align: center;
  padding: 20px 0 0 0;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(4) .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(1) {
  font-size: 18px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(4) .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(2) {
  font-size: 12px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(4) .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(3) {
  margin-top: 180px;
  background-color: white;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(4) .child .child-contarner dl:nth-child(3) dd a:hover div.con-text span:nth-child(3) {
  background-color: #00A4C5;
  color: white;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(5) .child .child-contarner dl:nth-child(2) dd div.dl-list a {
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  color: #1A1B20;
  margin-bottom: 30px;
  font-weight: bold;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(5) .child .child-contarner dl:nth-child(2) dd div.dl-list a span {
  font-size: 14px;
  font-weight: normal;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(5) .child .child-contarner dl:nth-child(2) dd div.dl-list a:hover {
  color: #00A4C5;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(5) .child .child-contarner dl:nth-child(2) dd div.dl-list a:hover span {
  color: #666;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(5) .child .child-contarner dl:nth-child(3) dd a {
  margin-bottom: 15px;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(5) .child .child-contarner dl:nth-child(3) dd a:hover {
  transform: translateY(-4px);
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(5) .child .child-contarner dl:nth-child(3) dd a:hover img {
  transform: none;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(6) .child .child-contarner dl:nth-child(2) dd div.dl-list a,
.page_header_container .nav .content .left .header-nav ul li:nth-child(7) .child .child-contarner dl:nth-child(2) dd div.dl-list a {
  width: 50%;
  font-size: 18px;
  line-height: 24px;
  color: #1A1B20;
  margin-bottom: 30px;
  font-weight: bold;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(6) .child .child-contarner dl:nth-child(2) dd div.dl-list a span,
.page_header_container .nav .content .left .header-nav ul li:nth-child(7) .child .child-contarner dl:nth-child(2) dd div.dl-list a span {
  font-size: 14px;
  font-weight: normal;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(6) .child .child-contarner dl:nth-child(2) dd div.dl-list a:hover,
.page_header_container .nav .content .left .header-nav ul li:nth-child(7) .child .child-contarner dl:nth-child(2) dd div.dl-list a:hover {
  color: #00A4C5;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(6) .child .child-contarner dl:nth-child(2) dd div.dl-list a:hover span,
.page_header_container .nav .content .left .header-nav ul li:nth-child(7) .child .child-contarner dl:nth-child(2) dd div.dl-list a:hover span {
  color: #666;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(6) .child .child-contarner dl:nth-child(3) dd a div.con-text,
.page_header_container .nav .content .left .header-nav ul li:nth-child(7) .child .child-contarner dl:nth-child(3) dd a div.con-text {
  text-align: center;
  padding: 20px 0 0 0;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(6) .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(1),
.page_header_container .nav .content .left .header-nav ul li:nth-child(7) .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(1) {
  font-size: 24px;
  color: #1A1B20;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(6) .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(2),
.page_header_container .nav .content .left .header-nav ul li:nth-child(7) .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(2) {
  font-size: 18px;
  color: #1A1B20;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(6) .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(3),
.page_header_container .nav .content .left .header-nav ul li:nth-child(7) .child .child-contarner dl:nth-child(3) dd a div.con-text span:nth-child(3) {
  margin-top: 186px;
  background-color: white;
}
.page_header_container .nav .content .left .header-nav ul li:nth-child(6) .child .child-contarner dl:nth-child(3) dd a:hover div.con-text span:nth-child(3),
.page_header_container .nav .content .left .header-nav ul li:nth-child(7) .child .child-contarner dl:nth-child(3) dd a:hover div.con-text span:nth-child(3) {
  background-color: #00A4C5;
  color: white;
}
.page_header_container .nav .content .left .header-nav ul li.li-child {
  position: relative;
}
.page_header_container .nav .content .left .header-nav ul li.li-child .child {
  width: 200px;
}
.page_header_container .nav .content .left .header-nav ul li.li-child .child .child-contarner {
  width: 100%;
}
.page_header_container .nav .content .left .header-nav ul li.li-child .child div.dl-list {
  padding: 6px 16px;
  width: 100%;
  box-sizing: border-box;
}
.page_header_container .nav .content .left .header-nav ul li.li-child .child div.dl-list a {
  width: 100%;
  font-size: 14px;
  line-height: 40px;
  color: #666;
  font-weight: bold;
  border-bottom: 1px solid #F3F3F3;
  display: block;
}
.page_header_container .nav .content .left .header-nav ul li.li-child .child div.dl-list a:last-child {
  border-bottom: none;
}
.page_header_container .nav .content .left .header-nav ul li.li-child .child div.dl-list a:hover {
  color: #00A4C5;
}
.page_header_container .nav .content .left .header-nav ul li.li-child .child div.dl-list a:hover span {
  color: #666;
}
.page_header_container .nav .content .right {
  width: 35%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #00A4C5;
}
.page_header_container .nav .content .right span {
  font-weight: 400;
  font-size: 24px;
  padding-left: 28px;
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/1931812d5a4c5a6fe108e594f8ce116e.png) left 6px no-repeat;
  background-size: auto 24px;
}
.page_header_container .nav .content .right span i {
  font-style: normal;
  font-size: 18px;
}
.page_header_container .nav .content .right > a {
  width: 76px;
  height: 30px;
  line-height: 28px;
  box-sizing: border-box;
  border: 1px solid #00A4C5;
  margin-left: 14px;
  text-align: center;
  background: #00A4C5;
  border-radius: 4px;
  font-weight: 400;
  font-size: 14px;
  color: white;
  position: relative;
  z-index: 2;
}
.page_header_container .nav .content .right > a:hover {
  background-color: white;
  color: #00A4C5;
}
.page_header_container .nav .content .right .lang .child {
  display: none;
  position: absolute;
  top: 0;
  right: 55px;
  padding-top: 70px;
}
.page_header_container .nav .content .right .lang .child-container {
  background-color: white;
  box-shadow: 0px 4px 12px 0 rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 12px 30px;
}
.page_header_container .nav .content .right .lang .child-container a {
  display: block;
  line-height: 40px;
  font-size: 14px;
  color: #1A1B20;
}
.page_header_container .nav .content .right .lang .child-container a:hover,
.page_header_container .nav .content .right .lang .child-container a.cur {
  color: #00A4C5;
}
.page_header_container .nav .content .right .lang > a {
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/3bb5e79f747739f25f0469289cbb3971.png) 10px center no-repeat;
  background-size: 16px 16px;
  padding-left: 34px;
  padding-right: 0px;
  position: relative;
  z-index: 2;
  width: 120px;
  display: block;
  border: 1px solid #E5E6EB;
  border-radius: 4px;
  margin-left: 10px;
  height: 30px;
  line-height: 28px;
  cursor: pointer;
  color: #1A1B20;
}
.page_header_container .nav .content .right .lang > a::before {
  content: "";
  width: 8px;
  height: 4px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/face040695de0c17da8ada91c8610676.png);
  background-size: cover;
}
.page_header_container .nav .content .right .lang:hover > a {
  border: 1px solid #00A4C5;
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/a05b10bfc5119705faba9690c2da6520.png);
  background-color: #00A4C5;
  color: white;
}
.page_header_container .nav .content .right .lang:hover > a::before {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/7abdb1df514c0f4c8b4dc34c5917ec75.png);
  transform: rotate(180deg);
  margin-top: -2px;
}
.page_header_container .nav .content .right .lang:hover .child {
  display: block;
}
.page_header_container .nav.opened .content {
  background-color: white;
  backdrop-filter: none;
  border-bottom: 1px solid #F3F3F3;
}
.page_header_container .nav.opened .mask {
  display: block;
}
.page_header_container .nav.scroll_bg .content {
  background-color: white;
  backdrop-filter: none;
  border-bottom: 1px solid #F3F3F3;
}
.ad-banner {
  width: 100%;
  height: 90px;
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/de193a289fcff8d3c1245dfbdf965e76.png);
  background-size: 100% 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  display: none;
}
.ad-banner-text {
  width: 778px;
  height: 36px;
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/baac2b036d61719d953277573ef78158.png);
  background-size: 100% 100%;
  margin-top: 6px;
}
.ad-banner-text-mobile {
  display: none;
}
.ad-banner-more {
  font-size: 15px;
  font-size: 500;
  color: #00A4C5;
  height: 37px;
  line-height: 37px;
  padding: 0 16px;
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.73) url(https://download5.qingteng.cn/frontendcdn/www/assets/images/5d5d6761e7b13b090f60c38233d240ac.png) 82px center no-repeat;
  background-size: 18px auto;
  padding-right: 40px;
  margin-left: 70px;
}
.ad-banner-more:hover {
  background-color: white;
}
.ad-banner-close {
  width: 46px;
  height: 46px;
  position: absolute;
  top: 0;
  right: 0;
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/ccda4f908adeb1b5ee69607cc20c49b8.png) center center no-repeat;
  background-size: 19px auto;
  cursor: pointer;
}
#newBridge {
  z-index: 10 !important;
  display: none !important;
}
.embed-icon {
  display: none !important;
}
#newBridge ins.icon-right-bottom {
  right: 40px !important;
  top: 50% !important;
  transform: translateY(-169px) !important;
  height: 86px !important;
  width: 64px !important;
  overflow: hidden !important;
  border: none !important;
  background: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition-duration: 0.5s;
}
#newBridge ins.icon-right-bottom::before {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/bd06c382aeab2820688fa20659f5e66a.png);
  width: 31px;
  height: 28px;
  top: 18px;
  left: 16px;
}
#newBridge ins.icon-right-bottom::after {
  writing-mode: inherit;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0px;
  width: 64px;
  height: auto;
  top: 48px;
  text-align: center;
  color: #00A4C5;
  font-family: "pingfang", "PingFang SC", 'Hiragino Sans GB', 'PingFangSC-Regular', 'PingFangSC-Medium', Arial, Helvetica, sans-serif, 'Microsoft YaHei', 'STHeiti Light', 'DINAlternate-Bold', 'SimSun';
}
#newBridge ins.icon-right-bottom:hover {
  background-color: #00A4C5 !important;
}
#newBridge ins.icon-right-bottom:hover::before {
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/9e1b15087624f801a00defe47c82b869.png);
}
#newBridge ins.icon-right-bottom:hover::after {
  color: white;
}
.page_fixed-bar {
  position: fixed;
  width: 60px;
  right: 0px;
  bottom: 80px;
  z-index: 10;
}
.page_fixed-bar .ip {
  width: 100%;
  height: 56px;
  background: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/fe5a8ceaefaba40697bbcc8ff801474e.png) center top no-repeat;
  background-size: 55px auto;
}
.page_fixed-bar .fixed-bar-container {
  border-radius: 10px;
  width: 100%;
  background-color: white;
  box-shadow: 0 4px 6px 2px rgba(217, 231, 234, 0.5);
}
.page_fixed-bar .fixed-bar-container .item {
  width: 100%;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #00A4C5;
  position: relative;
  cursor: pointer;
}
.page_fixed-bar .fixed-bar-container .item span {
  font-size: 12px;
  line-height: 18px;
  padding-top: 4px;
  font-weight: 400;
}
.page_fixed-bar .fixed-bar-container .item > img {
  display: none;
  height: 24px;
}
.page_fixed-bar .fixed-bar-container .item > img:nth-child(1) {
  display: block;
}
.page_fixed-bar .fixed-bar-container .item .msg {
  width: 140px;
  height: 140px;
  padding: 10px;
  box-sizing: border-box;
  background-color: white;
  border-radius: 8px;
  position: absolute;
  right: 80px;
  top: -30px;
  z-index: 2;
  display: none;
  box-shadow: 0 4px 6px 2px rgba(217, 231, 234, 0.5);
}
.page_fixed-bar .fixed-bar-container .item .msg .bg {
  position: absolute;
  right: -20px;
  top: 0;
  height: 100%;
  width: 20px;
}
.page_fixed-bar .fixed-bar-container .item .msg .success {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #666;
  line-height: 120px;
  border-radius: 8px;
  text-align: center;
  background-color: white;
  display: none;
}
.page_fixed-bar .fixed-bar-container .item .msg-tel {
  width: 155px;
  height: 120px;
  top: 0;
}
.page_fixed-bar .fixed-bar-container .item .msg-tel::after,
.page_fixed-bar .fixed-bar-container .item .msg-tel::before {
  top: 35% !important;
}
.page_fixed-bar .fixed-bar-container .item .msg::after {
  content: "";
  width: 22px;
  height: 22px;
  transform: rotate(45deg) translateY(-50%);
  background-color: white;
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -6px;
  z-index: -2;
  box-shadow: 0 4px 6px 2px rgba(217, 231, 234, 0.5);
}
.page_fixed-bar .fixed-bar-container .item .msg::before {
  content: "";
  width: 50px;
  height: 50px;
  background-color: white;
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -25px;
  z-index: -1;
}
.page_fixed-bar .fixed-bar-container .item .msg img {
  width: 120px;
}
.page_fixed-bar .fixed-bar-container .item .msg dl {
  font-size: 14px;
  padding: 4px;
  box-sizing: border-box;
}
.page_fixed-bar .fixed-bar-container .item .msg dl dd {
  line-height: 20px;
  padding-bottom: 8px;
  color: #00A4C5;
}
.page_fixed-bar .fixed-bar-container .item .msg dl dd span {
  color: #666;
  font-size: 14px;
}
.page_fixed-bar .fixed-bar-container .item .msg dl dd:last-child {
  padding-bottom: 0;
}
.page_fixed-bar .fixed-bar-container .item .msg dl dd:hover {
  color: #00A4C5;
}
.page_fixed-bar .fixed-bar-container .item .msg dl dd:hover span {
  color: #00A4C5;
}
.page_fixed-bar .fixed-bar-container .item:hover {
  background-color: #00A4C5;
  color: white;
}
.page_fixed-bar .fixed-bar-container .item:hover > img {
  display: none;
}
.page_fixed-bar .fixed-bar-container .item:hover > img:nth-child(2) {
  display: block;
}
.page_fixed-bar .fixed-bar-container .item:hover .msg {
  display: block;
}
.page_fixed-bar .fixed-bar-container .item::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #00A4C5;
  position: absolute;
  bottom: 0;
  left: 15px;
}
.page_fixed-bar .fixed-bar-container .item:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.page_fixed-bar .fixed-bar-container .item:last-child::after {
  display: none;
}
.page_fixed-bar .fixed-bar-container .item:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.page_fixed-bar .back-bar {
  opacity: 0;
  width: 50px;
  height: 50px;
  border-radius: 64px;
  background: white url(https://download5.qingteng.cn/frontendcdn/www/assets/images/affd0c7b42b7ba9fd9a676995f0ee049.png) center 13px no-repeat;
  background-size: 29px auto;
  display: block;
  box-shadow: 0 4px 6px 2px rgba(217, 231, 234, 0.5);
  margin-top: 16px;
  margin-left: 5px;
  cursor: pointer;
}
.page_fixed-bar .back-bar:hover {
  background-color: #00A4C5;
  background-image: url(https://download5.qingteng.cn/frontendcdn/www/assets/images/b095bf49d0eb7ed8de4d25f78ff81c15.png);
}

