﻿/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  0%,
  to {
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%,
  11.1%,
  to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-timing-function: ease-in-out;
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
      rotateY(0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated.infinite {
  animation-iteration-count: infinite;
}
.animated.delay-1s {
  animation-delay: 1s;
}
.animated.delay-2s {
  animation-delay: 2s;
}
.animated.delay-3s {
  animation-delay: 3s;
}
.animated.delay-4s {
  animation-delay: 4s;
}
.animated.delay-5s {
  animation-delay: 5s;
}
.animated.fast {
  animation-duration: 0.8s;
}
.animated.faster {
  animation-duration: 0.5s;
}
.animated.slow {
  animation-duration: 2s;
}
.animated.slower {
  animation-duration: 3s;
}
@media (prefers-reduced-motion: reduce), (print) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
@font-face {
  font-family: iconfont;
  src: url(data:application/vnd.ms-fontobject;base64,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dABlAGwAbABvAC4AYwBvAG0AAAAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAQIBAwEEAQUBBgEHAQgBCQEKAQsBDAENAQ4BDwEQAREBEgETARQBFQEWARcBGAEZARoBGwEcAR0BHgEfASABIQAKaWNvbl9jbG9zZQtpY29uX2Fycl91cA5pY29uX2Fycl9yaWdodAtpY29uX2RvdXlpbgxpY29uX2NvbnRhY3QNaWNvbl9kb3dubG9hZAtpY29uX2V4cGVydA1pY29uX2ZhY2Vib29rEWljb25fbHdfYXJyX3JpZ2h0Emljb25fbG9uZ19hcnJfbGVmdBNpY29uX2xvbmdfYXJyX3JpZ2h0C2ljb25faGVhbHRoCWljb25faW5mbw1pY29uX2xpbmtlZGluDmljb25fcHJldl9sZWZ0Cmljb25fcGhvbmUKaWNvbl9waG90bwtpY29uX3NlYXJjaA1pY29uX3RlbF9ib2xkDGljb25fc2VydmljZQ1pY29uX2xvY2F0aW9uD2ljb25fcHJldl9yaWdodAxpY29uX3R3aXR0ZXIKaWNvbl93ZWlibwdpY29uX3d4D2ljb25fcGhvbmVfbWluaQxpY29uX2JhY2t0b3AKaWNvbl9tb3VzZQlpY29uX21hbGwOaWNvbl90aGluX2xlZnQPaWNvbl90aGluX3JpZ2h0AAA=);
  src:
    url(data:application/vnd.ms-fontobject;base64,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dABlAGwAbABvAC4AYwBvAG0AAAAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAQIBAwEEAQUBBgEHAQgBCQEKAQsBDAENAQ4BDwEQAREBEgETARQBFQEWARcBGAEZARoBGwEcAR0BHgEfASABIQAKaWNvbl9jbG9zZQtpY29uX2Fycl91cA5pY29uX2Fycl9yaWdodAtpY29uX2RvdXlpbgxpY29uX2NvbnRhY3QNaWNvbl9kb3dubG9hZAtpY29uX2V4cGVydA1pY29uX2ZhY2Vib29rEWljb25fbHdfYXJyX3JpZ2h0Emljb25fbG9uZ19hcnJfbGVmdBNpY29uX2xvbmdfYXJyX3JpZ2h0C2ljb25faGVhbHRoCWljb25faW5mbw1pY29uX2xpbmtlZGluDmljb25fcHJldl9sZWZ0Cmljb25fcGhvbmUKaWNvbl9waG90bwtpY29uX3NlYXJjaA1pY29uX3RlbF9ib2xkDGljb25fc2VydmljZQ1pY29uX2xvY2F0aW9uD2ljb25fcHJldl9yaWdodAxpY29uX3R3aXR0ZXIKaWNvbl93ZWlibwdpY29uX3d4D2ljb25fcGhvbmVfbWluaQxpY29uX2JhY2t0b3AKaWNvbl9tb3VzZQlpY29uX21hbGwOaWNvbl90aGluX2xlZnQPaWNvbl90aGluX3JpZ2h0AAA=#iefix)
      format("embedded-opentype"),
    url("data:application/x-font-woff2;charset=utf-8;base64,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")
      format("woff2"),
    url(https://www.jumizz.com/skin/fonts/add3faddc76d4241aea9bb1040f029da.woff)
      format("woff"),
    url(https://www.jumizz.com/skin/fonts/f60c1a32cc9e4d229cd49edd8cd8739e.woff)
      format("truetype"),
    url(../font/3759999e.iconfont.svg) format("svg");
}
.iconfont {
  font-family: iconfont !important;
  font-size: 16px;
  font-style: normal;
}
.icon_close:before {
  content: "\E684";
}
.icon_arr_up:before {
  content: "\E685";
}
.icon_arr_right:before {
  content: "\E686";
}
.icon_douyin:before {
  content: "\E687";
}
.icon_contact:before {
  content: "\E688";
}
.icon_download:before {
  content: "\E689";
}
.icon_expert:before {
  content: "\E68A";
}
.icon_facebook:before {
  content: "\E68B";
}
.icon_lw_arr_right:before {
  content: "\E68C";
}
.icon_long_arr_left:before {
  content: "\E68D";
}
.icon_long_arr_right:before {
  content: "\E68E";
}
.icon_health:before {
  content: "\E68F";
}
.icon_info:before {
  content: "\E690";
}
.icon_linkedin:before {
  content: "\E691";
}
.icon_prev_left:before {
  content: "\E692";
}
.icon_phone:before {
  content: "\E693";
}
.icon_photo:before {
  content: "\E694";
}
.icon_search:before {
  content: "\E695";
}
.icon_tel_bold:before {
  content: "\E696";
}
.icon_service:before {
  content: "\E697";
}
.icon_location:before {
  content: "\E698";
}
.icon_prev_right:before {
  content: "\E699";
}
.icon_twitter:before {
  content: "\E69A";
}
.icon_weibo:before {
  content: "\E69B";
}
.icon_wx:before {
  content: "\E69C";
}
.icon_phone_mini:before {
  content: "\E69D";
}
.icon_backtop:before {
  content: "\E69E";
}
.icon_mouse:before {
  content: "\E69F";
}
.icon_mall:before {
  content: "\E6A0";
}
.icon_thin_left:before {
  content: "\E6A1";
}
.icon_thin_right:before {
  content: "\E6A2";
}
.icon_mall_:before {
  content: "\E6A3";
}
@keyframes hvr-ripple-out {
  to {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
.hvr-ripple-out {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-ripple-out:before {
  content: "";
  position: absolute;
  border: 6px solid #e1e1e1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation-duration: 1s;
}
.hvr-ripple-out:active:before,
.hvr-ripple-out:focus:before,
.hvr-ripple-out:hover:before {
  animation-name: hvr-ripple-out;
}
@keyframes hvr-ripple-in {
  to {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
}
.hvr-ripple-in {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.hvr-ripple-in:before {
  content: "";
  position: absolute;
  border: 4px solid #e1e1e1;
  top: -12px;
  right: -12px;
  bottom: -12px;
  left: -12px;
  opacity: 0;
  animation-duration: 1s;
}
.hvr-ripple-in:active:before,
.hvr-ripple-in:focus:before,
.hvr-ripple-in:hover:before {
  animation-name: hvr-ripple-in;
}
.hvr-float-shadow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  transition-duration: 0.3s;
  transition-property: transform;
}
.hvr-float-shadow:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.35) 0,
    transparent 80%
  );
  transition-duration: 0.3s;
  transition-property: transform, opacity;
}
.hvr-float-shadow:active,
.hvr-float-shadow:focus,
.hvr-float-shadow:hover {
  transform: translateY(-5px);
  opacity: 0.8;
}
.hvr-float-shadow:active:before,
.hvr-float-shadow:focus:before,
.hvr-float-shadow:hover:before {
  opacity: 1;
  transform: translateY(5px);
}
.hvr-float {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.hvr-float:active,
.hvr-float:focus,
.hvr-float:hover {
  transform: translateY(-8px);
}
.hvr-bounce-to-right {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}
.hvr-bounce-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #66b821;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.hvr-bounce-to-right:active,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:hover {
  color: #fff;
}
.hvr-bounce-to-right:active:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:hover:before {
  transform: scaleX(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  transition-duration: 0.3s;
  transition-property: box-shadow, transform;
}
.hvr-grow-shadow:active,
.hvr-grow-shadow:focus,
.hvr-grow-shadow:hover {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}
@media screen and (max-width: 800px) {
  .hvr-float-shadow:active,
  .hvr-float-shadow:active:before,
  .hvr-float-shadow:focus,
  .hvr-float-shadow:focus:before,
  .hvr-float-shadow:hover:before,
  hvr-float-shadow:hover {
    transform: none;
    opacity: 1;
  }
  .hvr-float:active,
  .hvr-float:focus,
  .hvr-float:hover {
    transform: none;
  }
  .hvr-bounce-to-right:active,
  .hvr-bounce-to-right:focus,
  .hvr-bounce-to-right:hover {
    color: #fff;
  }
  .hvr-bounce-to-right:active:before,
  .hvr-bounce-to-right:focus:before,
  .hvr-bounce-to-right:hover:before {
    transform: none;
  }
  .hvr-grow-shadow:active,
  .hvr-grow-shadow:focus,
  .hvr-grow-shadow:hover {
    box-shadow: 0;
    transform: none;
  }
}
body,
button,
h1,
h2,
h3,
h4,
h5,
h6,
html,
input,
li,
p,
section,
textarea,
ul {
  margin: 0;
  padding: 0;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
input {
  -webkit-appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
* {
  outline: 0;
}
.phone-icon img {
  filter: brightness(1) !important;
}
.black img {
  filter: brightness(0.155) !important;
}
.nav-item {
  display: flex;
  width: 66.5%;
  flex-wrap: wrap;
  justify-content: space-around;
}
.phone img {
  filter: brightness(1);
}
.right-aside.fixed {
  transform: translateY(-100%) !important;
}
.tel .contact-con {
  background: #fff !important;
}
.navbar {
  width: 80%;
  display: flex;
  justify-content: flex-end;
}
.wow {
  visibility: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}
body,
html {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow-x: hidden;
  background: #fff;
}
body,
button,
input,
textarea {
  font-family:
    -apple-system,
    PingFang SC,
    Hiragino Sans GB,
    Microsoft YaHei UI,
    Microsoft YaHei,
    Source Han Sans CN,
    sans-serif;
  border: none;
  outline: none;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  height: 1%;
}
.t-center {
  text-align: center !important;
}
.t-right {
  text-align: right !important;
}
.t-left {
  text-align: left !important;
}
a,
body,
html {
  -webkit-tap-highlight-color: transparent;
}
a {
  text-decoration: none;
  outline: none;
  -webkit-appearance: none;
}
a,
img {
  -webkit-touch-callout: none;
}
img {
  vertical-align: middle;
}
.text-nowrap {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-wrap: normal !important;
  word-wrap: normal\0 !important;
}
.text-wrap-2 {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  /*!autoprefixer:off*/
  -webkit-box-orient: vertical;
}
.pc- {
  display: block !important;
}
.pc-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}
.pc-inline {
  display: inline-block !important;
}
.mobile-,
.mobile-flex,
.mobile-inline {
  display: none !important;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
.page.bg-grey {
  background: #f9f9f9;
}
.flex-center {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.wrap {
  width: 100%;
}
.wrap .container {
  width: 81.4%;
  max-width: 1560px;
  margin: 0 auto;
}
.bg-grey {
  background: #4e4e4e;
}
@keyframes fadeInUpMini {
  0% {
    opacity: 0;
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpMini {
  animation-name: fadeInUpMini;
}
@keyframes zoomInMini {
  0% {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 0.8);
  }
  50% {
    opacity: 1;
  }
}
.zoomInMini {
  animation-name: zoomInMini;
}
@keyframes fadeInLeftMini {
  0% {
    opacity: 0;
    transform: translate3d(-15%, 15%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftMini {
  animation-name: fadeInLeftMini;
}
@keyframes fadeInRightMini {
  0% {
    opacity: 0;
    transform: translate3d(15%, 15%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightMini {
  animation-name: fadeInRightMini;
}
@keyframes fadeInLeft2 {
  0% {
    opacity: 0;
    transform: translate3d(-15%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft2 {
  animation-name: fadeInLeft2;
}
@keyframes fadeInRight2 {
  0% {
    opacity: 0;
    transform: translate3d(15%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight2 {
  animation-name: fadeInRight2;
}
.banner-text {
  position: absolute;
}
.banner-text.black .banner-title {
  color: #000;
}
.banner-text.black .banner-desc {
  color: #7a7a7a;
}
.banner-text .banner-title {
  font-size: 2.5rem;
  line-height: 1.4;
  color: #fff;
}
.banner-text .banner-desc {
  font-size: 1.25rem;
  margin-top: 10px;
  color: #fff;
  font-weight: 200;
}
.fit-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.ui-tabs {
  width: 100%;
  overflow-x: auto;
  padding: 30px 0 0;
  border-bottom: 1px solid #eee;
  overflow-y: hidden;
}
.ui-tabs::-webkit-scrollbar {
  display: none;
  width: 0;
}
.ui-tabs .main {
  width: auto;
  white-space: nowrap;
}
.ui-tabs .ui-tab {
  display: inline-block;
  margin-right: 3.645vw;
  width: auto;
  cursor: pointer;
  padding-bottom: 30px;
  position: relative;
  transition: opacity 0.2s ease-in-out;
  box-sizing: border-box;
}
.ui-tabs .ui-tab span {
  font-size: 1rem;
  color: #777;
  letter-spacing: 0;
  text-align: center;
}
.ui-tabs .ui-tab.active {
  border-bottom: 2px solid #66b821;
}
.ui-tabs .ui-tab.active span {
  font-size: 1rem;
  color: #282828;
  letter-spacing: 0;
  text-align: center;
}
.ui-tabs .ui-tab:last-child {
  margin-right: 0;
}
.ui-tabs .ui-tab:hover {
  opacity: 0.7;
}
.sec-header.fixed {
  position: fixed;
  top: 100px;
  left: 0;
  z-index: 5;
}
.sec-header {
  width: 100%;
  height: 80px;
  background: #fff;
}
.sec-header .container {
  height: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.sec-header .title {
  font-size: 1.25rem;
  color: #000;
  letter-spacing: 0;
  font-weight: 500;
  margin-left: 50px;
}
.sec-header .case__tabs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.sec-header .case__tabs .case-tab {
  display: inline-block;
  margin-right: 50px;
  font-size: 0.875rem;
  color: #4e4e4e;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
  position: relative;
}
.sec-header .case__tabs .case-tab:hover {
  opacity: 0.7;
}
.sec-header .case__tabs .case-tab.active {
  color: #66b821;
  cursor: default;
}
.sec-header .case__tabs .case-tab.active:hover {
  opacity: 1;
}
.sec-header .case__tabs .case-tab-btn {
  background: #66b821;
  border-radius: 2px;
  font-size: 0.75rem;
  padding: 0 20px;
  height: 27px;
  cursor: pointer;
  line-height: 27px;
  color: #fff;
  transition: opacity 0.3s ease-in-out;
}
.sec-header .case__tabs .case-tab-btn:hover {
  opacity: 0.7;
}
.sec-header .case__tabs.is-line .case-tab.active:after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background: #66b821;
  bottom: -16px;
  left: 50%;
  transform: translate(-50%);
}
.search-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 222;
  background: #fff;
  display: none;
}
.search-container .search-title .title {
  height: 90px;
  line-height: 90px;
  font-size: 1.375rem;
  color: #999;
  letter-spacing: 0;
}
.search-container .search-list .search-item {
  height: 64px;
  margin: 8px 0;
}
.search-container .search-list .search-item:nth-child(2n - 1) {
  background: #f9f9f9;
}
.search-container .search-list .search-item:first-child {
  margin-top: 0;
}
.search-container .search-list .search-item .main {
  height: 64px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.search-container .search-list .search-item .main .l1 {
  font-size: 1rem;
  color: #000;
  letter-spacing: 0;
  width: 10.78125vw;
  transition: all 0.3s ease-in-out;
}
.search-container .search-list .search-item .main .l2 {
  font-size: 0.75rem;
  color: #92969d;
  letter-spacing: 0;
  width: 19vw;
  transition: all 0.3s ease-in-out;
}
.search-container .search-list .search-item .main .l3 {
  width: 142px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 0.875rem;
  color: #282828;
  transition: all 0.3s ease-in-out;
  border: 1px solid #999;
  box-sizing: border-box;
  border-radius: 4px;
  cursor: pointer;
}
.search-container .search-list .search-item .main:hover .l1,
.search-container .search-list .search-item .main:hover .l2 {
  color: #66b821;
}
.search-container .search-list .search-item .main:hover .l3 {
  color: #66b821;
  border-color: #66b821;
}
.search-container .search__header {
  height: 100px;
  border-bottom: 1px solid #eee;
}
.search-container .search__header .main {
  height: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}
.search-container .search__header .search-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex: 1;
  flex: 1;
}
.search-container .search__header .search-box .iconfont {
  color: 0;
}
.search-container .search__header .search-box .search-input {
  height: 25px;
  line-height: 25px;
  font-size: 1.125rem;
  outline: 0;
  margin-left: 10px;
  width: 60%;
}
.search-container .search__header .search-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  text-align: right;
}
.search-container .search__header .search-btn {
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 40px;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1rem;
  color: #fff;
  margin-right: 28px;
  background: #000;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
.search-container .search__header .search-btn:hover {
  opacity: 0.7;
}
.search-container .search__header .search-close {
  display: inline-block;
  width: 33px;
  height: 33px;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f9f9f9;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
.search-container .search__header .search-close .iconfont {
  font-size: 0.75rem;
}
.search-container .search__header .search-close:hover {
  opacity: 0.7;
}
.search-container .main {
  width: 60.885vw;
  margin: 0 auto;
}
.img-preview-container {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 19;
  background: rgba(0, 0, 0, 0.9);
}
.img-preview-container .preview-slide {
  width: 100vw;
  height: 100vh;
}
.img-preview-container .preview-slide .preview-img {
  position: absolute;
  max-width: 80vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
}
.img-preview-container .preview-close {
  position: absolute;
  right: 40px;
  top: 40px;
  cursor: pointer;
  outline: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 88;
}
.img-preview-container .preview-close:hover {
  opacity: 0.7;
}
.img-preview-container .preview-close .iconfont {
  color: #fff;
}
.img-preview-container .preview-prev {
  position: absolute;
  left: 40px;
  top: 50%;
  cursor: pointer;
  outline: 0;
  transition: opacity 0.3s ease-in-out;
  transform: translateY(-50%);
  z-index: 88;
}
.img-preview-container .preview-prev:hover {
  opacity: 0.7;
}
.img-preview-container .preview-prev.swiper-button-disabled {
  display: none;
}
.img-preview-container .preview-prev .iconfont {
  color: #fff;
}
.img-preview-container .preview-next {
  position: absolute;
  right: 40px;
  top: 50%;
  cursor: pointer;
  outline: 0;
  transition: opacity 0.3s ease-in-out;
  transform: translateY(-50%);
  z-index: 88;
}
.img-preview-container .preview-next.swiper-button-disabled {
  display: none;
}
.img-preview-container .preview-next:hover {
  opacity: 0.7;
}
.img-preview-container .preview-next .iconfont {
  color: #fff;
}
.img-preview-container .prev-intro {
  width: 60vw;
  position: absolute;
  bottom: 40px;
  color: #fff;
  text-align: center;
  left: 20vw;
  font-size: 1rem;
}
.ui-pagination {
  width: 100%;
  height: 12px;
  position: absolute;
  right: auto;
  top: auto;
  left: 0 !important;
  bottom: -5vw !important;
  z-index: 4;
  text-align: center;
}
.ui-pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  border-radius: 4px;
  box-sizing: border-box;
  background: #d8d8d8;
  margin: 0 4px !important;
  position: relative;
  opacity: 1;
}
.ui-pagination .swiper-pagination-bullet-active {
  background: #393939;
}
.photo-container .swiper-slide {
  width: 100% !important;
}
.hvr-photo {
  overflow: hidden;
}
.hvr-photo .img,
.hvr-photo img {
  transition: all 1s ease-in-out;
}
.hvr-photo:hover .img,
.hvr-photo:hover img {
  transform: scale(1.05);
}
.ui-pageing {
  margin: 1.5625vw auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ui-pageing .page-prev {
  color: #000;
  padding: 0 10px;
  margin: 0 10px;
  font-size: 1rem;
  cursor: pointer;
}
.ui-pageing .page-prev:hover {
  opacity: 0.7;
}
.ui-pageing .page-prev.hidden {
  color: #ccc;
}
.ui-pageing .page-prev.hidden:hover {
  opacity: 1;
}
.ui-pageing .page-next {
  color: #000;
  padding: 0 10px;
  margin: 0 10px;
  font-size: 1rem;
  cursor: pointer;
}
.ui-pageing .page-next:hover {
  opacity: 0.7;
}
.ui-pageing .page-next.hidden {
  color: #ccc;
}
.ui-pageing .page-next.hidden:hover {
  opacity: 1;
}
.ui-pageing .ui-page-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.ui-pageing .ui-page-content .page-input {
  padding: 0;
  height: 36px;
  line-height: 16px;
  box-sizing: border-box;
  font-size: 1rem;
  width: 32px;
  text-align: center;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #000;
}
.ui-pageing .ui-page-content .rt {
  font-size: 1rem;
  margin: 0 10px;
  color: #aaa;
}
.ui-pageing .ui-page-content .total-page {
  font-size: 1rem;
  color: #aaa;
}
.vhidden {
  visibility: hidden;
}
@media screen and (max-width: 1800px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 1680px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 1560px) {
  html {
    font-size: 13px;
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 13px;
  }
  .wrap {
    width: 100%;
  }
  .wrap .container {
    width: 88%;
  }
  .sec-header.fixed {
    top: 66px;
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 12px;
  }
  .wrap {
    width: 100%;
  }
  .wrap .container {
    width: 90%;
  }
}
@media screen and (max-width: 800px) {
  html {
    font-size: 16px;
  }
  body {
    overflow-x: hidden;
  }
  .pc-,
  .pc-flex,
  .pc-inline {
    display: none !important;
  }
  .mobile- {
    display: block !important;
  }
  .mobile-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .mobile-inline {
    display: inline-block !important;
  }
  .ui-tabs {
    width: 100%;
    overflow-x: auto;
    padding: 0;
    background: #fff;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    font-size: 14px;
    color: #777;
    letter-spacing: 0;
  }
  .ui-tabs .main {
    padding: 0 6.4vw;
  }
  .ui-tabs .ui-tab {
    display: inline-block;
    margin-right: 38px;
    cursor: pointer;
    padding: 14px 0 12px;
    line-height: 20px;
    position: relative;
    box-sizing: border-box;
  }
  .ui-tabs .ui-tab,
  .ui-tabs .ui-tab span {
    font-size: 14px;
    color: #777;
    letter-spacing: 0;
    text-align: center;
  }
  .ui-tabs .ui-tab.active {
    border-bottom: none;
    position: relative;
  }
  .ui-tabs .ui-tab.active span {
    font-size: 14px;
    color: #000;
    letter-spacing: 0;
    text-align: center;
  }
  .ui-tabs .ui-tab.active:after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: #66b821;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
    z-index: 3;
  }
  .ui-tabs .ui-tab:last-child {
    margin-right: 6.4vw;
  }
  .ui-tabs .ui-tab:hover {
    opacity: 0.7;
  }
  .sec-header.fixed {
    top: 50px;
  }
  .sec-header {
    height: 48px;
  }
  .sec-header .container {
    height: 48px;
    padding: 0 4vw;
  }
  .sec-header .title {
    font-family: PingFangSC-Medium;
    font-size: 16px;
    color: #282828;
    letter-spacing: 0;
    margin-left: 0;
  }
  .sec-header .y-btn {
    width: 78px;
    height: 28px;
    border-radius: 4px;
    background: #66b821;
    text-align: center;
    font-size: 12px;
    color: #fff;
    line-height: 28px;
  }
  .ui-pagination {
    width: 100%;
    height: 12px;
    position: absolute;
    right: auto;
    top: auto;
    left: 0 !important;
    bottom: -5vw !important;
    z-index: 4;
    text-align: center;
  }
  .ui-pagination .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    border-radius: 3px;
    box-sizing: border-box;
    background: #d8d8d8;
    margin: 0 4px !important;
    position: relative;
    opacity: 1;
  }
  .ui-pagination .swiper-pagination-bullet-active {
    background: #393939;
  }
  .photo-container .swiper-slide {
    width: 100% !important;
  }
  .vhidden {
    display: none;
  }
}
.header {
  width: 100%;
  height: 88px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 111;
  box-sizing: border-box;
  transition:
    background-color 0.6s ease-in-out,
    border 0.6s ease-in-out;
}
.header .container {
  height: 55px;
  display: -ms-flexbox;
  -ms-flex-pack: justify;
  -ms-flex-align: center;
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.header .left-icon,
.header .right-icon {
  display: none;
}
.header .brand {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
}
.header .brand h1 {
  padding-left: 10px;
  border-left: 1px solid #fff;
  font-size: 1rem;
  margin-left: 14px;
  color: #fff;
  font-weight: 500;
}
.header .navbar .nav-item a {
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.header .navbar .nav-item a.active,
.header .navbar .nav-item a:hover {
  color: #000;
}
.header .logo {
  opacity: 1;
}
.header .logo,
.header .logo_green {
    width: 200px;
    height: 100px;
    transition: opacity .3s ease-in-out
}

.header .logo_green {
    position: absolute;
    left: 0;
    top: 35px;
    opacity: 0;
    /* filter: brightness(100); */
}
.header-height {
  width: 100%;
  height: 100px;
}
.menu-box {
  display: none;
}
.header.deep .logo {
  opacity: 0 !important;
}
.header.deep .logo_green {
  opacity: 1 !important;
}
.header.deep .brand h1 {
  border-left-color: #92969d;
  color: #92969d;
}
.header.deep .navbar .nav-item a {
  color: #282828;
}
.header.deep .navbar .nav-item a.active,
.header.deep .navbar .nav-item a:hover {
  color: #66b821;
}
.header.grey .logo {
  opacity: 1 !important;
}
.header.grey .logo_green {
  opacity: 0 !important;
}
.header.current {
  background: #f1f1f1;
  border-bottom: 1px solid #eee;
}
.header.current .logo {
  opacity: 0;
}
.header.current .logo_green {
  position: absolute;
  opacity: 1;
}
.header.current .brand {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  filter: brightness(0);
}
.header.current .brand h1 {
  border-left-color: #92969d;
  color: #92969d;
}
.header.current .navbar .nav-item a {
  color: #333;
}
.header.current .navbar .nav-item a.active,
.header.current .navbar .nav-item a:hover {
  color: #000;
}
.header.hide,
.mob-search-box {
  display: none;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1440px) {
  .header,
  .header-height,
  .header .container {
    height: 66px;
  }
}
@media screen and (max-width: 1200px) {
  .header,
  .header-height,
  .header .container {
    height: 66px;
  }
}
@media screen and (max-width: 800px) {
  .header,
  .header-height {
    height: 50px;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
  }
  .header .container {
    height: 50px;
    width: 94vw;
  }
  .header .navbar {
    display: none;
    position: absolute;
  }
  .header .left-icon {
    width: 20px;
    height: 20px;
    position: relative;
    display: block;
    padding: 10px;
    left: 0;
    cursor: pointer;
  }
  .header .left-icon span {
    display: block;
    width: 16px;
    height: 1px;
    border-radius: 1px;
    background: #fff;
    position: absolute;
    transform-origin: 0 0;
    transition: all 0.3s ease-in-out;
  }
  .header .left-icon span:first-child {
    top: 13px;
    left: 12px;
  }
  .header .left-icon span:nth-child(2) {
    top: 19px;
    left: 12px;
    opacity: 1;
  }
  .header .left-icon span:last-child {
    top: 25px;
    left: 12px;
  }
  .header .right-icon {
    width: 20px;
    height: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    padding: 10px;
    position: relative;
    right: 0;
    font-size: 18px;
    cursor: pointer;
  }
  .header .right-icon .icon_close {
    display: none;
    font-size: 12px;
  }
  .header .right-icon.current .icon_search {
    display: none;
  }
  .header .right-icon.current .icon_close {
    display: block;
  }
  .header .brand img {
    width: 68px;
    height: 18px;
  }
  .header .brand h1 {
    font-size: 12px;
    color: #fff;
    margin-left: 8px;
  }
  .header.current {
    border-bottom: none;
  }
  .header.current .left-icon span {
    background-color: #282828;
  }
  .header.current .right-icon {
    color: #282828;
  }
  .header .left-icon.current span {
    background-color: #282828;
  }
  .header .left-icon.current span:first-child {
    top: 12px;
    left: 13px;
    width: 21px;
    transform: rotate(45deg);
  }
  .header .left-icon.current span:nth-child(2) {
    opacity: 0;
  }
  .header .left-icon.current span:last-child {
    top: 27px;
    width: 21px;
    transform: rotate(-45deg);
  }
  .header .left-icon.hide,
  .header .right-icon.hide {
    visibility: hidden;
  }
  .menu-box {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 106;
    background: #fff;
    overflow-y: auto;
  }
  .menu-box .main {
    width: 86.68vw;
    margin: 60px auto 50px;
  }
  .menu-box .menu-item {
    display: block;
    border-bottom: 1px solid #f1f1f1;
  }
  .menu-box .menu-title {
    display: block;
    width: 100%;
    height: 55px;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
  }
  .menu-box .menu-title span {
    font-size: 14px;
    color: #282828;
    line-height: 55px;
  }
  .menu-box .menu-title i {
    position: absolute;
    display: block;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease-in-out;
    transform: translateY(-50%);
  }
  .menu-box .menu-title i:before {
    width: 12px;
    height: 1px;
  }
  .menu-box .menu-title i:after,
  .menu-box .menu-title i:before {
    content: "";
    background: #777;
    border-radius: 1px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .menu-box .menu-title i:after {
    width: 1px;
    height: 12px;
  }
  .menu-box .menu-title.current i:after {
    opacity: 0;
  }
  .menu-box .menu-content {
    display: none;
  }
  .menu-box .menu-content a {
    display: block;
    width: 100%;
    height: 37px;
    line-height: 37px;
    font-size: 13px;
    color: #666;
  }
  .mob-search-box {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 106;
    background: #fff;
  }
  .mob-search-box .main {
    width: 86.68vw;
    margin: 60px auto 50px;
  }
  .mob-search-box .m-search-main {
    height: 46px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px #dcdcdc;
  }
  .mob-search-box .m-search-main input {
    -ms-flex: 1;
    flex: 1;
    margin-left: 10px;
    font-size: 14px;
    outline: 0;
    color: #777;
  }
  .mob-search-box .m-search-main .iconfont {
    color: #282828;
  }
  .mob-search-box .m-search-btn {
    height: 11.2vw;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    background: #666;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    margin: 14px 0 28px;
  }
  .mob-search-box .quick-enter {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 5px;
  }
  .mob-search-box .m-search-item {
    width: 100%;
    height: 55px;
    position: relative;
    box-sizing: border-box;
    border-bottom: 1px solid #f1f1f1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
  }
  .mob-search-box .m-search-item span {
    font-size: 14px;
    color: #282828;
  }
  .mob-search-box .m-search-item i {
    color: #999;
    font-size: 13px;
  }
  .header.grey {
    background: #333 !important;
  }
  .header.grey,
  .header.grey .brand-title {
    color: #fff !important;
  }
  .header.grey .left-icon span {
    background: #fff !important;
  }
  .header.grey .right-icon {
    color: #fff !important;
  }
}
.footer {
  font-size: 30px;
  background: #000;
  padding-top: 40px;
  position: relative;
  z-index: 5;
}
.footer .footer__nav-title {
  font-size: 14px;
  color: #fff;
}
.footer .footer__nav {
  margin-top: 30px;
}
.footer .footer__nav a {
  display: block;
  font-size: 12px;
  color: #ccc;
  letter-spacing: 0;
  line-height: 26px;
  transition: opacity 0.3s ease-in-out;
}
.footer .footer__nav a:hover {
  opacity: 0.7;
}
.footer__main-map {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-align: start;
  align-items: flex-start;
}
.footer__main-map .footer__main-block {
  -ms-flex: 1;
  flex: 1;
}
.footer__main {
  display: -ms-flexbox;
  display: flex;
}
.footer__aside-contact {
  width: 230px;
}
.footer__aside-contact .footer__aside-block .phone {
  display: block;
  font-size: 27px;
  color: #fff;
  letter-spacing: 0;
  line-height: 38px;
  margin-top: 30px;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
  margin-bottom: 70px;
  font-family: DINPro-Regular;
  font-weight: 600;
}
.footer__aside-contact .footer__aside-block .phone:hover {
  opacity: 0.7;
}
.footer__aside-contact .footer__aside-block .contact-span {
  font-size: 12px;
  color: #ccc;
  letter-spacing: 0;
  margin-top: 2px;
  margin-bottom: 20px;
}
.footer__aside-contact .contact-icons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}
.footer__aside-contact .contact-icons .iconfont {
  width: 33.33%;
  color: #fff;
  margin-bottom: 25px;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
.footer__aside-contact .contact-icons .iconfont:hover {
  opacity: 0.7;
}
.footer__bottom {
  padding: 30px 0;
  font-size: 12px;
  color: #ddd;
  transition: opacity 0.3s ease-in-out;
  font-weight: 200;
}
.footer__bottom span:first-child {
  margin-right: 10px;
}
.footer__bottom span:last-child {
  margin-left: 10px;
}
.footer__bottom a {
  font-size: 12px;
  margin: 0 3px;
  color: #ddd;
  transition: opacity 0.3s ease-in-out;
  font-weight: 200;
}
.footer__bottom a:hover {
  opacity: 0.7;
}
.qr-dialog-box.iconfont:hover {
  opacity: 1 !important;
}
.qr-dialog-box {
  position: relative;
}
.qr-dialog-box .qr-dialog {
  display: none;
  position: absolute;
  padding: 6px 10px;
  bottom: 25px;
  width: 120px;
  height: 134px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 4px;
  left: 10px;
  transform: translate(-50%);
}
.qr-dialog-box .qr-dialog .qr-dialog-title {
  display: block;
  width: 100%;
  font-size: 12px;
  color: #1a1a1a;
  letter-spacing: 0;
  margin-top: 5px;
  line-height: 1.4;
  text-align: center;
}
.qr-dialog-box .qr-dialog .arrow {
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-color: #fff transparent transparent;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translate(-50%);
}
.qr-dialog-box .qr-dialog-img {
  width: 100px;
}
.qr-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.qr-mask .mob-qr-dialog {
  width: 72vw;
  padding: 5.867vw;
  box-sizing: border-box;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.qr-mask .mob-qr-dialog .icon_close {
  position: absolute;
  padding: 10px;
  top: -35px;
  right: -30px;
  color: #fff;
}
.qr-mask .mob-qr-dialog .title {
  font-size: 0.9375rem;
  color: #282828;
  line-height: 1.4;
  margin-bottom: 5.6vw;
}
.qr-mask .mob-qr-dialog .qr-code {
  width: 47.73vw;
  margin: 0 auto 4.8vw;
}
.qr-mask .mob-qr-dialog .desc {
  font-size: 0.75rem;
  color: #66b821;
  position: relative;
  line-height: 1.5;
  margin-bottom: 7.467vw;
}
.qr-mask .mob-qr-dialog .desc:after {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background-color: #66b821;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%);
}
.qr-mask .mob-qr-dialog .tips {
  font-family: PingFangSC-Regular;
  font-size: 0.75rem;
  color: #aaa;
  line-height: 1.4;
}
@media screen and (max-width: 800px) {
  .footer {
    padding-top: 0;
  }
  .footer .footer-backtop {
    width: 100%;
    height: 50px;
    cursor: pointer;
    background: #4e4e4e;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    color: #f9f9f9;
    letter-spacing: 0;
  }
  .footer .footer-backtop .iconfont {
    transform: rotate(-90deg) scale(0.7);
    margin-left: 3px;
  }
  .footer .footer-backtop:hover {
    opacity: 0.7;
  }
  .footer .footer__nav-title {
    height: 56px;
    box-sizing: border-box;
    font-size: 12px;
    color: #dcdcdc;
    letter-spacing: 0;
    line-height: 56px;
    width: 100%;
    cursor: pointer;
    position: relative;
  }
  .footer .footer__nav-title:after {
    width: 12px;
    height: 1px;
    right: 0;
  }
  .footer .footer__nav-title:after,
  .footer .footer__nav-title:before {
    content: "";
    display: block;
    border-radius: 1px;
    background: #dcdcdc;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .footer .footer__nav-title:before {
    width: 1px;
    height: 12px;
    right: 5.5px;
  }
  .footer .footer__nav {
    margin-top: 0;
    display: none;
  }
  .footer .footer__nav a {
    display: block;
    width: 100%;
    height: 37px;
    line-height: 37px;
    font-size: 13px;
    color: #dcdcdc;
  }
  .footer .footer__nav a:hover {
    opacity: 0.7;
  }
  .footer__main,
  .footer__main-map,
  .footer__main-map .footer__main-block.active {
    display: block;
  }
  .footer__main-map .footer__main-block.active .footer__nav-title:before {
    display: none;
  }
  .footer__mob-contact {
    margin-top: 37px;
  }
  .footer__mob-contact .footer-contact-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 18px;
  }
  .footer__mob-contact .footer-contact-item .footer-left {
    width: 7em;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0;
  }
  .footer__mob-contact .footer-contact-item .footer-right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
  .footer__mob-contact .footer-contact-item .footer-right .iconfont {
    color: #bebebe;
  }
  .footer__mob-contact .footer-contact-item .footer-ct a,
  .footer__mob-contact .footer-contact-item .footer-ct span {
    opacity: 0.9;
    font-size: 18px;
    color: #66b821;
    letter-spacing: 0;
    margin-left: 5px;
  }
  .footer__mob-contact .footer-contact-item .footer-link .iconfont {
    font-size: 1.25rem;
    margin-right: 4.8vw;
  }
  .footer-mob__bottom {
    padding-top: 15px;
    padding-bottom: 20px;
  }
  .footer-mob__bottom p {
    opacity: 0.8;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0;
    margin-bottom: 9px;
  }
  .footer-mob__bottom p a:first-child {
    margin-left: 0;
  }
  .footer-mob__bottom a {
    opacity: 0.8;
    font-size: 12px;
    color: #fff;
    margin: 0 6px;
  }
  .footer-mob__bottom span {
    display: block;
    font-size: 11px;
    color: hsla(0, 0%, 100%, 0.51);
    letter-spacing: 0;
    margin-bottom: 6px;
  }
}
.banner {
  position: relative;
}
.banner .banner-text {
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner .banner-text .banner-title {
  font-size: 2.5rem;
}
.server-block .server-container {
  width: 76%;
  margin: 5vw auto 0;
}
.server-title {
  font-size: 2.125rem;
  color: #000;
  margin-bottom: 3.33vw;
  text-align: center;
  font-weight: 200;
}
.server-box {
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 6.5625vw;
}
.server-box,
.server-box .item {
  display: -ms-flexbox;
  display: flex;
}
.server-box .item {
  -ms-flex: 1;
  flex: 1;
  margin: 0 6px;
  height: 16.302vw;
  background: #fff;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-align: center;
  position: relative;
  top: 0;
}
.server-box .item:hover {
  top: -8px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
.server-box .photo {
  width: 37.857%;
  height: 37.857%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1vw;
}
.server-box .photo img {
  max-width: 100%;
  max-height: 100%;
}
.server-box .title {
  font-size: 1.125rem;
  color: #000;
  font-weight: 300;
  margin-bottom: 0.625vw;
}
.server-box .desc {
  font-weight: 200;
  font-size: 0.875rem;
  color: #999;
  line-height: 1;
}
.server-box .call {
  color: #66b821;
}
.adv-box {
  width: 64.375vw;
  margin: 0 auto 5.6vw;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.adv-box .item {
  width: 32.3624%;
  margin-bottom: 20px;
  cursor: pointer;
  background: transparent;
  position: relative;
  transition: top 0.3s ease-in-out;
  top: 0;
}
.adv-box .item:hover {
  top: -8px;
}
.adv-box .item:hover .photo {
  border-radius: 4px 4px 0 0;
}
.adv-box .item:hover .info {
  background: #4e4e4e;
}
.adv-box .item:hover .info .title {
  color: #fff;
}
.adv-box .item:hover .info .desc {
  color: #f9f9f9;
}
.adv-box .photo {
  width: 100%;
  height: 15.625vw;
  background-size: cover !important;
  border-radius: 4px;
  z-index: 2;
}
.adv-box .info,
.adv-box .photo {
  transition: all 0.3s ease-in-out;
  position: relative;
}
.adv-box .info {
  padding: 0.6vw 0;
  background: #fff;
  text-align: center;
}
.adv-box .info .title {
  font-size: 1.125rem;
  color: #000;
}
.adv-box .info .desc,
.adv-box .info .title {
  line-height: 1.4;
  transition: all 0.3s ease-in-out;
}
.adv-box .info .desc {
  font-weight: 200;
  font-size: 0.875rem;
  color: #4e4e4e;
}
.serv-video .vjs-poster {
  background-size: cover !important;
}
.video-js .vjs-big-play-button {
  font-size: 3em;
  line-height: 2em;
  height: 1.63332em;
  width: 2em;
  height: 2em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border: 0.06666em solid #fff;
  background-color: transparent;
  border-radius: 50%;
  transition: all 0.4s;
}
.video-js.vjs-controls-disabled .vjs-big-play-button,
.video-js.vjs-error .vjs-big-play-button,
.video-js.vjs-has-started .vjs-big-play-button,
.video-js.vjs-using-native-controls .vjs-big-play-button {
  display: none;
}
.video-js.vjs-ended .vjs-big-play-button {
  display: block !important;
}
.serv-page {
  padding: 5.2vw 0;
}
.serv-page .serv-container {
  width: 61.5vw;
  margin: 0 auto;
}
.serv-page .serv-title {
  font-weight: 200;
  font-size: 2.5rem;
  color: #000;
  text-align: center;
  margin-bottom: 2.604vw;
}
.serv-page .serv-video {
  width: 100%;
  margin-bottom: 2.08vw;
}
.serv-page .serv-section {
  margin-bottom: 3.125vw;
}
.serv-page .serv-section .serv-tit {
  font-size: 1.25rem;
  color: #000;
  margin-bottom: 1.04vw;
  line-height: 1.4;
}
.serv-page .serv-section .serv-desc {
  font-weight: 200;
}
.serv-page .serv-section .serv-desc,
.serv-page .serv-section .serv-desc p {
  font-size: 0.875rem;
  color: #4e4e4e;
  line-height: 2;
}
.serv-page .serv-op .item {
  display: inline-block;
  width: 12.5vw;
  margin-right: 3.4vw;
  position: relative;
}
.serv-page .serv-op .item .photo {
  border-radius: 4px;
  position: relative;
}
.serv-page .serv-op .item .photo img {
  border-radius: 4px;
}
.serv-page .serv-op .item .info {
  text-align: center;
  margin-top: 0.78125vw;
  font-weight: 200;
  font-size: 0.875rem;
  color: #000;
}
.serv-page .serv-op .item .next {
  position: absolute;
  width: 0.5vw;
  right: -2.35vw;
  top: 50%;
  transform: translateY(-50%);
}
.serv-page .serv-op .item .next img {
  width: 0.5vw;
}
.serv-page .serv-op .item:nth-child(4n) {
  margin-right: 0;
}
.serv-table,
table {
  margin-top: 1.2vw;
  width: auto;
}
.serv-table td,
table td {
  padding: 0.9375vw 0;
  width: 11.8vw;
  border-right: 1px solid #ccc;
  text-align: center;
  font-weight: 200;
  font-size: 1rem;
  color: #000;
  line-height: 1.375;
}
.serv-table tr,
table tr {
  border-bottom: 1px solid #ccc;
}
.serv-table tr td:last-child,
.serv-table tr th:last-child,
table tr td:last-child,
table tr th:last-child {
  border-right: none;
}
.serv-table th,
.serv-table tr.firstRow td,
table th,
table tr.firstRow td {
  padding: 0.9375vw 0;
  width: 11.8vw;
  font-weight: 200;
  font-size: 1rem;
  border-right: 1px solid #ccc;
}
.serv-table tr.firstRow td:last-child,
table tr.firstRow td:last-child {
  border-right: none;
}
.serv-table thead,
.serv-table tr.firstRow,
table thead,
table tr.firstRow {
  background: #eee;
}
.download-item {
  display: -ms-flexbox;
  display: flex;
  color: #000;
  -ms-flex-align: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  line-height: 1.5;
  margin-bottom: 1.3vw;
}
.download-item span {
  font-weight: 200;
  font-size: 0.875rem;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
}
.download-item:hover {
  color: #4e4e4e;
}
.download-item:hover span {
  text-decoration: underline;
}
.download-item .icon-download {
  margin-right: 0.5vw;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
}
.download-item img {
  width: 0.83vw;
}
@media screen and (max-width: 800px) {
  .video-js .vjs-big-play-button {
    transform: translate(-50%, -50%) scale(0.7);
  }
  .server-block .server-container {
    width: 90.68vw;
    margin: 0 auto;
    padding-top: 10.67vw;
  }
  .server-title {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 8vw;
    line-height: 1.4;
    text-align: center;
  }
  .server-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 13.4vw;
  }
  .server-box .item {
    width: 44vw;
    height: 45.33vw;
    border-radius: 4px;
    margin-bottom: 10px;
    -ms-flex: none;
    flex: none;
    margin-left: 0;
    margin-right: 0;
  }
  .server-box .item,
  .server-box .item:hover {
    box-shadow: 0 0 10px 5px hsla(0, 0%, 95%, 0.49);
  }
  .server-box .item:hover {
    transform: none;
    top: 0;
  }
  .server-box .mob-item {
    width: 100%;
    height: 25.33vw;
    background: #fff;
    box-shadow: 0 0 10px 5px hsla(0, 0%, 95%, 0.49);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .server-box .mob-item .photo {
    width: 16vw;
    height: 16vw;
    margin: 0;
  }
  .server-box .mob-item .photo img {
    width: 100%;
    height: 100%;
  }
  .server-box .mob-item .info {
    margin-left: 8.93vw;
  }
  .server-box .mob-item .info .title {
    font-size: 16px;
    color: #000;
    line-height: 1.4;
  }
  .server-box .mob-item .info .desc {
    font-size: 11px;
    color: #838383;
    line-height: 1.47;
    margin-top: 5px;
  }
  .server-box .photo {
    width: 25%;
    height: 25%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 4vw;
    border-radius: 4px;
  }
  .server-box .photo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }
  .server-box .title {
    font-size: 14px;
    color: #000;
    margin-bottom: 2px;
    line-height: 20px;
  }
  .server-box .desc {
    font-weight: 200;
    font-size: 12px;
    color: #999;
    line-height: 17px;
  }
  .server-box .desc.call {
    color: #66b821;
  }
  .adv-box {
    width: 90.68vw;
    margin: 0 auto;
    padding-bottom: 16vw;
  }
  .adv-box .item {
    width: 44vw;
  }
  .adv-box .item:hover {
    top: 0;
  }
  .adv-box .item:hover .photo {
    border-radius: 4px;
  }
  .adv-box .item:hover .info {
    background: none;
  }
  .adv-box .item:hover .info .title {
    color: #000;
  }
  .adv-box .item:hover .info .desc {
    color: #4e4e4e;
  }
  .adv-box .photo {
    width: 100%;
    height: 33.067vw;
    border-radius: 4px;
  }
  .adv-box .info {
    padding: 5px 0 0;
    background: #fff;
    transition: all 0.3s ease-in-out;
    text-align: center;
  }
  .adv-box .info .title {
    font-size: 14px;
    color: #000;
    line-height: 1.4;
    transition: all 0.3s ease-in-out;
  }
  .adv-box .info .desc {
    font-weight: 200;
    font-size: 12px;
    color: #4e4e4e;
    line-height: 1.4;
  }
  .serv-page {
    padding: 9.333vw 0;
  }
  .serv-page .serv-container {
    width: 100%;
  }
  .serv-page .serv-title {
    font-size: 1.25rem;
    color: #000;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 8vw;
  }
  .serv-page .serv-section {
    margin-bottom: 8vw;
  }
  .serv-page .serv-section .serv-tit {
    width: 84vw;
    margin: 0 auto 4vw;
  }
  .serv-page .serv-video {
    margin-bottom: 5.333vw;
  }
  .serv-page .serv-desc {
    width: 84vw;
    margin: 0 auto;
    font-size: 0.875rem;
  }
  .serv-page .serv-op {
    width: 86.68vw;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .serv-page .serv-op .item {
    width: 42.133vw;
    margin-right: 0;
    margin-bottom: 5.8vw;
  }
  .serv-page .serv-op .item .next {
    display: none;
  }
  .serv-page .serv-op .item .info {
    margin-top: 2.133vw;
  }
  .serv-table,
  table {
    width: 86.68vw;
    margin: 0 auto;
    border: 1px solid #dcdcdc;
  }
  .serv-table td,
  table td {
    padding: 4.267vw 0;
    border-right: 1px solid #dcdcdc;
    text-align: center;
    font-weight: 200;
    font-size: 0.8125rem;
  }
  .serv-table tr,
  table tr {
    border-bottom: 1px solid #dcdcdc;
  }
  .serv-table tr td:last-child,
  .serv-table tr th:last-child,
  table tr td:last-child,
  table tr th:last-child {
    border-right: none;
  }
  .serv-table th,
  .serv-table tr.firstRow td,
  table th,
  table tr.firstRow td {
    padding: 4.267vw 0;
    font-weight: 200;
    font-size: 0.8125rem;
    border-right: 1px solid #dcdcdc;
  }
  .serv-table thead,
  .serv-table tr.firstRow,
  table thead,
  table tr.firstRow {
    background: #eee;
  }
  .serv-down {
    width: 86.68vw;
    margin: 0 auto;
    box-sizing: border-box;
    border: 1px solid #eee;
    border-radius: 4px;
  }
  .serv-down .serv-tit {
    padding: 5.33vw;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    box-sizing: border-box;
    margin: 0 !important;
    border-bottom: 1px solid #eee;
    font-weight: 200;
    font-size: 1.125rem;
    color: #000;
    text-align: center;
  }
  .serv-down .i-download {
    margin-right: 1.333vw;
  }
  .serv-down .i-download img {
    height: 1.1rem;
  }
  .serv-download {
    padding: 0;
  }
  .download-item {
    text-align: center;
    margin: 4vw 0;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .download-item .icon-download {
    display: none;
  }
  .download-item span {
    font-weight: 200;
    font-size: 0.75rem;
    color: #4e4e4e;
    letter-spacing: 0;
    text-align: center;
  }
}
