
/* ===== animate.css ===== */
@charset "UTF-8";

/*!Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2013 Daniel Eden*/

.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, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    -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, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

  40%,
  43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0)
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    -ms-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);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

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

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-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, .75, 1);
    transform: scale3d(1.25, .75, 1)
  }

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

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

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

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

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

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    -ms-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1)
  }

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

  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    -ms-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1)
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    -ms-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1)
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    -ms-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1)
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-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);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-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);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg)
  }

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

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

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

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .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);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }

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

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-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);
    -ms-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);
    -ms-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;
    -ms-transform: none;
    transform: none
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
  }

  100% {
    -webkit-transform: none;
    -ms-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, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  }

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

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

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.97, .97, .97);
    transform: scale3d(.97, .97, .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, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

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

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    -ms-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }

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

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    -ms-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97)
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
  }
}

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

@-webkit-keyframes bounceInDown {

  0%,
  100%,
  60%,
  75%,
  90% {
    -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .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, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  }

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

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

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

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

  100% {
    -webkit-transform: none;
    -ms-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, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .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, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  }

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

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

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

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

  100% {
    -webkit-transform: none;
    -ms-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, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .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, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  }

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

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

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

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

  100% {
    -webkit-transform: none;
    -ms-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, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .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, .61, .355, 1);
    transition-timing-function: cubic-bezier(0.215, .61, .355, 1)
  }

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

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

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

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

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-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(.9, .9, .9);
    transform: scale3d(.9, .9, .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(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
}

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

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

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: .75s;
  animation-duration: .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);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    -ms-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);
    -ms-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0)
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    -ms-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);
    -ms-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0)
  }

  100% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    -ms-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);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    -ms-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);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-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(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .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);
    -ms-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);
    -ms-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);
    -ms-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(.95, .95, .95);
    -ms-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
  }

  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px)
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-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);
    -ms-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);
    -ms-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);
    -ms-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);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
  }

  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px)
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-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);
    -ms-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-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);
    -ms-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: .75s;
  animation-duration: .75s;
  -webkit-backface-visibility: visible !important;
  -ms-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);
    -ms-transform: perspective(400px);
    transform: perspective(400px)
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    -ms-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);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-animation-duration: .75s;
  animation-duration: .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);
    -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0
  }

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

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

  100% {
    -webkit-transform: none;
    -ms-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);
    -ms-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;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    -ms-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0
  }

  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    -ms-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;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-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;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-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;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    -ms-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-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;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    -ms-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-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;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 1
  }

  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    -ms-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: rotate(0, 0, 1, 45deg);
    transform: rotate(0, 0, 1, 45deg);
    opacity: 0
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0, 0, 1, 45deg);
    -ms-transform: rotate(0, 0, 1, 45deg);
    transform: rotate(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;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-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;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-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;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    -ms-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;
    -ms-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);
    -ms-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    -ms-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);
    -ms-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    -ms-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);
    -ms-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);
    -ms-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;
    -ms-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);
    -ms-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(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  50% {
    opacity: 1
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  50% {
    opacity: 1
  }
}

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
  }
}

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

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
  }
}

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

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
  }
}

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

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
  }
}

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

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1
  }

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

  100% {
    opacity: 0
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

  100% {
    opacity: 0
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
  }
}

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

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

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    -ms-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    -ms-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(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    -ms-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    -ms-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(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
  }
}

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


/*animate补充动画*/

@keyframes fadeInLeftSmall {
  from {
    opacity: 0;
    transform: translate3d(-1rem, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftSmall {
  animation-name: fadeInLeftSmall;
}

@keyframes fadeInRightSmall {
  from {
    opacity: 0;
    transform: translate3d(1.5rem, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightSmall {
  animation-name: fadeInRightSmall;
}

@keyframes fadeInDownSmall {
  from {
    opacity: 0;
    transform: translate3d(0%, -10px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownSmall {
  animation-name: fadeInDownSmall;
}

@keyframes fadeOutDownSmall {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 0;
    transform: translate3d(0%, 10px, 0);
  }
}

.fadeOutDownSmall {
  animation-name: fadeOutDownSmall;
}

@keyframes fadeOutRightSmall {
  from {
    opacity: 1;
    transform: none;
  }

  to {
    opacity: 0;
    transform: translate3d(50px, 0px, 0);
  }
}

.fadeOutRightSmall {
  animation-name: fadeOutRightSmall;
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translate3d(0%, 30px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpSmall {
  animation-name: fadeInUpSmall;
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    backface-visibility: hidden;
  }

  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    backface-visibility: hidden;
  }
}

.scaleIn {
  animation-name: scaleIn;
}

.getGray {
  -webkit-filter: grayscale(100%);
  /* CSS3 filter方式，webkit内核方式，firefox外的绝大部分的现代浏览器*/
  -moz-filter: grayscale(100%);
  /* 目前没有实现 */
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  /* CSS3 filter方式，标准写法*/
  /*filter: url(../fonts/filters.svg#grayscale);*/
  /* Firefox 4+ */
  filter: gray;
  /* IE 6-9 */
}

.img-ani {
  transform: scaleX(0.5) scaleY(0.5) scaleZ(1) translate(0, 50%);
  transition: all .9s ease;
  opacity: 0;
}

.img-ani .img-child {
  transform: scaleX(1.5) scaleY(1.5) scaleZ(1);
  transition: all 1.5s ease;
}

.img-ani.go {
  transform: scaleX(1) scaleY(1) scaleZ(1) translate(0);
  opacity: 1;
}

.img-ani.go .img-child {
  transform: scaleX(1) scaleY(1) scaleZ(1) translate(0);
}

@keyframes Tmouse {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(12px);
    -moz-transform: translateY(-12px);
    -ms-transform: translateY(-12px);
    -o-transform: translateY(-12px);
    transform: translateY(-12px);
  }
}

@keyframes wave {
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop1 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loop2 {
  0% {
    transform: rotate(40deg);
  }

  100% {
    transform: rotate(400deg);
  }
}

@keyframes loop3 {
  0% {
    transform: rotate(80deg);
  }

  100% {
    transform: rotate(440deg);
  }
}

@keyframes loop4 {
  0% {
    transform: rotate(-30deg);
  }

  100% {
    transform: rotate(330deg);
  }
}

@keyframes fn3 {
  0% {
    opacity: 0;
    transform: matrix(1, 0.1, 0, 1, 0, 10);
  }

  100% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}

.fn3 {
  transform-origin: 0 50%;
  animation: fn3 1.2s cubic-bezier(0.49, 0.54, 0.16, 1);
  animation-fill-mode: both;
}


/* --------------------------------

Keyframes

-------------------------------- */

@-webkit-keyframes cd-reveal-left {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes cd-reveal-left {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes cd-reveal-right {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes cd-reveal-right {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes cd-hide-left {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes cd-hide-left {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes cd-hide-right {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes cd-hide-right {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes cd-clicked {

  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

@keyframes cd-clicked {

  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

@keyframes cir_right {
  from {
    clip-path: circle(12vw at 112% 50%);
  }

  to {
    clip-path: circle(12vw at 102% 50%);
  }
}

@keyframes cir_left {
  from {
    clip-path: circle(12vw at -12% 50%);
  }

  to {
    clip-path: circle(12vw at -2% 50%);
  }
}

@keyframes banner_in {
  0% {
    clip-path: ellipse(50% 50% at 50% 150%);
  }

  100% {
    clip-path: ellipse(100% 180% at 50% 150%);
  }
}

@keyframes banner_out {
  0% {
    clip-path: ellipse(100% 180% at 50% 150%);
  }

  100% {
    clip-path: ellipse(50% 50% at 50% 150%);
  }
}

@keyframes banner_appIn {
  0% {
    clip-path: ellipse(100% 50% at 50% 150%);
  }

  100% {
    clip-path: ellipse(180% 180% at 50% 150%);
  }
}

@keyframes banner_appOut {
  0% {
    clip-path: ellipse(180% 180% at 50% 150%);
  }

  100% {
    clip-path: ellipse(100% 50% at 50% 150%);
  }
}

@keyframes row5_in {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes r5_in {
  0% {
    transform: translate3d(-70vw, 36vw, 0) scale(1);
  }

  50% {
    transform: translate3d(-14vw, 6vw, 0) scale(1);
  }

  100% {
    transform: translate3d(-14vw, 6vw, 0) scale(3);
  }
}

@keyframes r5_out {
  0% {
    transform: translate3d(-14vw, 6vw, 0) scale(3);
  }

  50% {
    transform: translate3d(-14vw, 6vw, 0) scale(1);
  }

  100% {
    transform: translate3d(-70vw, 36vw, 0) scale(1);
  }
}

@keyframes slider {
  0% {
    opacity: 0;
    margin-left: -0.1rem;
  }

  100% {
    opacity: 1;
    margin-left: 0;
  }
}

@keyframes scrFn {
  0% {
    transform: translate3d(50vw, 42vh, 0) scale(0.9) rotate(0);
  }

  30% {
    transform: translate3d(50vw, 42vh, 0) scale(9) rotate(0);
  }

  100% {
    transform: translate3d(50vw, 42vh, 0) scale(54) rotate(20deg);
  }
}

@keyframes aboutFn {
  0% {
    -webkit-mask-size: 45.8%;
    -webkit-mask-position: 50% 40%;
  }

  30% {
    -webkit-mask-size: 458%;
    -webkit-mask-position: 50% 40%;
  }

  100% {
    -webkit-mask-size: 2738%;
    -webkit-mask-position: 52% 52%;
  }
}

@keyframes scrImg {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    backface-visibility: hidden;
  }

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    backface-visibility: hidden;
  }
}

@keyframes scrOut {
  0% {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    opacity: 1;
  }

  12% {
    transform: translate3d(0, 20px, 0);
    -webkit-transform: translate3d(0, 20px, 0);
    -moz-transform: translate3d(0, 20px, 0);
    -o-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    backface-visibility: hidden;
    opacity: 0;
  }

  100% {
    transform: translate3d(0, 20px, 0);
    -webkit-transform: translate3d(0, 20px, 0);
    -moz-transform: translate3d(0, 20px, 0);
    -o-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    backface-visibility: hidden;
    opacity: 0;
  }
}

@keyframes scrP1 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    -moz-transform: translate3d(0, 0, 0) scale(1);
    -o-transform: translate3d(0, 0, 0) scale(1);
    -ms-transform: translate3d(0, 0, 0) scale(1);
    backface-visibility: hidden;
    opacity: 1;
  }

  8% {
    transform: translate3d(-5px, -7px, 0) scale(1.05);
    -webkit-transform: translate3d(-5px, -7px, 0) scale(1.05);
    -moz-transform: translate3d(-5px, -7px, 0) scale(1.05);
    -o-transform: translate3d(-5px, -7px, 0) scale(1.05);
    -ms-transform: translate3d(-5px, -7px, 0) scale(1.05);
    backface-visibility: hidden;
    opacity: 0;
  }

  100% {
    transform: translate3d(-5px, -7px, 0) scale(1.05);
    -webkit-transform: translate3d(-5px, -7px, 0) scale(1.05);
    -moz-transform: translate3d(-5px, -7px, 0) scale(1.05);
    -o-transform: translate3d(-5px, -7px, 0) scale(1.05);
    -ms-transform: translate3d(-5px, -7px, 0) scale(1.05);
    backface-visibility: hidden;
    opacity: 0;
  }
}

@keyframes scrP2 {
  0% {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    opacity: 1;
  }

  10% {
    transform: translate3d(7px, 5px, 0) scale(1.05);
    -webkit-transform: translate3d(7px, 5px, 0) scale(1.05);
    -moz-transform: translate3d(7px, 5px, 0) scale(1.05);
    -o-transform: translate3d(7px, 5px, 0) scale(1.05);
    -ms-transform: translate3d(7px, 5px, 0) scale(1.05);
    backface-visibility: hidden;
    opacity: 0;
  }

  100% {
    transform: translate3d(7px, 5px, 0) scale(1.05);
    -webkit-transform: translate3d(7px, 5px, 0) scale(1.05);
    -moz-transform: translate3d(7px, 5px, 0) scale(1.05);
    -o-transform: translate3d(7px, 5px, 0) scale(1.05);
    -ms-transform: translate3d(7px, 5px, 0) scale(1.05);
    backface-visibility: hidden;
    opacity: 0;
  }
}

@keyframes scrP3 {
  0% {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    opacity: 1;
  }

  12% {
    transform: translate3d(-7px, -5px, 0) scale(1.05);
    -webkit-transform: translate3d(-7px, -5px, 0) scale(1.05);
    -moz-transform: translate3d(-7px, -5px, 0) scale(1.05);
    -o-transform: translate3d(-7px, -5px, 0) scale(1.05);
    -ms-transform: translate3d(-7px, -5px, 0) scale(1.05);
    backface-visibility: hidden;
    opacity: 0;
  }

  100% {
    transform: translate3d(-7px, -5px, 0) scale(1.05);
    -webkit-transform: translate3d(-7px, -5px, 0) scale(1.05);
    -moz-transform: translate3d(-7px, -5px, 0) scale(1.05);
    -o-transform: translate3d(-7px, -5px, 0) scale(1.05);
    -ms-transform: translate3d(-7px, -5px, 0) scale(1.05);
    backface-visibility: hidden;
    opacity: 0;
  }
}

.scrTxt {
  animation-name: scrTxt;
}

@keyframes scrTxt {
  0% {
    transform: translate3d(50px, 10px, 0);
    -webkit-transform: translate3d(50px, 10px, 0);
    -moz-transform: translate3d(50px, 10px, 0);
    -o-transform: translate3d(50px, 10px, 0);
    -ms-transform: translate3d(50px, 10px, 0);
    backface-visibility: hidden;
    opacity: 0;
  }

  20% {
    transform: translate3d(0px, 0px, 0);
    -webkit-transform: translate3d(0px, 0px, 0);
    -moz-transform: translate3d(0px, 0px, 0);
    -o-transform: translate3d(0px, 0px, 0);
    -ms-transform: translate3d(0px, 0px, 0);
    backface-visibility: hidden;
    opacity: 1;
  }

  100% {
    transform: translate3d(0px, 0px, 0);
    -webkit-transform: translate3d(0px, 0px, 0);
    -moz-transform: translate3d(0px, 0px, 0);
    -o-transform: translate3d(0px, 0px, 0);
    -ms-transform: translate3d(0px, 0px, 0);
    backface-visibility: hidden;
    opacity: 1;
  }
}

@keyframes scrP4 {
  0% {
    transform: translate3d(-120px, 0px, 0px) rotate(-50deg);
  }

  30% {
    transform: translate3d(-120px, 0px, 0px) rotate(0deg);
  }

  100% {
    transform: translate3d(-120px, 0px, 0px) rotate(0deg);
  }
}

@keyframes scrP5 {
  0% {
    transform: translate3d(calc(70vw - 30vw), calc(13vw + 12.3vw), 0);
    -webkit-transform: translate3d(calc(70vw - 30vw), calc(13vw + 12.3vw), 0);
    -moz-transform: translate3d(calc(70vw - 30vw), calc(13vw + 12.3vw), 0);
    -o-transform: translate3d(calc(70vw - 30vw), calc(13vw + 12.3vw), 0);
    -ms-transform: translate3d(calc(70vw - 30vw), calc(13vw + 12.3vw), 0);
    backface-visibility: hidden;
  }

  58% {
    transform: translate3d(calc(50vw - 30vw), calc(13vw + 12.3vw), 0);
    -webkit-transform: translate3d(calc(50vw - 30vw), calc(13vw + 12.3vw), 0);
    -moz-transform: translate3d(calc(50vw - 30vw), calc(13vw + 12.3vw), 0);
    -o-transform: translate3d(calc(50vw - 30vw), calc(13vw + 12.3vw), 0);
    -ms-transform: translate3d(calc(50vw - 30vw), calc(13vw + 12.3vw), 0);
    backface-visibility: hidden;
  }

  100% {
    transform: translate3d(calc(50vw - 30vw), calc(13vw + 12.3vw), 0);
    -webkit-transform: translate3d(calc(50vw - 30vw), calc(13vw + 12.3vw), 0);
    -moz-transform: translate3d(calc(50vw - 30vw), calc(13vw + 12.3vw), 0);
    -o-transform: translate3d(calc(50vw - 30vw), calc(13vw + 12.3vw), 0);
    -ms-transform: translate3d(calc(50vw - 30vw), calc(13vw + 12.3vw), 0);
    backface-visibility: hidden;
  }
}

@keyframes scrP51 {
  0% {
    margin-left: 50%;
    letter-spacing: 0.6rem;
  }

  40% {
    margin-left: 0%;
    letter-spacing: 0px;
  }

  100% {
    margin-left: 0%;
    letter-spacing: 0px;
  }
}

@keyframes scrP6 {
  0% {
    transform: translate3d(calc(70vw - 6.25vw), calc(13vw + 12.3vw), 0);
    -webkit-transform: translate3d(calc(70vw - 6.25vw), calc(13vw + 12.3vw), 0);
    -moz-transform: translate3d(calc(70vw - 6.25vw), calc(13vw + 12.3vw), 0);
    -o-transform: translate3d(calc(70vw - 6.25vw), calc(13vw + 12.3vw), 0);
    -ms-transform: translate3d(calc(70vw - 6.25vw), calc(13vw + 12.3vw), 0);
    backface-visibility: hidden;
    letter-spacing: 1rem;
    opacity: 0;
  }

  58% {
    transform: translate3d(calc(50vw - 6.25vw), calc(13vw + 12.3vw), 0);
    -webkit-transform: translate3d(calc(50vw - 6.25vw), calc(13vw + 12.3vw), 0);
    -moz-transform: translate3d(calc(50vw - 6.25vw), calc(13vw + 12.3vw), 0);
    -o-transform: translate3d(calc(50vw - 6.25vw), calc(13vw + 12.3vw), 0);
    -ms-transform: translate3d(calc(50vw - 6.25vw), calc(13vw + 12.3vw), 0);
    backface-visibility: hidden;
    letter-spacing: 0px;
    opacity: 1;
  }

  100% {
    transform: translate3d(calc(50vw - 6.25vw), calc(13vw + 12.3vw), 0);
    -webkit-transform: translate3d(calc(50vw - 6.25vw), calc(13vw + 12.3vw), 0);
    -moz-transform: translate3d(calc(50vw - 6.25vw), calc(13vw + 12.3vw), 0);
    -o-transform: translate3d(calc(50vw - 6.25vw), calc(13vw + 12.3vw), 0);
    -ms-transform: translate3d(calc(50vw - 6.25vw), calc(13vw + 12.3vw), 0);
    backface-visibility: hidden;
    letter-spacing: 0px;
    opacity: 1;
  }
}

@keyframes scrP61 {
  0% {
    letter-spacing: 0.6rem;
    background-color: #ffffff;
  }

  40% {
    letter-spacing: 0px;
    background-color: rgba(255, 255, 255, 0);
  }

  100% {
    letter-spacing: 0px;
    background-color: rgba(255, 255, 255, 0);
  }
}

@keyframes scrP7 {
  0% {
    transform: translate3d(0vw, 0vw, 0);
    -webkit-transform: translate3d(0vw, 0vw, 0);
    -moz-transform: translate3d(0vw, 0vw, 0);
    -o-transform: translate3d(0vw, 0vw, 0);
    -ms-transform: translate3d(0vw, 0vw, 0);
    backface-visibility: hidden;
  }

  58% {
    transform: translate3d(-15vw, 0vw, 0);
    -webkit-transform: translate3d(-15vw, 0vw, 0);
    -moz-transform: translate3d(-15vw, 0vw, 0);
    -o-transform: translate3d(-15vw, 0vw, 0);
    -ms-transform: translate3d(-15vw, 0vw, 0);
    backface-visibility: hidden;
  }

  100% {
    transform: translate3d(-15vw, 0vw, 0);
    -webkit-transform: translate3d(-15vw, 0vw, 0);
    -moz-transform: translate3d(-15vw, 0vw, 0);
    -o-transform: translate3d(-15vw, 0vw, 0);
    -ms-transform: translate3d(-15vw, 0vw, 0);
    backface-visibility: hidden;
  }
}

@keyframes scrP8 {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    backface-visibility: hidden;
  }

  100% {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    backface-visibility: hidden;
  }
}

@keyframes scrP9 {
  0% {
    transform: translate3d(0vw, 0vw, 0);
    -webkit-transform: translate3d(0vw, 0vw, 0);
    -moz-transform: translate3d(0vw, 0vw, 0);
    -o-transform: translate3d(0vw, 0vw, 0);
    -ms-transform: translate3d(0vw, 0vw, 0);
    backface-visibility: hidden;
  }

  100% {
    transform: translate3d(-58%, 0vw, 0);
    -webkit-transform: translate3d(-58%, 0vw, 0);
    -moz-transform: translate3d(-58%, 0vw, 0);
    -o-transform: translate3d(-58%, 0vw, 0);
    -ms-transform: translate3d(-58%, 0vw, 0);
    backface-visibility: hidden;
  }
}

@keyframes scrP10 {
  0% {
    opacity: 0;
    transform: translate3d(0vw, 0vw, 0);
    -webkit-transform: translate3d(0vw, 0vw, 0);
    -moz-transform: translate3d(0vw, 0vw, 0);
    -o-transform: translate3d(0vw, 0vw, 0);
    -ms-transform: translate3d(0vw, 0vw, 0);
    backface-visibility: hidden;
  }

  15% {
    opacity: 1;
    transform: translate3d(0vw, 0vw, 0);
    -webkit-transform: translate3d(0vw, 0vw, 0);
    -moz-transform: translate3d(0vw, 0vw, 0);
    -o-transform: translate3d(0vw, 0vw, 0);
    -ms-transform: translate3d(0vw, 0vw, 0);
    backface-visibility: hidden;
  }

  25% {
    transform: translate3d(0px, 2.02rem, 0px);
    -webkit-transform: translate3d(0px, 2.02rem, 0px);
    -moz-transform: translate3d(0px, 2.02rem, 0px);
    -o-transform: translate3d(0px, 2.02rem, 0px);
    -ms-transform: translate3d(0px, 2.02rem, 0px);
    backface-visibility: hidden;
  }

  35% {
    transform: translate3d(0px, 2.02rem, 0px);
    -webkit-transform: translate3d(0px, 2.02rem, 0px);
    -moz-transform: translate3d(0px, 2.02rem, 0px);
    -o-transform: translate3d(0px, 2.02rem, 0px);
    -ms-transform: translate3d(0px, 2.02rem, 0px);
    backface-visibility: hidden;
  }

  50% {
    transform: translate3d(0.4rem, 4.04rem, 0px);
    -webkit-transform: translate3d(0.4rem, 4.04rem, 0px);
    -moz-transform: translate3d(0.4rem, 4.04rem, 0px);
    -o-transform: translate3d(0.4rem, 4.04rem, 0px);
    -ms-transform: translate3d(0.4rem, 4.04rem, 0px);
    backface-visibility: hidden;
  }

  100% {
    transform: translate3d(0.4rem, 4.04rem, 0px);
    -webkit-transform: translate3d(0.4rem, 4.04rem, 0px);
    -moz-transform: translate3d(0.4rem, 4.04rem, 0px);
    -o-transform: translate3d(0.4rem, 4.04rem, 0px);
    -ms-transform: translate3d(0.4rem, 4.04rem, 0px);
    backface-visibility: hidden;
  }
}

@keyframes scrP11 {
  0% {
    transform: translate3d(-20px, 0vw, 0);
    -webkit-transform: translate3d(-20px, 0vw, 0);
    -moz-transform: translate3d(-20px, 0vw, 0);
    -o-transform: translate3d(-20px, 0vw, 0);
    -ms-transform: translate3d(-20px, 0vw, 0);
    backface-visibility: hidden;
    opacity: 0;
  }

  15% {
    transform: translate3d(0vw, 0vw, 0);
    -webkit-transform: translate3d(0vw, 0vw, 0);
    -moz-transform: translate3d(0vw, 0vw, 0);
    -o-transform: translate3d(0vw, 0vw, 0);
    -ms-transform: translate3d(0vw, 0vw, 0);
    backface-visibility: hidden;
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 0vw, 0);
    -webkit-transform: translate3d(0, 0vw, 0);
    -moz-transform: translate3d(0, 0vw, 0);
    -o-transform: translate3d(0, 0vw, 0);
    -ms-transform: translate3d(0, 0vw, 0);
    backface-visibility: hidden;
    opacity: 1;
  }
}

@keyframes scrP12 {
  0% {
    transform: translate3d(-20px, 0vw, 0);
    -webkit-transform: translate3d(-20px, 0vw, 0);
    -moz-transform: translate3d(-20px, 0vw, 0);
    -o-transform: translate3d(-20px, 0vw, 0);
    -ms-transform: translate3d(-20px, 0vw, 0);
    backface-visibility: hidden;
    opacity: 0;
  }

  25% {
    transform: translate3d(0vw, 0vw, 0);
    -webkit-transform: translate3d(0vw, 0vw, 0);
    -moz-transform: translate3d(0vw, 0vw, 0);
    -o-transform: translate3d(0vw, 0vw, 0);
    -ms-transform: translate3d(0vw, 0vw, 0);
    backface-visibility: hidden;
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 0vw, 0);
    -webkit-transform: translate3d(0, 0vw, 0);
    -moz-transform: translate3d(0, 0vw, 0);
    -o-transform: translate3d(0, 0vw, 0);
    -ms-transform: translate3d(0, 0vw, 0);
    backface-visibility: hidden;
    opacity: 1;
  }
}

@keyframes scrP13 {
  0% {
    transform: translate3d(-20px, 0vw, 0);
    -webkit-transform: translate3d(-20px, 0vw, 0);
    -moz-transform: translate3d(-20px, 0vw, 0);
    -o-transform: translate3d(-20px, 0vw, 0);
    -ms-transform: translate3d(-20px, 0vw, 0);
    backface-visibility: hidden;
    opacity: 0;
  }

  40% {
    transform: translate3d(0vw, 0vw, 0);
    -webkit-transform: translate3d(0vw, 0vw, 0);
    -moz-transform: translate3d(0vw, 0vw, 0);
    -o-transform: translate3d(0vw, 0vw, 0);
    -ms-transform: translate3d(0vw, 0vw, 0);
    backface-visibility: hidden;
    opacity: 1;
  }

  100% {
    transform: translate3d(0, 0vw, 0);
    -webkit-transform: translate3d(0, 0vw, 0);
    -moz-transform: translate3d(0, 0vw, 0);
    -o-transform: translate3d(0, 0vw, 0);
    -ms-transform: translate3d(0, 0vw, 0);
    backface-visibility: hidden;
    opacity: 1;
  }
}

@keyframes scrP14 {
  0% {
    transform: translate3d(0vw, 0%, 0);
    -webkit-transform: translate3d(0vw, 0%, 0);
    -moz-transform: translate3d(0vw, 0%, 0);
    -o-transform: translate3d(0vw, 0%, 0);
    -ms-transform: translate3d(0vw, 0%, 0);
    backface-visibility: hidden;
  }

  100% {
    transform: translate3d(0, 90%, 0);
    -webkit-transform: translate3d(0, 90%, 0);
    -moz-transform: translate3d(0, 90%, 0);
    -o-transform: translate3d(0, 90%, 0);
    -ms-transform: translate3d(0, 90%, 0);
    backface-visibility: hidden;
  }
}

@keyframes loadFn {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    backface-visibility: hidden;
  }

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    backface-visibility: hidden;
  }
}

@-webkit-keyframes anim-open3 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(1.1, 1.1, 1);
  }

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

@keyframes anim-open3 {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1);
  }

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

@-webkit-keyframes anim-close3 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.9, 0.9, 1);
  }
}

@keyframes anim-close3 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(0.9, 0.9, 1);
    transform: scale3d(0.9, 0.9, 1);
  }
}

@keyframes scrImg2 {
  0% {
    transform: scale(1);
    backface-visibility: hidden;
  }

  100% {
    transform: scale(2);
    backface-visibility: hidden;
  }
}

@keyframes scrImgheight {
  0% {
    height: 0;
    backface-visibility: hidden;
  }

  100% {
    height: 100%;
    backface-visibility: hidden;
  }
}

/* ===== font-awesome.min.css ===== */
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot');src:url('../fonts/fontawesome-webfont.eot') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2') format('woff2'),url('../fonts/fontawesome-webfont.woff') format('woff'),url('../fonts/fontawesome-webfont.ttf') format('truetype'),url('../fonts/fontawesome-webfont.svg') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}


/* ===== reset.css ===== */
@font-face {
  font-family: "NotoSansSC-Light";
  src: url("../fonts/notosanssc-light.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "NotoSansSC-Medium";
  src: url("../fonts/notosanssc-medium.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "NotoSansSC-SemiBold";
  src: url("../fonts/notosanssc-semibold.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "NotoSansSC-Bold";
  src: url("../fonts/notosanssc-bold.ttf");
  font-weight: normal;
  font-style: normal;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

body {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #333;
  background-color: #fff;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
  display: inline;
  zoom: 1;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background: transparent;
  text-decoration: none;
  color: #000;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
  overflow: visible;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea:focus,
input:focus {
  outline: none;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  height: 13px;
  width: 13px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration,
input[type="text"] {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  margin-left: -7px;
}

textarea {
  overflow: auto;
  resize: vertical;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

q {
  quotes: none;
}

html,
button,
input,
select,
textarea {
  font-family: "NotoSansSC-Medium", "HarmonyOS Sans SC", "-apple-system", "BlinkMacSystemFont",
    "PingFang SC", "Microsoft YaHei", "Segoe UI", "Hiragino Sans GB",
    "Helvetica Neue", "Helvetica", "Arial", "sans-serif", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
form,
blockquote {
  margin: 0;
}

ul,
ol,
li,
dl,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none outside none;
}

h1,
h2,
h3 {
  line-height: 2;
  font-weight: normal;
}

h1 {
  font-size: 18px;
}

h2 {
  font-size: 15.6px;
}

h3 {
  font-size: 14.04px;
}

h4 {
  font-size: 12px;
}

h5,
h6 {
  font-size: 10.2px;
  text-transform: uppercase;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #ccc;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ccc;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #ccc;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ccc;
}

input:-webkit-autofill {
  -webkit-text-fill-color: initial;
  /* 设置填充字体不变色 */
  -webkit-box-shadow: 0 0 0 1000px white inset;
  /* 设置填充背景白色 */
}

html {
  overflow-x: hidden;
}

button,
input,
textarea,
select {
  border: none;
  border-radius: 0;
  outline: none;
  padding: 0;
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

img {
  display: inline-block;
  max-width: 100%;
  image-rendering: crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -o-crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.clear {
  clear: both;
}

.f-cb {
  zoom: 1;
}

.f-cb:after {
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  content: ".";
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.por {
  position: relative;
}

.poa {
  position: absolute;
}

.pof {
  position: fixed;
}

.poa-f {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.ovh {
  overflow: hidden;
}

.noselect {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.dn {
  display: none;
}

.w-f {
  width: 100%;
}

.h-f {
  height: 100%;
}

/*手机上a链接有黑色透明底怎么去掉
给a加这个样式*/
a {
  -webkit-tap-highlight-color: rgba(255, 0, 0, 0);
}

select,
input {
  outline: none;
}

/*ie 去掉自带关闭*/
input::-ms-clear {
  display: none;
}

html {
  font-size: 2.084vw !important;
}

@media (max-width: 997px) {
  html {
    font-size: 5.334vw !important;
  }
}

::-moz-selection {
  background: black;
  color: #fff;
}

::selection {
  background: black;
  color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: #000;
}

::-webkit-scrollbar-thumb:window-inactive {
  background: #000;
}

::-webkit-scrollbar-thumb:vertical:hover {
  background: #000;
}

/*==常用颜色==*/
.col-fff {
  color: #fff;
}

.col-000 {
  color: #000;
}

.col-111 {
  color: #111;
}

.col-222 {
  color: #222;
}

.col-333 {
  color: #333;
}

.col-444 {
  color: #444;
}

.col-555 {
  color: #555;
}

.col-666 {
  color: #666;
}

.col-777 {
  color: #666;
}

.col-888 {
  color: #666;
}

.col-999 {
  color: #999;
}

/*==常用字号==*/
.tit-12 {
  font-size: 12px;
}

.tit-13 {
  font-size: 13px;
}

.tit-14 {
  font-size: 0.35rem;
}

.tit-15 {
  font-size: 0.375rem;
}

.tit-16 {
  font-size: 0.4rem;
}

.tit-17 {
  font-size: 0.425rem;
}

.tit-18 {
  font-size: 0.45rem;
}

.tit-19 {
  font-size: 0.475rem;
}

.tit-20 {
  font-size: 0.5rem;
}

.tit-21 {
  font-size: 0.525rem;
}

.tit-22 {
  font-size: 0.55rem;
}

.tit-23 {
  font-size: 0.575rem;
}

.tit-24 {
  font-size: 0.6rem;
}

.tit-25 {
  font-size: 0.625rem;
}

.tit-26 {
  font-size: 0.65rem;
}

.tit-27 {
  font-size: 0.675rem;
}

.tit-28 {
  font-size: 0.7rem;
}

.tit-29 {
  font-size: 0.725rem;
}

.tit-30 {
  font-size: 0.75rem;
}

.tit-31 {
  font-size: 0.775rem;
}

.tit-32 {
  font-size: 0.8rem;
}

.tit-33 {
  font-size: 0.825rem;
}

.tit-34 {
  font-size: 0.85rem;
}

.tit-35 {
  font-size: 0.875rem;
}

.tit-36 {
  font-size: 0.9rem;
}

.tit-37 {
  font-size: 0.925rem;
}

.tit-38 {
  font-size: 0.95rem;
}

.tit-39 {
  font-size: 0.975rem;
}

.tit-40 {
  font-size: 1rem;
}

.tit-41 {
  font-size: 1.025rem;
}

.tit-42 {
  font-size: 1.05rem;
}

.tit-43 {
  font-size: 1.075rem;
}

.tit-44 {
  font-size: 1.1rem;
}

.tit-45 {
  font-size: 1.125rem;
}

.tit-46 {
  font-size: 1.15rem;
}

.tit-47 {
  font-size: 1.175rem;
}

.tit-48 {
  font-size: 1.2rem;
}

.tit-49 {
  font-size: 1.225rem;
}

.tit-50 {
  font-size: 1.25rem;
}

.tit-51 {
  font-size: 1.275rem;
}

.tit-52 {
  font-size: 1.3rem;
}

.tit-53 {
  font-size: 1.325rem;
}

.tit-54 {
  font-size: 1.35rem;
}

.tit-55 {
  font-size: 1.375rem;
}

.tit-56 {
  font-size: 1.4rem;
}

.tit-57 {
  font-size: 1.425rem;
}

.tit-58 {
  font-size: 1.45rem;
}

.tit-59 {
  font-size: 1.475rem;
}

.tit-60 {
  font-size: 1.5rem;
}

.tit-61 {
  font-size: 1.525rem;
}

.tit-62 {
  font-size: 1.55rem;
}

.tit-63 {
  font-size: 1.575rem;
}

.tit-64 {
  font-size: 1.6rem;
}

.tit-65 {
  font-size: 1.625rem;
}

.tit-66 {
  font-size: 1.65rem;
}

.tit-67 {
  font-size: 1.675rem;
}

.tit-68 {
  font-size: 1.7rem;
}

.tit-69 {
  font-size: 1.725rem;
}

.tit-70 {
  font-size: 1.75rem;
}

.tit-71 {
  font-size: 1.775rem;
}

.tit-72 {
  font-size: 1.8rem;
}

.tit-73 {
  font-size: 1.825rem;
}

.tit-74 {
  font-size: 1.85rem;
}

.tit-75 {
  font-size: 1.875rem;
}

.tit-76 {
  font-size: 1.9rem;
}

.tit-77 {
  font-size: 1.925rem;
}

.tit-78 {
  font-size: 1.95rem;
}

.tit-79 {
  font-size: 1.975rem;
}

.tit-80 {
  font-size: 2rem;
}

@media (max-width: 997px) {

  .tit-13,
  .tit-14,
  .tit-15,
  .tit-16 {
    font-size: 12px;
  }

  .tit-17,
  .tit-18,
  .tit-19,
  .tit-20 {
    font-size: 18px;
  }

  .tit-21,
  .tit-22,
  .tit-23,
  .tit-24 {
    font-size: 16px;
  }

  .tit-25,
  .tit-26,
  .tit-27,
  .tit-28 {
    font-size: 18px;
  }

  .tit-29,
  .tit-30,
  .tit-31,
  .tit-32 {
    font-size: 20px;
  }

  .tit-33,
  .tit-34,
  .tit-35,
  .tit-36 {
    font-size: 22px;
  }

  .tit-37,
  .tit-38,
  .tit-39,
  .tit-40 {
    font-size: 24px;
  }
}

/*响应隐藏样式*/
.pc-block {
  display: block;
}

.pc-block-768 {
  display: block;
}

.pc-block-767 {
  display: block;
}

.m-block {
  display: none;
}

.m-block-767 {
  display: none;
}

.m-block-768 {
  display: none;
}

@media (max-width: 1024px) {
  .pc-block {
    display: none;
  }

  .m-block {
    display: block;
  }
}

@media (max-width: 768px) {
  .pc-block-768 {
    display: none;
  }

  .m-block-768 {
    display: block;
  }
}

@media (max-width: 767px) {
  .pc-block-767 {
    display: none;
  }

  .m-block-767 {
    display: block;
  }
}

/*常用样式类名*/
.poa-middle {
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.tran-middle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.text-hide {
  word-break: keep-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.img-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.pointer {
  cursor: pointer;
}

.bgtop {
  background-position: top;
}

.containbg {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justif {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-bold {
  font-weight: bold;
}

.centerh {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.centerv {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.centerblock {
  margin-left: auto;
  margin-right: auto;
}

.shadow1 {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15);
}

.full {
  width: 100%;
  height: 100%;
}

.fullw {
  width: 100%;
}

.fullh {
  height: 100%;
}

.fullvh {
  height: 100vh;
}

.block {
  display: block;
}

.inlineblock {
  display: inline-block;
}

.notrans {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
}

.no-hover {
  pointer-events: none !important;
  cursor: default;
}

.trans3d0 {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.round {
  border-radius: 50%;
}

.mt0 {
  margin-top: 0;
}

.mb0 {
  margin-bottom: 0;
}

.in-block {
  display: inline-block;
  display: inline;
  zoom: 1;
}

/* 手机端头部 */
.mb-head {
  display: none;
  position: absolute;
  top: 3rem;
  width: 100%;
  height: calc(100vh - 3rem);
  background-color: #ffffff;
  overflow-y: auto;
}

.mb-head::-webkit-scrollbar-thumb {
  background-color: #e8390d;
}

.menu-box {
  display: none;
  width: 2rem;
  height: 2rem;
  background-color: #1d2088;
  margin-left: 0.5rem;
  position: relative;
}

.menu {
  display: none;
  position: relative;
  width: 27px;
  height: 20px;
  cursor: pointer;
  margin-left: 0.5rem;
}

.menu div {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s ease;
}

.menu .top {
  top: 0;
}

.menu .middle {
  top: 9px;
}

.menu .bottom {
  bottom: 0;
}

.menu.cur .top {
  transform: rotate(45deg);
  transform-origin: top left;
  width: 26px;
}

.menu.cur .middle {
  transform: translateX(-20px);
  opacity: 0;
}

.menu.cur .bottom {
  transform: rotate(-45deg);
  transform-origin: top left;
  width: 26px;
  left: -1px;
}

.mb-nav {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  border-bottom: 1px solid #e3e3e3;
  padding: 0 0.75rem;
  transition: all 0.4s;
}

.mb-nav:first-child {
  border-top: 1px solid #e3e3e3;
}

.mb-nav:nth-child(2n -1) {
  background-color: rgba(23, 28, 97, 0.05);
}

.mb-nav .mb-nav-frs {
  width: 100%;
  display: block;
  height: 3rem;
  line-height: 3rem;
  position: relative;
  color: #333333;
  transition: all 0.4s;
}

.mb-nav .mb-nav-frs::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  margin-top: -5px;
  transform: rotate(45deg);
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  background-size: 100%;
  width: 10px;
  height: 10px;
  transition: all 0.4s;
}

.mb-nav .mb-nav-scd {
  display: none;
  width: 100%;
}

.mb-nav .mb-nav-scd a {
  position: relative;
  display: block;
  width: 100%;
  height: 1.45rem;
  line-height: 1.45rem;
  padding: 0 1.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.mb-nav .mb-nav-scd a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.9rem;
  transform: translateY(-50%);
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #ffffff;
}

.mb-nav.cur {
  background-color: var(--vi);
  padding-bottom: 0.5rem;
}

.mb-nav.cur a {
  color: #ffffff;
}

.mb-nav.cur .mb-nav-frs::after {
  transform: rotate(135deg);
  border-top-color: #fff;
  border-right-color: #fff;
}

.mb-nav.noNav .mb-nav-frs::after {
  display: none;
}

.mb-head .mb-search {
  margin: 1rem auto 0;
  width: 60%;
  height: 2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  background: #f6f6f6;
  padding: 0 0.5rem;
}

.mb-head .mb-search button {
  width: 14px;
  background: none;
}

.mb-head .mb-search input {
  width: calc(100% - 14px);
  height: 100%;
  background: none;
  padding: 0 0.35rem;
  color: #000;
}

/* PC头部 */
.initHead {
  height: 2rem;
}

.head-box {
  /* height: 1.95rem; */
}

.head-box .head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 199;
  transition: all 0.4s;
}

.head-box .head.fixed {
  position: fixed;
}

.head-box .head.hideHead {
  transform: translateY(-2.75rem);
}

.head .top-add {
  width: 100%;
  height: 1.45rem;
  line-height: 1.45rem;
  background-color: rgba(255, 255, 255, .06);
  backdrop-filter: blur(40px);
  text-align: center;
}

.head .top-add a {
  color: #fff;
}

.pc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 2rem;
  background-color: rgba(255, 255, 255, .14);
  backdrop-filter: blur(30px);
}

.pc-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.pc-head .logo {
  display: block;
  width: 3.25rem;
  max-height: 100%;
}

.pc-head .logo img {
  width: 100%;
}

.pc-head .head-nav-box {
  display: flex;
  align-items: center;
}

.pc-head .head-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4.25rem;
}

.pc-head .head-nav .nav-ls {
  width: max-content;
  height: 100%;
  margin-right: 1.9rem;
  position: relative;
}

.pc-head .head-nav .nav-ls.noRe {
  position: static;
}

.pc-head .head-nav .nav-ls:last-child {
  margin-right: 0;
}

.pc-head .head-nav .nav-ls>a {
  color: #fff;
  display: block;
  height: 100%;
  line-height: 2rem;
  position: relative;
  transition: all 0.4s;
}
.pc-head .head-nav .nav-ls.on>a {
    color: var(--vi);
}
.pc-head .head-nav .nav-ls>a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #000000;
  transition: all 0.4s;
}

.pc-head .head-nav .nav-ls:hover>a,
.pc-head .head-nav .nav-ls.cur>a {
  font-weight: bold;
  color: var(--vi);
}

.pc-head .head-nav .nav-ls.active>a::after {
  width: 100%;
}

.pc-head .head-nav .nav-ls .pos-cont {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -2.225rem;
  width: 4.45rem;
  padding: 1rem 0;
  background-color: #fff;
  background-image: url(../picture/13.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(.5rem);
  transition: all .4s;
}

.pc-head .head-nav .nav-ls .pos-cont a {
  display: block;
  width: 100%;
  margin-bottom: .85rem;
  padding-left: 1.15rem;
  color: #333333;
  position: relative;
  transition: all .4s;
}

.pc-head .head-nav .nav-ls .pos-cont a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: .625rem;
  transform: translateY(-50%);
  border-left: .35rem solid var(--vi);
  border-top: .175rem solid transparent;
  border-bottom: .175rem solid transparent;
  opacity: 0;
  transition: all .4s;
}

.pc-head .head-nav .nav-ls .pos-cont a:last-child {
  margin-bottom: 0;
}

.pc-head .head-nav .nav-ls .pos-cont a:hover {
  color: var(--vi);
}

.pc-head .head-nav .nav-ls .pos-cont a:hover::before {
  opacity: 1;
}

.pc-head .head-nav .nav-ls .drop-down {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  height: calc(100vh - 2rem);
  background-color: #000000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(.5rem);
  pointer-events: none;
}

.pc-head .head-nav .nav-ls .drop-down .container {
  display: flex;
  background-color: #fff;
  pointer-events: all;
}

.pc-head .head-nav .nav-ls .drop-down .tab {
  width: 10rem;
  padding: 1.85rem 3.55rem;
}

.pc-head .head-nav .nav-ls .drop-down .tab span {
  display: block;
  position: relative;
  color: #333333;
  margin-bottom: 1.1rem;
  cursor: pointer;
}

.pc-head .head-nav .nav-ls .drop-down .tab span:last-child {
  margin-bottom: 0;
}

.pc-head .head-nav .nav-ls .drop-down .tab span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: .625rem;
  transform: translateY(-50%);
  border-left: .35rem solid var(--vi);
  border-top: .175rem solid transparent;
  border-bottom: .175rem solid transparent;
  opacity: 0;
  transition: all .4s;
}

.pc-head .head-nav .nav-ls .drop-down .tab span:hover,
.pc-head .head-nav .nav-ls .drop-down .tab span.active {
  color: var(--vi);
}

.pc-head .head-nav .nav-ls .drop-down .tab span:hover::before,
.pc-head .head-nav .nav-ls .drop-down .tab span.active::before {
  opacity: 1;
}

.pc-head .head-nav .nav-ls .drop-down .cont-box {
  width: calc(100% - 10rem);
}

.pc-head .head-nav .nav-ls .drop-down .cont {
  padding: 1.25rem 3.85rem 1.1rem 2.85rem;
  display: none;
  flex-wrap: wrap;
  background-color: #fff;
}

.pc-head .head-nav .nav-ls .drop-down .cont.show {
  display: flex;
}

.pc-head .head-nav .nav-ls .drop-down .cont .li {
  width: calc((100% - 1rem) / 3);
  margin-right: .5rem;
  margin-bottom: .65rem;
  border-radius: .25rem;
  background-color: #F3F4F7;
  transition: all .4s;
}

.pc-head .head-nav .nav-ls .drop-down .cont .li:nth-child(3n) {
  margin-right: 0;
}

.pc-head .head-nav .nav-ls .drop-down .cont .li .pic {
  width: 100%;
  height: 3.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s;
}

.pc-head .head-nav .nav-ls .drop-down .cont .li .pic img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.pc-head .head-nav .nav-ls .drop-down .cont .li .h {
  width: 100%;
  height: 1.4rem;
  text-align: center;
  line-height: 1.4rem;
  color: #333333;
}

.pc-head .head-nav .nav-ls .drop-down .cont .li:hover {
  box-shadow: 0 .1rem 1rem rgba(0, 0, 0, .05);
}

.pc-head .head-nav .nav-ls .drop-down .cont .li:hover .pic {
  background-color: #fff;
}

.pc-head .head-nav .nav-ls:hover .pos-cont,
.pc-head .head-nav .nav-ls:hover .drop-down {
  opacity: 1;
  transition: all .3s;
  visibility: visible;
  transform: translateY(0);
}

.pc-head .head-rg {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pc-head .head-rg .head-search {
  width: .85rem;
  height: .85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, .22);
  cursor: pointer;
}

.pc-head .head-rg .head-search img {
  max-width: 60%;
}

.pc-head .head-rg .lan {
  margin-left: 1rem;
  position: relative;
}

.pc-head .head-rg .lan .nor {
  display: flex;
  align-items: baseline;
  color: #fff;
  cursor: pointer;
  padding: .15rem .4rem;
  border-radius: .6rem;
  border: 1px solid #fff;
  transition: all 0.4s;
}

.pc-head .head-rg .lan .nor span {
  margin-left: 0.2rem;
}

.pc-head .head-rg .lan .pos-cont {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -0.75rem;
  width: 1.5rem;
  height: max-content;
  background: #fff;
  border-radius: 0.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.2rem);
  transition: all 0.4s;
}

.pc-head .head-rg .lan .pos-cont a {
  display: block;
  width: 100%;
  height: 0.8rem;
  line-height: 0.8rem;
  text-align: center;
  color: #333;
}

.pc-head .head-rg .lan:hover .pos-cont {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* 通用 */

.pos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mb-block {
  display: none;
}

.html {
  height: 100vh;
  overflow: hidden;
}

.body {
  height: 100vh;
}

.nor-img {
  display: block;
}

.scr-img {
  display: none;
}

.trans-white {
  transition: all 0.4s;
}

.scr-trans {
  filter: brightness(1000%) grayscale(1000%);
  transition: all 0.4s;
}

/* 向下滚动之后 */
.head.head-scroll,
.head.head-scroll2,
.head.head-scroll3 {
  background-color: #ffffff;
  box-shadow: 0 3px 9px rgba(120, 120, 120, 0.16);
  /*transform: translateY(-1.45rem);*/
}

/*.head.trans {*/
/*  transform: translateY(-1.45rem);*/
/*}*/

.head.head-scroll .nor-img,
.head.head-scroll2 .nor-img,
.head.head-scroll3 .nor-img {
  display: none;
}

.head.head-scroll .scr-img,
.head.head-scroll2 .scr-img,
.head.head-scroll3 .scr-img {
  display: block;
}

.head.head-scroll .scr-trans,
.head.head-scroll2 .scr-trans,
.head.head-scroll3 .scr-trans {
  filter: initial;
}

.head.head-scroll .trans-white,
.head.head-scroll2 .trans-white,
.head.head-scroll3 .trans-white {
  filter: brightness(10%);
}

.head.head-scroll .nav-ls a,
.head.head-scroll2 .nav-ls a,
.head.head-scroll3 .nav-ls a {
  color: #333;
}

.head.head-scroll .head-rg .lan .nor,
.head.head-scroll2 .head-rg .lan .nor,
.head.head-scroll3 .head-rg .lan .nor {
  color: #333;
  border-color: #333;
}

.head.head-scroll .menu div,
.head.head-scroll2 .menu div,
.head.head-scroll3 .menu div {
  background-color: #333;
}

/* 视频 */
.vid-dialog {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  z-index: 999;
}

.vid-dialog .tbox {
  width: 100%;
  display: table-cell;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
  vertical-align: middle;
}

/*弹窗内容 */

.vid-dialog .tbox .modal {
  padding: 0;
  display: block;
  border-radius: 5px;
  position: relative;
  width: 80%;
  max-width: 90%;
  max-height: 90%;
  margin: 0 auto;
  box-sizing: border-box;
}

.vid-dialog .tbox .modal .out {
  position: absolute;
  width: 1rem;
  height: 1rem;
  line-height: 1rem;
  background: url(../picture/vcha.svg) center no-repeat;
  background-size: 0.5rem;
  color: #000;
  font-size: 0.75rem;
  text-align: center;
  border-radius: 50%;
  top: -1rem;
  right: -1rem;
  opacity: 0.75;
  cursor: pointer;
  transition: all 0.5s;
}

.vid-dialog .tbox .modal .img {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.vid-dialog .tbox .modal .img video {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  max-height: 67vh;
  background-color: #000;
}

.vid-dialog .tbox .modal .img img {
  margin: 0 auto;
}

.vid-dialog .tbox .modal .out:hover {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.vid-dialog .tbox .modal2 {
  padding: 0.5rem;
}

.vid-dialog .tbox .modal .img {
  max-width: 90%;
}

/*弹窗选中 */

.vid-dialog.one {
  transform: scaleY(0.01) scaleX(0);
  animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scaleY(0.01) scaleX(0);
  -webkit-animation: unfoldIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.vid-dialog.one .tbox .modal {
  transform: scale(0);
  animation: zoomIn2 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scale(0);
  -webkit-animation: zoomIn2 0.5s 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.vid-dialog.one.out {
  transform: scale(1);
  animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-transform: scale(1);
  -webkit-animation: unfoldOut 1s 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.vid-dialog.one.out .tbox .modal {
  animation: zoomOut2 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  -webkit-animation: zoomOut2 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.vid-dialog.one {
  transform: scale(1);
  -webkit-transform: scale(1);
}

@keyframes unfoldIn {
  0% {
    transform: scaleY(0.005) scaleX(0);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(1) scaleX(1);
  }
}

@keyframes zoomIn2 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zoomOut2 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes unfoldOut {
  0% {
    transform: scaleY(1) scaleX(1);
  }

  50% {
    transform: scaleY(0.005) scaleX(1);
  }

  100% {
    transform: scaleY(0.005) scaleX(0);
  }
}

@keyframes aniScaleBan {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

/* 公共导航 */
.banner {
  position: relative;
  z-index: 10;
}

.banner .banner-img {
  width: 100%;
  /* height: 10rem; */
  position: relative;
  overflow: hidden;
}

.banner .banner-img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: aniScaleBan 10s linear forwards;
}

.banner .pub-nav {
  padding: 0.85rem 0;
  background-color: #fff;
  transition: all 0.4s ease-in-out;
}

.banner .pub-nav .nav-container {
  height: 36px;
}

.banner .pub-nav .nav-container .swiper-slide {
  width: max-content;
  line-height: 36px;
  color: #333;
  cursor: pointer;
  margin-right: 2rem;
  transition: all 0.4s;
}

.banner .pub-nav .nav-container .swiper-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--vi);
  transition: all 0.4s;
}

.banner .pub-nav .nav-container .swiper-slide:last-child {
  margin-right: 0;
}

.banner .pub-nav .nav-container .swiper-slide:hover,
.banner .pub-nav .nav-container .swiper-slide.cur {
  color: var(--vi);
  font-weight: bold;
}

.banner .pub-nav .nav-container .swiper-slide:hover::after,
.banner .pub-nav .nav-container .swiper-slide.cur::after {
  width: 100%;
}

.search-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
  transform: translateY(-100%);
  height: 2.25rem;
}

.search-dialog .bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center;
  background-color: #fff;
}

.search-dialog .form-box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.search-dialog .form-box form {
  width: 47%;
  height: 1.2rem;
  padding: 0 0.6rem;
  display: flex;
  align-items: center;
  border: 1px solid #999999;
  margin-right: 0.9rem;
  border-radius: 1.2rem;
}

.search-dialog .form-box form input[type="submit"] {
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 0.7rem;
  background-image: url(../picture/5.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

.search-dialog .form-box form input[type="text"] {
  width: calc(100% - 2rem);
  height: 100%;
  background: none;
  color: #999999;
  font-size: 0.4rem;
}

.search-dialog .form-box form input[type="text"]::placeholder {
  color: #999999;
}

.search-dialog .form-box .close {
  width: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
}

.search-dialog .form-box .close img {
  width: 100%;
}

.search-dialog .form-box .close:hover {
  transform: rotate(45deg);
}

.search-dialog.search-dialog-slide {
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.search-dialog.search-dialog-slide .bg {
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.w1680 {
  width: 42rem;
  max-width: 90%;
  margin: 0 auto;
}

.website {
  padding: 2.5rem 0;
}

.website .title {
  font-weight: bold;
  text-align: center;
  color: #000;
  font-size: 22px;
  margin-bottom: 30px;
}

.website .cont {
  line-height: 1.5;
  font-size: 16px;
}

.website .cont strong {
  font-size: 18px;
}

.website dl {
  margin-bottom: 40px;
  border: 1px solid #ccc;
}

.website dl:last-child {
  margin-bottom: 0;
}

.website dl dt {
  background: #f8f8f8;
  height: 40px;
  line-height: 40px;
  padding-left: 20px;
}

.website dl dt a {
  color: #333;
  font-size: 16px;
}

.website dl dd {
  padding: 20px;
  display: inline-block;
  margin-right: 20px;
}

.website dl dd a {
  font-size: 14px;
  color: #666;
}

@media (max-width: 1024px) {
  .pc-block {
    display: none;
  }

  .mb-block {
    display: block;
  }

  .pc-head .head-nav {
    display: none;
  }

  .menu {
    display: block;
  }
}

@media (max-width: 997px) {
  /*.banner .banner-img>img {*/
  /*    object-fit: contain;*/
  /*}*/
  .mb-nav .mb-nav-frs {
    height: 2.5rem;
    line-height: 2.5rem;
  }

  .search-dialog .form-box form {
    width: 60%;
  }

  .pc-head .head-rg .head-search {
    display: none;
  }
}

.zId5 {
  z-index: 5;
}

.zId4 {
  z-index: 4;
}

.zId3 {
  z-index: 3;
}

.zId2 {
  z-index: 2;
}

.zId1 {
  z-index: 1;
}

.social-share {
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}

.social-share .social-share-icon {
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  background-color: #D3D3D3;
  text-align: center;
  vertical-align: middle;
  margin-right: .5rem;
  transition: background 0.6s ease-out 0s
}

.social-share .social-share-icon:last-child {
  margin-right: 0;
}

.social-share .social-share-icon:hover {
  background-color: var(--vi);
}

.social-share .social-share-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
}

.social-share .icon-weibo::after {
  background-image: url(../picture/20.png);
}

.social-share .icon-wechat {
  position: relative;
}

.social-share .icon-wechat::after {
  background-image: url(../picture/19.png);
}

.social-share .icon-wechat .wechat-qrcode {
  display: none;
  border: 1px solid #eee;
  position: absolute;
  z-index: 9;
  bottom: -205px;
  left: -84px;
  width: 200px;
  height: 192px;
  color: #666;
  font-size: 12px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 2px 10px #aaa;
  transition: all 200ms;
  -webkit-tansition: all 350ms;
  -moz-transition: all 350ms
}

.social-share .icon-wechat .wechat-qrcode.bottom {
  top: 40px;
  left: -84px
}

.social-share .icon-wechat .wechat-qrcode.bottom:after {
  display: none
}

.social-share .icon-wechat .wechat-qrcode h4 {
  font-weight: normal;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  background-color: #f3f3f3;
  margin: 0;
  padding: 0;
  color: #777
}

.social-share .icon-wechat .wechat-qrcode .qrcode {
  width: 105px;
  margin: 10px auto
}

.social-share .icon-wechat .wechat-qrcode .qrcode table {
  margin: 0 !important
}

.social-share .icon-wechat .wechat-qrcode .help p {
  font-weight: normal;
  line-height: 16px;
  padding: 0;
  margin: 0
}

.social-share .icon-wechat .wechat-qrcode:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -6px;
  bottom: -13px;
  width: 0;
  height: 0;
  border-width: 8px 6px 6px 6px;
  border-style: solid;
  border-color: #fff transparent transparent transparent
}

.social-share .icon-wechat:hover .wechat-qrcode {
  display: block
}

.mod_sidebar {
    position: fixed;
    z-index: 200;
    top: 35%;
    right: 40px;
    display: flex;
    flex-direction: column;
}

.mod_sidebar .item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    transition: all .4s ease;
    margin-bottom: 12px;
    cursor: pointer;
    box-shadow: 0px 8px 6.8px -2px rgba(0, 14, 32, 0.16);
    position: relative;
}



.mod_sidebar .item  .phone_num {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    padding-right: calc(48px + 16px);
    padding-left: 20px;
    border-radius: 48px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 18px;
    background: #fff;
    border: 1px solid #C6C6C6;
    transition: all .4s ease;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}


.mod_sidebar .item.mod_back {
    background: var(--vi);
}

.mod_sidebar .item.phone:hover .phone_num {
   width: 220px;
    opacity: 1;
    color: var(--vi);
    pointer-events: all;
}
.mod_sidebar .item.phone:hover .email {
    width: 280px;
    opacity: 1;
    color: var(--vi);
    pointer-events: all;
}

.mod_sidebar .item:last-child {
    margin-bottom: 0;
}

.mod_sidebar .item  svg {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

/* 视频播放相关样式 */
.pro-list .item .pic {
    position: relative;
    overflow: hidden;
}

.pro-list .item .pic:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.pro-list .item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 2;
}

.pro-list .item .pic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.pro-list .item:hover .pic::after {
    opacity: 1;
}

/* 视频模态框样式 - 居中显示 */
#video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

#video-modal .am-modal-dialog {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin: 0;
    position: relative;
    max-height: 90vh;
    max-width: 90vw;
    width: 800px;
}

#video-modal .am-modal-hd {
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#video-modal .am-modal-hd h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

#video-modal .am-close {
    font-size: 24px;
    color: #999;
    text-decoration: none;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

#video-modal .am-close:hover {
    color: #333;
}

#video-modal .am-modal-bd {
    padding: 0;
    position: relative;
}

#video-container {
    width: 100%;
    min-height: 800px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#video-container iframe,
#video-container video {
    border: none;
    outline: none;
    width: 100%;
    height: 800px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    #video-modal {
        padding: 10px;
    }
    
    #video-modal .am-modal-dialog {
        max-width: 95vw;
        width: 95vw;
    }
    
    #video-container {
        min-height: 800px;
    }
    
    #video-container iframe,
    #video-container video {
        height: 800px;
    }
    
    #video-modal .am-modal-hd {
        padding: 10px 15px;
    }
    
    #video-modal .am-modal-hd h4 {
        font-size: 16px;
    }
}

/* ===== style.css ===== */
@charset "UTF-8";

:root {
  --vi: #4ebbca;
  --padd: 5.25rem;
}

.swiper-container {
  height: max-content;
}

.w1660 {
  width: 41.5rem;
  max-width: 90%;
  margin: 0 auto;
}

.w1500 {
  width: 37.5rem;
  max-width: 90%;
  margin: 0 auto;
}

.w1400 {
  width: 35rem;
  max-width: 90%;
  margin: 0 auto;
}

.w1300 {
  width: 32.5rem;
  max-width: 90%;
  margin: 0 auto;
}

.tac {
  text-align: center;
}

.lh1 {
  line-height: 1;
}

.fonb {
  font-family: "NotoSansSC-Bold";
}

.nowrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-tit {
  font-size: 1.25rem;
  color: #111111;
  font-family: "NotoSansSC-Bold";
}

.main-tit.white {
  color: #fff;
}

.main-sub {
  margin-top: 0.25rem;
  font-size: 0.5rem;
  color: #4d4d4d;
  line-height: 1.1;
  font-family: "NotoSansSC-Light";
}

.main-sub.white {
  color: #fff;
}

.main-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.8rem;
  height: 1.4rem;
  border-radius: 0.7rem;
  background-color: rgba(255, 255, 255, 0.36);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #fff;
  transition: all 0.4s;
}

.main-more span {
  margin-left: 0.5rem;
  border-left: 0.3rem solid #fff;
  border-top: 0.175rem solid transparent;
  border-bottom: 0.175rem solid transparent;
  transition: all .4s;
}

.main-more.viBg {
  background-color: var(--vi);
}

.main-more.small {
  width: 3.8rem;
  height: 1rem;
}

.main-more.small span {
  margin-left: 0.3rem;
  border-left: 0.25rem solid #fff;
  border-top: 0.125rem solid transparent;
  border-bottom: 0.125rem solid transparent;
}

.main-more.mid {
  width: 4.5rem;
  height: 1.05rem;
}

.main-more.mid span {
  margin-left: 0.3rem;
  border-left: 0.2rem solid #fff;
  border-top: 0.125rem solid transparent;
  border-bottom: 0.125rem solid transparent;
}

.main-more.whiteBd {
  background-color: transparent;
  backdrop-filter: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .36);
}

.main-more.greyBd {
  box-shadow: 0 0 0 1px #E1E1E1;
  color: #333333;
}

.main-more.greyBd span {
  border-left-color: #333;
}

.main-more.blackBd {
  box-shadow: 0 0 0 1px #333333;
  color: #333333;
}

.main-more.blackBd span {
  border-left-color: #333;
}

.main-more:hover {
  background-color: var(--vi);
  color: #fff;
  box-shadow: none;
}

.main-more:hover span {
  border-left-color: #fff;
}

.page-box .first,
.page-box .last {
  display: none;
}

.page-box,
.pagingUl {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagingUl {
  margin: 0 .25rem;
}

.page-box .prv,
.page-box .next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  line-height: 1.05rem;
  text-align: center;
  border-radius: 0.1rem;
  background-color: #f7f7f7;
  color: #333;
  transition: all 0.4s;
}

.page-box a {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
  line-height: 1.05rem;
  text-align: center;
  border-radius: 0.1rem;
  background-color: #f7f7f7;
  color: #333;
  margin-right: 0.25rem;
  transition: all 0.4s;
}

.page-box li {
  margin-right: .25rem;
}

.page-box li:last-child {
  margin-right: 0;
}

.page-box a:last-child {
  margin-right: 0;
}

.page-box a:hover,
.page-box a.active {
  background-color: var(--vi);
  color: #fff;
}

.index-swiper {
  width: 100%;
  /*padding: 2.8rem 0 !important;*/
  height: 100vh;
}

.index-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.index-swiper .swiper-slide video, .index-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  /*-o-object-fit: contain;*/
  /*object-fit: contain;*/
  object-fit: cover;
}

.index-swiper .swiper-slide .pos-cont {
  /*top: calc(50% + 1.725rem);*/
}

.index-swiper .swiper-slide .pos-cont .tit {
  color: #fff;
}

.index-swiper .swiper-slide .pos-cont .more {
  margin: 1.4rem auto 0;
}

.footer {
  background-color: #000000;
}

.footer .top {
  padding: 2rem 0 1rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer .top .f-logo {
  width: 5.5rem;
}

.footer .top .f-logo img {
  width: 100%;
}

.footer .top .info {
  display: flex;
  align-items: center;
}

.footer .top .info .link {
  width: 3.8rem;
  height: 1rem;
  border-radius: 0.5rem;
  position: relative;
  text-align: center;
  padding-right: 0.65rem;
  line-height: 1rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26);
  z-index: 10;
}

.footer .top .info .link::after {
  content: "";
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  border-left: 0.25rem solid #fff;
  border-top: 0.125rem solid transparent;
  border-bottom: 0.125rem solid transparent;
  transition: all .4s ease;
}

.footer .top .info .link:hover::after {
  transform: translateY(-50%) rotate(90deg);

}

.footer .top .info .link p {
  color: #fff;
}

.footer .top .info .link .drop-down {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 0;
  width: 100%;
  border-radius: 0.5rem;
  background-color: #333;
  max-height: 5rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: all 0.4s;
}

.footer .top .info .link .drop-down a {
  display: block;
  width: 100%;
  height: 1rem;
  text-align: left;
  padding-left: 0.9rem;
  line-height: 1rem;
  color: #fff;
}

.footer .top .info .link:hover .drop-down {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer .top .info .hotline {
  display: flex;
  align-items: center;
  margin-left: 1.3rem;
  color: #fff;
}

.footer .top .info .hotline span {
  width: 12px;
  margin-right: 0.2rem;
  display: flex;
}

.footer .mid {
  padding: 1.4rem 0 2.2rem;
  display: flex;
  justify-content: space-between;
}

.footer .mid .info .li {
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}

.footer .mid .info .li:last-child {
  margin-bottom: 0;
}

.footer .mid .info .li span {
  margin-right: 0.35rem;
}

.footer .social-share .icon-wechat .wechat-qrcode {
    top: -205px;
    bottom: auto;
}

.footer .mid .info .li .f_fx{display: flex;align-items: center;}
.footer .mid .info .li .f_fx a{width: 0.7rem;height: 0.7rem;border-radius: 50%;margin-right: 0.3rem;overflow: hidden;display: block;}
.footer .mid .info .li .f_fx a img{width: 100%;height: 100%;object-fit: cover;}
.footer .mid .info .li .f_fx a img.img2{display: none;}
.footer .mid .info .li .f_fx a:hover img.img2{display: block;}
.footer .mid .info .li .f_fx a:hover img.img1{display: none;}

/*.footer .mid .info .li a {*/
/*  width: 0.55rem;*/
/*  border-radius: 50%;*/
/*  margin-right: 0.3rem;*/
/*  position: relative;*/
/*}*/

/*.footer .mid .info .li a:last-child {*/
/*  margin-right: 0;*/
/*}*/

/*.footer .mid .info .li a img {*/
/*  width: 100%;*/
/*  position: absolute;*/
/*  top: 0;*/
/*  transform: translateY(-.175rem)*/
/*}*/

/*.footer .mid .info .li a img:nth-child(1) {*/
/*  opacity: 1;*/
/*}*/

/*.footer .mid .info .li a img:nth-child(2) {*/
/*  opacity: 0;*/
/*}*/

/*.footer .mid .info .li a:hover {*/
/*  img:nth-child(1) {*/
/*    opacity: 0;*/
/*  }*/

/*  img:nth-child(2) {*/
/*    opacity: 1;*/
/*  }*/
/*}*/

.footer .mid .info .focus {
  margin-top: 0.5rem;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}

.footer .mid .info .focus div {
  width: 2.3rem;
  margin: auto;
}

.footer .mid .info .focus div img {
  width: 100%;
}

.footer .mid .info .focus p {
  margin-top: 0.35rem;
  color: #fff;
}

.footer .mid .nav {
  display: flex;
  flex: 1;
  margin-left: 3.325rem;
  justify-content: space-between;
}

.footer .mid .nav .list {
  /*margin-right: 2.75rem;*/
}

.footer .mid .nav .list:last-child {
  margin-right: 0;
}

.footer .mid .nav .list a {
  display: block;
  color: #ffffff;
  margin-bottom: 0.45rem;
  opacity: 0.8;
  white-space: nowrap;
}

.footer .mid .nav .list a:first-child {
  margin-bottom: 0.6rem;
  opacity: 1;
}

.footer .mid .nav .list a:last-child {
  margin-bottom: 0;
}

.footer .btm {
  padding: 0.35rem 0;
  display: flex;
  justify-content: space-between;
  color: #bcbcbc;
}

.footer .btm a {
  color: #bcbcbc;
}

.index-ani {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.index-ani .box1 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 3.4rem 0 2.7rem;
  z-index: 11;
  background-color: #fff;
  border-radius: 4vw;
}

.index-ani .box1 .tab {
  margin-top: 1.3rem;
  display: flex;
  justify-content: center;
}

.index-ani .box1 .tab span {
  width: 4.1rem;
  height: 1.15rem;
  text-align: center;
  line-height: 1.15rem;
  border-radius: 0.6rem;
  color: #666666;
  box-shadow: 0 0 0 1px #e0e0e0;
  margin-right: 1rem;
  cursor: pointer;
  transition: all 0.4s;
}

.index-ani .box1 .tab span:last-child {
  margin-right: 0;
}

.index-ani .box1 .tab span:hover,
.index-ani .box1 .tab span.active {
  background-color: var(--vi);
  color: #fff;
}

.index-ani .box1 .item-box {
  margin-top: 1rem;
}

.index-ani .box1 .item-box .item {
  position: relative;
  width: 100%;
  height: 13.75rem;
  display: none;
}

.index-ani .box1 .item-box .item.show {
  display: block;
}

.index-ani .box1 .item-box .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.index-ani .box1 .item-box .item .pos-cont {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  width: 100%;
  color: #fff;
  padding: 0 1.45rem;
}

.index-ani .box1 .item-box .item .pos-cont .h {
  margin-top: 0.1rem;
}

.index-ani .box1 .item-box .item .pos-cont .more {
  position: absolute;
  bottom: 0.2rem;
  right: 1.4rem;
  width: 3.8rem;
  height: 1rem;
}

.index-ani .box1 .box1-swiper {
  margin-top: 0.75rem;
}

.index-ani .box1 .box1-swiper .swiper-scrollbar {
  margin-top: 2.35rem;
  position: relative;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #f1f1f1;
}

.index-ani .box1 .box1-swiper .swiper-scrollbar-drag {
  background-color: #151515;
}

.index-ani .box1 .box1-swiper .swiper-slide {
  width: 24%;
  height: 10.4rem;
  margin-right: 1.333%;
  background-color: #f3f4f7;
  padding: 2rem 0.5rem 0.55rem;
}

.index-ani .box1 .box1-swiper .swiper-slide:last-child {
  margin-right: 0;
}

.index-ani .box1 .box1-swiper .swiper-slide .pic {
  width: 100%;
  height: 5.4rem;
  text-align: center;
}

.index-ani .box1 .box1-swiper .swiper-slide .pic img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.index-ani .box1 .box1-swiper .swiper-slide .h {
  margin-top: 1.1rem;
  color: #000;
  width: 80%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.index-ani .box1 .box1-swiper .swiper-slide .more {
  position: absolute;
  bottom: 0.65rem;
  right: 0.65rem;
  width: 2.3rem;
  height: 1.1rem;
  text-align: center;
  line-height: 1.1rem;
  border-radius: 0.6rem;
  background-color: #151515;
  color: #fff;
}

.index-ani .box1 .box1-swiper .swiper-slide .more:hover {
  background-color: #4ebbca;
  color: #fff;
}

.index-ani2 {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.index-ani2 .box2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0 4rem;
  background-color: #fff;
  overflow: hidden;
  z-index: 10;
}

.index-ani2 .box2 .box2-top-swiper {
  margin-top: 1.1rem;
  overflow: initial;
}

.index-ani2 .box2 .box2-top-swiper .swiper-slide {
  width: 100%;
  height: 66vh;
  margin-right: 1.25rem;
}

.index-ani2 .box2 .box2-top-swiper .swiper-slide:last-child {
  margin-right: 0;
}

.index-ani2 .box2 .box2-top-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.index-ani2 .box2 .box2-btm-swiper {
  margin-top: 1.3rem;
  width: -moz-max-content;
  width: max-content;
  padding: 0 2.5rem;
  border-bottom: 2px solid #f1f1f1;
  overflow: initial;
}

.index-ani2 .box2 .box2-btm-swiper .swiper-slide {
  width: -moz-max-content;
  width: max-content;
  padding: 0 0.5rem 0.4rem;
  color: #86868b;
  margin-right: 2.2rem;
  cursor: pointer;
  transition: all 0.4s;
}

.index-ani2 .box2 .box2-btm-swiper .swiper-slide:last-child {
  margin-right: 0;
}

.index-ani2 .box2 .box2-btm-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #151515;
  transition: all 0.4s;
}

.index-ani2 .box2 .box2-btm-swiper .swiper-slide:hover {
  color: #000000;
}

.index-ani2 .box2 .box2-btm-swiper .swiper-slide.active {
  color: #000000;
}

.index-ani2 .box2 .box2-btm-swiper .swiper-slide.active::after {
  width: 100%;
}

.index-ani2 .box2 .cont-box {
  margin-top: 0.65rem;
}

.index-ani2 .box2 .cont-box .cont {
  color: #333333;
  text-align: center;
  display: none;
}

.index-ani2 .box2 .cont-box .cont.show {
  display: block;
}

.index-ani2 .box3 {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 4.1rem 0 1rem;
}

.index-ani2 .box3 .wrap {
  position: relative;
}

.index-ani2 .box3 .cont {
  margin-top: 1.25rem;
  color: #fff;
}

.index-ani2 .box3 .more {
  margin: 1.35rem auto 0;
}

.index-ani2 .box3 .num-box {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

.index-ani2 .box3 .num-box .li {
  padding-right: 2.5rem;
  margin-right: 2.8rem;
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.index-ani2 .box3 .num-box .li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.index-ani2 .box3 .num-box .li .num {
  display: flex;
  align-items: center;
}

.index-ani2 .box3 .num-box .li .num .ico {
  margin-left: 0.4rem;
}

.index-ani2 .box3 .num-box .li .txt {
  margin-top: 0.55rem;
}

.i-news {
  padding: 2.7rem 0 3rem;
  background-color: #f8f8f8;
  overflow: hidden;
}

.i-news .iNews-swiper {
  margin-top: 1.45rem;
  overflow: initial;
}

.i-news .iNews-swiper .swiper-scrollbar {
  margin-top: 3rem;
  position: relative;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #f1f1f1;
}

.i-news .iNews-swiper .swiper-scrollbar-drag {
  background-color: #151515;
}

.i-news .iNews-swiper .swiper-slide {
  width: 35.2%;
  margin-right: 0.5rem;
}

.i-news .iNews-swiper .swiper-slide:last-child {
  margin-right: 0;
}

.i-news .iNews-swiper .swiper-slide .pic {
  width: 100%;
  height: 8.8rem;
  position: relative;
  overflow: hidden;
}

.i-news .iNews-swiper .swiper-slide .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.4s;
}

.i-news .iNews-swiper .swiper-slide .pic p {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.25rem;
  height: 1.95rem;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
  clip-path: polygon(0 0, 0 100%, 100% 0);
  padding: 0.4rem 0.2rem;
  line-height: 1;
  background-color: var(--vi);
  color: #fff;

  font-size: .3rem;
}

.i-news .iNews-swiper .swiper-slide .time {
  margin-top: 0.5rem;
  color: #151515;
}

.i-news .iNews-swiper .swiper-slide .h {
  margin-top: 0.55rem;
  color: #333333;
  max-height: 2.8em;
  overflow: hidden;
  transition: all 0.4s;
}

.i-news .iNews-swiper .swiper-slide:hover .pic img {
  transform: scale(1.04);
}

.i-news .iNews-swiper .swiper-slide:hover .h {
  color: var(--vi);
}

.i-contact {
  background-color: #f8f8f8;
}

.i-contact .wrap {
  display: flex;
  justify-content: space-between;
}

.i-contact .li {
  width: 49%;
  height: 15.5rem;
  position: relative;
}

.i-contact .li .cont {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 1.5rem 1rem;
  text-align: center;
  color: #fff;
}

.i-contact .li .cont .tit {
  margin-top: 0.1rem;
}

.i-contact .li .cont .more {
  margin: 1rem auto 0;
}

.i-join {
  padding: 4.3rem 0 5rem;
  background-color: #f8f8f8;
}

.i-join .icon {
  width: 0.95rem;
  height: max-content;
  margin: auto;
}

.i-join .icon img {
  width: 100%;
}

.i-join .tit {
  margin-top: 0.95rem;
  color: #151515;
}

.i-join .form {
  margin: 1.35rem auto 0;
  width: 53%;
  height: 1.3rem;
  background-color: #f2f2f2;
  border: 1px solid #e5e5e5;
  border-radius: 0.25rem;
  display: flex;
  padding: 0.15rem;
}

.i-join .form input {
  width: calc(100% - 3.2rem);
  height: 100%;
  color: #333;
  background: none;
  padding: 0 0.25rem;
}

.i-join .form button {
  width: 3.2rem;
  height: 100%;
  background-color: #000000;
  color: #fff;
  border-radius: 0.25rem;
}

.i-join .share {
  margin-top: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.i-join .share .pic-box {
  display: flex;
  align-items: center;
}

.i-join .share p {
  margin-left: 17px;
}

.i-join .share .pic-box .pic {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  margin-right: -0.2rem;
  overflow: hidden;
}

.i-join .share .pic-box .pic:last-child {
  margin-right: 0;
}

.i-join .share .pic-box .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.i-join .share .pic-box p {
  margin-left: 0.4rem;
  color: #000000;
}

.news .hot {
  padding: 3.4rem 0;
}

.news .hot .link {
  display: flex;
  align-items: center;
}

.news .hot .pic {
  width: 48%;
}

.news .hot .pic img {
  width: 100%;
}

.news .hot .intro {
  width: 52%;
  padding-left: 2.5rem;
}

.news .hot .intro .time {
  color: #151515;
}

.news .hot .intro .tit {
  margin-top: 0.8rem;
  color: #000000;
}

.news .hot .intro .txt {
  margin-top: 0.3rem;
  color: #666666;
}

.news .hot .intro .more {
  margin-top: 1.8rem;
}

.news .box {
  background-color: #f9f9f9;
  padding: 1.6rem 0 3rem;
}

.news .box .handle {
  display: flex;
  justify-content: space-between;
}

.news .box .handle .tab {
  display: flex;
}

.news .box .handle .tab a {
  min-width: 3rem;
  height: 0.95rem;
  padding: 0 0.5rem;
  text-align: center;
  line-height: 0.95rem;
  margin-right: 0.5rem;
  color: #333333;
  border-radius: 0.5rem;
  box-shadow: 0 0 0 1px #d9d9d9;
  transition: all 0.4s;
}

.news .box .handle .tab a:hover,
.news .box .handle .tab a.active {
  color: #fff;
  box-shadow: none;
  background-color: var(--vi);
}

.news .box .handle .year {
  position: relative;
  z-index: 5;
}

.news .box .handle .year p {
  width: 4rem;
  height: 0.95rem;
  border-radius: 0.5rem;
  padding: 0 0.6rem;
  line-height: 0.95rem;
  box-shadow: 0 0 0 1px #d9d9d9;
  color: #333333;
  position: relative;
}

.news .box .handle .year p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.55rem;
  transform: translateY(-50%);
  border-top: 6px solid #333;
  border-left: 0.1rem solid transparent;
  border-right: 0.1rem solid transparent;
}

.news .box .handle .year .drop-down {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 0;
  width: 100%;
  max-height: 5rem;
  overflow-y: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0 0 1px #d9d9d9;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: all 0.4s;
}

.news .box .handle .year .drop-down a {
  display: block;
  width: 100%;
  height: 1rem;
  line-height: 1rem;
  padding: 0 0.6rem;
  border-bottom: 1px solid #d9d9d9;
  transition: all 0.4s;
}

.news .box .handle .year .drop-down a:last-child {
  border-bottom: none;
}

.news .box .handle .year .drop-down a:hover {
  color: var(--vi);
}

.news .box .handle .year:hover .drop-down {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.news .box .container {
  margin-top: 0.8rem;
  padding: 1.55rem 1.75rem 1.8rem;
  background-color: #fff;
}

.news .box .li-box {
  display: flex;
  flex-wrap: wrap;
}

.news .box .li-box .li {
  width: calc((100% - 2.5rem) / 3);
  margin-right: 1.25rem;
  margin-bottom: 1.75rem;
}

.news .box .li-box .li:nth-child(3n) {
  margin-right: 0;
}

.news .box .li-box .li .pic {
  width: 100%;
  height: 7rem;
  overflow: hidden;
}

.news .box .li-box .li .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s;
}

.news .box .li-box .li .time {
  margin-top: 0.8rem;
  color: #151515;
}

.news .box .li-box .li .h {
  margin-top: 0.25rem;
  color: #333333;
  line-height: 1.6;
  max-height: 3.2em;
  overflow: hidden;
}

.news .box .li-box .li:hover .pic img {
  transform: scale(1.05);
}

.news .box .page-box {
  margin-top: 0.3rem;
}

.news-info {
  padding: 2rem 0 4rem;
  background-color: #f9f9f9;
}

.news-info .wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.news-info .box {
  width: 73%;
  background-color: #fff;
  padding: 1.65rem 1.85rem 3.5rem;
}

.news-info .box .tit {
  color: #000;
}

.news-info .box .tag {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
}

.news-info .box .tag .time {
  color: #333333;
  margin-right: 1.15rem;
}

.news-info .box .share {
  display: flex;
  align-items: center;
}

.news-info .box .share p {
  color: #333333;
  margin-right: 0.6rem;
}

.news-info .box .share .iconList {
  display: flex;
  flex-direction: row;
  align-items: center;
  /*gap: .4rem;*/
}

.news-info .box .share .iconList a {
  width: .75rem;
  height: .75rem;
  position: relative;
}

/*.news-info .box .share .iconList a img {*/
/*  width: .75rem;*/
/*  height: .75rem;*/
/*  position: absolute;*/
/*}*/

/*.news-info .box .share .iconList a img:nth-child(1) {*/
/*  opacity: 1;*/
/*}*/

/*.news-info .box .share .iconList a img:nth-child(2) {*/
/*  opacity: 0;*/
/*}*/

/*.news-info .box .share .iconList a:hover {*/
/*  img:nth-child(1) {*/
/*    opacity: 0;*/
/*  }*/

/*  img:nth-child(2) {*/
/*    opacity: 1;*/
/*  }*/
/*}*/

.news-info .box .cont {
  margin-top: 0.7rem;
  padding-top: 0.9rem;
  border-top: 1px solid #f0f0f0;
  color: #666666;
  word-break: break-word;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-info .box .cont p {
  line-height: .8rem;
}

.news-info .rg {
  position: sticky;
  top: 2.3rem;
  width: 25%;
}

.news-info .recommend {
  width: 100%;
  background-color: #fff;
  padding: 1.5rem 0 1.25rem;
  box-shadow: 0 0.1rem 0.75rem #f3f2f0;
  margin-bottom: 0.35rem;
}

.news-info .recommend:last-child {
  margin-bottom: 0;
}

.news-info .recommend .tit {
  color: #111111;
  line-height: 1.4;
  padding: 0 0.75rem;
  position: relative;
}

.news-info .recommend .tit::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: var(--vi);
}

.news-info .recommend .li-box {
  margin-top: 1rem;
  padding: 0 0.75rem;
}

.news-info .recommend .li-box .li {
  display: block;
  margin-bottom: 0.7rem;
  transition: all 0.4s;
}

.news-info .recommend .li-box .li:last-child {
  margin-bottom: 0;
}

.news-info .recommend .li-box .li p {
  color: #333333;
  line-height: 1.4;
  transition: all 0.4s;
}

.news-info .recommend .li-box .li span {
  margin-top: 0.2rem;
  display: block;
  color: #999999;
}

.news-info .recommend .li-box .li:hover p {
  color: var(--vi);
}

.news-info .recommend .share {
  margin-top: 0.75rem;
  padding: 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
}

.news-info .recommend .share a {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  margin-right: 0.55rem;
  opacity: 0.15;
  transition: all 0.4s;
}

.news-info .recommend .share a:hover {
  opacity: 1;
}

.news-info .recommend .share a:nth-child(5n) {
  margin-right: 0;
}

.news-info .recommend .back {
  margin-top: 1.75rem;
  width: 100%;
  height: 1.25rem;
  background-color: var(--vi);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.news-info .recommend .back span {
  display: flex;
  margin-left: 0.5rem;
  width: 16px;
}

.news-info .info-page {
  padding-bottom: 0;
}

.contact .box1 {
  padding: 3.25rem 0;
  background-color: #f9f9f9;
}

.contact .box1 .wrap {
  background-color: #fff;
}

.contact .box1 .li-box {
  display: flex;
  padding: 1.2rem 0;
}

.contact .box1 .li-box .li {
  width: 33.33%;
  text-align: center;
}

.contact .box1 .li-box .li .icon {
  width: 2.65rem;
  height: 2.65rem;
  margin: auto;
}

.contact .box1 .li-box .li .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.contact .box1 .li-box .li .h {
  margin-top: 0.6rem;
  color: #333333;
}

.contact .box1 .li-box .li .txt {
  margin: 0.45rem auto 0;
  color: #999999;
  max-width: 6.35rem;
}

.contact .box1 .li-box .li .h1 {
  color: #333;
}

.contact .box1 .li-box2 {
  display: flex;
  border-top: 1px solid #ebebeb;
  padding: 1.5rem 0;
}

.contact .box1 .li-box2 .li {
  width: 33.33%;
  text-align: center;
}

.contact .box1 .li-box2 .li .h {
  color: #333333;
}

.contact .box1 .li-box2 .li .mail {
  margin-top: 0.2rem;
  display: block;
  color: #006bf8;
}

.contact .box2 {
  padding: 6.5rem 0 3.25rem;
  position: relative;
}

.contact .box2 .pos-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.contact .box2 .pos-bg img {
  width: 100%;
}

.contact .box2 .wrap {
  position: relative;
  z-index: 5;
}

.contact .box2 .form-box {
  margin-top: 1.7rem;
  padding: 2.4rem 2.4rem 3.75rem;
  background-image: url(../picture/27.png);
  background-color: #fff;
}

.contact .box2 .form-box .h {
  color: #000000;
}

.contact .box2 .form-box .sub {
  margin-top: 0.3rem;
  color: #666666;
  font-family: "NotoSansSC-Light";
}

.contact .box2 .form-box .form {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
}

.contact .box2 .form-box .form .h1 {
  width: 100%;
  color: #000000;
  margin-bottom: 0.8rem;
}

.contact .box2 .form-box .form .ipt-box {
  width: 31%;
  margin-right: 3.5%;
  margin-bottom: 0.7rem;
}

.contact .box2 .form-box .form .ipt-box .name {
  color: #000000;
}

.contact .box2 .form-box .form .ipt-box .name span {
  color: #ff0000;
  margin-right: 6px;
}

.contact .box2 .form-box .form .ipt-box .ipt {
  margin-top: 0.2rem;
  width: 100%;
  border-radius: 0.1rem;
  background-color: #fff;
  color: #333;
}

.contact .box2 .form-box .form .ipt-box .ipt input {
  width: 100%;
  height: 1.25rem;
  background: none;
  padding: 0 0.3rem;
}

.contact .box2 .form-box .form .ipt-box .ipt textarea {
  width: 100%;
  height: 3.35rem;
  background: none;
  padding: 0.4rem 0.3rem;
}

.contact .box2 .form-box .form .ipt-box .select {
  position: relative;
}

.contact .box2 .form-box .form .ipt-box .select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  border-top: 0.2rem solid #333;
  border-left: 0.15rem solid transparent;
  border-right: 0.15rem solid transparent;
}

.contact .box2 .form-box .form .ipt-box .select input {
  cursor: pointer;
}

.contact .box2 .form-box .form .ipt-box .select .drop-down {
  position: absolute;
  top: calc(100% + 0.2rem);
  left: 0;
  width: 100%;
  max-height: 5rem;
  overflow-y: auto;
  border-radius: 0.1rem;
  background-color: #fff;
  box-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: all 0.4s;
}

.contact .box2 .form-box .form .ipt-box .select .drop-down span {
  display: block;
  width: 100%;
  height: 1rem;
  line-height: 1rem;
  padding: 0 0.3rem;
  color: #666;
  cursor: pointer;
  transition: all 0.4s;
}

.contact .box2 .form-box .form .ipt-box .select .drop-down span:hover {
  color: var(--vi);
}

.contact .box2 .form-box .form .ipt-box .select.active {
  z-index: 5;
}

.contact .box2 .form-box .form .ipt-box .select.active .drop-down {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.contact .box2 .form-box .form .ipt-box .unit {
  position: relative;
}

.contact .box2 .form-box .form .ipt-box .unit p {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  transform: translateY(-50%);
  color: #000000;
}

.contact .box2 .form-box .form .ipt-box .time {
  position: relative;
}

.contact .box2 .form-box .form .ipt-box .time::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.6rem;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background-image: url(../picture/28.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.contact .box2 .form-box .form .ipt-box.mar0 {
  margin-right: 0;
}

.contact .box2 .form-box .form .ipt-box.mart {
  margin-top: 0.8rem;
}

.contact .box2 .form-box .form .ipt-box.wid100 {
  width: 100%;
  margin-right: 0;
}

.contact .box2 .form-box .form .sli-box {
  width: 100%;
  display: none;
  flex-wrap: wrap;
}

.contact .box2 .form-box .form .sli-box.active {
  display: flex;
}

.contact .box2 .form-box .form .info {
  margin-top: 1.55rem;
  width: 100%;
  text-align: center;
}

.contact .box2 .form-box .form .info .sli-clk {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  color: #999;
  margin: auto;
  cursor: pointer;
}

.contact .box2 .form-box .form .info .sli-clk .down {
  display: none;
}

.contact .box2 .form-box .form .info .sli-clk span {
  margin-left: 0.2rem;
  transition: all 0.4s;
}

.contact .box2 .form-box .form .info .sli-clk.active .down {
  display: block;
}

.contact .box2 .form-box .form .info .sli-clk.active .up {
  display: none;
}

.contact .box2 .form-box .form .info .sli-clk.active span {
  transform: rotate(180deg);
}

.contact .box2 .form-box .form .info .submit {
  margin-top: 0.4rem;
  width: 10rem;
  height: 1.1rem;
  border-radius: 0.55rem;
  background: var(--vi);
  color: #fff;
}

.contact .box2 .form-box .form .info .tips {
  margin-top: 0.6rem;
  color: #999999;
}

.ab1 {
  padding: 3.5rem var(--padd) 5rem;
  min-height: 21.8rem;
  position: relative;
}

.ab1 .bgimg1 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.ab1 .bgimg2 {
  position: absolute;
  top: 11.6rem;
  left: 4.35rem;
  z-index: 1;
  width: 16.9rem;
  height: auto;
}

.ab1 .ab_top {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}

.ab1 .cont {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.ab1 .cont .left {
  text-align: right;
  margin-right: 1rem;
  width: 50%;
  /* background: linear-gradient(94deg, #0a55b1 -8.25%, #022a5b 134.32%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  color:#4ebbca;
}

.ab1 .cont .right {
  width: 50%;
  color: #666;
  line-height: 2;
}

.ab2 {
  padding: 1rem var(--padd) 0;
  background-color: #fff;
}

.ab2 .ab_top {
  margin-bottom: 1.5rem;
}

.ab2 .list {
  display: flex;
  justify-content: space-between;
}

.ab2 .list .item {
  width: 7.125rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.ab2 .list .item .item_cont {
  position: relative;
  height: 14.925rem;
  margin-bottom: 0.8rem;
}

.ab2 .list .item .item_cont img {
  max-width: -moz-fit-content;
  max-width: fit-content;
  width: 21.8rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.ab2 .list .item .h1 {
  height: 0.8rem;
  line-height: 0.8rem;
  font-size: 0.5rem;
  margin-bottom: 0.675rem;
  color: #111;
  line-height: 1.1;
  transition: all 0.4s ease;
}

.ab2 .list .item .p1 {
  transition: all 0.4s ease;
  width: 21.8rem;
  opacity: 0;
  color: #666;
  line-height: 2;
}

.ab2 .list .item.on {
  width: 21.8rem;
}

.ab2 .list .item.on .h1 {
  font-size: 0.75rem;
}

.ab2 .list .item.on .p1 {
  opacity: 1;
}

.ab3 {
  padding: 6.075rem var(--padd) 3.5rem;
  background-color: #fff;
}

.ab3 .ab_top {
  margin-bottom: 2rem;
}

.ab3 .cont {
  display: flex;
}

.ab3 .cont .left {
  width: 18.8rem;
  height: auto;
  aspect-ratio: 752/424;
  overflow: hidden;
}

.ab3 .cont .left img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
}

.ab3 .cont .left:hover img {
  transform: scale(1.1);
}

.ab3 .cont .right {
  flex: 1;
  margin-left: 1.5rem;
}

.ab3 .cont .right .h1 {
  margin-bottom: 0.95rem;
  color: rgb(17, 17, 17);
  line-height: 1.46;
}

.ab3 .cont .right .p2 {
  color: #666;
  text-align: justify;
  line-height: 2;
}

.ab4 {
  padding: 3.4rem var(--padd) 2.9rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url(../picture/04.png) no-repeat center;
  background-size: cover;
  min-height: 20rem;
}

.ab4 .ab_top .title1 {
  color: #fff;
}

.ab4 .ab_top .title2 {
  color: #fff;
}

.ab4 .list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ab4 .list .item {
  width: calc((100% - 1.4rem) / 3);
  height: 3.8rem;
}

.ab4 .list .item:hover .item_cont {
  background-color: #fff;
  transform: translateY(-0.7rem);

}

.ab4 .list .item:hover .item_cont::after {
  opacity: 1;
}

.ab4 .list .item:hover .item_cont .text .h1 {
  color: #4ebbca;
}

.ab4 .list .item:hover .item_cont .text .p2 {
  color: #333;
}

.ab4 .list .item .item_cont {
  padding: 0.675rem 0.95rem;
  background: rgba(255, 255, 255, 0.2);
  height: 100%;
  -webkit-backdrop-filter: blur(5.75px);
  backdrop-filter: blur(5.75px);
  display: flex;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

.ab4 .list .item .item_cont::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 2px;
  width: 7rem;
  height: 2px;
  border-radius: 0 0 0 10px;
  background-color: #4ebbca;
  transition: all 0.4s ease;
  opacity: 0;
}

.ab4 .list .item .item_cont .ico {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 0.35rem;
  position: relative;
}

.ab4 .list .item .item_cont .ico img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0;
}

.ab4 .list .item .item_cont .ico img.img1 {
  opacity: 1;
}

.ab4 .list .item:hover .item_cont .ico img.img1 {
  opacity: 0;
}

.ab4 .list .item:hover .item_cont .ico img.img2 {
  opacity: 1;
}

.ab4 .list .item .item_cont .text {
  flex: 1;
  padding-top: 0.2rem;
}

.ab4 .list .item .item_cont .text .h1 {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.3rem;
  font-weight: 500;
  transition: all 0.4s ease;
}

.ab4 .list .item .item_cont .text .p2 {
  color: #fff;
  transition: all 0.4s ease;
}

.ab4 .list .item .item_cont:last-child {
  margin-right: 0;
}

.ab5 {
  padding: 4rem 0;
  background-color: #fff;
}

.ab5 .ab_top {
  margin-bottom: 2.175rem;
}

.ab5 .sw1 {
  padding: 0 var(--padd);
  margin-bottom: 1rem;
}

.ab5 .swiper1 {
  overflow: hidden;
  padding-bottom: 1rem;
  position: relative;
}

.ab5 .swiper1 .btn_box .btn {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  bottom: 1rem;
  left: 30%;
}

.ab5 .swiper1 .btn_box .btn.next {
  left: auto;
  right: 30%;
}

.ab5 .swiper1 .swiper-slide {
  width: 32%;
  margin: 0 1%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ab5 .swiper1 .swiper-slide.swiper-slide-active .img {
  opacity: 1;
  transform: scale(1);
}

.ab5 .swiper1 .swiper-slide.swiper-slide-active .year {
  color: #4ebbca;
  opacity: 1;
}

.ab5 .swiper1 .swiper-slide.swiper-slide-active .p1 {
  opacity: 1;
}

.ab5 .swiper1 .swiper-slide.swiper-slide-active .p1 ul {
  /*all: re;*/
  all: revert;
}

.ab5 .swiper1 .swiper-slide .img {
  width: 100%;
  height: auto;
  aspect-ratio: 546/352;
  overflow: hidden;
  margin-bottom: 0.925rem;
  transition: all 0.8s linear;
  transform: scale(0.7);
  opacity: 0.34;
}

.ab5 .swiper1 .swiper-slide .img img {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
}

.ab5 .swiper1 .swiper-slide .year {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0.6rem;
  color: #333;
  opacity: 0.8;
}

.ab5 .swiper1 .swiper-slide .p1 {
  text-align: center;
  line-height: 1.6;
  color: #333;
  opacity: 0;
  transition: all 0.4s ease;
}

.ab5 .sw2 {
  width: 100%;
  position: relative;
}

.ab5 .sw2 .bgsw2 {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  left: 0;
  top: 0;
}

.ab5 {
  overflow: hidden;
}

.ab5 .sw2 .swiper2 {
  padding: 0 var(--padd);
  overflow: visible;
}

.ab5 .sw2 .swiper2 .swiper-slide {
  width: 7.2rem;
  height: 2.5rem;
  position: relative;
  pointer-events: none;
}

.ab5 .sw2 .swiper2 .swiper-slide .ico {
  pointer-events: all;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--vi);
  position: absolute;
  transition: all 0.4s linear;
  cursor: pointer;
}

.ab5 .sw2 .swiper2 .swiper-slide .ico .ico_txt {
  position: absolute;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(100% + 0.675rem);
  transition: all 0.4s linear;
}

.ab5 .sw2 .swiper2 .swiper-slide .ico::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  border: 1px solid var(--vi);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.1);
}

.ab5 .sw2 .swiper2 .swiper-slide.swiper-slide-active .ico::after {
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.4s linear;
}

.ab5 .sw2 .swiper2 .swiper-slide.swiper-slide-active .ico .ico_txt {
  color: var(--vi);
}

.ab5 .sw2 .swiper2 .swiper-slide:nth-child(2n) .ico .ico_txt {
  position: absolute;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  bottom: auto;
  top: calc(100% + 0.675rem);
}

.ab_bg {
  background: url(../picture/07.png) no-repeat center top;
  background-size: 100% auto;
}

.ab6 {
  padding: 2.75rem 5.25rem 0;
}

.ab6 .ab_top {
  margin-bottom: 1.5rem;
}

.ab6 .ab_top2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.425rem;
}

.ab6 .ab_top2 .left {
  width: 18.8rem;
}

.ab6 .ab_top2 .left .h1 {
  color: var(--vi);
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.ab6 .ab_top2 .left .p1 {
  color: #666;
  line-height: 1.4;
}

.ab6 .ab_top2 .right {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: end;
}

.ab6 .ab_top2 .right .item {
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 4.1rem;
  background-color: #f0f0f0;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.125rem;
  border-radius: 1.125rem;
  transition: all 0.4s ease;
  color: #333;
  margin-right: 1.025rem;
}

.ab6 .ab_top2 .right .item:last-child {
  margin-right: 0;
}

.ab6 .ab_top2 .right .item.on,
.ab6 .ab_top2 .right .item:hover {
  color: #fff;
  background-color: var(--vi);
}

.ab6 .swper_cont {
  padding: 0 2.525rem;
  position: relative;
}

.ab6 .swper_cont .btn {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.ab6 .swper_cont .btn.next {
  left: auto;
  right: 0;
}

.ab6 .swper_cont .btn:hover svg circle {
  stroke: transparent;
  fill: #4ebbca;
}

.ab6 .swper_cont .btn:hover svg path {
  fill: white;
}

.ab6 .swper_cont .btn svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.ab6 .swper_cont .btn svg circle {
  transition: all 0.4s ease;
  stroke: #e1e1e1;
  fill: transparent;
}

.ab6 .swper_cont .btn svg path {
  transition: all 0.4s ease;
  fill: #4ebbca;
}

.ab6 .swper_cont .swiper {
  overflow: hidden;
  display: none;
}

.ab6 .swper_cont .swiper.on {
  display: block;
}

.ab6 .swper_cont .swiper .swiper-slide {
  width: 22%;
  margin-right: 4%;
}

.ab6 .swper_cont .swiper .swiper-slide:last-child {
  margin-right: 0;
}

.ab6 .swper_cont .swiper .swiper-slide .img {
  width: 100%;
  height: auto;
  aspect-ratio: 303/355;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background-color: #fff;*/
  overflow: hidden;
  margin-bottom: 0.975rem;
}

.ab6 .swper_cont .swiper .swiper-slide .img img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.4s ease;
}

.ab6 .swper_cont .swiper .swiper-slide .img:hover img {
  transform: scale(1.1);
}

.ab6 .swper_cont .swiper .swiper-slide .h1 {
  width: 100%;
  text-align: center;
  color: #333;
}

.ab7 {
  padding: 4rem 0 4.25rem;
  overflow: hidden;
}

.ab7 .ab_top {
  margin-bottom: 1.7rem;
}

.ab7 .swiper {
  overflow-x: hidden;
  padding: 22px 0;
}

.ab7 .swiper:last-child {
  margin-top: -22px;
}

.ab7 .swiper .swiper-wrapper {
  transition-timing-function: linear;
  will-change: transform;
}

.ab7 .swiper .swiper-slide {
  width: 6.75rem;
  height: auto;
  aspect-ratio: 270/150;
  background-color: #fff;
  box-shadow: 0px 3px 40px 0px rgba(3, 24, 51, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ab7 .swiper .swiper-slide img {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
  object-fit: contain;
}

/******************* solution--解决方案 ***********************************/
.solution-briefly {
  width: 100%;
  height: 18.5rem;
  background: linear-gradient(rgba(0, 0, 0, 0.2) 100%, rgba(0, 0, 0, 0) 100%), url(../picture/solution-bg.png) no-repeat center;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-briefly .solution-briefly-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.solution-briefly .solution-briefly-text p {
  font-weight: 300;
}

/* <!-------------------------- 优势 ----------------------------> */
.solution-adv {
  width: 100%;
  padding: 3.75rem 0;
}

.solution-adv .solution-adv-list {
  display: flex;
  margin-top: 2rem;
}

.solution-adv .solution-adv-item {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.solution-adv .solution-adv-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 1.2rem;
  background-color: rgba(0, 0, 0, .19);
}

.solution-adv .solution-adv-item:last-child::after {
  display: none;
}

.solution-adv .solution-adv-item .pic {
  width: 1.8rem;
  height: 1.5rem;
  margin-bottom: 0.45rem;
  text-align: center;
}

.solution-adv .solution-adv-item .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.solution-industry {
  padding: 3rem 0 6.85rem;
}

.solution-industry .solution-industry-list {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.75rem;
  justify-content: space-between;

}

.solution-industry .solution-industry-item {
  width: 27.5%;
  height: 12.15rem;
  position: relative;
  display: flex;
  align-items: end;
  margin-bottom: 1%;
  padding: 0 0.75rem 1.05rem;
  transition: all 0.4s;
}

.solution-industry .solution-industry-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
  opacity: .6;
}

.solution-industry .solution-industry-item.big {
  width: 43%;
}

.solution-industry .solution-industry-item:nth-child(3) {
  width: 43%;
}

.solution-industry .solution-industry-item:nth-child(4) {
  width: 43%;
}

.solution-industry .solution-industry-item .industry-item-text {
  position: relative;
  z-index: 2;
  color: #fff;
  transform: translateY(2.4em);
  transition: all .4s;
}

.solution-industry .solution-industry-item .industry-item-text .h {
  line-height: 1.2;
}

.solution-industry .solution-industry-item .industry-item-text .txt {
  margin-top: .4rem;
  line-height: 1.2;
  height: 2.4em;
  overflow: hidden;
  opacity: 0;
  transition: all .4s ease;
}

.solution-industry .solution-industry-item:hover .industry-item-text {
  transform: translateY(0);
}

.solution-industry .solution-industry-item:hover .industry-item-text .txt {
  opacity: 1;
}

.solution-industry .solution-industry-item .bg {
  background: url() no-repeat center center;
  background-size: cover;
}

.mountain {
  padding: 9rem 0 3.25rem;
  position: relative;
}

.mountain .pos-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.mountain .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFF;
  padding: 2.25rem 15% 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 70.4px 0px rgba(0, 0, 0, 0.08);
}

.mountain .txt {
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.mountain .solution-card-btn {
  display: flex;
  margin-top: 1.65rem;
}

.mountain .solution-card-btn a {
  margin-right: .75rem;
}

.mountain .solution-card-btn a:last-child {
  margin-right: 0;
}

/********************** retentionForm--留资表单 ************************************/
.retention {
  width: 100%;
  height: 18.5rem;
  background: linear-gradient(rgba(0, 0, 0, 0.2) 100%, rgba(0, 0, 0, 0) 100%), url(../picture/retention-bg.png) no-repeat center;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.retention .retention-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.retention .retention-text span {
  font-weight: 300;
}

/************************************* 表单 *******************************************/
.retention-form {
  width: 100%;
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.25rem 0 0;
}

.retention-form .retention-form-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.15rem;
}

.retention-form .retention-form-text span {
  height: 1.8rem;
}

.retention-form .retention-form-text p {
  font-weight: 300;
  color: #4d4d4d;
}

.retention-form .retention-form-box {
  width: 100%;
  background: #FFF;
  box-shadow: 0px 0px 70.4px 0px rgba(0, 0, 0, 0.08);
  margin-top: 2.075rem;
  display: flex;
  flex-direction: column;
  padding: 1.875rem 0 2.35rem;
}

.retention-form .retention-form-box .retention-form-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5rem 1.3rem;
}

.retention-form .retention-form-box .retention-form-list .retention-form-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.retention-form .retention-form-box .retention-form-list .retention-form-item lable {
  display: flex;
}

.retention-form .retention-form-box .retention-form-list .retention-form-item input {
  width: 9.75rem;
  height: 1.05rem;
  border: 0.025rem solid #f1f1f1;
  border-radius: 0.15rem;
  font-size: 0.4rem;
  padding: 0 0.65rem;
  font-weight: 400;
  color: #333;
}

.retention-form .retention-form-box .retention-form-list .retention-form-item input::-moz-placeholder {
  color: #B4B4B4;
}

.retention-form .retention-form-box .retention-form-list .retention-form-item input::placeholder {
  color: #B4B4B4;
}

.retention-form .retention-form-box .retention-form-list .retention-form-item .select-box {
  position: relative;
}

.retention-form .retention-form-box .retention-form-list .retention-form-item .select-box select {
  color: #999;
}

.retention-form .retention-form-box .retention-form-list .retention-form-item .select-box::after {
  display: inline-block;
  content: "";
  position: absolute;
  background: url(../picture/arrow-down.png) no-repeat center;
  right: 0.725rem;
  top: 0;
  width: 0.225rem;
  height: 100%;
}

.retention-form .retention-form-box .retention-form-list .retention-form-item select {
  width: 9.75rem;
  height: 1.05rem;
  border: 0.025rem solid #f1f1f1;
  border-radius: 0.15rem;
  font-size: 0.4rem;
  padding: 0 0.65rem;
  font-weight: 400;
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.retention-form .retention-form-box .retention-form-list .retention-form-item .long {
  width: 15.425rem;
}

.retention-form .retention-form-box .retention-form-list .retention-form-item .input-area {
  width: 32.35rem;
  height: 2.85rem;
  resize: none;
  border: 0.025rem solid #f1f1f1;
  border-radius: 0.15rem;
  font-size: 0.4rem;
  padding: 0.25rem 0.65rem;
  font-weight: 400;
  color: #333;
}

.retention-form .retention-form-box .retention-form-list .retention-form-item .input-area::placeholder {
  color: #B4B4B4;
}
.retention-form .retention-form-box .retention-form-list .sli-box {
  width: 100%;
  display: none;
  flex-wrap: wrap;
  gap: 1.5rem 1.3rem;
}

.retention-form .retention-form-box .retention-form-list .sli-box.active {
  display: flex;
}
.retention-form .retention-form-box .info .sli-clk {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  color: #999;
  margin: auto;
  cursor: pointer;
}

.retention-form .retention-form-box .info .sli-clk .down {
  display: none;
}

.retention-form .retention-form-box .info .sli-clk span {
  margin-left: 0.2rem;
  transition: all 0.4s;
}

.retention-form .retention-form-box .info .sli-clk.active .down {
  display: block;
}

.retention-form .retention-form-box .info .sli-clk.active .up {
  display: none;
}

.retention-form .retention-form-box .info .sli-clk.active span {
  transform: rotate(180deg);
}
.retention-form .retention-form-box .retention-from-radio {
  display: flex;
  flex-direction: row;
  margin-top: 0.75rem;
  align-items: center;
  gap: 0.25rem;
}

.retention-form .retention-form-box .retention-from-radio input {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 0.1rem;
}
@media (max-width:430px) {
    .retention-form .retention-form-box .retention-from-radio input {
        width: .6rem;
        height: .6rem;
        border-radius: .1rem;
    }
}

.retention-form .retention-form-box .retention-from-radio p {
  color: #B5B5B5;
  font-weight: 300;
  line-height: 0.6rem;
}

.retention-form .retention-form-box .retention-from-radio p a {
  color: #4ebbca;
  font-weight: 400;
}

.retention-form .retention-form-box .retention-from-radio p a:hover {
  border-bottom: 1px solid #4ebbca;
}

.retention-form .retention-form-box .retention-from-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.55rem;
}

.retention-form .retention-form-box .retention-from-btn button {
  width: 3.5389rem;
  height: 0.9495rem;
  padding: 0.1872rem 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  border-radius: 0.75rem;
}

.retention-form .retention-form-box .retention-from-btn input {
  width: 3.5389rem;
  height: 0.9495rem;
  padding: 0.1872rem 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  border-radius: 0.75rem;
}

.retention-form .retention-form-box .retention-from-btn .btn-fill {
  background: var(--vi, #4ebbca);
  color: #FFF;
}

.retention-form .retention-form-box .retention-from-btn .btn {
  border: 0.025rem solid #333;
  background-color: #fff;
}

.request::before {
  content: "*";
  display: inline-block;
  width: 11.243px;
  height: 18.989px;
  color: var(--vi, #4ebbca);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  margin-right: 0.15rem;
}

/********************** products--产品中心 *********************************/
.banner {
  width: 100%;
  height: 18.5rem;
}

.banner .item {
  position: relative;
}

.banner .item img {
  width: 100%;
  height: 100%;
}

.banner .item .text {
  position: absolute;
  top: 6rem;
  left: 21.5rem;
  text-align: center;
}

.banner .item .text p {
  font-weight: 300;
}

.productis {
  width: 100%;
}

.productis .wrap {
  display: flex;
}

.productis .pro-left {
  width: 26%;
  padding: 3.6rem 1.35rem 3.6rem 2rem;
  border-right: 1px solid #E6E6E6;
  position: relative;
}

.productis .pro-left .pro-list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: .25rem;
  margin-bottom: 1rem;
}

.productis .pro-left .pro-list-title .reset {
  color: var(--vi);
  font-weight: 500;
  cursor: pointer;
}
.productis .pro-left > div {
    position: sticky;
    top: 4rem;
}

.productis .pro-left .list {}

.productis .pro-left .list .items {
  margin-bottom: .75rem;
}

.productis .pro-left .list .items:last-child {
  margin-bottom: 0;
}

.productis .pro-left .list .items .tit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.productis .pro-left .list .items .tit-box span {
  font-weight: 500;
  width: 2.5rem;
}
.productis .pro-left .list .items .tit-box .active {
    color: #4ebbca;
}

.productis .pro-left .list .items .tit-box .sub {
  display: none;
}

.productis .pro-left .list .items.active .tit-box .sub {
  display: block;
}

.productis .pro-left .list .items.active .tit-box .add {
  display: none;
}

.productis .pro-left .list .items .tit-box img {
  width: 0.45rem;
  height: 0.45rem;
  cursor: pointer;
}

.productis .pro-left .list .items .list2 {
  display: none;
  margin-top: .375rem;
  padding: 0 0 0 3px;
}

.productis .pro-left .list .items .list2 .item {
  display: flex;
  align-items: center;
  margin-bottom: .3rem;
  cursor: pointer;
}

.productis .pro-left .list .items .list2 .item:last-child {
  margin-bottom: 0;
}

.productis .pro-left .list .items .list2 .item .check {
  width: .45rem;
  height: .45rem;
  position: relative;
  margin-right: .3rem;
  box-shadow: 0 0 0 1px #666666;
  transition: all .4s;
}

.productis .pro-left .list .items .list2 .item .check::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: .15rem;
  height: .25rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  opacity: 0;
  transition: all .4s;
}

.productis .pro-left .list .items .list2 .item.active .check {
  background-color: var(--vi);
  box-shadow: none;
}

.productis .pro-left .list .items .list2 .item.active .check::after {
  opacity: 1;
}

.productis .pro-right {
  width: 74%;
  padding: 3.25rem 0 4rem 1.8rem;
}

.productis .pro-right .pro-main .pro-list {
  display: flex;
  flex-wrap: wrap;
}

.productis .pro-right .pro-main .pro-list .item {
  width: calc((100% - 1rem) / 3);
  margin-right: .5rem;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
}

.productis .pro-right .pro-main .pro-list .item:nth-child(3n) {
  margin-right: 0;
}

.productis .pro-right .pro-main .pro-list .item .pic {
  width: 100%;
  height: 5.25rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: url(../picture/pro-item-bg.png) center no-repeat;
  background-size: 100% 100%;
  transition: all 0.3s;
  overflow: hidden;
}

.productis .pro-right .pro-main .pro-list .item .pic img {
  width: 100%;
  object-fit: contain;
  height: 4.4rem;
  transition: all .5s;
}

.productis .pro-right .pro-main .pro-list .item:hover .pic img {
  transform: scale(1.05);
}

.productis .pro-right .pro-main .pro-list .item .item-text {
  display: flex;
  flex-direction: column;
  padding: 0.375rem 0 0.8rem 0.75rem;
}

.productis .pro-right .pro-main .pro-list .item .item-text .tag {
  font-size: 10px;
  font-weight: 400;
  color: #D50018;
  display: inline-block;
  width: 0.8212rem;
  height: 0.456rem;
  border-radius: 0.075rem;
  background-color: #FFE2E6;
  text-align: center;
  line-height: 0.456rem;
  margin-bottom: 0.3rem;
}

.productis .pro-right .pro-main .pro-list .item .item-text .more {
  margin-top: 0.35rem;
  display: flex;
  flex-direction: row;
  gap: 1.325rem;
}

.productis .pro-right .pro-main .pro-list .item .item-text .more span {
  position: relative;
  cursor: pointer;
  font-size: 0.3rem;
  font-weight: 500;
}

.productis .pro-right .pro-main .pro-list .item .item-text .more span:hover {
  color: #4ebbca;
}

.productis .pro-right .pro-main .pro-list .item .item-text .more span:hover ::after {
  filter: drop-shadow(0 0 0 #4ebbca);
}

.productis .pro-right .pro-main .pro-list .item .item-text .more .more-btn::after {
  display: inline-block;
  content: "";
  position: absolute;
  background: url(../fonts/arrow-left-b.svg) no-repeat center;
  width: 0.125rem;
  height: 100%;
  margin-left: 0.15rem;
}

.productis .pro-right .pro-main .pro-list .item .item-text .more .pay-btn::after {
  display: inline-block;
  content: "";
  position: absolute;
  background: url(../fonts/arrow-left-b.svg) no-repeat center;
  width: 0.125rem;
  height: 100%;
  margin-left: 0.15rem;
}

.productis .pro-right .page-box {
  margin-top: 1.9rem;
}

.productis .pro-right .pro-page div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
}

.productis .pro-right .pro-page div button {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 0.1rem;
  background: #F7F7F7;
  position: relative;
}

.productis .pro-right .pro-page div .btn-prev::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../picture/arrow-l-1.png) no-repeat center;
  width: 1.05rem;
  height: 1.05rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}

.productis .pro-right .pro-page div .btn-next::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../picture/arrow-r-2.png) no-repeat center;
  width: 1.05rem;
  height: 1.05rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}

.productis .pro-right .pro-page div .page-list {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}

.productis .pro-right .pro-page div .page-list li {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 0.1rem;
  background: #F7F7F7;
  text-align: center;
  line-height: 1.05rem;
  font-size: 0.4rem;
  font-weight: 500;
  cursor: pointer;
}

.productis .pro-right .pro-page div .page-list .active {
  background-color: #4ebbca;
  color: #fff;
}

.productis .pro-right .pro-page div .page-jump span {
  font-weight: 500;
}

.productis .pro-right .pro-page div .page-jump input {
  width: 1.9rem;
  height: 1.05rem;
  border: 1px solid #f4f4f4;
  border-radius: 0.1rem;
  padding: 0.075rem 0.05rem;
  font-size: 0.4rem;
}

/********************** pro-detail--产品详情 *********************************/
.banner1 {
  position: absolute;
  width: 100%;
  height: 12.875rem;
  background: url(../picture/pro-detail-bg.png) no-repeat center;
  background-size: 100% 100%;
  top: 0;
  transition: all 0.6s;
}

.pro-detail {
  /*width: 100%;*/
  /*height: 40%;*/
  background-color: #fff;
  /*position: absolute;*/
  transition: all 1s;
  overflow: hidden;
  /*top: 12.875rem;*/
  z-index: 98;
}

.pro-detail div {
  position: relative;
}

.pro-detail .text {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  /*padding: 1.775rem 0 2.25rem 5.25rem;*/
  /*position: absolute;*/
  /*top: 0;*/
  transition: all 1s;
}

.pro-detail .text p {
  font-weight: 400;
}

.pro-detail .text p::before {
  content: "";
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  background: url(../picture/pro-detail2.png) no-repeat center;
  margin-right: 0.4rem;
}

.pro-detail .list {
  margin-top: 2.5rem;
  /*display: none;*/
  flex-direction: row;
  /*gap: 1.45rem;*/
  /*opacity: 0;*/
  transition: all 1s;
  /*padding: 1.775rem 0 2.25rem 5.25rem;*/
  /*position: absolute;*/
  /*top: 8rem;*/
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.pro-detail .list .item {
  width: calc((100% - 3.75rem * 2) / 3);
  margin-right: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.475rem;
}

.pro-detail .list .item img {
  width: 1.5rem;
  height: .875rem;
  object-fit: contain;
  margin-bottom: .55rem;
}

.pro-detail .list .item span {
  color: #000;
  text-align: center;
}

.pro-detail .list .item:nth-child(3n) {
  margin-right: 0;
}


.pro-detail .list .items .list2 .item p {
  font-weight: 400;
}

.pro-detail .list .items .list2 .item:nth-child(2) {
  width: 3.75rem;
}

.pro-detail .list .items .list2 .item:nth-child(5) {
  width: 3.75rem;
}

.pro-detail .text2 {
  /*padding: 1.775rem 0 2.25rem 5.25rem;*/
  /*position: absolute;*/
  /*top: 16rem;*/
  /*opacity: 0;*/
  transition: all 1s;
}

.pro_container .card_top {
  margin-bottom: 2.5rem;
}

.pro-detail .text2 table {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}

.pro-detail .text2 table tr {
  width: 20.925rem;
  display: flex;
  flex-direction: row;
  padding: 0.325rem 0 0.325rem 0.95rem;
  font-size: 0.4rem;
  color: #333;
  font-weight: 500;
}

.pro-detail .text2 table tr td {
  flex: 1;
}

.pro-detail .text2 table tr:nth-child(odd) {
  background-color: #f8f9fb;
}

.pro1 {
  width: 100%;
  /*position: absolute;*/
  /*top: 100vh;*/
  transition: all 1s;
  padding: 3rem 6.225rem;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pro1 p {
  color: #4d4d4d;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.pro1 .pro-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.55rem 0.575rem;
}

.pro1 .pro-list .item {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
}

.pro1 .pro-list .item .pic {
  width: 8.325rem;
  height: 5.25rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.pro1 .pro-list .item .pic img {
  width: 100%;
  height: 4.4rem;
  object-fit: cover;
}

.pro1 .pro-list .item .pic:hover {
  background: url(../picture/pro-item-bg.png);
  background-size: 100% 100%;
}

.pro1 .pro-list .item .item-text {
  display: flex;
  flex-direction: column;
  padding: 0.375rem 0 0.8rem 0.75rem;
}

.pro1 .pro-list .item .item-text .tag {
  font-size: 10px;
  font-weight: 400;
  color: #D50018;
  display: inline-block;
  width: 0.8212rem;
  height: 0.456rem;
  border-radius: 0.075rem;
  background-color: #FFE2E6;
  text-align: center;
  line-height: 0.456rem;
  margin-bottom: 0.3rem;
}

.pro1 .pro-list .item .item-text .more {
  margin-top: 0.35rem;
  display: flex;
  flex-direction: row;
  gap: 1.325rem;
}

.pro1 .pro-list .item .item-text .more span {
  position: relative;
  cursor: pointer;
  font-size: 0.3rem;
  font-weight: 500;
}

.pro1 .pro-list .item .item-text .more span:hover {
  color: #4ebbca;
}

.pro1 .pro-list .item .item-text .more span:hover ::after {
  filter: drop-shadow(0 0 0 #4ebbca);
}

.pro1 .pro-list .item .item-text .more a {
  position: relative;
  cursor: pointer;
  font-size: 0.3rem;
  font-weight: 500;
  color:#333;
}

.pro1 .pro-list .item .item-text .more a:hover {
  color: #4ebbca;
}

.pro1 .pro-list .item .item-text .more a:hover ::after {
  filter: drop-shadow(0 0 0 #4ebbca);
}

.pro1 .pro-list .item .item-text .more .more-btn::after {
  display: inline-block;
  content: "";
  position: absolute;
  background: url(../fonts/arrow-left-b.svg) no-repeat center;
  width: 0.125rem;
  height: 100%;
  margin-left: 0.15rem;
}

.pro1 .pro-list .item .item-text .more .pay-btn::after {
  display: inline-block;
  content: "";
  position: absolute;
  background: url(../picture/arrow-left-b.svg) no-repeat center;
  width: 0.125rem;
  height: 100%;
  margin-left: 0.15rem;
}

.pro-card {
  position: absolute;
  transition: all 1s;
  border-radius: 0.35rem;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0px 0px 0.825rem 0px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(0.1475rem);
  backdrop-filter: blur(0.1475rem);
  width: 13.5rem;
  height: 17rem;
  left: 29.25rem;
  top: 3.25rem;
  z-index: 99;
  padding: 0.925rem 0 0 0;
}

.pro-card>div {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: relative;
}

.pro-card>div .tag {
  width: 1.5rem;
  height: 0.7rem;
  margin-left: 0.75rem;
}

.pro-card>div .tag p {
  width: 100%;
  height: 100%;
  border-radius: 0.15rem;
  background: #FFE2E6;
  color: #D50018;
  font-family: "Noto Sans SC";
  font-size: 0.4rem;
  font-weight: 500;
  text-align: center;
  line-height: .7rem;
}

.pro-card>div img {
  margin: 1.7rem 0 0 2.25rem;
}

.pro-card>div .btn-box {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: row;
  height: 1.75rem;
}

.pro-card>div .btn-box button {
  width: 50%;
  height: 100%;
  font-weight: 500;
}

.pro-card>div .btn-box .btn1 {
  border-radius: 0px 0px 0px 0.35rem;
  background: var(--vi, #4ebbca);
  color: #fff;

  a {
    color: #fff;
  }
}

.pro-card>div .btn-box .btn2 {
  border-radius: 0 0 0.35rem 0;
  background-color: #fff;
  color: #000;

  a {
    color: #000;
  }
}

.pro-card>div .btn-box .all {
  width: 100%;
  background-color: #4ebbca;
  color: #fff;
  border-bottom-left-radius: .35rem;

  a {
    color: #fff;
  }
}

/***************************join--加入我们************************************/
.banner2 {
  width: 100%;
  height: 18.5rem;
  background: url(../picture/join-bg.png) no-repeat center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner2 .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.banner2 .text button {
  width: 4.625rem;
  height: 1.05rem;
  background-color: rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(0.1425rem);
  backdrop-filter: blur(0.1425rem);
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 500;
}

.banner2 .text button:after {
  content: "";
  display: inline-block;
  background: url(../picture/join2.png) no-repeat center;
  width: 0.25rem;
  height: 0.2rem;
  margin-left: 0.225rem;
}

.join1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /*gap: 2.25rem;*/
  padding: 2.5rem 0;
}

.join1 .text {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  text-align: center;
}

.join1 .text p {
  font-weight: 300;
  color: #4d4d4d;
}

.join1 .list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
}

.join1 .list .item {
  width: 28%;
  flex: 1;
  height: 11rem;
  padding: 1.7rem 1.225rem 1rem 1.225rem;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.join1 .list .item .img-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.join1 .list .item img {
  width: 2.375rem;
  height: 1.875rem;
  object-fit: contain;
}

.join1 .list .item .text {
  gap: 0.2rem;
}
.join1 .list .item .more {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .125rem;
}
.join1 .list .item .more img {
    width: .4rem;
    height: .4rem;
}

.join1 .list .item .text p {
  line-height: 0.6rem;
  font-weight: 500;
}

.join1 .list .item .num {
  font-weight: 500;
  color: #4ebbca;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.join1 .list .item .num::before {
  content: "";
  display: inline-block;
  border-bottom: 1px solid #D6D6D6;
  width: 1.2rem;
  margin-right: 0.75rem;
}

.join1 .list .item .num::after {
  content: "";
  display: inline-block;
  border-bottom: 1px solid #D6D6D6;
  width: 1.2rem;
  margin-left: 0.75rem;
}

.join1 .cont-box {
  margin-top: 3.75rem;
}

.join1 .list2 {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.join1 .list2 .items {
  width: 49%;
  background-color: #F9F9F9;
  border-radius: .25rem;
  padding: 1.95rem 0 1.5rem;
}

.join1 .list2 .left .h1 {
  margin-top: .5rem;
}

.join1 .list2 .left .txt {
  margin-top: .6rem;
  color: var(--vi);
}

.join1 .list2 .left .bottom {
  margin-top: 1.6rem;
  padding: 1.1rem 1.4rem 0;
  border-top: 1px solid #DCDCDC;
  display: flex;
  flex-wrap: wrap;
}

.join1 .list2 .left .bottom .item {
  width: 50%;
}

.join1 .list2 .left .bottom .item:nth-child(n + 3) {
  margin-top: 1rem;
}

.join1 .list2 .left .bottom .item p {
  margin-top: .25rem;
}

.join1 .list2 .right .pic {
  width: 5rem;
  margin: 1.15rem auto 0;
}

.join1 .list2 .right .h {
  margin-top: .9rem;
}

.join1 .list2 .right .txt {
  line-height: 2;
}

.join2 {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.75rem;
  background-color: #f9f9f9;
}

.join2 .text {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  text-align: center;
}

.join2 .text p {
  color: #4d4d4d;
  font-weight: 300;
}

.join2 .join2-main {
  display: flex;
  flex-direction: row;
  margin-top: 2.75rem;
}

.join2 .join2-main .left {
  display: flex;
  flex-direction: row;
  gap: 0.525rem;
}

.join2 .join2-main .left .left1 {
  display: flex;
  flex-direction: column;
  gap: 0.525rem;
}

.join2 .join2-main .left .left1 .item {
  padding: 1.05rem 0.75rem 0.65rem 0.825rem;
  width: 7.25rem;
  height: 5.225rem;
  border-radius: 0.25rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all .4s;
}

.join2 .join2-main .left .left1 .item .num {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}

.join2 .join2-main .left .left1 .item .num p {
  color: #4ebbca;
}

.join2 .join2-main .left .left1 .item .num .icon {
  width: 1rem;
  height: .925rem;
  text-align: right;
  position: relative;
}
.join2 .join2-main .left .left1 .item .num .icon img {
    position: absolute;
    top: 0;
    left: 0;
}
.join2 .join2-main .left .left1 .item .num .icon img:nth-of-type(1) {
    opacity: 1;
}
.join2 .join2-main .left .left1 .item .num .icon img:nth-of-type(2){
    opacity: 0;
}

.join2 .join2-main .left .left1 .item:hover {
  background-color: #4ebbca;
  color: #fff;
}

.join2 .join2-main .left .left1 .item:hover .num p {
  color: #fff;
}

.join2 .join2-main .left .left1 .item:hover .num .icon img:nth-of-type(1) {
  opacity: 0;
}
.join2 .join2-main .left .left1 .item:hover .num .icon img:nth-of-type(2) {
  opacity: 1;
}

.join2 .join2-main .left .left2 {
  width: calc(.525rem + 5.625rem * 2);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  /*gap: 0.525rem;*/
}

.join2 .join2-main .left .left2 .item {
  width: 5.625rem;
  height: 8rem;
  background-color: #fff;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.05rem 0.6rem 0.6rem 0.825rem;
}

.join2 .join2-main .left .left2 .item .num {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}

.join2 .join2-main .left .left2 .item .num p {
  color: #4ebbca;
}

.join2 .join2-main .left .left2 .item .num .icon {
  width: 1rem;
  height: .925rem;
  text-align: right;
  position: relative;
}
.join2 .join2-main .left .left2 .item .num .icon img {
    position: absolute;
    top: 0;
    left: 0;
}
.join2 .join2-main .left .left2 .item .num .icon img:nth-of-type(1) {
    opacity: 1;
}
.join2 .join2-main .left .left2 .item .num .icon img:nth-of-type(2) {
    opacity: 0;
}

.join2 .join2-main .left .left2 .item:hover {
  background-color: #4ebbca;
  color: #fff;
}

.join2 .join2-main .left .left2 .item:hover .num p {
  color: #fff;
}

.join2 .join2-main .left .left2 .item:hover .num .icon img:nth-of-type(1) {
  opacity: 0;
}
.join2 .join2-main .left .left2 .item:hover .num .icon img:nth-of-type(2) {
    opacity: 1;
}

.join2 .join2-main .right {
  width: 17.25rem;
  margin-left: .7rem;
  height: 16.5rem;
  padding: 1.625rem 1.425rem 0;
  border-radius: 0.25rem;
  background-color: #fff;
  position: relative;
  flex-shrink: 0;
  background-image: url(../picture/29.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.join2 .join2-main .right .con {
  display: none;
}

.join2 .join2-main .right .con.on {
  display: block;
}

.join2 .join2-main .right .txt {
  font-weight: 400;
  line-height: 0.8rem;
  margin-top: 0.375rem;
}

.join2 .join2-main .right .more {
  margin-top: 1.5rem;
}

.join2 .join2-main .right button {
  width: 4.5rem;
  height: 1.05rem;
  text-align: center;
  border-radius: 0.5rem;
  font-size: 0.35rem;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  margin-top: 1.5rem;
}

.join2 .join2-main .right button::after {
  content: "";
  display: inline-block;
  width: 0.25rem;
  height: 0.2rem;
  background: url(../picture/arrow-right-b.svg) no-repeat center;
  margin-left: 0.325rem;
}

.join2 .join2-main .right img {
  width: 100%;
  height: 5.8rem;
  margin-top: .5rem;
  /*position: absolute;*/
  bottom: 0;
  right: 0;
}

.join3 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(260deg, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.3) 20%), url(../picture/join15.png) no-repeat center;
  background-size: 100% 100%;
  padding: 6.6rem 12.75rem;
}

.join3 .title {
  margin-bottom: 1.5rem;
}

.join3 .input {
  display: flex;
  flex-direction: row;
  position: relative;
}

.join3 input {
  width: 22.5rem;
  height: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.1);
  padding: 0.25rem 1.4rem;
  font-size: 0.4rem;
  color: #fff;
}

.join3 input::-moz-placeholder {
  color: #fff;
}

.join3 input::placeholder {
  color: #fff;
}

.join3 .input::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  background: url(../picture/search.png) no-repeat center;
  background-size: 100% 100%;
  position: absolute;
  left: 0.775rem;
  top: 0.58rem;
}

.join3 .input button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 1.5rem;
  border-radius: 0.75rem;
  background-color: #fff;
  font-size: 0.45rem;
  color: #333;
  font-weight: 500;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

.join3 button {
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.1);
  width: 4.625rem;
  height: 1.05rem;
  text-align: center;
  font-size: 0.35rem;
  font-weight: 500;
  color: #fff;
}

.join3 button::after {
  content: "";
  display: inline-block;
  width: 0.25rem;
  height: 0.2rem;
  background: url(../picture/join2.png) no-repeat center;
  margin-left: 0.225rem;
}

.join3 .txt {
  margin-top: 1.65rem;
  text-align: center;
}

.join3 .more {
  margin-top: 1.5rem;
}

/***************************rec-list--招聘列表************************************/
.rec1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.25rem 0 2rem;
}

.rec1 .text {
  text-align: center;
  margin-bottom: 1.375rem;
}

.rec1 .input {
  width: 47%;
  height: 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: .75rem;
  border: 1px solid #D6D6D6;
}

.rec1 .icon {
  width: 0.4rem;
  height: 0.4rem;
  background: none;
}

.rec1 input {
  width: calc(100% - .4rem - 4.5rem);
  height: 100%;
  padding: 0 0.25rem;
  color: #333;
}

.rec1 input::-moz-placeholder {
  color: #666;
}

.rec1 input::placeholder {
  color: #666;
}

.rec1 .btn {
  width: 4.5rem;
  height: 100%;
  border-radius: 0.75rem;
  background-color: #4ebbca;
  color: #fff;
}

/*.rec3 {*/
/*    padding: 1.875rem 4.25rem 2.5rem 5.25rem !important;*/
/*}*/

.rec2 {
  width: 100%;
  padding: 1.875rem 5.25rem 2.5rem;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: row;
}
.rec2 .left {
  width: 9rem;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.rec2 .left .title {
  width: 100%;
  background-color: #fff;
  padding: 1.125rem 0 0.575rem 0.875rem;
  border-radius: 0.25rem 0.25rem 0 0;
}
.rec2 .left .title2 {
    border-radius: .25rem;
}

.rec2 .left .rec2-l-b {
  background-color: #fff;
  border-radius: 0 0 0.25rem 0.25rem;
  padding: 0.9rem;
}
.rec2 .left .dl-item {
    width: 9rem;
    height: 1.75rem;
    border-radius: .4rem;
    border: .04rem solid #D9D9D9;
    display: flex;
    justify-content: center;
    text-align: center;
}
.rec2 .left .dl-item.active {
     background-color: #4ebbca;
    color: #fff;
}
.rec2 .left .dl-item:hover {
    background-color: #4ebbca;
    color: #fff;
}
.rec2 .left .dl-item .tit-box {
    display: flex;
    align-items: center;
}
.rec2 .left .rec2-l-b .text {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.rec2 .left .rec2-l-b .text .btn {
  width: 16px;
  display: none;
}

.rec2 .left .rec2-l-b .text .on {
  display: block;
}

.rec2 .left .rec2-l-b .list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rec2 .left .rec2-l-b .list .item {
  display: flex;
  cursor: pointer;
  align-items: center;
}

.rec2 .left .rec2-l-b .list .item .check {
  width: .45rem;
  height: .45rem;
  position: relative;
  margin-right: .3rem;
  box-shadow: 0 0 0 1px #666666;
  transition: all .4s;
}

.rec2 .left .rec2-l-b .list .item .check::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: .15rem;
  height: .25rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  opacity: 0;
  transition: all .4s;
}

.rec2 .left .rec2-l-b .list .item.active .check {
  background-color: var(--vi);
}

.rec2 .left .rec2-l-b .list .item.active .check::after {
  opacity: 1;
}

.rec2 .right {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-left: 0.75rem;
}
.rec2 .dl-right .list .item a {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.rec2 .right .text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.rec2 .right .text .tag {
  width: 1rem;
  height: 0.5rem;
  border-radius: 0.1rem;
  background: #4ebbca;
  display: inline-block;
  text-align: center;
  line-height: 0.5rem;
}

.rec2 .right .list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 0.775rem;
  gap: 0.525rem 0.525rem;
}

.rec2 .right .list .item {
  width: 8.9rem;
  border-radius: 0.25rem;
  background: #FFF;
  padding: 0.75rem 0.75rem 0.5rem 0.75rem;
}

.rec2 .right .list .item .title {
  display: flex;
  flex-direction: row;
  /*align-items: center;*/
  gap: 0.375rem;
}

.rec2 .right .list .item .title span {
  font-weight: 500;
}

.rec2 .right .list .item .title .tag {
  display: inline-block;
  width: 1.3rem;
  height: 0.625rem;
  border-radius: 0.1rem;
  border: 1px solid #4ebbca;
  background: #FFF;
  text-align: center;
  color: #4ebbca;
  flex-shrink:0;
  transform: translateY(.075rem);
  line-height: .55rem;
}

.rec2 .right .list .item .text1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  padding-right: 2rem;
  font-weight: 400;
}

.rec2 .right .list .item .text1 .line {
  width: 0.025rem;
  height: 0.4rem;
  background: #B1B1B1;
}

.rec2 .right .list .item .text2 {
  font-weight: 400;
  margin-top: 1rem;
}
.rec2 .right .list .item .text3 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.rec2 .right .page-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.rec2 .right .page-box .pro-page {
  height: 1.05rem;
  margin-top: 1.875rem;
}

.rec2 .right .page-box .pro-page div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
}

.rec2 .right .page-box .pro-page div button {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 0.1rem;
  background: #F7F7F7;
  position: relative;
}

.rec2 .right .page-box .pro-page div .btn-prev::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../picture/arrow-l-1.png) no-repeat center;
  width: 1.05rem;
  height: 1.05rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}

.rec2 .right .page-box .pro-page div .btn-next::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../picture/arrow-r-2.png) no-repeat center;
  width: 1.05rem;
  height: 1.05rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}

.rec2 .right .page-box .pro-page div .page-list {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}

.rec2 .right .page-box .pro-page div .page-list li {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 0.1rem;
  background: #F7F7F7;
  text-align: center;
  line-height: 1.05rem;
  font-size: 0.4rem;
  font-weight: 500;
  cursor: pointer;
}

.rec2 .right .page-box .pro-page div .page-list .active {
  background-color: #4ebbca;
  color: #fff;
}

.rec2 .right .page-box .pro-page div .page-jump span {
  font-weight: 500;
}

.rec2 .right .page-box .pro-page div .page-jump input {
  width: 1.9rem;
  height: 1.05rem;
  border: 1px solid #f4f4f4;
  border-radius: 0.1rem;
  padding: 0.075rem 0.05rem;
  font-size: 0.4rem;
}

/***************************rec-detail--招聘详情************************************/
.rec-detail {
  width: 100%;
  background-color: #f9f9f9;
  padding: 2.5rem 5.25rem;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;

  align-items: flex-start;
}

.rec-detail .left {
  padding: 1.35rem 0 1.6rem 0;
  background-color: #fff;
  width: 26.5rem;
}

.rec-detail .left .text1 {
  border-bottom: 1px solid #ededed;
  padding: 0 0 0 1.125rem;
}

.rec-detail .left .text1 .title {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.rec-detail .left .text1 .title .tag {
  display: inline-block;
  width: 1.3rem;
  height: 0.625rem;
  text-align: center;
  line-height: 0.6rem;
  border-radius: 4px;
  border: 1px solid #4ebbca;
  background: #FFF;
  color: #4ebbca;
  margin-left: 0.3rem;
}

.rec-detail .left .text1 .text {
  margin-top: 0.9rem;
  margin-bottom: 0.75rem;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  font-weight: 400;
}

.rec-detail .left .text1 .text span:nth-child(1)::before {
  content: "";
  display: inline-block;
  background: url(../picture/rec-detail1.png);
  background-size: 100% 100%;
  width: 0.3rem;
  height: 0.4rem;
  margin-right: 0.25rem;
}

.rec-detail .left .text1 .text span:nth-child(2)::before {
  content: "";
  display: inline-block;
  background: url(../picture/rec-detail2.png);
  background-size: 100% 100%;
  width: 0.375rem;
  height: 0.425rem;
  margin-right: 0.25rem;
}

.rec-detail .left .text1 .text span:nth-child(3)::before {
  content: "";
  display: inline-block;
  background: url(../picture/rec-detail3.png);
  background-size: 100% 100%;
  width: 0.375rem;
  height: 0.425rem;
  margin-right: 0.25rem;
}

.rec-detail .left .text1 .text span:nth-child(4)::before {
  content: "";
  display: inline-block;
  background: url(../picture/rec-detail4.png);
  background-size: 100% 100%;
  width: 0.425rem;
  height: 0.425rem;
  margin-right: 0.25rem;
}

.rec-detail .left .text-box {
  padding: 1.7rem 0 0 1.125rem;
}

.rec-detail .left .text-box ol {
  list-style-type: demical;
  width: 20rem;
  padding: 0 0 0 0.375rem;
}

.rec-detail .left .text-box ol li {
  list-style-position: outside;
  line-height: 1rem;
  font-weight: 400;
}

.rec-detail .left .text-box .text2 span:nth-child(1) {
  margin-bottom: 0.5rem;
  display: inline-block;
}

.rec-detail .left .text-box .text3 {
  margin-top: 1.7rem;
}

.rec-detail .left .text-box .text3 span {
  margin-bottom: 0.5rem;
  display: inline-block;
}

.rec-detail .left .text-box .text3 .desc {
  margin-top: 0.5rem;
  display: inline-block;
}

.rec-detail .left .text-box .text4 span {
  margin-top: 2.275rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.rec-detail .left .text-box .text4 p {
  line-height: 1rem;
  width: 21.025rem;
}

.rec-detail .left .btn {
  display: flex;
  flex-direction: row;
  gap: 1.45rem;
  padding: 0 0 0 1.125rem;
  margin-top: 2.025rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

.rec-detail .left .btn button {
  width: 4.5rem;
  height: 1.05rem;
  border-radius: 0.525rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #333;
  background-color: #fff;
}
.rec-detail .left .btn button a {
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rec-detail .left .btn button:hover {
  background: #4ebbca;
  a {
      color: #fff;
  }
}

.rec-detail .left .btn button::after {
  content: "";
  display: inline-block;
  background: url(../picture/arrow-down-w.png) no-repeat center;
  background-size: 100% 100%;
  width: 0.2rem;
  height: 0.1rem;
  margin-left: 0.35rem;
}

.rec-detail .left .btn span {
  color: #4ebbca;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.rec-detail .left .btn span::before {
  content: "";
  display: inline-block;
  background: url(../picture/rec-detail6.png) no-repeat center;
  background-size: 100% 100%;
  width: 0.325rem;
  height: 0.5rem;
  margin-right: 0.325rem;
}

/*.rec-detail .left .ewm_box:hover .rec-pop-box {*/
/*  display: block;*/
/*}*/
/* .rec-pop-box:hover {*/
/*  display: block;*/
/* }*/

.rec-detail .left .ewm_box {
  position: relative;
}

.rec-detail .left .btn .rec-pop-box {
  width: fit-content;
  position: absolute;
  padding: 0.25rem;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.375rem;
  filter: drop-shadow(0px 4px 18px rgba(0, 0, 0, 0.07));
  border-radius: 0.25rem;
  display: none;
}

.rec-detail .left .btn .rec-pop-box .rec-pop-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
}

.rec-detail .left .btn .rec-pop-box .rec-pop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 0.5rem;
}

.rec-detail .left .btn .rec-pop-box .rec-pop img {
  width: 3rem;
  height: 3rem;
  max-width: 3rem;
  object-fit: contain;
}

.rec-detail .left .btn .rec-pop-box .rec-pop p {
  white-space: nowrap;
}

.rec-detail .left .btn .rec-pop-box .rec-pop p:nth-child(3) {
  color: #4ebbca;
}

.rec-detail .left .btn .rec-pop-box .rec-pop .triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0.5rem solid #fff;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  bottom: -0.6rem;
}

.rec-detail .right {
  width: 10.25rem;
  height: auto;
  border-radius: 0.25rem;
  position: sticky;
  top: 4.5rem;
}

.rec-detail .right .right-top {
  height: 2.375rem;
  border-bottom: 1px solid #ededed;
  background-color: #fff;
  padding: 0 0 0.45rem 0.9rem;
  display: flex;
  align-items: flex-end;
}

.rec-detail .right ul {
  background-color: #fff;
}

.rec-detail .right ul .item {
  padding: 0.725rem 0 0.65rem 0;
  border-bottom: 1px solid transparent;
  background: linear-gradient(white, white) padding-box, repeating-linear-gradient(-45deg, #ccc 0, #ccc 0.5em, white 0, white 0.75em);
  margin-left: 1.025rem;
  font-weight: 400;
}

.rec-detail .right ul .item a {
  color: #333;
  display: block;
}

.rec-detail .right ul .item a:hover {
  color: var(--vi);
}

.rec-detail .right ul .item:last-child {
  border-bottom: none;
}

.rec-detail .right button {
  width: 10.25rem;
  height: 1.75rem;
  border-radius: 0.25rem;
  background: #4ebbca;
  margin-top: 0.65rem;
  font-size: 0.5rem;
  font-weight: 400;
}

.rec-detail .right button a {
  color: #fff;
}

.rec-detail .right button::before {
  content: "";
  display: inline-block;
  background: url(../picture/back-w.png) no-repeat center;
  background-size: 100% 100%;
  width: 0.45rem;
  height: 0.4rem;
  margin-right: 0.35rem;
}

/***************************search--搜索页************************************/
.contianer1 {
  width: 100%;
  background-color: #f9f9f9;
}

.search1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4.025rem 0 2.25rem;
}

.search1 .input {
  width: 19.95rem;
  height: 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

.search1 .input input {
  width: 100%;
  height: 1.5rem;
  border-radius: 0.75rem;
  background-color: #fff;
  border: 1px solid #D6D6D6;
  padding: 0.5rem 1.725rem;
  font-size: 0.4rem;
  font-weight: 400;
}

.search1 .input::before {
  content: "";
  display: inline-block;
  background: url(../picture/search-b.png) no-repeat center;
  background-size: 100% 100%;
  width: 0.4rem;
  height: 0.4rem;
  position: absolute;
  left: 1.075rem;
}

.search1 .input::after {
  content: "搜索";
  display: inline-block;
  font-size: 0.45rem;
  font-weight: 500;
  color: #fff;
  background-color: #0D468c;
  width: 4.5rem;
  height: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  line-height: 1.5rem;
  position: absolute;
  right: 0;
}

.search-nav {
  display: flex;
  flex-direction: row;
  padding: 0 5.25rem 0.5rem;
  margin-top: 2.25rem;
  border-bottom: 1px solid #dfdfdf;
}

.search-nav .list {
  display: flex;
  flex-direction: row;
  gap: 3.25rem;
  margin-left: 6.25rem;
}

.search-nav .list .item {
  cursor: pointer;
}

.search-nav .list .on {
  color: #4ebbca;
  position: relative;
}

.search-nav .list .on::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -0.6rem;
  width: 100%;
  height: 0.05rem;
  background: #4ebbca;
  left: 0;
}

.search-main {
  padding: 1.75rem 5.25rem 4rem;
}

.search-main .list1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.55rem 0.575rem;
  margin-top: 1.375rem;
}

.search-main .list1 .item {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
}

.search-main .list1 .item .pic {
  width: 8.325rem;
  height: 5.25rem;
  transition: all 0.3s;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.search-main .list1 .item .pic img {
  width: 2.575rem;
  height: 4.4rem;
}

.search-main .list1 .item .pic:hover {
  background: url(../picture/pro-item-bg.png);
  background-size: 100% 100%;
}

.search-main .list1 .item .item-text {
  display: flex;
  flex-direction: column;
  padding: 0.375rem 0 0.8rem 0.75rem;
}

.search-main .list1 .item .item-text .tag {
  font-size: 10px;
  font-weight: 400;
  color: #D50018;
  display: inline-block;
  width: 0.8212rem;
  height: 0.456rem;
  border-radius: 0.075rem;
  background-color: #FFE2E6;
  text-align: center;
  line-height: 0.456rem;
  margin-bottom: 0.3rem;
}

.search-main .list1 .item .item-text .more {
  margin-top: 0.35rem;
  display: flex;
  flex-direction: row;
  gap: 1.325rem;
}

.search-main .list1 .item .item-text .more span {
  position: relative;
  cursor: pointer;
  font-size: 0.3rem;
  font-weight: 500;
}

.search-main .list1 .item .item-text .more span:hover {
  color: #4ebbca;
}

.search-main .list1 .item .item-text .more span:hover ::after {
  filter: drop-shadow(0 0 0 #4ebbca);
}

.search-main .list1 .item .item-text .more .more-btn::after {
  display: inline-block;
  content: "";
  position: absolute;
  background: url(../picture/arrow-left-b.svg) no-repeat center;
  width: 0.125rem;
  height: 100%;
  margin-left: 0.15rem;
}

.search-main .list1 .item .item-text .more .pay-btn::after {
  display: inline-block;
  content: "";
  position: absolute;
  background: url(../picture/arrow-left-b.svg) no-repeat center;
  width: 0.125rem;
  height: 100%;
  margin-left: 0.15rem;
}

.search-main .items:nth-child(2) {
  margin-top: 2.475rem;
}

.search-main .pro-page {
  height: 1.05rem;
  margin-top: 1.875rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.search-main .pro-page div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.25rem;
}

.search-main .pro-page div button {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 0.1rem;
  background: #F7F7F7;
  position: relative;
}

.search-main .pro-page div .btn-prev::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../picture/arrow-l-1.png) no-repeat center;
  width: 1.05rem;
  height: 1.05rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}

.search-main .pro-page div .btn-next::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(../picture/arrow-r-2.png) no-repeat center;
  width: 1.05rem;
  height: 1.05rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}

.search-main .pro-page div .page-list {
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}

.search-main .pro-page div .page-list li {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 0.1rem;
  background: #F7F7F7;
  text-align: center;
  line-height: 1.05rem;
  font-size: 0.4rem;
  font-weight: 500;
  cursor: pointer;
}

.search-main .pro-page div .page-list .active {
  background-color: #4ebbca;
  color: #fff;
}

.search-main .pro-page div .page-jump span {
  font-weight: 500;
}

.search-main .pro-page div .page-jump input {
  width: 1.9rem;
  height: 1.05rem;
  border: 1px solid #f4f4f4;
  border-radius: 0.1rem;
  padding: 0.075rem 0.05rem;
  font-size: 0.4rem;
}

.search-main .search2 {
  display: none;
  flex-direction: column;
}

.search-main .search3 {
  display: none;
  flex-direction: column;
}

.search-main .search3 .items .list1 {
  flex-wrap: nowrap;
}

.search-main .search3 .items .list1 .item {
  width: 12.225rem;
}

.search-main .search3 .items .list1 .item .pic {
  width: 12.225rem;
  height: 8.15rem;
}

.search-main .search3 .items .list1 .item .pic img {
  width: 100%;
  height: 100%;
}

.search-main .search3 .items .list1 .item .item-text {
  width: 100%;
  padding-right: 0.825rem;
}

.search-main .search4 {
  display: none;
  flex-direction: column;
}

.search-main .search4 .items .list1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 0.775rem;
  gap: 0.525rem 0.525rem;
}

.search-main .search4 .items .list1 .item {
  width: 8.9rem;
  border-radius: 0.25rem;
  background: #FFF;
  padding: 0.75rem 2.75rem 0.5rem 0.75rem;
}

.search-main .search4 .items .list1 .item .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.375rem;
}

.search-main .search4 .items .list1 .item .title span {
  font-weight: 500;
}

.search-main .search4 .items .list1 .item .title .tag {
  display: inline-block;
  width: 1.3rem;
  height: 0.625rem;
  border-radius: 0.1rem;
  border: 1px solid #4ebbca;
  background: #FFF;
  text-align: center;
  color: #4ebbca;
}

.search-main .search4 .items .list1 .item .text1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  font-weight: 400;
}

.search-main .search4 .items .list1 .item .text1 .line {
  width: 0.025rem;
  height: 0.4rem;
  background: #B1B1B1;
}

.search-main .search4 .items .list1 .item .text2 {
  font-weight: 400;
  margin-top: 1rem;
}

.search-main .on {
  display: flex;
}

/***************************service-sup--服务支持************************************/
.banner3 {
  width: 100%;
  height: 18.5rem;
  background: url(../picture/service-sup-bg.png) no-repeat center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner3 .text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner3 .text p {
  font-weight: 300;
}

.join4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.25rem;
  padding: 2.5rem 0;
}

.join4 .text {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  text-align: center;
}

.join4 .text p {
  font-weight: 300;
  color: #4d4d4d;
}

.join4 .list {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
}

.join4 .list .item {
  width: 10.5rem;
  height: 7.575rem;
  padding: 1.7rem 1.225rem 1rem 1.225rem;
  background-color: #f9f9f9;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.25rem;
}

.join4 .list .item .img-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.join4 .list .item img {
  width: 2.375rem;
  height: 1.875rem;
}

.join4 .list .item .text {
  gap: 0.2rem;
}

.join4 .list .item .text p {
  line-height: 0.6rem;
  font-weight: 500;
}

.join4 .list .item .num {
  font-weight: 500;
  color: #4ebbca;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.join4 .list .item .num::before {
  content: "";
  display: inline-block;
  border-bottom: 1px solid #D6D6D6;
  width: 1.2rem;
  margin-right: 0.75rem;
}

.join4 .list .item .num::after {
  content: "";
  display: inline-block;
  border-bottom: 1px solid #D6D6D6;
  width: 1.2rem;
  margin-left: 0.75rem;
}

.join4 .list2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.75rem;
}

.join4 .list2 .items {
  width: 18.375rem;
  background-color: #f9f9f9;
}

.join4 .list2 .left {
  padding: 1.95rem 0 1.6rem;
}

.join4 .list2 .left .top {
  border-bottom: 1px solid #dcdcdc;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.join4 .list2 .left .top span:nth-child(3) {
  color: #4ebbca;
}

.join4 .list2 .left .bottom {
  padding: 1.125rem 0 0 1.4rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem 2.75rem;
}

.join4 .list2 .left .bottom span {
  font-weight: 400;
}

.join4 .list2 .left .bottom p {
  font-weight: 500;
}

.join4 .list2 .right {
  padding: 1.95rem 0 1.525rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.join4 .list2 .right img {
  width: 5rem;
  height: 5rem;
}

.join4 .list2 .right div {
  text-align: center;
}

.join5 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url(../picture/service-sup-5.png) no-repeat center;
  background-size: 100% 100%;
  padding: 3.25rem 0;
}

.join5 p:nth-child(2) {
  margin-bottom: 1.675rem;
}

.join5 p:nth-child(3) {
  margin-bottom: 1.525rem;
}

.join5 button {
  border-radius: 0.625rem;
  background-color: rgba(255, 255, 255, 0.36);
  width: 4.625rem;
  height: 1.175rem;
  text-align: center;
  font-size: 0.45rem;
  font-weight: 500;
  color: #fff;
}


.pro_container {
  display: flex;
  align-items: flex-start;
  padding: 0 5.75rem 3.3rem 5.25rem;
}

.pro_container .pro-card {
  position: sticky;
  top: 5rem;
  left: 0;
  width: 13.5rem;
  height: auto;
  padding: 0;
  margin-top: -9.775rem;
  transition: all .4s ease;
}

.pro_container .pro-card>div {
  display: flex;
  flex-direction: column;
  padding-top: .925rem;
}

.pro_container .pro-detail {
  padding-top: 1.775rem;
  position: relative;
  flex: 1;
  top: 0;
  padding-right: 5.35rem;
}

.pro-card>div .tag {
  display: block;
  margin: 0;
  margin-bottom: 1.7rem;
  margin-left: .775rem;
  transition: all .4s ease;
}

.pro-card>div .primg_cont {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  margin-bottom: 2.925rem;
}

.pro-card>div .primg_cont .swiper2 {
  position: absolute;
  overflow: hidden;
  width: calc(100% - 1.675rem * 2);
  top: calc(100% + .875rem);
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: all .4s ease;
}

.pro-card>div .primg_cont .swiper2 .swiper-slide {
  width: 24.5%;
  margin-right: 13.25%;
  height: auto;
  aspect-ratio: 1 / 1;
  border: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s ease;
}

.pro-card>div .primg_cont .swiper2 .swiper-slide:last-child {
  margin-right: 0;
}

.pro-card>div .primg_cont .swiper2 .swiper-slide.swiper-slide-thumb-active {
  border-color: var(--vi);
}

.pro-card>div .primg_cont .swiper2 .swiper-slide img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  margin: 0;
}

.pro-card>div .primg {
  width: 8.95rem;
  height: auto;
  aspect-ratio: 358 / 355;
  /*object-fit: contain;*/
  overflow: hidden;
}

.pro-card>div .primg .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}

.pro-card>div .primg {
  pointer-events: none;
}

.pro_container .pro-card.on .primg {
  pointer-events: all;
}

.pro_container .pro-card.on .swiper2 {
  opacity: 1;
  pointer-events: all;
}

.pro_container .pro-card.on {
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(0px);
}

.pro_container .pro-card.on .tag {
  opacity: 0;
  pointer-events: none;
}

.pro_container .pro-card.on .btn-box {
  opacity: 0;
  pointer-events: none;
}

.pro-card>div .btn-box {
  position: relative;
  transition: all .4s ease;
}

/*# sourceMappingURL=style.css.map */

/* ===== moblie.css ===== */
@media (max-width: 1366px) {}

@media (max-width: 1200px) {}

@media (max-width: 1024px) {}

@media (max-width: 997px) {
  :root {
    --padd: 5%;
  }

  .initHead {
    height: 3rem;
  }

  .head.trans {
    transform: translateY(0);
  }

  .banner {
    /*height: 100vh;*/
    height: 50vh;
    /*height: max-content;*/
    /*padding: 2.8rem 0 !important;*/
  }

  .banner .banner-img {
    height: 100%;
  }

  .main-tit {
    font-size: 24px;
  }

  .main-sub {
    font-size: 13px;
  }

  .main-more.mid {
    width: max-content;
    padding: 0 .5rem;
  }

  .head.head-scroll,
  .head.head-scroll2,
  .head.head-scroll3 {
    transform: translateY(0);
  }

  .pc-head {
    height: 3rem;
  }

  .pc-head .logo {
    width: 4.25rem;
  }

  .index-ani,
  .index-ani2 {
    height: auto;
  }

  .index-swiper .swiper-slide .pos-cont {
    width: 90%;
  }

  .index-ani .box1 {
    position: relative;
    top: 0;
    padding: 2.5rem 0;
  }

  .index-ani .box1 .item-box .item {
    height: 10rem;
  }

  .index-ani .box1 .box1-swiper .swiper-slide {
    width: 49%;
    height: 12rem;
    margin-right: 2%;
    padding: 1rem .5rem;
  }

  .index-ani .box1 .box1-swiper .swiper-scrollbar {
    margin-top: 1.5rem;
  }

  .index-ani2 .box2 {
    padding: 1rem 0 2.5rem;
    position: relative;
  }

  .index-ani2 .box2 .box2-top-swiper .swiper-slide {
    height: 50vh;
  }

  .index-ani2 .box2 .box2-btm-swiper {
    padding: 0;
  }

  .index-ani2 .box2 .box2-btm-swiper .swiper-slide {
    margin-right: 1rem;
  }

  .index-ani2 .box3 {
    padding: 2.5rem 0 7rem;
    height: auto;
  }

  .index-ani2 .box3 .num-box {
    margin-top: 1.5rem;
    justify-content: space-between;
  }

  .index-ani2 .box3 .num-box .li {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }

  .i-news {
    padding: 2.5rem 0;
  }

  .i-news .iNews-swiper .swiper-slide {
    width: 90%;
  }

  .i-news .iNews-swiper .swiper-slide .pic {
    height: 10rem;
  }

  .i-news .iNews-swiper .swiper-slide .pic p {
    width: 2.5rem;
    height: 2.2rem;
  }

  .i-news .iNews-swiper .swiper-scrollbar {
    margin-top: 1.5rem;
  }

  .i-contact .wrap {
    flex-wrap: wrap;
  }

  .i-contact .li {
    width: 100%;
    margin-bottom: 1rem;
  }

  .i-contact .li:last-child {
    margin-bottom: 0;
  }

  .i-join {
    padding: 2.5rem 0;
  }

  .i-join .form {
    width: 100%;
    height: 1.5rem;
  }

  .i-join .icon {
    width: 1.95rem;
  }

  .footer {
    padding: 1.5rem 0;
  }

  .footer .top {
    padding: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer .top .info {
    margin-top: .7rem;
  }

  .footer .top .info .hotline {
    margin-left: 0;
  }

  .footer .mid {
    margin-top: .7rem;
    padding: 0;
  }

  .footer .mid .info .li a {
    width: 1rem;
    height: 1rem;
  }

  .footer .mid .info .li a img {
    transform: translateY(0);
  }

  .footer .btm {
    margin-top: .7rem;
    flex-wrap: wrap;
    padding: 0;
  }

  .ab1,
  .ab2 {
    padding: 2.5rem var(--padd);
  }

  .ab1 .cont {
    flex-wrap: wrap;
  }

  .ab1 .cont .left {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }

  .ab1 .cont .right {
    margin-top: 1rem;
    width: 100%;
  }

  .ab2 .list {
    padding-bottom: .5rem;
    overflow-x: auto;
  }

  .ab2 .list .item,
  .ab2 .list .item.on {
    width: 100%;
    min-width: 100%;
    margin-right: .8rem;
  }

  .ab2 .list .item:last-child,
  .ab2 .list .item.on:last-child {
    margin-right: 0;
  }

  .ab2 .list .item .h1 {
    font-size: .75rem;
  }

  .ab2 .list .item .p1 {
    width: 100%;
    opacity: 1;
  }

  .ab3 {
    padding: 1rem var(--padd) 2.5rem;
  }

  .ab3 .cont {
    flex-wrap: wrap;
  }

  .ab3 .cont .left {
    width: 100%;
    aspect-ratio: auto;
  }

  .ab3 .cont .right {
    margin-top: 1rem;
    width: 100%;
    margin-left: 0;
  }

  .ab3 .cont .right .h1 {
    margin-bottom: .5rem;
  }

  .ab4 {
    padding: 2.5rem var(--padd);
  }

  .ab4 .list {
    margin-top: 3rem;
    flex-direction: column;
  }

  .ab4 .list .item {
    width: 100%;
    margin-bottom: .8rem;
  }

  .ab4 .list .item:last-child {
    margin-bottom: 0;
  }

  .ab5 {
    padding: 2.5rem 5%;
  }

  .ab5 .sw1 {
    padding: 0;
  }

  .ab5 .swiper1 .swiper-slide {
    width: 100%;
  }

  .ab5 .swiper1 .btn_box .btn {
    bottom: 1rem;
    left: 0;
  }

  .ab5 .swiper1 .btn_box .btn.next {
    right: 0;
  }

  .ab5 .sw2 .swiper2 {
    padding: 0;
  }

  .ab5 .sw2 .swiper2::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #eaeaea;
  }

  .ab5 .sw2 .swiper2 .swiper-slide .ico {
    left: 50%;
    transform: translateX(-50%);
  }

  .ab5 .sw2 .swiper2 .swiper-slide .ico .ico_txt {
    bottom: auto;
    top: calc(100% + .5rem);
  }

  .ab5 .sw2 .swiper2 .swiper-slide:nth-child(2n) .ico .ico_txt {
    top: calc(100% + .5rem);
  }

  .ab6 {
    padding: 2.5rem var(--padd);
  }

  .ab6 .ab_top2 {
    flex-wrap: wrap;
  }

  .ab6 .ab_top2 .left {
    width: 100%;
    text-align: center;
  }

  .ab6 .ab_top2 .right {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
  }

  .ab6 .swper_cont .swiper .swiper-slide {
    width: 100%;
  }

  .ab7 {
    padding: 1rem 0 2.5rem;
  }

  .contact .box1 {
    padding: 2.5rem 0;
  }

  .contact .box1 .li-box {
    flex-wrap: wrap;
  }

  .contact .box1 .li-box .li {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .contact .box1 .li-box .li:last-child {
    margin-bottom: 0;
  }

  .contact .box1 .li-box .li .txt {
    max-width: 90%;
  }

  .contact .box1 .li-box .li .h1 {
    margin-top: .3rem;
  }

  .contact .box1 .li-box2 {
    flex-wrap: wrap;
  }

  .contact .box1 .li-box2 .li {
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .contact .box1 .li-box2 .li:last-child {
    margin-bottom: 0;
  }

  .contact .box2 {
    padding: 0 0 2.5rem;
  }

  .contact .box2 .pos-bg {
    position: relative;
  }

  .contact .box2 .wrap {
    margin-top: 1.5rem;
  }

  .contact .box2 .tit {
    color: #333;
  }

  .contact .box2 .form-box {
    margin-top: 1rem;
    padding: 1rem;
  }

  .contact .box2 .form-box .form .ipt-box {
    width: 100%;
    margin-right: 0;
  }

  .join1 .list {
    flex-wrap: wrap;
    gap: 0;
  }

  .join1 .list .item {
    width: 100%;
    flex: none;
    margin-bottom: 1rem;
  }

  .join1 .list .item:last-child {
    margin-bottom: 0;
  }

  .join1 .list .item .text p {
    line-height: 1.4;
  }

  .join2 .join2-main {
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }

  .join2 .join2-main .left {
    width: 100%;
    gap: 0;
    flex-wrap: wrap;
  }

  .join2 .join2-main .left .left1 {
    width: 100%;
    gap: .5rem;
    flex-wrap: wrap;
  }

  .join2 .join2-main .left .left1 .item {
    width: 100%;
    height: 4.5rem;
  }

  .join2 .join2-main .left .left2 {
    margin-top: .5rem;
    width: 100%;
    gap: .5rem;
  }

  .join2 .join2-main .left .left2 .item {
    width: 100%;
    height: 4.5rem;
  }

  .join2 .join2-main .right {
    width: 100%;
    margin-left: 0;
    margin-top: 1rem;
    padding: 1rem;
    padding-bottom: 0;
  }

  .join3 {
    padding: 2.5rem 5%;
  }

  .join3 .input {
    width: 100%;
  }

  .join3 input {
    width: 100%;
  }

  .news .hot {
    padding: 2.5rem 0;
  }

  .news .hot .link {
    flex-wrap: wrap;
  }

  .news .hot .pic {
    width: 100%;
  }

  .news .hot .intro {
    margin-top: 1rem;
    width: 100%;
    padding-left: 0;
  }

  .news .hot .intro .more {
    margin-top: 1rem;
    padding: .2rem .8rem;
    box-sizing: content-box;
  }
  .news .box {
    padding: 2.5rem 0;
  }

  .news .box .handle {
    flex-wrap: wrap;
  }

  .news .box .handle .tab {
    width: 100%;
  }
  .news .box .handle .tab a {
      height: auto;
      padding: .05rem .6rem;
  }
  .news .box .handle .year {
    margin-top: .5rem;
  }

  .news .box .container {
    margin-top: 1rem;
    padding: 1rem;
  }

  .news .box .li-box .li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .news-info .box {
    width: 100%;
    padding: 1rem;
  }

  .news-info .rg {
    width: 100%;
    position: static;
    margin-top: 1rem;
  }

  .productis {
    padding: 2.5rem 0;
  }

  .productis .wrap {
    flex-wrap: wrap;
  }

  .productis .pro-left {
    width: 100%;
    padding: 0;
    border-right: none;
  }

  .productis .pro-left .list .items .tit-box span {
    width: auto;
  }

  .productis .pro-right {
    margin-top: 1.5rem;
    width: 100%;
    padding: 0;
  }

  .productis .pro-right .pro-main .pro-list .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .productis .pro-right .pro-main .pro-list .item:last-child {
    margin-bottom: 0;
  }

  .productis .pro-right .pro-main .pro-list .item .pic {
    height: 6rem;
  }

  .productis .pro-right .pro-main .pro-list .item .item-text .tag {
    width: max-content;
    height: auto;
    padding: .2rem;
  }

  .productis .pro-right .pro-main .pro-list .item .item-text .more span {
    font-size: 12px;
  }

  .productis .pro-right .pro-main .pro-list .item .item-text .more .more-btn::after {
    width: 5px;
    height: 9px;
    top: 50%;
    transform: translateY(-4px);
  }

  .rec-detail {
    padding: 2.5rem 5%;
    flex-wrap: wrap;
  }

  .rec-detail .left {
    width: 100%;
    padding: 1rem 0;
  }

  .rec-detail .left .text1 {
    padding: 0 1rem;
  }

  .rec-detail .left .text1 .title .tag {
    width: 1.8rem;
    height: auto;
    padding: .2rem;
  }

  .rec-detail .left .text1 .text {
    flex-wrap: wrap;
    gap: .5rem;
  }

  .rec-detail .left .text1 .text span:nth-child(1)::before,
  .rec-detail .left .text1 .text span:nth-child(2)::before,
  .rec-detail .left .text1 .text span:nth-child(3)::before,
  .rec-detail .left .text1 .text span:nth-child(4)::before {
    width: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
  }

  .rec-detail .left .text-box {
    margin-top: 1rem;
    padding: 0 1rem;
  }

  .rec-detail .left .text-box ol {
    width: 100%;
  }

  .rec-detail .right {
    width: 100%;
    position: static;
  }
  .rec-detail .right button {
      width: 100%;
  }
  .rec-detail .left .text-box .text4 p {
    width: 100%;
  }
    
  .rec-detail .left .btn span::before {
    width: 12px;
    height: 12px;
    background-size: contain;
  }

  .rec1 {
    padding: 2.5rem 0;
  }

  .rec1 .input {
    width: 80%;
  }

  .rec2 {
    padding: 1rem 5%;
    flex-wrap: wrap;
  }

  .rec2 .left {
    width: 100%;
  }
  .rec2 .left .dl-item {
      width: auto;
  }
  .rec2 .left .title {
    padding: .8rem;
  }

  .rec2 .right {
    width: 100%;
    margin-left: 0;
    margin-top: 1rem;
  }
  .rec2 .right .text .tag {
    box-sizing: content-box;
    padding: .13rem .24rem;
    border-radius: 10%;
  }
  .rec2 .right .list .item {
    width: 100%;
    padding: 1rem;
  }

  .rec2 .right .list .item .title .tag {
    width: auto;
    height: auto;
    padding: .1rem .2rem;
  }

  .search1 {
    padding: 2.5rem 0;
  }

  .search1 .input {
    width: 90%;
  }

  .search-nav {
    padding: 0 5% .5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
  }

  .search-nav .list {
    width: 100%;
    margin-top: .5rem;
    margin-left: 0;
  }

  .search-main {
    padding: 1rem;
  }

  .search-main .items:nth-child(2) {
    margin-top: 0;
  }

  .search-main .items {
    margin-bottom: 1.5rem;
  }

  .search-main .items:last-child {
    margin-bottom: 0;
  }

  .search-main .list1 {
    margin-top: .8rem;
    gap: 1rem;
  }

  .search-main .list1 .item {
    width: 100%;
    text-align: center;
  }

  .search-main .list1 .item .pic {
    margin: auto;
  }

  .search-main .list1 .item .item-text .tag {
    width: max-content;
    height: auto;
    padding: .2rem;
    margin: auto;
    margin-bottom: .2rem;
  }

  .search-main .list1 .item .item-text .more {
    justify-content: center;
  }

  .search-main .list1 .item .item-text .more span {
    font-size: 12px;
  }

  .search-main .search3 .items .list1 {
    flex-wrap: wrap;
  }

  .search-main .search3 .items .list1 .item {
    width: 100%;
  }

  .search-main .search3 .items .list1 .item .pic {
    width: 100%;
    height: 10rem;
  }

  .search-main .search4 .items .list1 .item {
    width: 100%;
    padding: 1rem;
  }

  .search-main .search4 .items .list1 .item .title .tag {
    width: max-content;
    height: auto;
    padding: .1rem .2rem;
  }

  .join1 .cont-box {
    margin-top: 2rem;
  }

  .join1 .list2 {
    flex-wrap: wrap;
  }

  .join1 .list2 .items {
    width: 100%;
    padding: 1rem;
  }

  .join1 .list2 .right {
    margin-top: 1rem;
  }

  .join1 .list2 .left .bottom {
    padding: 1rem 0 0;
    margin-top: 1rem;
  }

  .join1 .list2 .left .bottom .item p {
    word-break: break-all;
  }

  .solution-adv {
    padding: 2.5rem 0;
  }

  .solution-adv .solution-adv-list {
    flex-wrap: wrap;
  }

  .solution-adv .solution-adv-item {
    width: 50%;
    margin-bottom: 1rem;
  }

  .solution-adv .solution-adv-item:nth-child(2n)::after {
    display: none;
  }

  .solution-industry {
    padding: 1rem 0 2.5rem;
  }

  .solution-industry .solution-industry-item {
    width: 100%;
    height: 10rem;
    margin-bottom: 1rem;
  }

  .solution-industry .solution-industry-item:nth-child(3),
  .solution-industry .solution-industry-item:nth-child(4) {
    width: 100%;
  }

  .mountain {
    padding: 0 0 2.5rem;
  }

  .mountain .pos-bg {
    position: relative;
  }

  .mountain .wrap {
    padding: 2rem 1rem;
  }

  .pro_container {
    padding: 2.5rem 5%;
    flex-direction: column-reverse;
  }

  .pro_container .pro-detail {
    margin-top: 1.5rem;
    width: 100%;
    padding: 0;
  }

  .pro_container .pro-card {
    width: 100%;
    position: static;
    margin-top: 0;
  }

  .pro-card>div .tag {
    margin-bottom: 1rem;
  }

  .pro-card>div .primg_cont {
    margin-bottom: 1.5rem;
    width: 90%;
    flex-direction: column;
  }

  .pro-card>div .primg {
    width: 100%;
  }

  .pro-card>div .primg_cont .swiper2 {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
    opacity: 1;
    pointer-events: all;
  }

  .pro-detail .text p::before {
    width: 12px;
    height: 12px;
  }

  .pro-detail .list .item {
    width: calc((100% - 1rem * 2) / 3);
    margin-right: 1rem;
  }

  .pro-detail .text2 table tr {
    width: 100%;
    font-size: 12px;
  }

  .retention-form {
    padding: 2.5rem 5%;
  }

  .retention-form .retention-form-box .retention-form-list {
    gap: .8rem;
  }

  .retention-form .retention-form-box .retention-form-list .retention-form-item {
    width: 100%;
  }

  .retention-form .retention-form-box .retention-form-list .retention-form-item input {
    width: 100%;
    height: 1.5rem;
    font-size: 12px;
  }

  .retention-form .retention-form-box .retention-form-list .retention-form-item select {
    height: 1.5rem;
    font-size: 12px;
    width: 100%;
  }

  .retention-form .retention-form-box .retention-form-list .retention-form-item .long {
    width: 100%;
  }

  .retention-form .retention-form-box .retention-form-list .retention-form-item .input-area {
    width: 100%;
    height: 3.5rem;
    font-size: 12px;
  }

  .retention-form .retention-form-box .retention-from-btn input {
    height: 1.2rem;
    padding: 0;
  }

  .search1 .input input {
    font-size: 12px;
    padding: 0 1.5rem;
  }

  .head .top-add,
  .footer .top .info .link,
  .footer .top .info .hotline span,
  .footer .mid .nav,
  .ab5 .sw2 .bgsw2,
  .mod_sidebar {
    display: none;
  }
}

/* ===== swiper-bundle.min.css ===== */
/**
 * Swiper 6.6.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 19, 2021
 */

@font-face {
	font-family: swiper-icons;
	src: url('../fonts/1a13a2adb47f41599d0699e08b93a4de.woff') format('woff');
	font-weight: 400;
	font-style: normal
}

:root {
	--swiper-theme-color: #007aff
}

.swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1
}

.swiper-container-vertical>.swiper-wrapper {
	flex-direction: column
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: flex;
	transition-property: transform;
	box-sizing: content-box
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
	transform: translate3d(0px, 0, 0)
}

.swiper-container-multirow>.swiper-wrapper {
	flex-wrap: wrap
}

.swiper-container-multirow-column>.swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: column
}

.swiper-container-free-mode>.swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto
}

.swiper-container-pointer-events {
	touch-action: pan-y
}

.swiper-container-pointer-events.swiper-container-vertical {
	touch-action: pan-x
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	transition-property: transform
}

.swiper-slide-invisible-blank {
	visibility: hidden
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
	height: auto
}

.swiper-container-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height
}

.swiper-container-3d {
	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 {
	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: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-container-css-mode>.swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
	display: none
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
	scroll-snap-align: start start
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
	scroll-snap-type: x mandatory
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
	scroll-snap-type: y mandatory
}

:root {
	--swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
	position: absolute;
	top: 50%;
	width: calc(var(--swiper-navigation-size)/ 44 * 27);
	height: var(--swiper-navigation-size);
	margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	text-transform: none;
	font-variant: initial;
	line-height: 1
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	left: 10px;
	right: auto
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
	content: 'prev'
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	right: 10px;
	left: auto
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
	content: 'next'
}

.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
	--swiper-navigation-color: #ffffff
}

.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
	--swiper-navigation-color: #000000
}

.swiper-button-lock {
	display: none
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	transition: .3s opacity;
	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-bullets-dynamic {
	overflow: hidden;
	font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(.33);
	position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(.33)
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 50%;
	background: #000;
	opacity: .2
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-container-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	transform: translate3d(0px, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY(-50%);
	width: 8px
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	transition: .2s transform, .2s top
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: .2s transform, .2s left
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: .2s transform, .2s right
}

.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, .25);
	position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical>.swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0
}

.swiper-pagination-white {
	--swiper-pagination-color: #ffffff
}

.swiper-pagination-black {
	--swiper-pagination-color: #000000
}

.swiper-pagination-lock {
	display: none
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(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, .5);
	border-radius: 10px;
	left: 0;
	top: 0
}

.swiper-scrollbar-cursor-drag {
	cursor: move
}

.swiper-scrollbar-lock {
	display: none
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: 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-slide-zoomed {
	cursor: move
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	animation: swiper-preloader-spin 1s infinite linear;
	box-sizing: border-box;
	border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
	border-radius: 50%;
	border-top-color: transparent
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
	100% {
		transform: rotate(360deg)
	}
}

.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	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-container-cube {
	overflow: visible
}

.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	transform-origin: 0 0;
	width: 100%;
	height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.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-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 100%;
	opacity: .6;
	z-index: 0
}

.swiper-container-cube .swiper-cube-shadow:before {
	content: '';
	background: #000;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	filter: blur(50px)
}

.swiper-container-flip {
	overflow: visible
}

.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto
}

.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;
	backface-visibility: hidden
}


/* ===== WebP 优化覆盖 Start：支持 WebP 的浏览器优先加载更小图片，不支持则继续使用上方原 PNG/JPG ===== */
@supports (background-image: url("data:image/webp;base64,UklGRiIAAABXRUJQVlA4IBYAAAAwAQCdASoBAAEADsD+JaQAA3AAAAAA")) {
  .pc-head .head-nav .nav-ls .drop-down .container {
    background-image: url(../picture/14.webp);
  }

  .contact .box2 .form-box {
    background-image: url(../picture/27.webp);
  }

  .ab4 {
    background-image: url(../picture/04.webp);
  }

  .ab_bg {
    background-image: url(../picture/07.webp);
  }

  .join5 {
    background-image: url(../picture/service-sup-5.webp);
  }
}
/* ===== WebP 优化覆盖 End ===== */

/* ===== 首页视频封面优化 Start：先显示轻量封面，load 后再加载 MP4 ===== */
.index-swiper .swiper-slide {
  background-image: url(../picture/banner-poster.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.index-swiper .swiper-slide .lazy-hero-video {
  background-image: url(../picture/banner-poster.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

@supports (background-image: url("data:image/webp;base64,UklGRiIAAABXRUJQVlA4IBYAAAAwAQCdASoBAAEADsD+JaQAA3AAAAAA")) {
  .index-swiper .swiper-slide,
  .index-swiper .swiper-slide .lazy-hero-video {
    background-image: url(../picture/banner-poster.webp);
  }
}
/* ===== 首页视频封面优化 End ===== */

/* ===== 悬浮客服图标尺寸修复 Start：避免 HTML 宽高覆盖导致图标变形/缺失 ===== */
.mod_sidebar .item > img {
  max-width: 58%;
  max-height: 58%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.mod_sidebar .item:first-child > img {
  max-width: 60%;
  max-height: 60%;
}
/* ===== 悬浮客服图标尺寸修复 End ===== */
