@charset "UTF-8";
.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.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  53%,
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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 {
  0%,
  100%,
  20%,
  53%,
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transition-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;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -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 {
  0%,
  100% {
    -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 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);
  }
  100% {
    -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);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  0% {
    -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);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes bounceIn {
  0%,
  100%,
  20%,
  40%,
  60%,
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  0%,
  100%,
  20%,
  40%,
  60%,
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes bounceInDown {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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, -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);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-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, -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);
  }
  100% {
    -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);
  }
  100% {
    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);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) 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) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) 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);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) 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) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) 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);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -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 {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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);
  }
  100% {
    -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 {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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);
  }
  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-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-transition-timing-function: ease-in;
    transition-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);
  }
  100% {
    -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 {
  0% {
    -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;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -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;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -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;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -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;
  }
  100% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -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);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -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);
    opacity: 1;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -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 {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    -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;
  }
  100% {
    -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;
  }
  100% {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  100% {
    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 {
  0% {
    opacity: 1;
  }
  100% {
    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 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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);
  }
  100% {
    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 {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    visibility: visible;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate(0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
    width: 100%; /* 根据需要调整为100%容器宽度 */
    height: auto;
    flex-shrink: 0;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height;
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  -o-transform: translate(0, -50%);
  -ms-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}
.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 5px;
}
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl
  .swiper-pagination-progress
  .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white
  .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black
  .swiper-pagination-progressbar {
  background: #000;
}
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -moz-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -moz-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -moz-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -moz-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: -o-linear-gradient(
    top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  -ms-perspective: 1200px;
}
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -moz-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
html {
  height: 100%;
  background: #fff;
  overflow-x: hidden;
}
body {
  min-height: 100%;
}
* {
  box-sizing: border-box;
}
blockquote,
body,
button,
code,
dd,
div,
dl,
dt,
fieldset,
figure,
form,
h1,
h2,
h3,
h4,
h5,
h6,
iframe,
input,
legend,
li,
ol,
p,
pre,
select,
td,
textarea,
th,
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 400;
}
fieldset,
frame,
iframe,
img {
  border: 0 none;
}
img {
  vertical-align: top;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
}
input[type="button"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner {
  border: none;
  padding: 0;
  margin: 0;
}
button {
  cursor: pointer;
}
button,
input,
textarea {
  -webkit-border-radius: 0;
  -webkit-appearance: none;
}
input[type="radio"] {
  -webkit-border-radius: 100%;
  -webkit-appearance: radio;
}
input[type="checkbox"] {
  -webkit-appearance: checkbox;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box;
  -o-box-sizing: content-box;
  box-sizing: content-box;
}
textarea {
  overflow: auto;
  resize: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,
th {
  text-align: left;
}
th {
  font-weight: 400;
}
address,
cite,
em,
i {
  font-style: normal;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
body,
button,
input,
select,
textarea {
  color: #7d7d7d;
  font-size: 16px;
  font-family: "Microsoft Yahei", "微软雅黑", arial, "\5b8b\4f53";
}
button,
input,
select,
textarea {
  font-size: 1em;
}
body {
  line-height: 1.5;
}
a,
a:active,
a:link,
a:visited {
  text-decoration: none;
}
a {
  blr: expression(this.onFocus=this.blur());
  color: #333;
}
:focus {
  outline: 0;
}
a:hover {
  color: #d70c19;
}
.edit_con_original {
  line-height: 1.6;
  padding: 0 0;
  color: #474747;
}
.edit_con_original ul {
  margin: inherit;
  padding: inherit;
}
.edit_con_original ul li {
  list-style-type: disc;
  margin: auto;
  padding: inherit;
}
.edit_con_original ol {
  margin: inherit;
  padding: inherit;
}
.edit_con_original ol li {
  list-style-type: decimal;
  margin: auto;
  padding: inherit;
}
.edit_con_original h1 {
  font-size: 2em;
  font-weight: 700;
}
.edit_con_original h2 {
  font-size: 1.5em;
  font-weight: 700;
}
.edit_con_original h3 {
  font-size: 1.17em;
  font-weight: 700;
}
.edit_con_original h4 {
  font-size: 1em;
  font-weight: 700;
}
.edit_con_original h5 {
  font-size: 0.83em;
  font-weight: 700;
}
.edit_con_original h6 {
  font-size: 0.67em;
  font-weight: 700;
}
.edit_con_original em {
  font-style: italic;
}
.edit_con_original cite {
  font-style: italic;
}
.edit_con_original address {
  font-style: italic;
}
.edit_con_original i {
  font-style: italic;
}
.edit_con_original table {
  border-collapse: separate;
  border-spacing: 2px;
}
.edit_con_original img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-device-width: 320px) {
  body {
    -webkit-text-size-adjust: none;
  }
}
@media screen and (max-device-width: 480px) {
  body {
    -webkit-text-size-adjust: none;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  body {
    -webkit-text-size-adjust: none;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body {
    -webkit-text-size-adjust: none;
  }
}
#newBridge .nb-icon-right-center {
  right: -200% !important;
}
#nb_icon_wrap {
  opacity: 0;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden;
}
.cf:before,
.clearfix:before,
.fixed:before,
.footer:before,
.header:before,
.main:before,
body:before {
  content: "";
  display: table;
}
.cf:after,
.clearfix:after,
.fixed:after,
.footer:after,
.header:after,
.main:after,
after {
  content: "";
  display: table;
  clear: both;
}
.cl,
.clear {
  display: block !important;
  float: none !important;
  clear: both;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  max-height: none !important;
  min-height: 0 !important;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 none !important;
  font-size: 0 !important;
  line-height: 0 !important;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #999;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999;
}
.gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
}
.scaleimg {
  overflow: hidden;
  display: block;
}
.scaleimg span {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.scaleimg:hover span {
  transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
}
.scaleimg2 {
  overflow: hidden;
  display: block;
}
.scaleimg2 a {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  transform-origin: center center;
  -webkit-transform-origin: center center;
}
.scaleimg2:hover a {
  transform: scale(1.02, 1.02);
  -webkit-transform: scale(1.02, 1.02);
}
.scaleimg6 {
  overflow: hidden;
  display: block;
}
.scaleimg6 .img a {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  transform-origin: center center;
  -webkit-transform-origin: center center;
}
.scaleimg6:hover .img a {
  transform: scale(1.02, 1.02);
  -webkit-transform: scale(1.02, 1.02);
}
.scaleimg7 {
  overflow: hidden;
  display: block;
}
.scaleimg7 .img {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  transform-origin: center center;
  -webkit-transform-origin: center center;
}
.scaleimg7:hover .img {
  transform: scale(1.02, 1.02);
  -webkit-transform: scale(1.02, 1.02);
}
.scaleimg8 {
  overflow: hidden;
  display: block;
}
.scaleimg8 .img span {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  transform-origin: center center;
  -webkit-transform-origin: center center;
}
.scaleimg8:hover .img span {
  transform: scale(1.02, 1.02);
  -webkit-transform: scale(1.02, 1.02);
}
.scaleimg3 {
  overflow: hidden;
  display: block;
}
.scaleimg3 img {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.scaleimg3:hover img {
  transform: scale(1.02, 1.02);
  -webkit-transform: scale(1.02, 1.02);
}
.scaleimg4 {
  overflow: hidden;
  display: block;
}
.scaleimg4 a {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.scaleimg4:hover a {
  transform: scale(1.02, 1.02);
  -webkit-transform: scale(1.02, 1.02);
}
.scaleimg5 {
  overflow: hidden;
  display: block;
}
.scaleimg5 a {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.scaleimg5:hover a {
  transform: scale(1.01, 1.01);
  -webkit-transform: scale(1.01, 1.01);
}
.tran_scale2 {
  overflow: hidden;
  display: block;
}
.tran_scale2 img {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.tran_scale2:hover img {
  transform: rotate(-2deg);
  -webkit-transform: rotate(-2deg);
}
.animation {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
}
.table {
  display: table;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.table-cell {
  display: table-cell;
  vertical-align: middle;
}
img {
  border: 0;
  display: inline-block;
}
a {
  color: #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
}
body {
  font-size: 14px;
  background-size: cover;
  -ms-behavior: url(backgroundsize.min.htc);
  behavior: url(backgroundsize.min.htc);
}
.bg-f5 {
  background: #f5f5f5;
}

.tab-b {
  display: none;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.center {
  text-align: center;
}
.f-left {
  text-align: left;
}
.f-right {
  text-align: right;
}
.v-m-c {
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  position: absolute;
  left: 0;
  top: 50%;
}
.l-m-c {
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  position: absolute;
  left: 50%;
  top: 0;
}
.a-m-c {
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}
.f-b {
  font-weight: 700;
}
.ht {
  padding: 1% 0;
}
.uppercase {
  text-transform: uppercase;
}
.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.ellipsis-2 {
  overflow: hidden;
  max-height: 3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ellipsis-3 {
  overflow: hidden;
  max-height: 4.5em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ellipsis-4 {
  overflow: hidden;
  max-height: 6em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.ellipsis-5 {
  overflow: hidden;
  max-height: 7.5em;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.ellipsis-6 {
  overflow: hidden;
  max-height: 9em;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.select-box {
  width: 100%;
  position: relative;
  color: #2b2b2b;
}
.select-box.zindex,
.select-box:hover {
  z-index: 101;
}
.select-box dt {
  cursor: pointer;
  border-bottom: 1px solid #e83421;
  line-height: 2.2;
}
.select-box dt b {
  font-weight: 400;
  display: block;
  padding-right: 20px;
}
.select-box dt span {
  font-weight: 400;
  display: block;
  padding-right: 20px;
}
.select-box dt i {
  position: absolute;
  transition: 0.3s all ease-in-out;
  width: 15px;
  height: 7px;
  background: url(../../images/jt07.png) no-repeat 0 0;
  margin-top: -3.5px;
  right: 0;
  top: 50%;
}
.select-box dt.open i {
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.select-box dd {
  position: absolute;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-top: none;
  border-right: none;
  z-index: 102;
  background: #fff;
  padding: 0 0;
  overflow: hidden;
  right: 0;
  left: 0;
  top: 100%;
  display: none;
}
.select-box dd .con {
  background: url(../../images/line01.jpg) repeat-y right top;
}
.select-box dd a {
  display: block;
  line-height: 3.5714;
  color: #7d7d7d;
  font-weight: 400;
  border-top: 1px solid #e4e4e4;
  white-space: normal;
  padding: 0 1.4285em;
  margin-top: 0;
}
.select-box dd a.on,
.select-box dd a:hover {
  color: #e83421;
}
.select-box dd a:first-child {
  border-top: none;
}
.select-box .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #e83421;
}
.select-box .mCSB_scrollTools,
.select-box .mCSB_scrollTools .mCSB_draggerRail {
  width: 2px;
}
.select-box .mCSB_scrollTools .mCSB_draggerContainer {
  background: 0 0;
}
.bg_cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.zindex {
  z-index: 999;
}
.arial {
  font-family: Arial;
}
.song {
  font-family: "\5b8b\4f53";
}
.phone_hide {
  display: block;
}
.phone_show {
  display: none;
}
.page {
  vertical-align: middle;
  text-align: center;
  color: #7d7d7d;
  line-height: 2.5em;
}
.page a {
  display: inline-block;
  color: #7d7d7d;
  margin: 0 1px;
  position: relative;
  min-width: 2.5em;
}
.page a:hover {
  color: #e93421;
}
.page span {
  padding: 0 1.675em 0 1.875em;
  letter-spacing: 0.25em;
}
.page span label {
  color: #2d2d2d;
}
.weixin {
  position: fixed;
  width: 300px;
  z-index: 100000;
  left: 50%;
  top: 50%;
  margin: -120px 0 0 -150px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  box-shadow: 1px 1px 2px #aaa;
}
.weixin .c {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0;
  top: 0;
  font-size: 20px;
  font-style: normal;
  text-align: center;
  cursor: pointer;
  z-index: 2;
}
.weixin h2 {
  position: relative;
  line-height: 30px;
  font-size: 16px;
  padding-left: 10px;
}
.weixin .img {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
.weixin .img img {
  width: 180px;
  height: 180px;
}
.weixin p {
  padding: 2px 10px 0;
  text-align: center;
}
.radio_bon span {
  padding-left: 38px;
  apply_expert_form-space: normal;
  min-width: 67px;
  position: relative;
  margin: 0 25px 0 0;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
}
.radio_bon span i {
  background: url(../../images/radio_but01.png) no-repeat 0 top;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
}
.radio_bon span.on i {
  background-position: 0 bottom;
}
.radio_bon .radio {
  display: none;
}
.check_group {
  cursor: pointer;
}
.check_group .checkbox {
  float: left;
  cursor: pointer;
  margin-top: 0.25em;
  width: 18px;
  border: 1px solid #e4e4e4;
  height: 18px;
  background: url(../../images/gou.png) no-repeat center 18px;
  margin-right: 8px;
}
.check_group .checkbox02 {
  background-position: center center;
}
.check_group label {
  float: left;
  cursor: pointer;
}
.check_group .checkbox input {
  display: none;
}
.fnt-12 {
  font-size: 12px;
}
.fnt-14 {
  font-size: 14px;
}
.fnt-15 {
  font-size: 15px;
}
.fnt-16 {
  font-size: 16px;
}
.fnt-18 {
  font-size: 18px;
}
.fnt-20 {
  font-size: 20px;
}
.fnt-22 {
  font-size: 22px;
}
.fnt-24 {
  font-size: 24px;
}
.fnt-26 {
  font-size: 26px;
}
.fnt-28 {
  font-size: 28px;
}
.fnt-30 {
  font-size: 30px;
}
.fnt-36 {
  font-size: 36px;
}
.fnt-40 {
  font-size: 40px;
}
.fnt-45 {
  font-size: 45px;
}
.fnt-48 {
  font-size: 48px;
}
.fnt-60 {
  font-size: 60px;
}
@media only screen and (max-width: 1700px) {
  .fnt-15 {
    font-size: 14px;
  }
  .fnt-16 {
    font-size: 15px;
  }
  .fnt-18 {
    font-size: 17px;
  }
  .fnt-20 {
    font-size: 18px;
  }
  .fnt-22 {
    font-size: 20px;
  }
  .fnt-24 {
    font-size: 22px;
  }
  .fnt-26 {
    font-size: 24px;
  }
  .fnt-28 {
    font-size: 26px;
  }
  .fnt-30 {
    font-size: 28px;
  }
  .fnt-36 {
    font-size: 32px;
  }
  .fnt-40 {
    font-size: 36px;
  }
  .fnt-45 {
    font-size: 40px;
  }
  .fnt-48 {
    font-size: 44px;
  }
  .fnt-60 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1500px) {
  .fnt-14 {
    font-size: 13px;
  }
  .fnt-15 {
    font-size: 14px;
  }
  .fnt-16 {
    font-size: 14px;
  }
  .fnt-18 {
    font-size: 16px;
  }
  .fnt-20 {
    font-size: 18px;
  }
  .fnt-22 {
    font-size: 20px;
  }
  .fnt-24 {
    font-size: 22px;
  }
  .fnt-26 {
    font-size: 23px;
  }
  .fnt-28 {
    font-size: 23px;
  }
  .fnt-30 {
    font-size: 24px;
  }
  .fnt-36 {
    font-size: 28px;
  }
  .fnt-40 {
    font-size: 32px;
  }
  .fnt-45 {
    font-size: 32px;
  }
  .fnt-48 {
    font-size: 36px;
  }
  .fnt-60 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1340px) {
  .fnt-20 {
    font-size: 17px;
  }
  .fnt-22 {
    font-size: 18px;
  }
  .fnt-24 {
    font-size: 20px;
  }
  .fnt-26 {
    font-size: 21px;
  }
  .fnt-28 {
    font-size: 21px;
  }
  .fnt-30 {
    font-size: 22px;
  }
  .fnt-36 {
    font-size: 26px;
  }
  .fnt-40 {
    font-size: 30px;
  }
  .fnt-45 {
    font-size: 28px;
  }
  .fnt-48 {
    font-size: 32px;
  }
  .fnt-60 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1000px) {
  .phone_hide {
    display: none;
  }
  .phone_show {
    display: block;
  }
}
@media only screen and (max-width: 980px) {
  .fnt-22 {
    font-size: 17px;
  }
  .fnt-24 {
    font-size: 18px;
  }
  .fnt-30 {
    font-size: 20px;
  }
  .fnt-36 {
    font-size: 24px;
  }
  .fnt-40 {
    font-size: 28px;
  }
  .fnt-45 {
    font-size: 26px;
  }
  .fnt-48 {
    font-size: 30px;
  }
  .fnt-60 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .fnt-12 {
    font-size: 12px;
  }
  .fnt-14 {
    font-size: 14px;
  }
  .fnt-15 {
    font-size: 15px;
  }
  .fnt-16 {
    font-size: 16px;
  }
  .fnt-18 {
    font-size: 16px;
  }
  .fnt-20 {
    font-size: 18px;
  }
  .fnt-22 {
    font-size: 19px;
  }
  .fnt-24 {
    font-size: 20px;
  }
  .fnt-26 {
    font-size: 21px;
  }
  .fnt-28 {
    font-size: 21px;
  }
  .fnt-30 {
    font-size: 22px;
  }
  .fnt-36 {
    font-size: 24px;
  }
  .fnt-40 {
    font-size: 26px;
  }
  .fnt-45 {
    font-size: 26px;
  }
  .fnt-48 {
    font-size: 28px;
  }
  .fnt-60 {
    font-size: 32px;
  }
  .select-box dt i {
    background: 0 0;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    width: 0.7142em;
    height: 0.7142em;
    background: #fff;
    transform: rotate(45deg);
    margin-top: -0.5em;
    position: absolute;
    right: 4px;
  }
  .select-box dt.open i {
    border-bottom: 1px solid #e83421;
    margin-top: 0;
    border-right: 1px solid #e83421;
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    background-position: center bottom;
  }
  .phone_hide {
    display: none;
  }
  .phone_show {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  .fnt-12 {
    font-size: 12px;
  }
  .fnt-14 {
    font-size: 14px;
  }
  .fnt-15 {
    font-size: 14px;
  }
  .fnt-16 {
    font-size: 15px;
  }
  .fnt-18 {
    font-size: 16px;
  }
  .fnt-20 {
    font-size: 16px;
  }
  .fnt-22 {
    font-size: 17px;
  }
  .fnt-24 {
    font-size: 18px;
  }
  .fnt-26 {
    font-size: 18px;
  }
  .fnt-28 {
    font-size: 18px;
  }
  .fnt-30 {
    font-size: 18px;
  }
  .fnt-36 {
    font-size: 20px;
  }
  .fnt-40 {
    font-size: 22px;
  }
  .fnt-45 {
    font-size: 22px;
  }
  .fnt-48 {
    font-size: 24px;
  }
  .fnt-60 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 414px) {
  .fnt-30 {
    font-size: 18px;
  }
  .fnt-36 {
    font-size: 18px;
  }
  .fnt-40 {
    font-size: 24px;
  }
  .fnt-45 {
    font-size: 20px;
  }
  .fnt-48 {
    font-size: 22px;
  }
  .fnt-60 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 340px) {
  .fnt-12 {
    font-size: 12px;
  }
  .fnt-14 {
    font-size: 13px;
  }
  .fnt-15 {
    font-size: 14px;
  }
  .fnt-16 {
    font-size: 14px;
  }
  .fnt-18 {
    font-size: 15px;
  }
  .fnt-20 {
    font-size: 15px;
  }
  .fnt-22 {
    font-size: 16px;
  }
  .fnt-24 {
    font-size: 16px;
  }
  .fnt-26 {
    font-size: 16px;
  }
  .fnt-28 {
    font-size: 16px;
  }
}
.writing-vertical {
  writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-writing-mode: tb-rl;
  -ms-writing-mode: tb-rl;
}
*,
:after,
:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0 !important;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
p {
  margin: 0;
}
.btn {
  padding: 0;
}
.fix {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 999;
}
.html {
  overflow: hidden;
}
.jt-more a {
  color: #7d7d7d;
  position: relative;
  display: inline-block;
  padding-right: 2em;
}
.jt-more a i {
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 10px;
  margin-top: -5px;
  right: 0;
  top: 50%;
  background: url(../../images/jt05.png) no-repeat right center;
}
.jt-more a:hover i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -o-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.jt-more a:hover {
  color: #e83421;
}
.jt-more2 a {
  color: #2b2b2b;
  position: relative;
  border: 1px solid #e4e4e4;
  border-radius: 1.1945em;
  display: inline-block;
  padding-right: 2.72em;
}
.jt-more2 a span {
  padding: 0 0.778em 0 1.88em;
  line-height: 2.389;
}
.jt-more2 a i {
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 10px;
  margin-right: 0;
  margin-top: -5px;
  right: 1.833em;
  top: 50%;
  background: url(../../images/jt05.png) no-repeat right center;
}
.jt-more2 a:hover i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -o-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.jt-more2 a:hover {
  border: 1px solid #e83421;
}
.jt-more3 span {
  color: #7d7d7d;
  position: relative;
  display: inline-block;
  padding-right: 2em;
}
.tech-index-sec02 .tech-sec-03 ul li:hover .jt-more3 span {
  color: #e83421;
}
.jt-more3 span i {
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 10px;
  margin-top: -5px;
  right: 0;
  top: 50%;
  background: url(../../images/jt05.png) no-repeat right center;
}
.in-title {
  position: relative;
  color: #2b2b2b;
  width: 12em;
  padding-top: 15px;
  line-height: 1.3;
  padding-bottom: 0.1667em;
}
.in-title i {
  background: #fdd000;
  position: absolute;
  height: 1px;
  left: 0;
  top: 0;
  width: 2.083em;
}
.sec-tab {
  padding-left: 10em;
  position: relative;
}
.sec-tab .tit {
  position: absolute;
  left: 0;
  top: 0;
}
.play_button {
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
}
.img-video {
  float: left;
  width: 38.889%;
  position: relative;
}
.img-video .img {
  padding-bottom: 58.57%;
}
.img-video video {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #000;
}
.img-video .play,
.img-video .play2 {
  position: absolute;
  cursor: pointer;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.img-video .play i {
  width: 71px;
  display: inline-block;
  height: 71px;
  background: url(../../images/play2.png) no-repeat center center;
  background-size: cover;
}
.img-video .play2 i {
  width: 60px;
  display: inline-block;
  height: 60px;
  background: url(../../images/play2.png) no-repeat center center;
  background-size: cover;
}
.img-video .play2:hover i,
.img-video .play:hover i {
  background: url(../../images/play3.png) no-repeat center center;
  background-size: cover;
}
.img-video .play:hover {
  background: 0 0;
}
.pic-list .title {
  padding: 1.3125em 0 0;
}
.pic-list .title .tit {
  color: #2b2b2b;
  float: left;
}
.pic-list .title .more {
  float: right;
  margin-top: 0.5em;
}
.pic-list {
  padding: 1.875em 0 3.75em;
}
.pic-list .img {
  position: relative;
  overflow: hidden;
}
.pic-list .img a {
  display: block;
  padding-bottom: 56.36%;
  background-size: cover;
}
.pic-list .img a img {
  position: absolute;
  width: 101%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.pic-list .scaleimg6:hover .img a {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.pic-list .scaleimg6:hover .img a img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.pic-list .img i {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1.25em;
  padding: 0 1.25em;
  line-height: 2.25;
  background: rgba(231, 36, 39, 0.6);
  color: #fff;
}
.pic-list .sub-tit {
  margin-bottom: 1em;
  height: 3.42em;
}
.pic-list .sub-tit a {
  color: #222;
  display: block;
  position: relative;
  line-height: 1.71;
  max-height: 3.42em;
  display: -webkit-box;
}
.pic-list a .sub-tit {
  color: #222;
  display: block;
  position: relative;
  line-height: 1.71;
  max-height: 3.42em;
  display: -webkit-box;
}
.pic-list .sub-tit a i {
  display: inline-block;
  position: relative;
  right: 0;
  bottom: 0;
  margin-left: 10px;
  background: url(../../images/jt05.png) no-repeat center #fff;
  width: 15px;
  height: 10px;
}
.pic-list .sub-tit a:hover i {
  margin-left: 17px;
}
.pic-list a .txt {
  color: #7d7d7d;
}
.pic-list .sub-tit a:hover {
  color: #e83421;
}
.pic-list a:hover .sub-tit {
  color: #e83421;
}
.pic-list a:hover .txt {
  color: #7d7d7d;
}
.pic-list .text {
  border: 1px solid #e4e4e4;
  margin-top: 0;
  z-index: 5;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  border-top: none;
  background: #fff;
  padding: 1.6em 1.75em 2em;
}
.pic-list .list {
  margin-top: -0.5em;
  width: 100%;
}
.pic-list ul li {
  padding: 1.875em 0 1.25em;
}
.pic-list .txt {
  line-height: 1.71;
  max-height: 3.42em;
  height: 0;
}
.pic-list .time {
  color: #ccc;
  padding-top: 0.33em;
}
.pic-list ul li .con {
  padding-bottom: 9.375em;
  position: relative;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  border-bottom: none;
}
.pic-list ul li .con:hover .txt {
  height: 3.42em;
  margin-bottom: 0.5em;
  -webkit-line-clamp: 2;
  max-height: inherit;
}
.pic-list_mei ul li .con:hover .txt,
.video-list ul li .con:hover .txt {
  height: auto;
  margin-bottom: 0.5em;
  -webkit-line-clamp: 100;
  max-height: inherit;
}
.pic-list ul li .con:hover .text {
  border-color: #fff;
}
.pic-list ul li .con:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
  border-color: #fff;
}
.pic-list ul li .con:hover .sub-tit {
  height: 3.42em;
}
.pic-list .img-video {
  width: 100%;
  overflow: hidden;
}
.pic-list .img-video .img {
  padding-bottom: 54%;
}
.pic-list .img-video .img img {
  position: absolute;
  width: 100%;
}
.pic-list ul li .label {
  position: absolute;
  right: 1.75em;
  min-height: 1.71em;
  bottom: 1.75em;
}
.pic-list ul li .label span {
  display: inline-block;
  line-height: 1.71;
  border: 1px solid #e4e4e4;
  border-radius: 0.9285em;
  padding: 0 1.071em;
}
.case-pic-list {
  position: relative;
  border-top: 1px solid #e4e4e4;
  padding-top: 3.75em;
  padding-left: 10em;
}
.case-pic-list .in-title {
  position: absolute;
  left: 0;
  top: 2.5em;
}
.case-pic-list ul {
  margin: 0 -2.53125em;
  padding-bottom: 1.75em;
  min-height: 5em;
}
.case-pic-list ul li {
  float: left;
  width: 33.33%;
  padding-bottom: 1.5em;
}
.case-pic-list ul li .con {
  color: #666;
  position: relative;
  line-height: 2.1428;
  max-height: 4.2856em;
}
.case-pic-list ul li .con i {
  display: inline-block;
  position: relative;
  right: -22px;
  bottom: 0;
  background: url(../../images/jt05.png) no-repeat center #fff;
  width: 15px;
  height: 10px;
}
.case-pic-list ul li .tit {
  margin-bottom: 1.1875em;
}
.case-pic-list ul li .tit span {
  float: left;
  width: 60%;
  line-height: 3;
  display: block;
  color: #222;
}
.case-pic-list ul li .tit .ico {
  float: right;
  width: 38%;
  position: relative;
  height: 3em;
}
.case-pic-list ul li .tit .ico img {
  max-width: 90%;
  left: auto;
  right: 0;
  max-height: 90%;
  width: auto;
  height: auto;
}
.case-pic-list ul li .text {
  padding: 0 4.53125em 0 2.53125em;
}
.case-pic-list ul li:hover .con i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -o-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.case-pic-list .img-wrap {
  float: left;
  margin-top: 0.25em;
  width: 2.5em;
  margin-right: 1em;
  position: relative;
  height: 2.5em;
}
.case-pic-list .img-wrap img {
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}
.case-pic-list .img-wrap .img {
  opacity: 1;
}
.case-pic-list ul li:hover .img-wrap .img {
  opacity: 0;
}
.case-pic-list ul li:hover .img-wrap .img-hover {
  opacity: 1;
}
.case-pic-list .txt {
  color: #2b2b2b;
}
.case-pic-list ul li:hover .txt {
  color: #e83421;
}
.case-pic-list ul li:hover .con {
  color: #111;
}
.solution-pic-list {
  position: relative;
  border-top: 1px solid #e4e4e4;
  padding-top: 3.75em;
  padding-bottom: 1em;
  padding-left: 10em;
}
.solution-pic-list .in-title {
  position: absolute;
  left: 0;
  top: 2.5em;
}
.solution-pic-list ul {
  margin: 0 -2.125em;
  margin-top: -0.925em;
  min-height: 5em;
}
.solution-pic-list ul li {
  position: relative;
  margin-bottom: 1.5em;
  float: left;
  width: 33.33%;
}
.solution-pic-list ul li .img {
  overflow: hidden;
}
.solution-pic-list ul li .img span {
  display: block;
  padding-bottom: 56%;
}
.solution-pic-list ul li .img span img {
  position: absolute;
  width: 101%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.solution-pic-list ul li .con .img span img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.solution-pic-list ul li .tit {
  color: #2b2b2b;
  margin-top: 1em;
  margin-bottom: 0.65em;
}
.solution-pic-list ul li .tit em {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  padding-right: 2em;
}
.solution-pic-list ul li .tit em i {
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 10px;
  margin-top: -5px;
  right: 10px;
  top: 50%;
  background: url(../../images/jt05.png) no-repeat right center;
}
.solution-pic-list ul li .txt {
  line-height: 2;
  max-height: 4em;
  height: 4em;
  color: #7b7b7b;
}
.solution-pic-list ul li .con {
  position: relative;
  padding: 0.875em 0.875em 2em;
  border: 1px solid #fff;
  margin: 0 1.25em;
  z-index: 3;
}
.solution-pic-list ul li .con:hover .tit {
  color: #e83421;
}
.solution-pic-list ul li .con:hover {
  background: #f7f7f7;
  border: 1px solid #e4e4e4;
}
.solution-pic-list ul li .con:hover .tit em i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -o-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.pic-tab-nav {
  float: left;
  width: 10em;
}
.pic-tab-nav .nr-nav-right1 {
  left: 0;
  width: 8.125em;
  background: #fff;
  border-top: 1px solid #e4e4e4;
  z-index: 3;
  bottom: auto;
  right: auto;
  margin-top: 1.25em;
}
.pic-tab-nav .nr-nav-right1 > li {
  float: none;
  cursor: pointer;
  border-bottom: 1px solid #e4e4e4;
  padding: 0;
}
.pic-tab-nav .nr-nav-right1 > li > a {
  display: block;
  position: relative;
  color: #7d7d7d;
  padding: 0.75em 2em 0.75em 1em;
}
.pic-tab-nav .nr-nav-right1 > li > a i {
  position: absolute;
  width: 15px;
  height: 10px;
  background: url(../../images/jt04.png) no-repeat center center;
  left: auto;
  right: 0.625em;
  bottom: auto;
  top: 50%;
  margin-top: -5px;
}
.pic-tab-nav .nrnav-box.active .nr-nav-right1 {
  left: 3.85%;
  top: 5em;
}
.pic-tab-nav .nr-nav-right1 > li > a.hover,
.pic-tab-nav .nr-nav-right1 > li > a:hover {
  background: #e93421;
  color: #fff;
}
.pic-tab-nav .nr-nav-con {
  overflow: hidden;
  padding-bottom: 3.75em;
  min-height: 500px;
}
.box_Arrow {
  border-bottom: 1px solid #7d7d7d;
  border-right: 1px solid #7d7d7d;
  width: 0.7142em;
  height: 0.7142em;
  background: #fff;
  transform: rotate(45deg);
  margin-top: -8px;
  position: absolute;
}
.box_Arrow2 {
  border-top: 1px solid #7d7d7d;
  border-right: 1px solid #7d7d7d;
  width: 0.6428em;
  height: 0.6428em;
  background: #fff;
  transform: rotate(45deg);
  margin-top: -0.3217em;
  position: absolute;
}
.box_Arrow3 {
  border-left: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  width: 1.4285em;
  height: 1.4285em;
  background: #fff;
  transform: rotate(135deg);
  margin-left: -0.71425em;
  position: absolute;
  left: 50%;
  top: 0;
}
.box_Arrow4 {
  border-left: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  width: 1.4285em;
  height: 1.4285em;
  background: #fff;
  transform: rotate(45deg);
  margin-top: -0.875em;
  position: absolute;
  left: 0;
  top: 50%;
}
.main {
  padding-left: 18.75%;
  overflow: hidden;
}

.nav_phone,
.nav_phone_btn {
  display: none;
}

.menu-nav {
  position: fixed;
  left: 0;
  z-index: 105;
  background: #fff;
  border-right: 1px solid #e4e4e4;
  width: 18.75%;
  top: 0;
  height: 100%;
  bottom: 0;
}
.menu-nav .title {
  margin-top: 25.5%;
}
.menu-nav .title a {
  display: block;
  padding-left: 16.667%;
}
.menu-nav .title a span {
  line-height: 3;
  display: inline-block;
  position: relative;
  color: #2b2b2b;
  padding-right: 1.8em;
}
.menu-nav .title a span i {
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 10px;
  margin-top: -5px;
  right: 0;
  top: 50%;
  background: url(../../images/jt05.png) no-repeat right center;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
  transition: 0.5s all;
}
.menu-nav .title a:hover span i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -o-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.menu-nav ul > li > p > a {
  display: block;
  padding-left: 16.667%;
  line-height: 3.75;
  position: relative;
  color: #2b2b2b;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -o-transition: 0.3s all;
  -ms-transition: 0.3s all;
}
.menu-nav ul > li > p > a > em {
  position: absolute;
  right: 16.11%;
  top: 50%;
  z-index: 101;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -o-transition: 0.3s all;
  -ms-transition: 0.3s all;
  transition: 0.3s all;
}
.menu-nav ul > li.on > p > a > em {
  background: #f7f7f7;
  border-color: #e83421;
}
.menu-nav ul > li.on > p > a {
  background: #f7f7f7;
  color: #e83421;
}
.menu-nav ul > li > p:hover > a > em {
  background: #e83421;
  border-color: #fff;
}
.menu-nav ul > li > p:hover > a {
  background: #e83421;
  color: #fff;
}
.menu-nav .ns-recommend {
  position: absolute;
  background: #fff;
  line-height: 1.875;
  padding: 1.25em 8% 1.7em;
  left: 8.33%;
  right: 8.33%;
  bottom: 8.611%;
  border: 1px solid #e4e4e4;
}
.menu-nav .ns-recommend:hover {
  border: 1px solid #e83421;
}
.menu-nav .ns-recommend h2 {
  color: #e83421;
}
.menu-nav .ns-recommend h3 {
  color: #111;
  max-height: 3.75em;
  margin-top: 0.75em;
}
.menu-nav .ns-recommend h3 a {
  color: #111;
  display: block;
}
.menu-nav .ns-recommend h3 a i {
  display: inline-block;
  position: relative;
  right: 0;
  background: url(../../images/jt05.png) no-repeat right center;
  width: 2.5em;
  height: 10px;
}
.menu-nav .ns-recommend h3 a:hover {
  color: #e83421;
}
.menu-nav .ns-recommend h3 a:hover i {
  right: -10px;
}
.menu-nav .ns-recommend .con {
  color: #666;
  max-height: 3.75em;
  margin-top: 1em;
}
.menu-nav .ns-recommend .time {
  color: #ccc;
  padding-top: 2.125em;
}
.menu-nav .menu-nav-tab {
  display: none;
}
.menu-nav.on {
  left: 18.75%;
}
.menu-con {
  position: fixed;
  z-index: 104;
  left: 37.5%;
  display: none;
  padding: 6.2em 3.125% 18.75em;
  background: #fff;
  top: 0;
  right: 0;
  height: 100%;
  bottom: 0;
}
.menu-con .menu-close {
  position: fixed;
  right: 2em;
  top: 1.5em;
  cursor: pointer;
  width: 2em;
  height: 2em;
  background: url(../../images/video-close.png) no-repeat center center;
  background-size: 1.125em 1.125em;
}
.menu-con .txt-tit {
  color: #2b2b2b;
}
.menu-con .txt-tit h2 {
  padding-bottom: 0.9em;
}
.menu-con .txt-tit .anli {
  display: inline-block;
  position: relative;
  padding-right: 1.8em;
  padding-bottom: 0;
  margin-bottom: 0.9em;
}
.menu-con .txt-tit .anli a {
  color: #2b2b2b;
}
.menu-con .txt-tit .anli a:hover {
  color: #2b2b2b;
}
.menu-con .txt-tit .anli i {
  background: url(../../images/jt05.png) no-repeat right center;
  position: absolute;
  width: 15px;
  height: 10px;
  margin-top: -5px;
  right: 0;
  top: 50%;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
  transition: 0.5s all;
}
.menu-con .txt-tit .anli:hover i {
  right: -10px;
}
.menu-con .menu-ft {
  position: absolute;
  z-index: 3;
  background: #fff;
  left: 0;
  bottom: 0;
  right: 0;
}
.menu-con .menu-ft .con-wrap {
  margin: 1em 5% 7.0625em;
  position: relative;
}
.menu-con .menu-ft .menu-left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  bottom: 0;
  background: #e83421;
  float: left;
  width: 49.07%;
}
.menu-con .menu-ft .menu-left .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  bottom: 0;
}
.menu-con .menu-ft .menu-left .text {
  position: absolute;
  padding: 1.625em 1.875em;
  left: 50%;
  top: 0;
  width: 50%;
  bottom: 0;
}
.menu-con .menu-ft .menu-left span {
  color: #fff;
  position: relative;
  display: inline-block;
  padding-right: 1.8em;
}
.menu-con .menu-ft .menu-left span i {
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 10px;
  margin-top: -5px;
  right: 0;
  top: 50%;
  background: url(../../images/jt04.png) no-repeat right center;
}
.menu-con .menu-ft .menu-left .txt {
  color: #fff;
  margin-top: 0.625em;
  height: 3em;
}
.menu-con .menu-ft .menu-left:hover span i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -o-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.menu-con .menu-ft .menu-right {
  float: right;
  width: 49.07%;
}
.menu-con .menu-ft .menu-right ul {
  margin: 0 -0.625em;
}
.menu-con .menu-ft .menu-right ul li {
  float: left;
  width: 50%;
}
.menu-con .menu-ft .menu-right ul li .con {
  margin: 0 0.625em;
  padding: 1.625em 1.875em;
  border: 1px solid #e4e4e4;
}
.menu-con .menu-ft .menu-right ul li .txt {
  color: #333;
  margin-top: 0.625em;
  height: 5em;
  text-overflow: initial;
  white-space: initial;
  overflow: initial;
}
.menu-con .menu-ft .menu-right ul li span {
  color: #2b2b2b;
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding-right: 1.8em;
}
.menu-con .menu-ft .menu-right ul li span i {
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 10px;
  margin-top: -5px;
  right: 0;
  top: 50%;
  background: url(../../images/jt05.png) no-repeat right center;
}
.menu-con .menu-ft .menu-right ul li a:hover .con {
  border: 1px solid #e83421;
}
.menu-con .menu-scroll {
  position: absolute;
  left: 5%;
  top: 6.625em;
  right: 1.125em;
  bottom: 18.75em;
  overflow-y: auto;
}
.menu-con .menu-scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.menu-con .menu-scroll::-webkit-scrollbar-thumb {
  background-color: #e83421;
  border-radius: 6px;
}
.menu-con .menu-scroll::-webkit-scrollbar-track {
  background: #f4f4f4;
}
.menu-con .menu-scroll ul {
  padding: 2.6875em 0 0;
}
.menu-con .menu-scroll ul li {
  float: left;
  width: 33.33%;
}
.menu-con .menu-scroll ul li dl {
  width: 95%;
}
.menu-con .menu-scroll ul li dl dt {
  color: #7d7d7d;
  padding-bottom: 0.25em;
  border-bottom: 1px solid #e4e4e4;
  padding-top: 22px;
}
.menu-con .menu-scroll ul li dl dt a {
  color: #7d7d7d;
}
.menu-con .menu-scroll ul li dl dd {
  padding: 0.8em 0 0.8em 0;
}
.menu-con .menu-scroll ul li dl dd a {
  position: relative;
  left: 0;
  display: inline-block;
  color: #2b2b2b;
  background: url(../../images/jt05.png) no-repeat left 0.5em;
  padding-left: 1.5em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 98%;
}
.menu-con .menu-scroll ul li dl dd a:hover {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -o-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
  color: #e83421;
}
.menu-con .menu-dt .menu-scroll ul {
  padding: 1.95em 0 0;
}
.menu-con .menu-dt .menu-scroll ul li dl {
  padding-top: 1.625em;
  width: 86.5%;
}
.menu-con .menu-dt .menu-scroll ul li dl dd {
  padding: 0.8em 0 0 0;
}
.menu-con .mCSB_scrollTools .mCSB_draggerContainer {
  background: #f4f4f4;
  border-radius: 3px;
}
.menu-con .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background: #e83421;
  border-radius: 3px;
}
.menu-con .menu-con-tab {
  display: none;
}
.menu-con.case-menu {
  left: 18.75%;
}
.menu-con.case-menu .menu-ft {
  right: 23.07%;
}
.menu-con.case-menu .menu-scroll {
  margin-right: 23.07%;
}
.menu-con .case-menu-con .menu-scroll ul li {
  width: 50%;
}
.nav-bg {
  position: fixed;
  z-index: 103;
  display: none;
  left: 0;
  top: 0;
  height: 100%;
  right: 0;
  background: rgba(255, 255, 255, 0.5);
}


.er-bn {
  position: relative;
  color: #fff;
}
.er-bn .img {
  padding-bottom: 25.32%;
}
.er-bn .text {
  position: absolute;
  left: 3.85%;
  right: 3.85%;
  bottom: 17%;
}
.er-bn dl dt {
  margin-bottom: 0.6em;
}
.er-bn dl dd {
  opacity: 0.7;
  line-height: 2;
  min-height: 4em;
}
.er-bn .search {
  position: relative;
  background: #fff;
  width: 50.6%;
  border-radius: 1.875em;
}
.er-bn .search .inp {
  padding: 0.5em 5em 0.5em 2.25em;
}
.er-bn .search .inp input {
  background: 0 0;
  width: 100%;
  color: #222;
  border: none;
  float: left;
  height: 2.75em;
  line-height: 2.75em;
}
.er-bn .search .but {
  position: absolute;
  z-index: 3;
  cursor: pointer;
  border: none;
  top: 0;
  right: 0;
  width: 5em;
  height: 100%;
  bottom: 0;
  background: url(../../images/search-but01.png) no-repeat center center;
  background-size: 1.375em 1.375em;
}
.top-search {
  position: absolute;
  top: 4em;
  right: 3.8%;
  z-index: 2;
}
.top-search .search {
  float: left;
  position: relative;
}
.top-search .search {
  border: 1px solid transparent;
  border-radius: 1.1428em;
  background: 0 0;
  width: 0;
  transition: all 0.5s;
}
.top-search .search_active {
  border: 1px solid #fff;
  width: 197px;
}
.top-search .search .inp {
  padding: 0.25em 3em 0.25em 1.25em;
  cursor: pointer;
}
.top-search .search .inp input {
  background: 0 0;
  width: 100%;
  height: 1.71em;
  padding: 0;
  color: #fff;
  border: none;
  float: left;
  line-height: 1.71;
}
.top-search .search .but {
  position: absolute;
  z-index: 3;
  cursor: pointer;
  top: 0;
  border: 0 solid #fff;
  border-radius: 50%;
  right: 0;
  width: 31px;
  height: 31px;
  bottom: 0;
  background: url(../../images/search-but04.png) no-repeat center center;
  background-size: 17px 18px;
}
.top-search .search_active .but {
  border: none;
}
.top-search .hd-member {
  padding-left: 1.625em;
  float: left;
  position: relative;
  z-index: 1;
}
.top-search .hd-member a {
  width: 2.2857em;
  height: 2.2857em;
  border: 0 solid #fff;
  border-radius: 50%;
  display: inline-block;
  background: url(../../images/member-ico02.png) no-repeat center center;
  background-size: 18px 19px;
}
.top-search .inp input::-webkit-input-placeholder,
.top-search .inp textarea::-webkit-input-placeholder {
  color: #fff;
}
.top-search .inp input:-moz-placeholder,
.top-search .inp textarea:-moz-placeholder {
  color: #fff;
}
.top-search .inp input::-moz-placeholder,
.top-search .inp textarea::-moz-placeholder {
  color: #fff;
}
.top-search .inp input:-ms-input-placeholder,
.top-search .inp textarea:-ms-input-placeholder {
  color: #fff;
}
.nrnav-box {
  border-bottom: 1px solid #e4e4e4;
  color: #999;
  padding: 1.87em 0 1.2em;
  position: relative;
}
.nrnav-box span {
  color: #2b2b2b;
}
.nrnav-box a {
  color: #999;
}
.nrnav-box a:hover {
  color: #d70c19;
}
.nrnav-box .nr-nav-right1 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.nrnav-box .nr-nav-right1 > li {
  float: left;
  padding-left: 2.5em;
  width: auto;
}
.nrnav-box .nr-nav-right1 > li > a {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #999;
  padding-bottom: 1.2em;
}
.nrnav-box .nr-nav-right1 > li:first-child {
  padding-left: 0;
}
.nrnav-box .nr-nav-right1 > li > a i {
  width: 0;
  height: 2px;
  background: #e83521;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
.nrnav-box .nr-nav-right1 > li > a.hover,
.nrnav-box .nr-nav-right1 > li > a:hover {
  color: #2b2b2b;
}
.nrnav-box .nr-nav-right1 > li > a.hover i,
body:not(.touch_body) .nrnav-box .nr-nav-right1 > li > a:hover i {
  width: 100%;
  color: #2b2b2b;
}
.nrnav-box .nr-nav-left {
  float: left;
}
.nrnav-box .nr-nar-left2 a,
.nrnav-box .nr-nar-left2 em,
.nrnav-box .nr-nar-left2 span {
  float: left;
}
.nrnav-box .nr-nar-left2 em {
  padding: 0 0.5em;
}
.nrnav-box .nr-nar-left2 .select-box {
  width: auto;
  margin-right: 1em;
  color: #999;
  float: left;
}
.nrnav-box .nr-nar-left2 .select-box dt {
  background: 0 0;
  padding-left: 0;
  line-height: 1.5;
  border-bottom: none;
}
.nrnav-box .nr-nar-left2 .select-box dd {
  width: 15em;
}
.nrnav-box .nr-nar-left2 .select-box dt b {
  padding-right: 30px;
}
.nrnav-box .nr-nar-left2 .select-box dd {
  box-shadow: none;
  border: none;
  padding-top: 8px;
}
.nrnav-box .nr-nar-left2 .select-box dd a {
  display: block;
  line-height: 1.5;
  position: relative;
  float: none;
  margin: 0 1.1875em;
  padding: 0 0.375em;
}
.nrnav-box .nr-nar-left2 .select-box dd a span {
  display: block;
  padding: 0.8125em 0;
  float: none;
  line-height: 1.5;
}
.nrnav-box .nr-nar-left2 .select-box dd .con {
  background: 0 0;
  border: 1px solid #e4e4e4;
}
.nrnav-box .nr-nar-left2 .select-box dd a .box_Arrow2 {
  position: absolute;
  right: 0;
  top: 50%;
  border-color: #e83521;
}
.nrnav-box .nr-nar-left2 .select-box dd a:hover span {
  color: #e83521;
}
.nrnav-box .nr-nav-left label {
  display: inline-block;
  background: #fdeae8;
  line-height: 2.1428em;
  border-radius: 1.0714em;
  padding: 0 1.1428em;
  margin-left: 1.4285em;
  color: #e93421;
}
.aside {
  position: fixed;
  height: 14.75em;
  right: 65px;
  bottom: 2%;
  z-index: 99;
  margin-top: -4.375em;
}
.aside .btn {
  position: absolute;
  right: 0;
  bottom: 0;
}
.aside .btn a {
  background: #e83421;
  width: 10.4285em;
  color: #fff;
  display: inline-block;
  border-radius: 1.4285em;
  padding: 0 1.5714em 0 2.4285em;
}
.aside .btn a span {
  display: inline-block;
  padding-right: 1.5714em;
  position: relative;
  line-height: 2.7857;
}
.aside .btn a span i {
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 10px;
  margin-top: -5px;
  right: 0;
  top: 50%;
  background: url(../../images/jt04.png) no-repeat right center;
}
.aside .btn a:hover span i {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -o-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}
.aside .list {
  width: 20em;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  display: none;
}
.aside .list .title {
  background: #e83421;
  position: relative;
  color: #fff;
  border-radius: 3px 3px 0 0;
  padding: 0 1.25em;
  line-height: 3;
}
.aside .list .title i {
  position: absolute;
  cursor: pointer;
  width: 3.5em;
  top: 0;
  right: 0;
  height: 100%;
  bottom: 0;
}
.aside .list .title i em {
  position: absolute;
  width: 1em;
  left: 1.25em;
  height: 2px;
  background: #fff;
  top: 50%;
  margin-top: -1px;
}
.aside .list h2 {
  padding: 0 1.25em;
  cursor: pointer;
  position: relative;
  line-height: 3;
  background: #f9f9f9;
  color: #2b2b2b;
}
.aside .list h2 i {
  background: #f9f9f9;
  top: 50%;
  right: 1.25em;
}
.aside .list .con {
  color: #7d7d7d;
  line-height: 2;
  display: none;
  padding: 0 1.25em;
  padding-bottom: 1.25em;
}
.aside .list .con label {
  color: #e83421;
}
.aside .list .con a {
  color: #e83421;
}
.aside .list .con a:hover {
  text-decoration: underline;
}
.aside .list .apply {
  padding: 1em 0;
}
.aside .list .apply a {
  color: #e83421;
}
.aside .list .apply a:hover {
  text-decoration: none;
}
.aside .list ul li.on h2 i {
  -moz-transform: rotate(135deg);
  background: #fff;
  border-color: #e83421;
  -webkit-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.aside .list ul li.on h2,
.aside .list ul li:hover h2 {
  color: #e83421;
  background: #fff;
}
.go_top {
  position: fixed;
  bottom: 2%;
  right: 0.8%;
  cursor: pointer;
  z-index: 99;
  display: none;
}
.go_top img {
  width: 38px;
}
.nrnav-box {
  background: #fff;
}
.nrnav-box.active {
  position: fixed;
  z-index: 102;
  left: 18.75%;
  right: 0;
  padding-left: 3.125%;
  padding-right: 3.125%;
}
.nrnav-box.active .nr-nav-right1 {
  right: 3.85%;
}
.video_place {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999999999;
}
.video_con {
  z-index: 2;
  width: 900px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.lt9 .video_con {
  top: 20%;
  left: 10%;
  background: #000;
}
.video_con video {
  width: 100%;
  height: 100%;
}
.video_close_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -264px -3.875em 0 450px;
  cursor: pointer;
}
.video_close_btn span {
  width: 2.875em;
  float: left;
  position: relative;
  top: -3.625em;
  height: 2.875em;
  background: url(../../images/close.png) no-repeat center center;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all 0.5s;
}
.video_close_btn:hover span {
  transform: rotate(90deg);
}
.video_place .con {
  position: relative;
}
.video_place p {
  position: absolute;
  top: 50%;
  margin-top: 258px;
  left: 50%;
  margin-left: -450px;
  width: 900px;
  padding: 0.85em 0;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.img_dou img {
  position: absolute;
  width: 101%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.img_dou:hover a {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.img_dou:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.document-bn {
  position: relative;
  margin-top: 1.25em;
  display: none;
}
.document-bn .img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 45%;
}
.document-bn .img .jt {
  position: absolute;
  right: 0;
  top: 0;
  width: 3.75em;
  bottom: 0;
  background: url(../../images/jt16.png) no-repeat right center;
  background-size: auto 100%;
}
.document-bn .text {
  position: relative;
  padding: 2.25em 1.3125em 1.75em 3.3125em;
  background: #393939;
  color: #fff;
  float: right;
  width: 55%;
}
.document-bn .text .more {
  margin-top: 1.25em;
}
.document-bn .text .more a i {
  display: inline-block;
  margin-left: 1em;
  position: relative;
  top: 2px;
}
.document-bn .text .con {
  margin-top: 0.325em;
}
@media only screen and (max-height: 900px) and (min-width: 1000px) {
 
  .menu-nav .title {
    margin-top: 22.5%;
  }
  .menu-nav ul > li > p > a {
    line-height: 3.25;
  }
  .menu-con {
    padding-bottom: 15.75em;
  }
  .menu-con .menu-ft .con-wrap {
    margin: 1em 5% 4.0625em;
  }
  .menu-con .menu-scroll ul li dl dd {
    padding: 0.4em 0 0.4em 0;
  }
}
@media only screen and (max-height: 800px) and (min-width: 1000px) {
  
  .menu-nav .title {
    margin-top: 20%;
  }
  .menu-nav .ns-recommend {
    bottom: 2em;
  }
}
@media only screen and (max-height: 700px) and (min-width: 1000px) {

  .menu-nav .title {
    margin-top: 15%;
  }
  .menu-nav .ns-recommend .time {
    padding-top: 1.5em;
  }
}
@media only screen and (max-height: 660px) and (min-width: 1000px) {
  
  .menu-nav ul > li > p > a {
    line-height: 3;
  }
  .menu-nav .title {
    margin-top: 10%;
  }
  .video_close_btn {
    left: auto;
    top: auto;
    bottom: 85%;
    right: 10%;
  }
  .video_close_btn span {
    top: 0;
  }
  .video_place p {
    top: 85%;
    left: 10%;
    width: 80%;
    margin-top: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 1400px) {
  
  .top-search {
    top: 3em;
  }
}
@media only screen and (max-height: 580px) and (min-width: 1000px) {

  .header::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  .header::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 6px;
  }
  .header::-webkit-scrollbar-track {
    background: 0 0;
  }
  .menu-nav ul > li > p > a {
    line-height: 2.75;
  }
  .menu-nav .ns-recommend {
    display: none;
  }
  .menu-nav .ns-recommend .con {
    margin-top: 0.5em;
  }
  .menu-nav .ns-recommend .time {
    padding-top: 1em;
  }
}
@media only screen and (max-width: 1900px) {
  .menu-con .menu-ft .menu-right ul li .con {
    padding: 1em;
  }
  .menu-con .menu-ft .menu-left .text {
    padding: 1em;
  }
}
@media only screen and (max-width: 1800px) {
 
}
@media only screen and (max-width: 1600px) {
  .menu-con .menu-scroll ul li {
    float: left;
    width: 50%;
  }
 
  .menu-con .menu-ft .menu-right ul li span em {
    display: none;
  }
}
@media only screen and (max-width: 1340px) {
 
  .img-video .play i,
  .img-video .play2 i,
  .in-banner .video_play img,
  .pro-sec01 .img-video .play i {
    width: 55px;
    height: 55px;
  }
  .play_button {
    font-size: 16px;
  }
  .case-pic-list ul {
    margin: 0 -1em;
  }
  .case-pic-list ul li .text {
    padding: 0 1em;
  }
  .solution-pic-list ul {
    margin: 0 -1em;
  }
  .solution-pic-list ul li .con {
    margin: 0 0.125em;
  }

}
@media only screen and (max-width: 1280px) {
  .pic-list .text {
    padding: 1.4375em 1em 1.875em;
  }
}
@media only screen and (max-width: 1240px) {
 
}
@media only screen and (max-width: 1160px) {

}
@media only screen and (max-width: 1100px) {
  .aside {
    right: 60px;
  }
  .menu-con .menu-ft .menu-right ul li .con {
    padding: 0.5em;
  }
  .menu-con .menu-ft .menu-left .text {
    padding: 0.5em;
  }
}
@media only screen and (max-width: 980px) {
  .video_con {
    width: 80%;
  }
  .video_close_btn {
    left: auto;
    top: auto;
    bottom: 75%;
    right: 16%;
  }
  .video_close_btn span {
    top: 0;
  }
  .video_place p {
    top: 80%;
    left: 10%;
    width: 80%;
    margin-top: 0;
    margin-left: 0;
  }
}
@media only screen and (max-width: 900px) {
  
}
@media only screen and (max-width: 767px) {
  .video_close_btn span {
    top: -8.625em;
  }

}
.menu-con .fanhui3,
.menu-con .fanhui4,
.menu-nav .title .fanhui {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .nav_phone,
  .nav_phone_btn {
    display: block;
    cursor: pointer;
  }
  .nav_phone_btn {
    position: absolute;
    z-index: 102;
    top: 50%;
    margin-top: -18px;
    left: 4.125em;
    transition: 0.3s all;
    -webkit-transition: 0.3s all;
    -moz-transition: 0.3s all;
    -o-transition: 0.3s all;
    -ms-transition: 0.3s all;
  }
  .nav_phone_btn {
    display: block;
    cursor: pointer;
    height: 36px;
  }
  .nav_phone_btn span {
    position: relative;
    font-size: 0;
    width: 28px;
    height: 2px;
    background-color: #e83421;
    display: inline-block;
    transition: all 250ms ease-out;
    -webkit-transition: all 250ms ease-out;
  }
  .nav_phone_btn span:after,
  .nav_phone_btn span:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #e83421;
    left: 0;
    transition: all 250ms ease-out;
    -webkit-transition: all 250ms ease-out;
  }
  .nav_phone_btn span:before {
    top: -10px;
  }
  .nav_phone_btn span:after {
    top: 10px;
  }
  .visible_nav.nav_phone_btn span {
    background-color: transparent;
  }
  .visible_nav.nav_phone_btn span:before {
    left: 0;
    top: 0;
    transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
  }
  .visible_nav.nav_phone_btn span:after {
    top: 0;
    left: 0;
    transform: rotateZ(-45deg);
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
  }
 

  .menu-nav {
    z-index: 107;
    left: 100%;
    width: 100%;
    top: 4.25em;
    height: auto;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
  }
  .menu-nav .title {
    margin-top: 0;
    font-size: 24px;
  }
  .menu-nav .title a {
    padding-left: 5%;
  }
  .menu-nav ul > li > p > a {
    padding: 0 5%;
    font-size: 20px;
  }
  .menu-nav.on {
    left: 0;
  }
  .menu-nav ul > li > p > a > em {
    right: 5%;
  }
  .menu-con .fanhui3,
  .menu-con .fanhui4,
  .menu-nav .title .fanhui {
    display: block;
    background: #f4f4f4;
    margin-bottom: 16px;
  }
  .menu-con .fanhui3 img,
  .menu-con .fanhui4 img,
  .menu-nav .title .fanhui img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    left: -6px;
    margin-top: 1px;
  }
  .menu-con .fanhui3 span,
  .menu-con .fanhui4 span {
    line-height: 3;
    display: inline-block;
    position: relative;
    color: #2b2b2b;
    padding-right: 1.8em;
    padding-left: 40px;
  }
  .menu-con .fanhui3,
  .menu-con .fanhui4 {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    padding-left: 5%;
  }
  .menu-nav .title .fanhui span {
    padding-left: 40px;
  }
  .menu-con {
    z-index: 107;
    padding-top: 2em;
    padding-bottom: 10em;
    left: 100%;
    width: 100%;
    height: auto;
    display: block;
    top: 4.25em;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
  }
  .menu-con.on {
    left: 0;
  }
  .menu-con .menu-scroll {
    top: 5em;
    bottom: 9em;
  }
  .menu-con .menu-ft .con-wrap {
    padding: 1em 0;
  }
  .menu-con .menu-ft .apply-btn a {
    display: block;
    font-size: 18px;
    padding: 0 2.5em;
    background: #6f6f6f;
    position: relative;
    line-height: 3.3;
    float: left;
    width: 100%;
  }
  .menu-con .menu-ft .apply-btn a span {
    display: inline-block;
    float: left;
    line-height: 3.3;
    padding-right: 2em;
    position: relative;
  }
  .menu-con .menu-ft .apply-btn a span i {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -5px;
    width: 15px;
    height: 10px;
    background: url(../../images/jt04.png) no-repeat center center;
  }
  .menu-con .menu-ft .product-btn a {
    display: block;
    font-size: 18px;
    color: #e83421;
    padding: 0 2.5em;
    background: #ededed;
    position: relative;
    line-height: 3.3;
    float: left;
    width: 100%;
  }
  .menu-con .menu-ft .product-btn a span {
    display: inline-block;
    float: left;
    line-height: 3.3;
    padding-right: 2em;
    position: relative;
  }
  .menu-con .menu-ft .product-btn a span i {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -5px;
    width: 15px;
    height: 10px;
    background: url(../../images/jt05.png) no-repeat center center;
  }
  .menu-nav .ns-recommend {
    display: none;
  }
  .menu-con .txt-tit p {
    display: none;
  }
  .menu-con .menu-scroll ul li {
    width: 100%;
  }
  .menu-con .case-menu-con .menu-scroll ul li {
    width: 100%;
  }
  .menu-con .menu-scroll ul li dl dd a {
    background-position: left 0.45em;
  }
  .menu-con .menu-dt .menu-scroll ul,
  .menu-con .menu-scroll ul {
    padding: 0;
  }
  .menu-con .menu-close {
    display: none;
  }
  .main {
    padding: 0;
    margin-top: 3.5em;
  }

  .headeractive {
    transform: translateY(-100%);
    box-shadow: none;
  }
  @keyframes headeractive {
    from {
      opacity: 0;
      top: -100%;
    }
    to {
      opacity: 1;
      top: 0;
    }
  }
  .nrnav-box.active {
    left: 0;
    right: 0;
  }
  .scrollHeader .header.headeractive {
    box-shadow: none;
  }
  .er_bn .img {
    padding-bottom: 30%;
  }
  .er_bn .tit {
    left: 13.66%;
    right: 13.66%;
  }
  .er_bn .tit i {
    width: 9.163%;
  }
  #loginicon img {
    position: absolute;
    top: 16px;
    right: 2.1em;
  }

}
@media only screen and (max-width: 800px) {
  .main {
    margin-top: 50px;
  }

 
  
  .nav_phone_btn span {
    width: 24px;
  }
  .nav_phone_btn span:after {
    top: 7px;
  }
  .nav_phone_btn span:before {
    top: -7px;
  }
 
}
@media only screen and (min-width: 768px) {
  .case-pic-list ul li {
    height: 200px;
  }
}
.zhongwen {
  display: none;
}
@media only screen and (max-width: 767px) {

  .aside .list ul li:hover h2 {
    background: #f9f9f9;
  }
  .aside .list ul li.on h2 {
    background: #fff;
  }
  .pic-list ul li .con {
    padding-bottom: 7.375em;
  }
  .pic-list .img {
    transform: scale(0.997);
  }
  .pic-list .img-video .img {
    padding-bottom: 0;
  }
  .pic-list .img-video .img img {
    position: relative;
  }
 
  .zhongwen {
    display: block;
  }
  .menu-con .fanhui3 img,
  .menu-con .fanhui4 img,
  .menu-nav .title .fanhui img {
    width: 24px;
  }
  .menu-nav .title .fanhui span {
    padding-left: 32px;
  }
  .menu-con .fanhui3 span,
  .menu-con .fanhui4 span {
    padding-left: 32px;
  }
  .er-bn dl dd {
    line-height: 1.7;
  }
  .wrapper {
    overflow: hidden;
  }
  .top-search {
    display: none;
  }
  .nav_phone_btn {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }
 
  .menu-nav .title {
    font-size: 18px;
  }
  .menu-nav ul > li > p > a {
    font-size: 16px;
  }
  .menu-con .menu-ft .apply-btn a {
    font-size: 15px;
  }
  .menu-con .menu-ft .product-btn a {
    font-size: 15px;
  }
 
  .aside .btn a span i {
    background: url(../../images/jt004.png) no-repeat right center;
    background-size: auto 10px;
  }
  .in-sec04 .sec-tabcon ul li .con i,
  .jt-more a i {
    background: url(../../images/jt005.png) no-repeat right center;
    background-size: auto 10px;
  }
  .nrnav-box .nr-nav-right1 > li {
    padding-left: 1.5em;
  }
  .nrnav-box .nr-nav-left {
    padding-bottom: 0.5em;
  }
  .nrnav-box .nr-nav-right1 {
    position: relative;
    float: left;
    width: 100%;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .nrnav-box .nr-nav-right1 > li {
    padding: 0 2em 0 0;
    white-space: nowrap;
  }
  .nrnav-box .nr-nav-right1 > li > a {
    padding: 0.5em 0;
    font-size: 14px;
  }
  .nrnav-box {
    padding-bottom: 0;
  }
  .nrnav-box.active {
    left: 0;
    right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  .nrnav-box.active .nr-nav-right1 {
    right: 0;
  }
  .nrnav-box .nr-nav-right1 > li:last-child {
    padding-right: 0;
  }
  .er-bn .img {
    padding-bottom: 60%;
  }
  .er-bn dl dd br {
    display: none;
  }
  .pic-list {
    padding-bottom: 2.5em;
  }
  .pic-list .text {
    padding: 1em;
  }
  .pic-list ul li {
    padding: 1.875em 0 0;
  }
  .case-pic-list {
    padding-top: 2.5em;
    padding-left: 0;
  }
  .case-pic-list .in-title {
    position: relative;
    top: 0;
  }
  .case-pic-list ul {
    margin: 0;
    padding-top: 2em;
    padding-bottom: 0.5em;
  }
  .case-pic-list ul li {
    width: 100%;
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom: 1px solid #dcdcdc;
  }
  .case-pic-list ul li:last-child {
    border-bottom: 0;
  }
  .case-pic-list ul li .text {
    padding: 0;
  }
  .solution-pic-list {
    padding-top: 2.5em;
    padding-left: 0;
  }
  .solution-pic-list .in-title {
    position: relative;
    top: 0;
  }
  .solution-pic-list ul {
    padding-top: 1em;
  }
  .solution-pic-list ul li {
    width: 100%;
    margin-bottom: 0;
  }
  .solution-pic-list ul li .txt {
    height: auto;
  }
  .pic-tab-nav {
    width: 100%;
    left: -20px;
    right: -20px;
  }
  .pic-tab-nav .nr-nav-right1 {
    width: 100%;
    overflow-x: scroll;
    display: flex;
    border-bottom: 1px solid #e4e4e4;
  }
  .pic-tab-nav .nr-nav-right1 > li > a {
    padding: 0.5em 1em;
  }
  .pic-tab-nav .nr-nav-right1 > li {
    display: inline-block;
    border-bottom: 0;
    border-top: none;
    white-space: nowrap;
  }
  .pic-tab-nav .nr-nav-right1 > li > a i {
    display: none;
  }
  .document-bn .img {
    position: relative;
    width: 100%;
    padding-bottom: 40%;
  }
  .document-bn .img .jt {
    display: none;
  }
  .document-bn .text {
    width: 100%;
    padding: 2em;
  }
}
.arial_app {
  display: none;
  width: 100%;
}
.app_f {
  display: none;
}
@media only screen and (max-width: 650px) {
  .video_place p {
    top: 7%;
  }
  .video_close_btn {
    bottom: 7%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin: 0;
  }
  .arial_app .nr-nav-right1 > li {
    padding: 0 0.5em 0 0;
  }
  .app_f {
    display: block;
  }
  .app_f .hd-share {
    padding: 0 16.667%;
  }
  .app_f .hd-share ul {
    padding-top: 1.375em;
    text-align: center;
  }
  .app_f .hd-share ul li {
    position: relative;
    float: none;
    display: inline-block;
    margin-right: 2em;
  }
  .app_f .hd-share ul li a {
    width: 28px;
    height: 28px;
    display: inline-block;
    border-radius: 3px;
  }
  .app_f .hd-share ul li.li01 a {
    background: url(../../images/footer-wx.png) no-repeat center bottom;
    background-size: 100% 200%;
  }
  .app_f .hd-share ul li.li02 a {
    background: url(../../images/footer-weibo.png) no-repeat center bottom;
    background-size: 100% 200%;
  }
  .app_f .hd-share ul li.li03 a {
    background: url(../../images/footer-linkedin.png) no-repeat center bottom;
    background-size: 100% 206%;
  }
  .app_f .hd-share .code {
    position: absolute;
    z-index: -2;
    opacity: 0;
    left: 1.75em;
    padding-top: 0.6875em;
    top: 100%;
    margin-top: 10px;
    left: 50%;
    margin-left: -3.9375em;
  }
  .app_f .hd-share .code .con {
    border: 1px solid #e4e4e4;
    padding: 0.625em;
    background: #fff;
  }
  .app_f .hd-share .code .con img {
    width: 6.625em;
    position: relative;
    z-index: 3;
  }
  .app_f .hd-share ul li:hover a {
    background-position: center top;
  }
  .app_f .hd-share ul li:hover .code {
    z-index: 2;
    opacity: 1;
    margin-top: 0;
  }
  .app_f .hd-share ul li:hover {
    z-index: 3;
  }
}
.aside_app {
  display: none !important;
}
@media only screen and (max-width: 500px) {

  .menu-con .menu-ft .apply-btn a span i {
    right: 5px;
    font-style: normal;
  }
  .menu-con .menu-scroll {
    bottom: 11em;
  }
  .apply-btn-new {
    margin: 6px 0;
  }
  .apply-btn-new > a > i {
    margin-top: 11px;
    display: block;
    line-height: 1.5;
    font-style: normal;
    padding-bottom: 5px;
  }
  .aside_pc {
    display: none !important;
  }
  .aside_app {
    display: block !important;
  }
  .aside .aside_app a {
    background: #e83421;
    width: 38px;
    color: #fff;
    display: inline-block;
    border-radius: 50%;
    padding: 0;
  }
  .aside .aside_app a img {
    width: 100%;
  }
  
  .menu-nav .title {
    font-size: 16px;
  }
  .menu-nav ul > li > p > a {
    font-size: 15px;
  }
  .menu-con .menu-ft .apply-btn a {
    font-size: 14px;
  }
  .menu-con .menu-ft .product-btn a {
    font-size: 14px;
  }
 
  .go_top {
    bottom: 12px;
    right: 3.125%;
  }
  .aside {
    right: 3.125%;
    bottom: 54px;
  }
  .pic-list .img a img {
    position: relative;
  }
  .pic-list .img a,
  .tech-index-sec02 .pic-list .img a {
    padding-bottom: 0;
  }
  .img-video .play i,
  .img-video .play2 i,
  .pro-sec01 .img-video .play i {
    width: 44px;
    height: 44px;
  }
  .play_button {
    font-size: 14px;
  }
}
@media only screen and (max-width: 414px) {
 
  .menu-nav .title {
    font-size: 15px;
  }
  .menu-nav ul > li > p > a {
    font-size: 14px;
  }
  .menu-con .menu-ft .apply-btn a {
    font-size: 13px;
  }
  .menu-con .menu-ft .product-btn a {
    font-size: 13px;
  }
  
}
@media only screen and (max-width: 375px) {
  
}
@media only screen and (max-width: 340px) {
  .menu-con .menu-scroll {
    bottom: 16em;
  }
  .video_close_btn {
    margin-right: -2.875em;
  }
  .nrnav-box .nr-nav-right1 > li > a {
    font-size: 12px;
  }
  .apply-btn-new > a > i {
    float: left;
    width: 100%;
    font-style: normal;
    margin-top: 0 !important;
  }
  .apply-btn-new > a > span {
    line-height: 2.5 !important;
  }
}
#loginicon_app {
  display: none;
}
#loginicon span,
#loginicon_app span {
  display: inline-block;
  width: 78%;
  float: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#loginicon img,
#loginicon_app img {
  width: 13px;
  float: right;
  position: relative;
  top: 4px;
  cursor: pointer;
}
@media only screen and (max-width: 1000px) {
  #loginicon_app {
    display: block;
    width: 100%;
    line-height: 3em;
  }
  #loginicon_app img {
    position: absolute;
    top: 16px;
    right: 2.1em;
  }
}
#right_login_icon span {
  position: relative;
  top: 6px;
}
.detail_content_12j ul,
ol {
  list-style-position: inside !important;
}
.detail_content_12j ul li,
ol li {
  list-style-type: inherit !important;
}
.detail_content_12j ul p,
ol p {
  display: inline-block !important;
}
.detail_content_12j address,
.detail_content_12j cite,
.detail_content_12j em,
.detail_content_12j i {
  font-style: italic !important;
}
.detail_content_12j h1 {
  font-size: xx-large !important;
}
.detail_content_12j h2 {
  font-size: x-large !important;
}
.detail_content_12j h3 {
  font-size: large !important;
}
.detail_content_12j h4 {
  font-size: medium !important;
}
.detail_content_12j h5 {
  font-size: small !important;
}
.detail_content_12j h6 {
  font-size: x-small !important;
}
.detail_content_12j a {
  color: #333;
}
