

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

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

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

.owl-height {
  -webkit-transition: height 0.5s ease-in-out;
  -o-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("/css/owl.video.play.html") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  -o-transition: transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.obj-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.obj-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.obj-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.obj-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/*----- 宽度 -----*/

/*----- 高度 -----*/

/*----- 行高 -----*/

/* effects */

/* ##### :: 1.0 Base CSS ##### */

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  background: #4834d4;
  background: -webkit-linear-gradient(to right, #4834d4, #341f97);
  background: -webkit-linear-gradient(left, #4834d4, #341f97);
  background: -webkit-gradient(linear, left top, right top, from(#4834d4), to(#341f97));
  background: -o-linear-gradient(left, #4834d4, #341f97);
  background: linear-gradient(to right, #4834d4, #341f97);
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
  outline: none;
}

li {
  list-style: none;
}

p {
  line-height: 1.6;
  color: #ffffff;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

.height-400 {
  height: 400px;
}

.height-600 {
  height: 600px;
}

.height-700 {
  height: 700px;
}

.height-800 {
  height: 800px;
}

.height-900 {
  height: 900px;
}

.height-1000 {
  height: 1000px;
}

/*no-event*/

.no-event {
  pointer-events: none;
}

/*margin*/

.mt-1 {
  margin-top: 1px !important;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

/*padding*/

.pt-1 {
  padding-top: 1px !important;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

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

/*flex*/

.flex,
.flex-row {
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-column {
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-end {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-center-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-avg,
.flex-between {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-start {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-center-h {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-center-v {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-2 {
  -webkit-box-flex: 2;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.flex-3 {
  -webkit-box-flex: 3;
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

/*text*/

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

.fw-6 {
  font-weight: 600;
}

.fw-5 {
  font-weight: 500;
}

.fw-4 {
  font-weight: 400;
}

.fw-3 {
  font-weight: 300;
}

.fw-2 {
  font-weight: 200;
}

.fw-1 {
  font-weight: 100;
}

/*text-align*/

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

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

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

/*display*/

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clear-fix,
.clearfix {
  clear: both;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.obj-cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.scroll-x {
  overflow-x: scroll;
}

.scroll-y {
  overflow-y: scroll;
}

.hidden {
  display: none;
}

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

.fix-bottom {
  position: fixed;
  width: 100%;
}

.icon {
  display: inline-block;
  -o-object-fit: contain;
  object-fit: contain;
}

.image-container img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.image-container.cover img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-container-cover img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.nowrap {
  white-space: nowrap;
}

.dialogs {
  display: none;
}

.border-bottom {
  border-bottom: 1px solid #e0e0e0;
}

/* grid */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.button {
  outline: none;
  min-width: 294px;
  height: 60px;
  line-height: 60px;
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 1.625;
  cursor: pointer;
  color: #ffffff;
}

.button.black {
  background: #000000;
  color: #ffffff;
}

.button.gray {
  background: #667078;
  color: #ffffff;
}

.link {
  cursor: pointer;
}

[a-link] {
  cursor: pointer;
}

/**
 * Swiper 5.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 16, 2019
 */

@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") 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;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.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-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.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-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.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 {
  -webkit-scroll-snap-type: x mandatory;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
}

.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-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #FFF;
  opacity: 0.5;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-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%;
  -webkit-transform: translate3d(0px, -50%, 0);
  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%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */

.swiper-pagination-progressbar {
  background: rgba(0, 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%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  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-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  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;
}

/* Scrollbar */

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */

:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
  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;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* a11y */

.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 {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  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 {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  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-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  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%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.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-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ##### Import All CSS ##### */

/* 手机特定 pading-left,padding-right */

.obj-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.obj-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

[data-aos][data-aos][data-aos-easing=linear],
body[data-aos-easing=linear] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -o-transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in],
body[data-aos-easing=ease-in] [data-aos] {
  -webkit-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out],
body[data-aos-easing=ease-out] [data-aos] {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out],
body[data-aos-easing=ease-in-out] [data-aos] {
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back],
body[data-aos-easing=ease-in-back] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -o-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back],
body[data-aos-easing=ease-out-back] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back],
body[data-aos-easing=ease-in-out-back] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine],
body[data-aos-easing=ease-in-sine] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  -o-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine],
body[data-aos-easing=ease-out-sine] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine],
body[data-aos-easing=ease-in-out-sine] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad],
body[data-aos-easing=ease-in-quad] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad],
body[data-aos-easing=ease-out-quad] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad],
body[data-aos-easing=ease-in-out-quad] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic],
body[data-aos-easing=ease-in-cubic] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic],
body[data-aos-easing=ease-out-cubic] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],
body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart],
body[data-aos-easing=ease-in-quart] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart],
body[data-aos-easing=ease-out-quart] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart],
body[data-aos-easing=ease-in-out-quart] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-duration='50'],
body[data-aos-duration='50'] [data-aos] {
  -webkit-transition-duration: 50ms;
  -o-transition-duration: 50ms;
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-duration='100'],
body[data-aos-duration='100'] [data-aos] {
  -webkit-transition-duration: 0.1s;
  -o-transition-duration: 0.1s;
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-duration='150'],
body[data-aos-duration='150'] [data-aos] {
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-duration='200'],
body[data-aos-duration='200'] [data-aos] {
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-duration='250'],
body[data-aos-duration='250'] [data-aos] {
  -webkit-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-duration='300'],
body[data-aos-duration='300'] [data-aos] {
  -webkit-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-duration='350'],
body[data-aos-duration='350'] [data-aos] {
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-duration='400'],
body[data-aos-duration='400'] [data-aos] {
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-duration='450'],
body[data-aos-duration='450'] [data-aos] {
  -webkit-transition-duration: 0.45s;
  -o-transition-duration: 0.45s;
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-duration='500'],
body[data-aos-duration='500'] [data-aos] {
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-duration='550'],
body[data-aos-duration='550'] [data-aos] {
  -webkit-transition-duration: 0.55s;
  -o-transition-duration: 0.55s;
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-duration='600'],
body[data-aos-duration='600'] [data-aos] {
  -webkit-transition-duration: 0.6s;
  -o-transition-duration: 0.6s;
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-duration='650'],
body[data-aos-duration='650'] [data-aos] {
  -webkit-transition-duration: 0.65s;
  -o-transition-duration: 0.65s;
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-duration='700'],
body[data-aos-duration='700'] [data-aos] {
  -webkit-transition-duration: 0.7s;
  -o-transition-duration: 0.7s;
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-duration='750'],
body[data-aos-duration='750'] [data-aos] {
  -webkit-transition-duration: 0.75s;
  -o-transition-duration: 0.75s;
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-duration='800'],
body[data-aos-duration='800'] [data-aos] {
  -webkit-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-duration='850'],
body[data-aos-duration='850'] [data-aos] {
  -webkit-transition-duration: 0.85s;
  -o-transition-duration: 0.85s;
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-duration='900'],
body[data-aos-duration='900'] [data-aos] {
  -webkit-transition-duration: 0.9s;
  -o-transition-duration: 0.9s;
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-duration='950'],
body[data-aos-duration='950'] [data-aos] {
  -webkit-transition-duration: 0.95s;
  -o-transition-duration: 0.95s;
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-duration='1000'],
body[data-aos-duration='1000'] [data-aos] {
  -webkit-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-duration='1050'],
body[data-aos-duration='1050'] [data-aos] {
  -webkit-transition-duration: 1.05s;
  -o-transition-duration: 1.05s;
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-duration='1100'],
body[data-aos-duration='1100'] [data-aos] {
  -webkit-transition-duration: 1.1s;
  -o-transition-duration: 1.1s;
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-duration='1150'],
body[data-aos-duration='1150'] [data-aos] {
  -webkit-transition-duration: 1.15s;
  -o-transition-duration: 1.15s;
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-duration='1200'],
body[data-aos-duration='1200'] [data-aos] {
  -webkit-transition-duration: 1.2s;
  -o-transition-duration: 1.2s;
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-duration='1250'],
body[data-aos-duration='1250'] [data-aos] {
  -webkit-transition-duration: 1.25s;
  -o-transition-duration: 1.25s;
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-duration='1300'],
body[data-aos-duration='1300'] [data-aos] {
  -webkit-transition-duration: 1.3s;
  -o-transition-duration: 1.3s;
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-duration='1350'],
body[data-aos-duration='1350'] [data-aos] {
  -webkit-transition-duration: 1.35s;
  -o-transition-duration: 1.35s;
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-duration='1400'],
body[data-aos-duration='1400'] [data-aos] {
  -webkit-transition-duration: 1.4s;
  -o-transition-duration: 1.4s;
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-duration='1450'],
body[data-aos-duration='1450'] [data-aos] {
  -webkit-transition-duration: 1.45s;
  -o-transition-duration: 1.45s;
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-duration='1500'],
body[data-aos-duration='1500'] [data-aos] {
  -webkit-transition-duration: 1.5s;
  -o-transition-duration: 1.5s;
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-duration='1550'],
body[data-aos-duration='1550'] [data-aos] {
  -webkit-transition-duration: 1.55s;
  -o-transition-duration: 1.55s;
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-duration='1600'],
body[data-aos-duration='1600'] [data-aos] {
  -webkit-transition-duration: 1.6s;
  -o-transition-duration: 1.6s;
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-duration='1650'],
body[data-aos-duration='1650'] [data-aos] {
  -webkit-transition-duration: 1.65s;
  -o-transition-duration: 1.65s;
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-duration='1700'],
body[data-aos-duration='1700'] [data-aos] {
  -webkit-transition-duration: 1.7s;
  -o-transition-duration: 1.7s;
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-duration='1750'],
body[data-aos-duration='1750'] [data-aos] {
  -webkit-transition-duration: 1.75s;
  -o-transition-duration: 1.75s;
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-duration='1800'],
body[data-aos-duration='1800'] [data-aos] {
  -webkit-transition-duration: 1.8s;
  -o-transition-duration: 1.8s;
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-duration='1850'],
body[data-aos-duration='1850'] [data-aos] {
  -webkit-transition-duration: 1.85s;
  -o-transition-duration: 1.85s;
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-duration='1900'],
body[data-aos-duration='1900'] [data-aos] {
  -webkit-transition-duration: 1.9s;
  -o-transition-duration: 1.9s;
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-duration='1950'],
body[data-aos-duration='1950'] [data-aos] {
  -webkit-transition-duration: 1.95s;
  -o-transition-duration: 1.95s;
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-duration='2000'],
body[data-aos-duration='2000'] [data-aos] {
  -webkit-transition-duration: 2s;
  -o-transition-duration: 2s;
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-duration='2050'],
body[data-aos-duration='2050'] [data-aos] {
  -webkit-transition-duration: 2.05s;
  -o-transition-duration: 2.05s;
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-duration='2100'],
body[data-aos-duration='2100'] [data-aos] {
  -webkit-transition-duration: 2.1s;
  -o-transition-duration: 2.1s;
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-duration='2150'],
body[data-aos-duration='2150'] [data-aos] {
  -webkit-transition-duration: 2.15s;
  -o-transition-duration: 2.15s;
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-duration='2200'],
body[data-aos-duration='2200'] [data-aos] {
  -webkit-transition-duration: 2.2s;
  -o-transition-duration: 2.2s;
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-duration='2250'],
body[data-aos-duration='2250'] [data-aos] {
  -webkit-transition-duration: 2.25s;
  -o-transition-duration: 2.25s;
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-duration='2300'],
body[data-aos-duration='2300'] [data-aos] {
  -webkit-transition-duration: 2.3s;
  -o-transition-duration: 2.3s;
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-duration='2350'],
body[data-aos-duration='2350'] [data-aos] {
  -webkit-transition-duration: 2.35s;
  -o-transition-duration: 2.35s;
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-duration='2400'],
body[data-aos-duration='2400'] [data-aos] {
  -webkit-transition-duration: 2.4s;
  -o-transition-duration: 2.4s;
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-duration='2450'],
body[data-aos-duration='2450'] [data-aos] {
  -webkit-transition-duration: 2.45s;
  -o-transition-duration: 2.45s;
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-duration='2500'],
body[data-aos-duration='2500'] [data-aos] {
  -webkit-transition-duration: 2.5s;
  -o-transition-duration: 2.5s;
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-duration='2550'],
body[data-aos-duration='2550'] [data-aos] {
  -webkit-transition-duration: 2.55s;
  -o-transition-duration: 2.55s;
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-duration='2600'],
body[data-aos-duration='2600'] [data-aos] {
  -webkit-transition-duration: 2.6s;
  -o-transition-duration: 2.6s;
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-duration='2650'],
body[data-aos-duration='2650'] [data-aos] {
  -webkit-transition-duration: 2.65s;
  -o-transition-duration: 2.65s;
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-duration='2700'],
body[data-aos-duration='2700'] [data-aos] {
  -webkit-transition-duration: 2.7s;
  -o-transition-duration: 2.7s;
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-duration='2750'],
body[data-aos-duration='2750'] [data-aos] {
  -webkit-transition-duration: 2.75s;
  -o-transition-duration: 2.75s;
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-duration='2800'],
body[data-aos-duration='2800'] [data-aos] {
  -webkit-transition-duration: 2.8s;
  -o-transition-duration: 2.8s;
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-duration='2850'],
body[data-aos-duration='2850'] [data-aos] {
  -webkit-transition-duration: 2.85s;
  -o-transition-duration: 2.85s;
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-duration='2900'],
body[data-aos-duration='2900'] [data-aos] {
  -webkit-transition-duration: 2.9s;
  -o-transition-duration: 2.9s;
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-duration='2950'],
body[data-aos-duration='2950'] [data-aos] {
  -webkit-transition-duration: 2.95s;
  -o-transition-duration: 2.95s;
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-duration='3000'],
body[data-aos-duration='3000'] [data-aos] {
  -webkit-transition-duration: 3s;
  -o-transition-duration: 3s;
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay='50'],
body[data-aos-delay='50'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='50'].aos-animate,
body[data-aos-delay='50'] [data-aos].aos-animate {
  -webkit-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-delay='100'],
body[data-aos-delay='100'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='100'].aos-animate,
body[data-aos-delay='100'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-delay='150'],
body[data-aos-delay='150'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='150'].aos-animate,
body[data-aos-delay='150'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.15s;
  -o-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-delay='200'],
body[data-aos-delay='200'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='200'].aos-animate,
body[data-aos-delay='200'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-delay='250'],
body[data-aos-delay='250'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='250'].aos-animate,
body[data-aos-delay='250'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.25s;
  -o-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-delay='300'],
body[data-aos-delay='300'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='300'].aos-animate,
body[data-aos-delay='300'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-delay='350'],
body[data-aos-delay='350'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='350'].aos-animate,
body[data-aos-delay='350'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.35s;
  -o-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-delay='400'],
body[data-aos-delay='400'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='400'].aos-animate,
body[data-aos-delay='400'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-delay='450'],
body[data-aos-delay='450'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='450'].aos-animate,
body[data-aos-delay='450'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.45s;
  -o-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-delay='500'],
body[data-aos-delay='500'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='500'].aos-animate,
body[data-aos-delay='500'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-delay='550'],
body[data-aos-delay='550'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='550'].aos-animate,
body[data-aos-delay='550'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.55s;
  -o-transition-delay: 0.55s;
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-delay='600'],
body[data-aos-delay='600'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='600'].aos-animate,
body[data-aos-delay='600'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-delay='650'],
body[data-aos-delay='650'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='650'].aos-animate,
body[data-aos-delay='650'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.65s;
  -o-transition-delay: 0.65s;
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-delay='700'],
body[data-aos-delay='700'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='700'].aos-animate,
body[data-aos-delay='700'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-delay='750'],
body[data-aos-delay='750'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='750'].aos-animate,
body[data-aos-delay='750'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.75s;
  -o-transition-delay: 0.75s;
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-delay='800'],
body[data-aos-delay='800'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='800'].aos-animate,
body[data-aos-delay='800'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-delay='850'],
body[data-aos-delay='850'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='850'].aos-animate,
body[data-aos-delay='850'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.85s;
  -o-transition-delay: 0.85s;
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-delay='900'],
body[data-aos-delay='900'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='900'].aos-animate,
body[data-aos-delay='900'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.9s;
  -o-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-delay='950'],
body[data-aos-delay='950'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='950'].aos-animate,
body[data-aos-delay='950'] [data-aos].aos-animate {
  -webkit-transition-delay: 0.95s;
  -o-transition-delay: 0.95s;
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-delay='1000'],
body[data-aos-delay='1000'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1000'].aos-animate,
body[data-aos-delay='1000'] [data-aos].aos-animate {
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-delay='1050'],
body[data-aos-delay='1050'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1050'].aos-animate,
body[data-aos-delay='1050'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.05s;
  -o-transition-delay: 1.05s;
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-delay='1100'],
body[data-aos-delay='1100'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1100'].aos-animate,
body[data-aos-delay='1100'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.1s;
  -o-transition-delay: 1.1s;
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-delay='1150'],
body[data-aos-delay='1150'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1150'].aos-animate,
body[data-aos-delay='1150'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.15s;
  -o-transition-delay: 1.15s;
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-delay='1200'],
body[data-aos-delay='1200'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1200'].aos-animate,
body[data-aos-delay='1200'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-delay='1250'],
body[data-aos-delay='1250'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1250'].aos-animate,
body[data-aos-delay='1250'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.25s;
  -o-transition-delay: 1.25s;
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-delay='1300'],
body[data-aos-delay='1300'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1300'].aos-animate,
body[data-aos-delay='1300'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.3s;
  -o-transition-delay: 1.3s;
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-delay='1350'],
body[data-aos-delay='1350'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1350'].aos-animate,
body[data-aos-delay='1350'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.35s;
  -o-transition-delay: 1.35s;
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-delay='1400'],
body[data-aos-delay='1400'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1400'].aos-animate,
body[data-aos-delay='1400'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.4s;
  -o-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-delay='1450'],
body[data-aos-delay='1450'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1450'].aos-animate,
body[data-aos-delay='1450'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.45s;
  -o-transition-delay: 1.45s;
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-delay='1500'],
body[data-aos-delay='1500'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1500'].aos-animate,
body[data-aos-delay='1500'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-delay='1550'],
body[data-aos-delay='1550'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1550'].aos-animate,
body[data-aos-delay='1550'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.55s;
  -o-transition-delay: 1.55s;
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-delay='1600'],
body[data-aos-delay='1600'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1600'].aos-animate,
body[data-aos-delay='1600'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.6s;
  -o-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-delay='1650'],
body[data-aos-delay='1650'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1650'].aos-animate,
body[data-aos-delay='1650'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.65s;
  -o-transition-delay: 1.65s;
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-delay='1700'],
body[data-aos-delay='1700'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1700'].aos-animate,
body[data-aos-delay='1700'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.7s;
  -o-transition-delay: 1.7s;
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-delay='1750'],
body[data-aos-delay='1750'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1750'].aos-animate,
body[data-aos-delay='1750'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.75s;
  -o-transition-delay: 1.75s;
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-delay='1800'],
body[data-aos-delay='1800'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1800'].aos-animate,
body[data-aos-delay='1800'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.8s;
  -o-transition-delay: 1.8s;
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-delay='1850'],
body[data-aos-delay='1850'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1850'].aos-animate,
body[data-aos-delay='1850'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.85s;
  -o-transition-delay: 1.85s;
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-delay='1900'],
body[data-aos-delay='1900'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1900'].aos-animate,
body[data-aos-delay='1900'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.9s;
  -o-transition-delay: 1.9s;
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-delay='1950'],
body[data-aos-delay='1950'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='1950'].aos-animate,
body[data-aos-delay='1950'] [data-aos].aos-animate {
  -webkit-transition-delay: 1.95s;
  -o-transition-delay: 1.95s;
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-delay='2000'],
body[data-aos-delay='2000'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2000'].aos-animate,
body[data-aos-delay='2000'] [data-aos].aos-animate {
  -webkit-transition-delay: 2s;
  -o-transition-delay: 2s;
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-delay='2050'],
body[data-aos-delay='2050'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2050'].aos-animate,
body[data-aos-delay='2050'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.05s;
  -o-transition-delay: 2.05s;
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-delay='2100'],
body[data-aos-delay='2100'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2100'].aos-animate,
body[data-aos-delay='2100'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.1s;
  -o-transition-delay: 2.1s;
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-delay='2150'],
body[data-aos-delay='2150'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2150'].aos-animate,
body[data-aos-delay='2150'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.15s;
  -o-transition-delay: 2.15s;
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-delay='2200'],
body[data-aos-delay='2200'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2200'].aos-animate,
body[data-aos-delay='2200'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.2s;
  -o-transition-delay: 2.2s;
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-delay='2250'],
body[data-aos-delay='2250'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2250'].aos-animate,
body[data-aos-delay='2250'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.25s;
  -o-transition-delay: 2.25s;
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-delay='2300'],
body[data-aos-delay='2300'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2300'].aos-animate,
body[data-aos-delay='2300'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.3s;
  -o-transition-delay: 2.3s;
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-delay='2350'],
body[data-aos-delay='2350'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2350'].aos-animate,
body[data-aos-delay='2350'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.35s;
  -o-transition-delay: 2.35s;
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-delay='2400'],
body[data-aos-delay='2400'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2400'].aos-animate,
body[data-aos-delay='2400'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.4s;
  -o-transition-delay: 2.4s;
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-delay='2450'],
body[data-aos-delay='2450'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2450'].aos-animate,
body[data-aos-delay='2450'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.45s;
  -o-transition-delay: 2.45s;
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-delay='2500'],
body[data-aos-delay='2500'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2500'].aos-animate,
body[data-aos-delay='2500'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.5s;
  -o-transition-delay: 2.5s;
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-delay='2550'],
body[data-aos-delay='2550'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2550'].aos-animate,
body[data-aos-delay='2550'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.55s;
  -o-transition-delay: 2.55s;
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-delay='2600'],
body[data-aos-delay='2600'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2600'].aos-animate,
body[data-aos-delay='2600'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.6s;
  -o-transition-delay: 2.6s;
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-delay='2650'],
body[data-aos-delay='2650'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2650'].aos-animate,
body[data-aos-delay='2650'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.65s;
  -o-transition-delay: 2.65s;
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-delay='2700'],
body[data-aos-delay='2700'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2700'].aos-animate,
body[data-aos-delay='2700'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.7s;
  -o-transition-delay: 2.7s;
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-delay='2750'],
body[data-aos-delay='2750'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2750'].aos-animate,
body[data-aos-delay='2750'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.75s;
  -o-transition-delay: 2.75s;
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-delay='2800'],
body[data-aos-delay='2800'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2800'].aos-animate,
body[data-aos-delay='2800'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.8s;
  -o-transition-delay: 2.8s;
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-delay='2850'],
body[data-aos-delay='2850'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2850'].aos-animate,
body[data-aos-delay='2850'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.85s;
  -o-transition-delay: 2.85s;
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-delay='2900'],
body[data-aos-delay='2900'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2900'].aos-animate,
body[data-aos-delay='2900'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.9s;
  -o-transition-delay: 2.9s;
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-delay='2950'],
body[data-aos-delay='2950'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='2950'].aos-animate,
body[data-aos-delay='2950'] [data-aos].aos-animate {
  -webkit-transition-delay: 2.95s;
  -o-transition-delay: 2.95s;
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-delay='3000'],
body[data-aos-delay='3000'] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay='3000'].aos-animate,
body[data-aos-delay='3000'] [data-aos].aos-animate {
  -webkit-transition-delay: 3s;
  -o-transition-delay: 3s;
  transition-delay: 3s;
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  -o-transition-property: opacity,transform;
  transition-property: opacity,transform;
  transition-property: opacity,transform,-webkit-transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

[data-aos=fade-up] {
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
}

[data-aos=fade-down] {
  -webkit-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  transform: translateY(-100px);
}

[data-aos=fade-right] {
  -webkit-transform: translate(-100px);
  -ms-transform: translate(-100px);
  transform: translate(-100px);
}

[data-aos=fade-left] {
  -webkit-transform: translate(100px);
  -ms-transform: translate(100px);
  transform: translate(100px);
}

[data-aos=fade-up-right] {
  -webkit-transform: translate(-100px, 100px);
  -ms-transform: translate(-100px, 100px);
  transform: translate(-100px, 100px);
}

[data-aos=fade-up-left] {
  -webkit-transform: translate(100px, 100px);
  -ms-transform: translate(100px, 100px);
  transform: translate(100px, 100px);
}

[data-aos=fade-down-right] {
  -webkit-transform: translate(-100px, -100px);
  -ms-transform: translate(-100px, -100px);
  transform: translate(-100px, -100px);
}

[data-aos=fade-down-left] {
  -webkit-transform: translate(100px, -100px);
  -ms-transform: translate(100px, -100px);
  transform: translate(100px, -100px);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  -o-transition-property: opacity,transform;
  transition-property: opacity,transform;
  transition-property: opacity,transform,-webkit-transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  -webkit-transform: translate(0) scale(1);
  -ms-transform: translate(0) scale(1);
  transform: translate(0) scale(1);
}

[data-aos=zoom-in] {
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  -webkit-transform: translateY(100px) scale(0.6);
  -ms-transform: translateY(100px) scale(0.6);
  transform: translateY(100px) scale(0.6);
}

[data-aos=zoom-in-down] {
  -webkit-transform: translateY(-100px) scale(0.6);
  -ms-transform: translateY(-100px) scale(0.6);
  transform: translateY(-100px) scale(0.6);
}

[data-aos=zoom-in-right] {
  -webkit-transform: translate(-100px) scale(0.6);
  -ms-transform: translate(-100px) scale(0.6);
  transform: translate(-100px) scale(0.6);
}

[data-aos=zoom-in-left] {
  -webkit-transform: translate(100px) scale(0.6);
  -ms-transform: translate(100px) scale(0.6);
  transform: translate(100px) scale(0.6);
}

[data-aos=zoom-out] {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  -webkit-transform: translateY(100px) scale(1.2);
  -ms-transform: translateY(100px) scale(1.2);
  transform: translateY(100px) scale(1.2);
}

[data-aos=zoom-out-down] {
  -webkit-transform: translateY(-100px) scale(1.2);
  -ms-transform: translateY(-100px) scale(1.2);
  transform: translateY(-100px) scale(1.2);
}

[data-aos=zoom-out-right] {
  -webkit-transform: translate(-100px) scale(1.2);
  -ms-transform: translate(-100px) scale(1.2);
  transform: translate(-100px) scale(1.2);
}

[data-aos=zoom-out-left] {
  -webkit-transform: translate(100px) scale(1.2);
  -ms-transform: translate(100px) scale(1.2);
  transform: translate(100px) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

[data-aos=slide-up] {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

[data-aos=slide-down] {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

[data-aos=slide-right] {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

[data-aos=slide-left] {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

[data-aos^=flip][data-aos^=flip] {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

[data-aos=flip-left] {
  -webkit-transform: perspective(2500px) rotateY(-100deg);
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  -webkit-transform: perspective(2500px) rotateY(0);
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  -webkit-transform: perspective(2500px) rotateY(100deg);
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  -webkit-transform: perspective(2500px) rotateY(0);
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  -webkit-transform: perspective(2500px) rotateX(-100deg);
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  -webkit-transform: perspective(2500px) rotateX(0);
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  -webkit-transform: perspective(2500px) rotateX(100deg);
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  -webkit-transform: perspective(2500px) rotateX(0);
  transform: perspective(2500px) rotateX(0);
}

/* styles for magnifier image pairs */

/* style for the DIV that holds the image pair */

.magnifier {
  overflow: hidden;
  position: relative;
}

/* style for the DIV that is the magnifier lens */

.maglens {
  position: absolute;
  overflow: hidden;
  width: 250px;
  height: 250px;
  border-radius: 1000px;
}

/* style for the small IMG that appears on the page */

.magsmall {
  position: absolute;
  border-style: none;
}

/* style for the magnified image, using a clip rectangle */

.maglarge {
  position: absolute;
  border-style: none;
}

/*  * {
  margin:0;
  padding:0;
} */

.small_box {
  width: 100%;
  height: 100%;
  /*   width:180px;
  height:180px;
  margin-left:10px;
  margin-top:10px; */
  position: relative;
}

/* .small_box img {
  width:180px;
  height:180px;
} */

.small_box .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 33;
  cursor: none;
}

.small_box .float_layer {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  border-radius: 1000px;
  /*border: 3px solid #666666;*/
  /* background: white; */
}

.small_box .float_layer img {
  position: absolute;
}

/* .big_box {
  position: absolute;
  left: 200px;
  top: 10px;
  width: 250px;
  height: 250px;
  overflow: hidden;
  display: none;
} */

.big_box img {
  position: absolute;
}

.obj-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.obj-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/*----- 宽度 -----*/

/*----- 高度 -----*/

/*----- 行高 -----*/

/* effects */

/* ##### Custom CSS ##### */

a {
  color: white;
}

a:hover {
  color: #DDD;
}

[a-link] {
  cursor: pointer;
  /* .hover-opacity50(); */
}

body {
  font-family: PingFangSC-Regular, PingFangSC, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", STHeiti, "Microsoft YaHei", "Microsoft JhengHei", "Source Han Sans SC", "Noto Sans CJK SC", "Source Han Sans CN", "Noto Sans SC", "Source Han Sans TC", "Noto Sans CJK TC", "WenQuanYi Micro Hei", SimSun, sans-serif;
  width: 100%;
  background: #FFF;
  /* min-width: 1920px; */
  /* min-width: 1720px; */
  /* min-width: 1300px; */
  min-width: 1600px;
}

.dialog {
  padding-bottom: 95px;
  position: relative;
}

.dialog .dialog-body {
  /* width:900px; */
  /* height:341px; */
  background: #f6f6f3;
}

.dialog .dialog-close-wrapper {
  position: absolute;
  bottom: 0px;
  width: 100%;
  text-align: center;
}

.dialog .dialog-close-wrapper img.icon {
  margin-left: auto;
  margin-right: auto;
  width: 60px;
  height: 60px;
}

/* fonts */

/* @font-face {
  font-family: 'PingFang SC';
  src: url('/fonts/PingFang.ttc');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PingFangSC';
  src: url('/fonts/PingFang.ttc');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PingFang';
  src: url('/fonts/PingFang.ttc');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'PingFangSC-Medium';
  src: url('/fonts/PingFang.ttc');
  font-weight: 500;
  font-style: normal;
} */

@font-face {
  font-family: 'Bjorn';
  src: url("/fonts/Bjorn%20Regular.otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gill';
  src: url("/fonts/GillSansCE-Roman.otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GillSans';
  src: url("/fonts/GillSansCE-Roman.otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url("../font/montserrat-light_[allfont.net].ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'HYQingYaTiJ';
  src: url("../font/汉仪清雅体简.ttf");
  font-weight: normal;
  font-style: normal;
}

/* 菜单 */

.left-menu {
  outline: none;
  width: 331px;
  position: fixed;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  will-change: transform;
  -webkit-transform: translateX(-331px);
  -ms-transform: translateX(-331px);
  transform: translateX(-331px);
  z-index: 12;
  left: 0px;
  top: 0px;
  height: 100vh;
  background: #092821;
}

.left-menu.on {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
}

.left-menu .header .brand-container {
  width: 179.8px;
  margin-top: 10px;
  margin-left: 20px;
  cursor: pointer;
  padding: 40px;
  padding-bottom: 43px;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.left-menu .header .brand-container .brand-left {
  height: 50px;
  width: 35.8px;
}

.left-menu .header .brand-container .brand-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.left-menu .header .brand-container .brand-right {
  height: 38px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 19px;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
}

.left-menu .header .brand-container .brand-right .title-t {
  height: 12px;
  font-size: 16px;
  font-family: Gill Sans;
  font-weight: 600;
  color: #ffffff;
  line-height: 16px;
}

.left-menu .header .brand-container .brand-right .title-b {
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 14px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff;
  line-height: 14px;
  margin-top: 12px;
}

.left-menu .header .brand-container .brand-right .title-b img.position-icon {
  float: right;
  width: 10px;
  height: 10px;
  /* margin-top: 2px; */
}

.left-menu .header .line {
  width: 262px;
  height: 1px;
  margin-left: 32px;
  background: rgba(149, 149, 149, 0.2);
}

.left-menu .menu-wrapper {
  height: calc(100% - 210px - 63px);
  margin-top: 58px;
  margin-bottom: 63px;
  overflow-y: scroll;
}

.left-menu .menu-wrapper .menu-container {
  padding-left: 28px;
  margin: 0px 32px;
  height: 100%;
  -ms-overflow-style: none;
}

.left-menu .menu-wrapper .menu-container::-webkit-scrollbar {
  /*隐藏滚轮*/
  display: none;
}

.left-menu .menu-wrapper .menu-container li.menu-item {
  display: block;
}

.left-menu .menu-wrapper .menu-container li.menu-item .menu-block {
  line-height: 40px;
  padding: calc((40 - 14) / 2);
}

.left-menu .menu-wrapper .menu-container li.menu-item .menu-block:hover {
  opacity: 0.5;
}

.left-menu .menu-wrapper .menu-container li.menu-item .menu-block .zh-name {
  cursor: pointer;
  display: inline-block;
  letter-spacing: -0.91px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff;
  line-height: 14px;
  width: 40px;
}

.left-menu .menu-wrapper .menu-container li.menu-item .menu-block .en-name {
  cursor: pointer;
  display: inline-block;
  width: 64px;
  margin-left: 12px;
  font-size: 14px;
  font-family: Gill Sans;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  line-height: 14px;
}

.header-area {
  padding: 53px 61px 67px;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.header-area a {
  cursor: pointer;
}

.header-area .nav-padding-bottom {
  position: relative;
  padding-bottom: 45px;
  border-bottom: 1px solid #d4d4d4;
}

.header-area .nav-padding-bottom::after {
  content: '';
  position: absolute;
  left: 0px;
  bottom: -1px;
  width: 0%;
  height: 2px;
  background: #000000;
  -webkit-transition: width 0.3s linear 0s;
  -o-transition: width 0.3s linear 0s;
  transition: width 0.3s linear 0s;
  will-change: width;
}

.header-area .nav-padding-bottom:hover,
.header-area .nav-padding-bottom.active {
  padding-bottom: 45px;
}

.header-area .nav-padding-bottom:hover::after,
.header-area .nav-padding-bottom.active::after {
  width: 100%;
}

.header-area .nav-brand-left {
  min-width: 180px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-area .nav-brand-left .brand-left {
  height: 44px;
  width: 35.4px;
}

.header-area .nav-brand-left .brand-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header-area .nav-brand-left .brand-right {
  height: 44px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-area .nav-brand-left .brand-right .title-t {
  height: 12px;
  font-size: 16px;
  font-family: Gill Sans;
  font-weight: 600;
  color: #000000;
  line-height: 16px;
}

.header-area .nav-brand-left .brand-right .title-b {
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 14px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #000000;
  line-height: 14px;
  margin-top: 12px;
}

.header-area .nav-brand-left .brand-right .title-b img.position-icon {
  float: right;
  width: 14px;
  height: 14px;
}

.header-area nav.nav-menu-container {
  margin-left: 92px;
  -webkit-transition: margin-left 0.3s ease 0s;
  -o-transition: margin-left 0.3s ease 0s;
  transition: margin-left 0.3s ease 0s;
}

.left-menu-on.header-area nav.nav-menu-container {
  margin-left: 155px;
}

.header-area nav.nav-menu-container ul {
  width: 971px;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-area nav.nav-menu-container ul li.menu-item {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.header-area nav.nav-menu-container ul li.menu-item .nav-block {
  display: block;
  width: 124px;
  height: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-area nav.nav-menu-container ul li.menu-item .nav-block .t-link {
  height: 12px;
  line-height: 12px;
}

.header-area nav.nav-menu-container ul li.menu-item .nav-block .t-link,
.header-area nav.nav-menu-container ul li.menu-item .nav-block .t-link a {
  line-height: 12px;
  font-size: 16px;
  font-family: Gill Sans;
  font-weight: 600;
  color: #000000;
}

.header-area nav.nav-menu-container ul li.menu-item .nav-block .b-link {
  height: 14px;
  line-height: 14px;
}

.header-area nav.nav-menu-container ul li.menu-item .nav-block .b-link,
.header-area nav.nav-menu-container ul li.menu-item .nav-block .b-link a {
  line-height: 14px;
  font-size: 14px;
  font-family: PingFang SC;
  /* 常规字体 */
  font-weight: 400;
  color: #000000;
}

.header-area nav.nav-menu-container ul li.menu-item.active .b-link a,
.header-area nav.nav-menu-container ul li.menu-item:hover .b-link a {
  font-weight: 500;
}

.header-area .nav-brand-right {
  min-width: 287.2px;
  height: 22.7px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: right;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  justify-self: flex-end;
}

.header-area .nav-brand-right img {
  width: 287.2px;
  height: 22.7px;
}

/* 底部 */

.section-footer {
  height: 530px;
  background: white;
  color: #777777;
  border-top: 1px solid #ededed;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.section-footer a {
  color: inherit;
}

.section-footer .footer-icon {
  -o-object-fit: contain;
  object-fit: contain;
}

.section-footer .left {
  width: 126px;
  border-right: 1px solid #ededed;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-footer .left .logo {
  width: 28px;
  height: 32px;
}

.section-footer .left .go-top {
  width: 44px;
  height: 44px;
}

.section-footer .left img {
  margin: 64px auto;
  cursor: pointer;
}

.section-footer .mid {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.section-footer .mid .top {
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 367px;
  border-bottom: 1px solid #ededed;
  padding: 0 141px;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-footer .mid .top ul {
  padding-top: 72px;
  width: 187px;
}

.section-footer .mid .top ul .title {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: black;
  line-height: 12px;
  margin-bottom: 36px;
}

.section-footer .mid .top ul .link {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #777;
  line-height: 34px;
}

.section-footer .mid .top ul .link:hover {
  opacity: 0.4;
}

.section-footer .mid .bottom {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-footer .mid .bottom .partner-wrapper {
  margin-left: 138px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.section-footer .mid .bottom .partner-wrapper .partner {
  width: 628px;
  height: 25px;
}

.section-footer .mid .bottom .weixin {
  width: 20px;
  height: 20px;
  margin-right: 24px;
}

.section-footer .mid .bottom .weibo {
  width: 20px;
  height: 20px;
  margin-right: 107px;
}

.section-footer .right {
  width: 412px;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  border-left: 1px solid #ededed;
}

.section-footer .right .top {
  border-bottom: 1px solid #ededed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 367px;
}

.section-footer .right .top .content-wrapper {
  margin-bottom: 40px;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-footer .right .top .content-wrapper .position {
  width: 116.1px;
  height: 53.4px;
}

.section-footer .right .top .content-wrapper .txt {
  margin-top: 5px;
  height: 15px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #777;
  line-height: 15px;
}

.section-footer .right .bottom {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.section-footer .right .bottom .copyright {
  text-align: center;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #595959;
  line-height: 24px;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.fix-ml {
  margin-left: -0.18em;
}

@media (max-width: 767px) {
  .fix-ml-h5 {
    margin-left: -0.18em;
  }
}

.box-banner {
  height: 440px;
  background: url("../images/banner5.png");
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: white;
}

.box-banner .pre {
  font-size: 16px;
  margin-bottom: 24px;
  font-family: Gilroy;
}

.box-banner .title {
  font-family: HYQingYaTiJ;
  margin-bottom: 28px;
  font-size: 64px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
}

.box-banner .button {
  width: 246px;
  min-width: 246px;
  height: 48px;
  color: #E3E3E3;
  background: transparent;
  border: 1px solid #cfcfcf;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.box-banner .button:before {
  background-color: transparent;
}

.box-banner .button:hover {
  color: black;
}

.box-banner .button:hover span {
  z-index: 2;
}

/* ##### Import All CSS ##### */

.page.page-brand {
  background: url("../images/bg.jpg") 0 0 repeat;
  background-size: 1920px;
  width: 100%;
  overflow: hidden;
}

.page.page-brand .section {
  position: relative;
}

.page.page-brand .line {
  margin-top: 75px;
}

.page.page-brand .section-1,
.page.page-brand .section-2 {
  /*background: #d5d4d1;*/
  /* background: #FEFEFE; */
}

.page.page-brand .section-6 {
  background: #FEFEFE;
}

.page.page-brand .section-5 {
  /*background: #8D968E;*/
}

.page.page-brand .ppp-content-wrapper {
  padding: 145px 380px 156px;
  /* padding: 145px 0 117px;
    width: 1137px;
    margin: auto; */
}

.page.page-brand .ppp-content-wrapper .title-4240 {
  margin-bottom: 47px;
}

.page.page-brand .ppp-content-wrapper .title-4240 .en {
  font-size: 42px;
  font-family: Gill Sans;
  font-weight: 600;
  color: #000000;
  line-height: 1em;
  /* margin-right: 10px; */
  letter-spacing: 12.6px;
}

.page.page-brand .ppp-content-wrapper .title-4240 .cn {
  font-size: 40px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #000000;
}

.page.page-brand .ppp-content-wrapper .ppp {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #171717;
  line-height: 2.125;
}

.page.page-brand .ppp-content-wrapper .ppp p {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #171717;
  line-height: 2.125;
}

.page.page-brand .ppp-content-wrapper .ppp.en {
  font-size: 12px;
  font-family: Montserrat;
  font-weight: 300;
  color: #5d5d5d;
  line-height: 1.83333333;
}

.page.page-brand .box-hero .main-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* width: 1585.5px; */
  height: 720px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.page.page-brand .box-hero .main-container .text-wrapper {
  position: absolute;
  bottom: 70px;
  width: 100%;
  z-index: 11;
}

.page.page-brand .box-hero .main-container .text-wrapper .progress-wrapper {
  /*overflow: hidden;*/
  position: relative;
  width: 1252px;
  margin: 0 auto;
}

.page.page-brand .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar {
  width: 100%;
  height: 1px;
  background: rgba(246, 246, 246, 0.3);
}

.page.page-brand .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar::after {
  position: absolute;
  right: -100%;
  width: 100%;
  content: '';
  background: rgba(246, 246, 246, 0.3);
  height: 1px;
  bottom: 0;
}

.page.page-brand .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .decorator {
  width: 237px;
  height: 1px;
  background: #f6f6f6;
}

.page.page-brand .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .progress {
  /* transition-duration: 5s; */
  /* transition-timing-function: linear; */
  height: 1px;
  width: 100%;
  opacity: 1;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  will-change: transform;
  background-color: #f6f6f6;
}

.page.page-brand .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .progress.off {
  opacity: 0;
  -webkit-transition: opacity 0.7s ease 0s;
  -o-transition: opacity 0.7s ease 0s;
  transition: opacity 0.7s ease 0s;
}

.page.page-brand .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .progress.on {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.page.page-brand .box-hero .main-container .text-wrapper .title-small {
  height: 15px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff;
  line-height: 15px;
}

.page.page-brand .box-hero .main-container .text-wrapper .title-big {
  margin-top: 20px;
  margin-bottom: 30px;
  margin-left: -10px;
  height: 64px;
  font-size: 64px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #ffffff;
  line-height: 64px;
}

.page.page-brand .box-hero .main-container .text-wrapper .title-big .concept {
  margin-right: 15px;
  letter-spacing: 12.6px;
  font-size: 42px;
  font-family: Gill Sans;
  font-weight: 600;
  color: #ffffff;
  line-height: 40px;
}

.page.page-brand .section.section-1 .images-container .icon.abo {
  margin-top: 263px;
  margin-left: 61px;
  width: 71px;
  height: 533px;
  margin-right: 202px;
}

.page.page-brand .section.section-1 .images-container .main-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* width: 1585.5px; */
  height: 663.8px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.page.page-brand .section.section-1 .images-container .main-container .text-wrapper {
  position: absolute;
  bottom: 58px;
  width: 100%;
  z-index: 11;
}

.page.page-brand .section.section-1 .images-container .main-container .text-wrapper .progress-wrapper {
  overflow: hidden;
  position: relative;
  margin: 0 68px;
}

.page.page-brand .section.section-1 .images-container .main-container .text-wrapper .progress-wrapper .progress-bar {
  width: 100%;
  height: 1px;
  background: rgba(246, 246, 246, 0.3);
}

.page.page-brand .section.section-1 .images-container .main-container .text-wrapper .progress-wrapper .progress-bar .progress {
  /* transition-duration: 5s; */
  /* transition-timing-function: linear; */
  height: 1px;
  width: 100%;
  opacity: 1;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  will-change: transform;
  background-color: #f6f6f6;
}

.page.page-brand .section.section-1 .images-container .main-container .text-wrapper .progress-wrapper .progress-bar .progress.off {
  opacity: 0;
  -webkit-transition: opacity 0.7s ease 0s;
  -o-transition: opacity 0.7s ease 0s;
  transition: opacity 0.7s ease 0s;
}

.page.page-brand .section.section-1 .images-container .main-container .text-wrapper .progress-wrapper .progress-bar .progress.on {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.page.page-brand .section.section-1 .images-container .main-container .text-wrapper .title-small {
  height: 15px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff;
  line-height: 15px;
}

.page.page-brand .section.section-1 .images-container .main-container .text-wrapper .title-big {
  margin-top: 19px;
  margin-bottom: 37px;
  height: 40px;
  font-size: 40px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #ffffff;
  line-height: 40px;
}

.page.page-brand .section.section-1 .images-container .main-container .text-wrapper .title-big .concept {
  margin-right: 15px;
  letter-spacing: 12.6px;
  font-size: 42px;
  font-family: Gill Sans;
  font-weight: 600;
  color: #ffffff;
  line-height: 40px;
}

.page.page-brand .section.section-2 .ppp-content-wrapper {
  padding-top: 119px;
  padding-bottom: 117px;
}

.page.page-brand .section.section-2 .ppp-content-wrapper .title.xs {
  font-size: 20px;
  font-weight: 500;
  color: #171717;
  line-height: 1em;
  margin-bottom: 50px;
}

.page.page-brand .section.section-2 .ppp-content-wrapper .ppp {
  font-size: 16px;
  font-weight: 400;
  color: #171717;
  line-height: 34px;
}

.page.page-brand .section.section-2 .ppp-content-wrapper .ppp.en {
  font-size: 12px;
  font-family: Montserrat;
  font-weight: 300;
  color: #5d5d5d;
  line-height: 1.83333333;
  margin-bottom: 86px;
}

.page.page-brand .section.section-2 .images-container {
  width: 1137px;
  height: 700px;
  margin: 0 auto;
  position: relative;
}

.page.page-brand .section.section-2 .images-container .image-container.c1 {
  position: absolute;
  left: -392px;
  width: 1267px;
  height: 700px;
}

.page.page-brand .section.section-2 .images-container .image-container.c2 {
  position: absolute;
  right: -200px;
  top: 0;
  width: 416px;
  height: 622px;
}

.page.page-brand .section.section-4 {
  margin-bottom: 160px;
}

.page.page-brand .section.section-4 .ppp-content-wrapper {
  padding-top: 142px;
  padding-bottom: 70px;
}

.page.page-brand .section.section-4 .pre {
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 400;
  color: #cbcbcb;
  margin-bottom: 20px;
}

.page.page-brand .section.section-4 .title {
  font-size: 64px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  margin-left: -10px;
}

.page.page-brand .section.section-4 .box-img img {
  width: 100%;
}

.page.page-brand .section.section-5 .ppp-content-wrapper {
  width: 1128px;
  padding: 0 0 97px;
  margin: 0 auto;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .title-4240 {
  margin-bottom: 55px;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .title-4240 .pre {
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 400;
  color: #cbcbcb;
  margin-bottom: 15px;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .title-4240 .title {
  font-size: 64px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  line-height: 1;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .line-dashed {
  background-image: url("../images/line-dashed.png");
  height: 3px;
  width: 100%;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .left,
.page.page-brand .section.section-5 .ppp-content-wrapper .right {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .left .box-icon,
.page.page-brand .section.section-5 .ppp-content-wrapper .right .box-icon {
  margin-right: 28px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .left .box-txt,
.page.page-brand .section.section-5 .ppp-content-wrapper .right .box-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .left .box-txt h2,
.page.page-brand .section.section-5 .ppp-content-wrapper .right .box-txt h2 {
  font-weight: 600;
  color: #171717;
  line-height: 1;
  margin-bottom: 12px;
  font-size: 24px;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .left .box-txt p,
.page.page-brand .section.section-5 .ppp-content-wrapper .right .box-txt p {
  font-weight: 500;
  color: #818181;
  line-height: 1;
  font-size: 12px;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .box-line-one,
.page.page-brand .section.section-5 .ppp-content-wrapper .box-line-two {
  padding-top: 32px;
  padding-bottom: 44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .box-line-one .right .box-icon,
.page.page-brand .section.section-5 .ppp-content-wrapper .box-line-two .right .box-icon {
  margin-left: 100px;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .line-dashed-vertical {
  width: 2px;
  height: 54px;
  background: url("../images/line-dashed-vertical.png") 0 0 repeat-y;
  background-size: 100%;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .box-line-two p {
  font-weight: 400;
  color: #171717;
  line-height: 34px;
  font-size: 16px;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .box-line-two .line-dashed-vertical {
  height: 80px;
}

.page.page-brand .section.section-5 .ppp-content-wrapper .box-line-two .right p {
  margin-left: 114px;
}

.page.page-brand .section.section-5 .box-img {
  height: 1156px;
}

.page.page-brand .section.section-5 .box-img .container {
  width: 1128px;
  margin: 0 auto;
  position: relative;
}

.page.page-brand .section.section-5 .box-img .container .img-title {
  position: absolute;
  left: -210px;
  top: 75px;
  width: 90px;
  height: 438px;
}

.page.page-brand .section.section-5 .box-img .container .imgs {
  float: left;
  width: 1560px;
  position: absolute;
}

.page.page-brand .section.section-5 .box-img .container .imgs img {
  float: left;
  margin-right: 24px;
  margin-bottom: 24px;
}

.page.page-brand .section.section-6 {
  margin-bottom: 116px;
}

.page.page-brand .section.section-6 .ppp-content-wrapper {
  padding: 200px 0 200px;
  margin: 0 auto;
  width: 1138px;
}

.page.page-brand .section.section-6 .ppp-content-wrapper .title-4240 {
  margin-bottom: 50px;
}

.page.page-brand .section.section-6 .ppp-content-wrapper .title-4240 .pre {
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 400;
  color: #cbcbcb;
  line-height: 1;
  margin-bottom: 22px;
}

.page.page-brand .section.section-6 .ppp-content-wrapper .title-4240 .title {
  font-size: 64px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #000000;
  line-height: 1;
  margin-left: -10px;
}

.page.page-brand .section.section-6 .ppp-content-wrapper .title-4240 .line {
  background: #f9f9f9;
}

.page.page-brand .section.section-6 .box-img {
  width: 100%;
}

.page.page-brand .section.section-7 .ppp-content-wrapper {
  padding: 0 0 167px;
  margin: 0 auto;
  width: 1138px;
}

.page.page-brand .section.section-7 .ppp-content-wrapper .title-4240 {
  margin-bottom: 50px;
}

.page.page-brand .section.section-7 .ppp-content-wrapper .title-4240 .pre {
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 400;
  line-height: 1;
  color: #cbcbcb;
  margin-bottom: 20px;
}

.page.page-brand .section.section-7 .ppp-content-wrapper .title-4240 .title {
  font-size: 64px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  margin-left: -10px;
  color: #000000;
  line-height: 1;
}

.page.page-brand .section.section-7 .ppp-content-wrapper .ppp {
  font-weight: 400;
  color: #171717;
  line-height: 34px;
  margin-bottom: 70px;
}

.page.page-brand .section.section-7 .ppp-content-wrapper .box-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.page.page-brand .section.section-7 .ppp-content-wrapper .box-icons .item {
  margin-right: 20px;
  width: 208px;
  height: 260px;
  border: 2px solid #e1e1e1;
  padding-top: 52px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page.page-brand .section.section-7 .ppp-content-wrapper .box-icons .item img {
  width: 90px;
  height: 90px;
  margin-bottom: 28px;
}

.page.page-brand .section.section-7 .ppp-content-wrapper .box-icons .item .title {
  font-size: 16px;
  font-weight: 500;
  color: #171717;
  line-height: 1;
  margin-bottom: 12px;
}

.page.page-brand .section.section-7 .ppp-content-wrapper .box-icons .item .sub {
  font-size: 14px;
  font-family: Montserrat;
  font-weight: bold;
  color: #cdcdcd;
}

.page.page-brand .section.section-7 .box-img {
  width: 100%;
}

.page.page-brand .section.section-7 .box-img img {
  vertical-align: middle;
}

/* ##### Import All CSS ##### */

.page.page-product-list .series-list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page.page-product-list .series-list .series-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 871px;
  position: relative;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-position: bottom center;
}

.page.page-product-list .series-list .series-item .title-wrapper {
  position: absolute;
  left: 59px;
  bottom: 52px;
  z-index: 2;
  /* margin-left: unit(59*100/480, %); */
  /* margin-left: 59px; */
}

.page.page-product-list .series-list .series-item .title-wrapper .title-en {
  font-size: 16px;
  font-family: Gill Sans;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.75;
}

.page.page-product-list .series-list .series-item .title-wrapper .title-cn {
  font-size: 40px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: -7.2px;
}

.page.page-product-list .series-list .series-item .title-wrapper .title-cn::first-letter {
  margin-left: -0.18em;
}

.page.page-product-list .series-list .series-item.s1 {
  background-image: url("../images/A.jpg");
}

.page.page-product-list .series-list .series-item.s2 {
  background-image: url("../images/2-b.png");
}

.page.page-product-list .series-list .series-item.s3 {
  background-image: url("../images/3-b.png");
}

.page.page-product-list .series-list .series-item.s4 {
  background-image: url("../images/D.jpg");
}

.page.page-product-list .series-list .series-item::before {
  content: '';
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  pointer-events: none;
  z-index: 1;
  position: absolute;
  left: 0;
  height: 200px;
  bottom: 0;
  right: 0;
}

.page.page-product-list .series-list .series-item::after {
  content: "";
  background: #000000;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  -o-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.page.page-product-list .series-list:hover .series-item::after {
  opacity: 0.6;
}

.page.page-product-list .series-list:hover .series-item:hover::after {
  opacity: 0;
}

.page.page-product-list .series-list .series-item {
  cursor: pointer;
}

.page.page-product-list .series-list .series-item:hover {
  -webkit-box-flex: 4;
  -webkit-flex: 4;
  -ms-flex: 4;
  flex: 4;
  /*  &.s1 {
          background-image: url('../images/s1.png');
        }

        &.s2 {
          background-image: url('../images/s2.png');
        }

        &.s3 {
          background-image: url('../images/s3.png');
        }

        &.s4 {
          background-image: url('../images/s4.png');
        } */
}

.page.page-product-list .series-list .series-item:hover::after {
  content: "";
  opacity: 0;
  /* display: none; */
}

.page.page-product-list .series-list .series-item:hover .title-wrapper .title-cn::after {
  content: '>';
  font-stretch: ultra-expanded;
  /* font-stretch: ultra-condensed; */
  /* font-size: 3px/20px; */
}

/* ##### Import All CSS ##### */

.page.page-product-detail .banner-width-title {
  width: 100%;
  height: 961px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/banner6.png");
  position: relative;
}

.page.page-product-detail .banner-width-title .fixed1 {
  position: absolute;
  width: 100%;
  bottom: 60px;
}

.page.page-product-detail .banner-width-title .title-wrapper .title-1 {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff;
  line-height: 2;
}

.page.page-product-detail .banner-width-title .title-wrapper .title-2.title-4240.white {
  margin-top: 10px;
  margin-left: -0.3em;
}

.page.page-product-detail .banner-width-title .title-wrapper .line.line-245 {
  margin-top: 30px;
}

.page.page-product-detail .bg-dot-white {
  background: url("../images/bg.jpg");
  padding-top: 105px;
}

.page.page-product-detail .bg-dot-white .content-width .ppp.pfirst {
  margin-top: 30px;
}

.page.page-product-detail .bg-dot-white img.section-image {
  width: 1251px;
  height: 814px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 70px auto;
}

.page.page-product-detail .elaborate-section {
  width: 100%;
  padding-bottom: 153px;
  /* min-height: 965px; */
  background: #ffffff;
  padding-top: 158px;
}

.page.page-product-detail .elaborate-section .title-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.page.page-product-detail .elaborate-section .title-wrapper .title-44 {
  margin-right: 20px;
}

.page.page-product-detail .elaborate-section .title-wrapper .pagination {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #8f8f8f;
}

.page.page-product-detail .elaborate-section .title-wrapper .pagination .no {
  color: #000000;
}

.page.page-product-detail .elaborate-section .ppp {
  margin-top: 30px;
}

.page.page-product-detail .elaborate-section .elaborate-swiper-container.swiper-container {
  margin-top: 125px;
  text-align: center;
}

.page.page-product-detail .elaborate-section .elaborate-swiper-container.swiper-container .swiper-button-next:after,
.page.page-product-detail .elaborate-section .elaborate-swiper-container.swiper-container .swiper-button-prev:after {
  color: #a5a9aa;
}

.page.page-product-detail .elaborate-section .elaborate-swiper-container.swiper-container .slide-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  height: 400px;
  /*.w(834);*/
  /*.h(384);*/
}

/* ##### Import All CSS ##### */

/* 3d */

/* .case-item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 3px 5px rgba(0, 0, 0, 0.05);
  position: relative;

  transform-style: preserve-3d;
  perspective: 1000px;
  z-index: 5;
  overflow: hidden;

  .left,
  .ze-img-w {
    position: relative;
    overflow: hidden;
     box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: absolute;
    bottom: -60px;
    right: -55px;
    width: 100%;
    height: 300px;
    border-radius: 9px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;overflow: hidden;

    transform-style: preserve-3d;
    transform: translateZ(15px);
    transition: all 0.5s;

  }

  .left::after {
    content: '';
    position: absolute;
    background: #FFF;
    width: 250%;
    height: 100%;
    top: -200%;
    left: -70%;
    transform: rotateZ(-45deg);
    opacity: 0.2;
    transition: all .5s;
  }

  &:hover {
    .ze-img-w {
      transform: translateZ(20px);
    }

    .left::after {
      top: 200%;
    }
  }
} */

.page.page-case-type {
  background: #F3FAFC;
  width: 100%;
  overflow: hidden;
}

.page.page-case-type .banner-container {
  /* background-image: url('../images/banner8.png'); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  position: relative;
  height: 841px;
}

.page.page-case-type .banner-container canvas {
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.page.page-case-type .banner-container #wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.page.page-case-type .banner-container .title-wrapper {
  z-index: 2;
  padding-top: 123px;
  padding-left: 63px;
  width: 1380px;
  margin-left: auto;
  margin-right: auto;
}

.page.page-case-type .banner-container .title-wrapper .title-sm.en {
  font-size: 16px;
  font-family: Gill Sans;
  font-weight: 600;
  color: #ffffff;
  line-height: 1em;
}

.page.page-case-type .banner-container .title-wrapper .title.cn {
  font-size: 60px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -10.8px;
  margin-top: 15px;
}

.page.page-case-type .banner-container .title-wrapper .title.cn::first-letter {
  margin-left: -0.18em;
}

.page.page-case-type .box-hero .main-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* width: 1585.5px; */
  height: 720px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page.page-case-type .box-hero .main-container .text-wrapper {
  position: absolute;
  bottom: 70px;
  width: 100%;
  z-index: 11;
}

.page.page-case-type .box-hero .main-container .text-wrapper .progress-wrapper {
  /*overflow: hidden;*/
  position: relative;
  width: 1252px;
  margin: 0 auto;
}

.page.page-case-type .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar {
  width: 100%;
  height: 1px;
  background: rgba(246, 246, 246, 0.3);
}

.page.page-case-type .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar::after {
  position: absolute;
  right: -100%;
  width: 100%;
  content: '';
  background: rgba(246, 246, 246, 0.3);
  height: 1px;
  bottom: 0;
}

.page.page-case-type .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .decorator {
  width: 237px;
  height: 1px;
  background: #f6f6f6;
}

.page.page-case-type .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .progress {
  /* transition-duration: 5s; */
  /* transition-timing-function: linear; */
  height: 1px;
  width: 100%;
  opacity: 1;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  will-change: transform;
  background-color: #f6f6f6;
}

.page.page-case-type .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .progress.off {
  opacity: 0;
  -webkit-transition: opacity 0.7s ease 0s;
  -o-transition: opacity 0.7s ease 0s;
  transition: opacity 0.7s ease 0s;
}

.page.page-case-type .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .progress.on {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.page.page-case-type .box-hero .main-container .text-wrapper .title-small {
  height: 15px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff;
  line-height: 15px;
}

.page.page-case-type .box-hero .main-container .text-wrapper .title-big {
  margin-top: 20px;
  margin-bottom: 30px;
  margin-left: -10px;
  height: 64px;
  font-size: 64px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #ffffff;
  line-height: 64px;
}

.page.page-case-type .box-hero .main-container .text-wrapper .title-big .concept {
  margin-right: 15px;
  letter-spacing: 12.6px;
  font-size: 42px;
  font-family: Gill Sans;
  font-weight: 600;
  color: #ffffff;
  line-height: 40px;
}

.page.page-case-type .case-list {
  z-index: 2;
  width: 1252px;
  padding-bottom: 80px;
  padding-top: 80px;
  margin-left: auto;
  margin-right: auto;
}

.page.page-case-type .case-list .case-item {
  margin-bottom: 60px;
}

.page.page-case-type .case-list .case-item .box-img {
  height: 468px;
  overflow: hidden;
}

.page.page-case-type .case-list .case-item .pre {
  font-size: 14px;
  color: #B5B5B5;
  margin-bottom: 16px;
}

.page.page-case-type .case-list .case-item .box-content {
  padding: 55px 80px;
  background-color: white;
}

.page.page-case-type .case-list .case-item .box-content .box-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page.page-case-type .case-list .case-item .box-content .box-title h2 {
  color: black;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 32px;
  font-weight: 400;
}

.page.page-case-type .case-list .case-item .box-content .box-title h2 a {
  color: black;
}

.page.page-case-type .case-list .case-item .box-content .box-title .box-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.page.page-case-type .case-list .case-item .box-content .box-title .box-icons img {
  width: 70px;
  height: 40px;
  margin-left: 30px;
}

.page.page-case-type .case-list .case-item .box-content .line {
  margin-bottom: 28px;
  background: #e9e9e9;
}

.page.page-case-type .case-list .case-item .box-content .content {
  color: #3E3E3E;
  line-height: 26px;
}

.page.page-case-type .case-list .case-item.grid-wrapper {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: white;
}

.page.page-case-type .case-list .case-item.grid-wrapper:nth-child(2n) .grid-item {
  z-index: 3;
}

.page.page-case-type .case-list .case-item.grid-wrapper:nth-child(2n) .grid-item:last-child {
  grid-row-start: 1;
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item {
  background: white;
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item.left {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item.left img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item.left img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item.left img.grid-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right {
  padding: 85px 100px;
  z-index: 111;
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .work {
  margin-bottom: 12px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #b5b5b5;
  line-height: 1.85714286;
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .title-30 {
  font-size: 30px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #000000;
  line-height: 1em;
  margin-bottom: 28px;
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .icon-group-wrapper {
  margin-top: 57px;
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .icon-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .icon-group .icon {
  width: 55px;
  height: 31px;
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .icon-group .icon-g {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .icon-group .icon-g::after {
  content: '';
  width: 1px;
  height: 10px;
  background: #e9e9e9;
  margin: 0 23px;
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .icon-group .icon-g:last-child::after {
  display: none;
}

.page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .icon-more {
  margin-left: 17px;
  width: 24px;
  height: 24px;
}

/* ##### Import All CSS ##### */

.page.page-case-detail {
  /* banner */
}

.page.page-case-detail .template-line {
  background: #aaaaaa;
  opacity: 0.2;
}

.page.page-case-detail .icon-group {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* grid-column-gap: 117px; */
}

.page.page-case-detail .icon-group .icon-wrapper {
  text-align: center;
  border-right: 1px solid #E9E9E9;
}

.page.page-case-detail .icon-group .icon-wrapper:last-child {
  border-right: 0;
}

.page.page-case-detail .icon-group .icon-wrapper .icon {
  width: 100px;
  height: 100px;
}

.page.page-case-detail .icon-group .icon-wrapper .txt {
  text-align: center;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #595959;
  line-height: 26px;
}

.page.page-case-detail .template-title-info .left .fs14 {
  line-height: 28px;
}

.page.page-case-detail .template-title-info.no-bb {
  border-bottom: none;
}

.page.page-case-detail .banner-image {
  width: 100vw;
  height: 39.21875vw;
  min-height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page.page-case-detail .store-name .name-en {
  height: 38px;
  font-family: GillSans;
  font-weight: bold;
  color: #ffffff;
  font-size: 42px;
  letter-spacing: 12.6px;
}

.page.page-case-detail .store-name .name-cn {
  height: 36px;
  font-family: HYQingYaTiJ;
  font-weight: 500;
  color: #ffffff;
  font-size: 40px;
  letter-spacing: -2.6px;
}

.page.page-case-detail .detail-body-box {
  background: url("http://nature-website.oss-cn-chengdu.aliyuncs.com/img/case-detail/bg.jpg") center top repeat-y transparent;
  background-size: 1920px;
}

.page.page-case-detail .detail-body {
  margin-left: auto;
  margin-right: auto;
  width: 1316px;
  position: relative;
}

.page.page-case-detail .goback {
  position: absolute;
  left: -43px;
  top: 84px;
  width: 18px;
  height: 18px;
}

.page.page-case-detail .goback img {
  width: 18px;
  height: 18px;
}

@-webkit-keyframes scale-up {
  from {
    -webkit-transform: scaleY(1) scaleX(1);
    transform: scaleY(1) scaleX(1);
    opacity: 0.5;
  }

  to {
    -webkit-transform: scaleX(1.3) scaleY(2);
    transform: scaleX(1.3) scaleY(2);
    opacity: 0;
  }
}

@keyframes scale-up {
  from {
    -webkit-transform: scaleY(1) scaleX(1);
    transform: scaleY(1) scaleX(1);
    opacity: 0.5;
  }

  to {
    -webkit-transform: scaleX(1.3) scaleY(2);
    transform: scaleX(1.3) scaleY(2);
    opacity: 0;
  }
}

.close_dialog_layer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10001;
  display: none;
}

.button {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* padding: 16px 36px; */
  color: #ffffff;
  background-color: #000000;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button.black-e {
  color: #ffffff;
  background-color: #000000;
}

.button.black-e:hover {
  color: #000000;
  /* background-color: #000000; */
}

.button.gray-e {
  background: #667078;
  color: #ffffff;
  width: 294px;
}

.button.gray-e:hover {
  /* background: #667078; */
  color: #000000;
}

.button__text {
  position: relative;
  margin-right: 12px;
  -webkit-transition: ease-in-out 0.18s;
  -o-transition: ease-in-out 0.18s;
  transition: ease-in-out 0.18s;
  z-index: 2;
}

.button__icon {
  position: relative;
  -webkit-transition: ease-in-out 0.18s;
  -o-transition: ease-in-out 0.18s;
  transition: ease-in-out 0.18s;
  z-index: 2;
}

.button:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.5;
  /* border-radius: 40px; */
  z-index: -1;
}

.button:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 1;
  -webkit-transition: ease-in-out 0.18s;
  -o-transition: ease-in-out 0.18s;
  transition: ease-in-out 0.18s;
  -webkit-transform-origin: center left;
  -ms-transform-origin: center left;
  transform-origin: center left;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  /* border-radius: 40px; */
}

.button:hover {
  color: #000000;
}

.button:hover:after {
  -webkit-transform-origin: center right;
  -ms-transform-origin: center right;
  transform-origin: center right;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  color: #ffffff;
}

.button:hover .button__icon {
  -webkit-transform: translate3d(400%, 0px, 0px);
  transform: translate3d(400%, 0px, 0px);
  opacity: 0;
}

.button:hover .button__text {
  -webkit-transform: translate3d(12px, 0px, 0px);
  transform: translate3d(12px, 0px, 0px);
}

.button:active:hover {
  opacity: 0.8;
  -webkit-transition: opacity ease-in-out 0.3s;
  -o-transition: opacity ease-in-out 0.3s;
  transition: opacity ease-in-out 0.3s;
}

.button.active:before {
  -webkit-animation: scale-up 0.3s ease;
  animation: scale-up 0.3s ease;
}

.page.page-cooperation {
  /*background: #E9E8EB;*/
  background: #e9e9e9;
  /* TODO replace 3px */
}

.page.page-cooperation .banner-bg.banner-bg-496 {
  height: 25.83333333vw;
  width: 100%;
  min-height: 100px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.page.page-cooperation .banner-bg.banner-bg-496 .grid-wrapper {
  position: absolute;
  width: 100%;
  bottom: 56px;
}

.page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 {
  grid-gap: 50px;
}

.page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item {
  cursor: pointer;
  opacity: 0.5;
}

.page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper {
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding-bottom: 37px;
  color: white;
  /* color: rgba(0, 0, 0, .5); */
  border-bottom: 2px solid #ffffff;
}

.page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper .en {
  font-size: 18px;
  font-family: Bjorn;
  font-weight: 400;
  line-height: 1.44444444;
}

.page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper .cn {
  font-size: 24px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 1.08333333;
  letter-spacing: 0px;
}

.page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper .cn::first-letter {
  margin-left: -0.18em;
}

.page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item.active,
.page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item:hover {
  opacity: 1;
}

.page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item.active .title-wrapper,
.page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item:hover .title-wrapper {
  /* color: rgba(125, 125, 125, 1); */
  /* border-bottom: 2px solid rgba(199, 199, 199, 1); */
}

.page.page-cooperation .page-body {
  padding-top: 95px;
  padding-bottom: 170px;
}

.page.page-cooperation .page-body .first-header-wrapper {
  padding-bottom: 50px;
  /* .flex-start(); */
  /* justify-content: space-between; */
  border-bottom: 5px solid #dadeda;
}

.page.page-cooperation .page-body .first-header-wrapper .button.apply img.icon {
  width: 14px;
  height: 14px;
}

.page.page-cooperation .page-body .first-header-wrapper.no-bb {
  border-bottom: none;
}

.page.page-cooperation .page-body .title-56 {
  font-size: 56px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #000000;
  letter-spacing: -10.08px;
  line-height: 1.23214286;
  margin-bottom: 22.5px;
}

.page.page-cooperation .page-body .title-38 {
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 38px;
  font-family: PingFang SC;
  font-weight: 300;
  color: #000000;
  line-height: 1.31578947;
}

.page.page-cooperation .page-body .title-14 {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #777777;
  line-height: 1.78571429;
}

.page.page-cooperation .page-body .content-width.list-wrapper .list-item {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 0 50px;
  border-bottom: 5px solid #dadeda;
}

.page.page-cooperation .page-body .content-width.list-wrapper .list-item:hover .title-38 {
  font-weight: 600;
}

.page.page-cooperation .page-body .content-width.list-wrapper .list-item .time {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #777777;
}

.page.page-cooperation .page-body .content-width .left .l1 {
  width: 77px;
  margin-bottom: 70px;
  margin-top: 20px;
}

.page.page-cooperation .page-body .content-width .left .l2 {
  width: 26px;
  margin-bottom: 45px;
  margin-top: 40px;
}

.page.page-cooperation .page-body .content-width .left .l3 {
  width: 26px;
  margin-bottom: 45px;
  margin-top: 40px;
}

.page.page-cooperation .page-body .content-width .left .txt-group .tsm {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #757575;
  line-height: 1.625;
}

.page.page-cooperation .page-body .content-width .left .txt-group .tn {
  font-size: 60px;
  font-family: PingFang SC;
  font-weight: 600;
  color: #6695a8;
  line-height: 1.16666667;
}

.page.page-cooperation .page-body .content-width .left .txt-group .tn .tr {
  font-size: 30px;
  font-family: PingFang SC;
  font-weight: 600;
  color: #6695a8;
  line-height: 1.2;
}

.page.page-cooperation .page-body .content-width .map {
  margin-top: -160px;
  width: 1034.8px;
  height: 765.6px;
}

.page.page-cooperation.page-cooperation1 .page-body .first-header-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page.page-cooperation.page-cooperation2 .page-body .first-header-wrapper .button.apply {
  margin-top: 35px;
}

.dialog.dialog-job-info .dialog-body {
  width: 900px;
  /* height: 341px; */
  background: #f6f6f3;
  padding: 50px 60px;
}

.dialog.dialog-job-info .dialog-body .top-box {
  min-height: 182px;
  border-bottom: 1px solid #e0e0e0;
}

.dialog.dialog-job-info .dialog-body .top-box .lr-c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.dialog.dialog-job-info .dialog-body .top-box .lr-c .info .title {
  font-size: 30px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #000000;
  line-height: 1em;
}

.dialog.dialog-job-info .dialog-body .top-box .lr-c .info .info-line {
  margin-top: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.dialog.dialog-job-info .dialog-body .top-box .lr-c .info .info-line .info-item {
  margin-right: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #000000;
  line-height: 28px;
}

.dialog.dialog-job-info .dialog-body .top-box .lr-c .info .info-line .info-item img.icon {
  width: 24px;
  height: 24px;
}

.dialog.dialog-job-info .dialog-body .top-box .lr-c .qr img.qrcode {
  width: 91px;
  height: 91px;
}

.dialog.dialog-job-info .dialog-body .top-box .lr-c .qr .qrtxt {
  text-align: right;
  margin-top: 1px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #000000;
  line-height: 28px;
}

.dialog.dialog-job-info .dialog-body .bottom-box {
  padding-top: 28px;
}

.dialog.dialog-job-info .dialog-body .bottom-box .info-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #000000;
  line-height: 1.86666667px;
}

.dialog.dialog-job-info .dialog-body .icon {
  width: 24px;
  height: 24px;
}

.dialog.dialog-manager-info .dialog-body {
  width: 320px;
  /* height: 550px; */
  background: #f6f6f3;
  padding: 33px 28px 51px 45px;
}

.dialog.dialog-manager-info .dialog-body .top-box .lr-c .info .title {
  font-size: 16px;
  font-family: Bjorn;
  font-weight: 400;
  color: #000000;
  line-height: 1.625;
}

.dialog.dialog-manager-info .dialog-body .top-box .lr-c .info .info-line .info-item {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #171717;
  line-height: 1.625;
}

.dialog.dialog-manager-info .dialog-body .bottom-box {
  margin-top: 150px;
}

.dialog.dialog-manager-info .dialog-body .bottom-box .info-group {
  padding-top: 43px;
}

.dialog.dialog-manager-info .dialog-body .bottom-box .info-group .title {
  font-size: 16px;
  font-family: Bjorn;
  font-weight: 400;
  color: #000000;
  line-height: 1.625;
}

.dialog.dialog-manager-info .dialog-body .bottom-box .info-group .value {
  margin-top: 3px;
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #171717;
  line-height: 1.625;
}

.page.page-services {
  background: #E9E8EB;
  /* TODO replace 3px */
}

.page.page-services .banner-bg.banner-bg-496 {
  height: 31.19791667vw;
  width: 100%;
  min-height: 150px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.page.page-services .banner-bg.banner-bg-496 .grid-wrapper {
  position: absolute;
  width: 100%;
  bottom: 56px;
}

.page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 {
  grid-gap: 50px;
}

.page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item {
  cursor: pointer;
  opacity: 0.5;
}

.page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper {
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding-bottom: 37px;
  color: #ffffff;
  /* color: rgba(0, 0, 0, .5); */
  /* border-bottom: 2px solid rgba(0, 0, 0, .3); */
  border-bottom: 2px solid #ffffff;
}

.page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper .en {
  font-size: 18px;
  font-family: Bjorn;
  font-weight: 400;
  line-height: 1.44444444;
}

.page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper .cn {
  font-size: 24px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 1.08333333;
  letter-spacing: 0px;
}

.page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper .cn::first-letter {
  margin-left: -0.18em;
}

.page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item.active,
.page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item:hover {
  opacity: 1;
}

.page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item.active .title-wrapper,
.page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item:hover .title-wrapper {
  /* color: rgba(125, 125, 125, 1); */
  /* border-bottom: 2px solid rgba(199, 199, 199, 1); */
}

.page.page-services .page-body {
  padding-top: 95px;
  padding-bottom: 170px;
}

.page.page-services .page-body .content-width {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page.page-services .page-body .content-width .list-wrapper {
  width: 1050px;
}

.page.page-services .page-body .content-width .list-wrapper .list-item {
  cursor: default;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 0 35px;
  border-bottom: 1px solid #c4c4c4;
}

.page.page-services .page-body .content-width .list-wrapper .list-item .title-38 {
  font-size: 24px;
}

.page.page-services .page-body .content-width .list-wrapper .list-item:hover .title-38 {
  font-weight: 600;
}

.page.page-services .page-body .content-width .list-wrapper .list-item:first-child {
  padding-top: 0;
}

.page.page-services .page-body .content-width .list-wrapper .list-item .title-wrapper .title-22 {
  font-size: 22px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #000000;
  line-height: 1.18181818;
}

.page.page-services .page-body .content-width .list-wrapper .list-item .title-wrapper .title-16 {
  margin-top: 16.5px;
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #646464;
  line-height: 1.5625;
}

.page.page-services .page-body .content-width .r-menu-wrapper .r-menu-item {
  margin-bottom: 34px;
  font-size: 24px;
  font-family: PingFang SC;
  font-weight: 400;
  color: rgba(99, 99, 99, 0.4);
  line-height: 1.08333333;
}

.page.page-services .page-body .content-width .r-menu-wrapper .r-menu-item.active {
  font-weight: 500;
  color: #202020;
}

/* ##### Import All CSS ##### */

.page.page-news {
  padding-bottom: 20px;
}

.page.page-news .banner-container {
  width: 100%;
  height: 31.25vw;
  min-height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-image: url("../images/banner7.png");
}

.page.page-news .banner-container .title-wrapper {
  text-align: center;
}

.page.page-news .banner-container .title-wrapper .title.cn {
  font-size: 68px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.17647059;
  letter-spacing: -12.24px;
}

.page.page-news .banner-container .title-wrapper .title.cn::first-letter {
  margin-left: -0.18em;
}

.page.page-news .banner-container .title-wrapper .title-sm.en {
  margin-top: 12px;
  font-size: 12px;
  font-family: Bjorn;
  font-weight: 400;
  color: #ffffff;
  line-height: 26px;
}

.page.page-news .grid-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 85px 26px;
  padding: 52px 18px;
}

.page.page-news .grid-body .grid-item .time {
  margin-top: 30px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #646464;
  line-height: 1em;
}

.page.page-news .grid-body .grid-item .title-24 {
  font-size: 24px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #000000;
  line-height: 36px;
}

.page.page-news .grid-body .grid-item .title-24 a {
  color: black;
}

.page.page-news .grid-body .grid-item .title-12 {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #646464;
  line-height: 32px;
}

.page.page-news .more-wrapper {
  cursor: pointer;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 35px;
  line-height: 1em;
  margin: 18px;
  text-align: center;
}

/* ##### Import All CSS ##### */

.page-news-detail {
  background: #f5f5f5;
  /* banner */
}

.page-news-detail .lr-container {
  width: 1250px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.page-news-detail .lr-container .r-container {
  width: 315px;
  margin-left: 99px;
}

.page-news-detail .lr-container .r-container .nav-list .list-item {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 18px 0;
  border-bottom: 1px solid #e3e3e3;
}

.page-news-detail .lr-container .r-container .nav-list .list-item:first-child {
  border-top: 1px solid #e3e3e3;
}

.page-news-detail .lr-container .r-container .icons-wrapper .share {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #7d7d7d;
  line-height: 26px;
  margin-bottom: 16px;
}

.page-news-detail .lr-container .r-container .icons-wrapper .icon-group img.icon {
  width: 24px;
  height: 24px;
}

.page-news-detail .template-title-info.no-bb {
  border-bottom: none;
}

.page-news-detail .banner-image {
  width: 100vw;
  height: 23.38541667vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-news-detail .store-name .name-en {
  height: 38px;
  font-family: GillSans;
  font-weight: bold;
  color: #ffffff;
  font-size: 42px;
  letter-spacing: 12.6px;
}

.page-news-detail .store-name .name-cn {
  height: 36px;
  font-family: HYQingYaTiJ;
  font-weight: 500;
  color: #ffffff;
  font-size: 40px;
  letter-spacing: -2.6px;
}

.page-news-detail .detail-body-box {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.page-news-detail .detail-body {
  position: relative;
}

.page-news-detail .goback {
  position: absolute;
  left: -43px;
  top: 5px;
  width: 18px;
  height: 18px;
}

.page-news-detail .goback img {
  width: 18px;
  height: 18px;
}

/* ##### Import All CSS ##### */

.line {
  height: 1px;
  background: #a3a29d;
}

.line.line-163 {
  background: #a3a29d;
}

.line.line-98 {
  background: #626961;
}

.line.line-222 {
  background: #dedede;
}

.line.line-216 {
  background: #d8d7d4;
}

.line.line-245 {
  background: #f5f5f5;
}

.content-width {
  width: 1252px;
  margin-left: auto;
  margin-right: auto;
}

.title-4240.white .en {
  font-size: 42px;
  font-family: HYQingYaTiJ;
  font-weight: 600;
  color: white;
  line-height: 1em;
  /* margin-right: 10px; */
  letter-spacing: 12.6px;
}

.title-4240.white .cn {
  font-size: 40px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: white;
  line-height: 1em;
}

.title-4240.en {
  font-size: 42px;
  font-family: HYQingYaTiJ;
  font-weight: 600;
  line-height: 1em;
  /* margin-right: 10px; */
  letter-spacing: 12.6px;
}

.title-4240.cn {
  font-size: 40px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  line-height: 1em;
}

.title-56 {
  font-size: 56px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  letter-spacing: -10.08px;
  line-height: 1em;
}

.title-56.black {
  color: #000000;
}

.title-56::first-letter {
  margin-left: -0.18em;
}

.title-44 {
  font-size: 44px;
  font-family: PingFang SC;
  font-weight: 300;
  color: #000000;
  line-height: 1em;
  letter-spacing: 0.88px;
}

.title-30 {
  font-size: 30px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #000000;
  line-height: 1em;
  letter-spacing: 0.6px;
}

.title-12 {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #7f7f7f;
  /* line-height: 2; */
  /* .letterspacing(20, 30); */
}

.title-12.rt {
  line-height: 1em;
  margin-left: 12px;
}

.ppp.p14 {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #3e3e3e;
  line-height: 1.85714286;
}

.ppp.p12 {
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #3e3e3e;
  line-height: 2.16666667;
}

.fs14 {
  font-size: 14px;
}

.gray127 {
  color: #7f7f7f;
}

/* template */

.template-gap-10 {
  padding-top: 10px;
}

.template-gap-20 {
  padding-top: 20px;
}

.template-gap-30 {
  padding-top: 30px;
}

.template-gap-40 {
  padding-top: 40px;
}

.template-gap-50 {
  padding-top: 50px;
}

.template-gap-60 {
  padding-top: 60px;
}

.template-gap-70 {
  padding-top: 70px;
}

.template-gap-80 {
  padding-top: 80px;
}

.template-gap-90 {
  padding-top: 90px;
}

.template-gap-100 {
  padding-top: 100px;
}

.template-gap-110 {
  padding-top: 110px;
}

.template-gap-130 {
  padding-top: 130px;
}

.template-gap-120 {
  padding-top: 120px;
}

.template-image-1316-690 {
  width: 1316px;
  height: 690px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.template-image-1316-690 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.title-20 {
  font-size: 20px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #3e3e3e;
  line-height: 24px;
}

.template-title {
  font-family: PingFang;
  font-weight: bold;
  color: #000000;
  font-size: 24px;
  letter-spacing: 0.48px;
}

.template-desc {
  font-family: PingFang;
  font-weight: 500;
  color: #3e3e3e;
  font-size: 14px;
  line-height: 26px;
}

.template-coloumn-3-image-box {
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.template-coloumn-3-image-box img {
  width: 418px;
  height: 604px;
}

.template-grid-3-image-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 31px;
  height: 604px;
}

.template-grid-3-image-box img {
  /* border: 1px solid #ddd; */
  height: 100%;
  width: 418px;
  -o-object-fit: cover;
  object-fit: cover;
}

.template-line {
  border-bottom: 1px solid #c3c3c3;
}

.template-title-info {
  border-bottom: 1px solid #c3c3c3;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.template-title-info .left {
  margin-bottom: 36px;
}

.template-title-info .left .title {
  font-family: PingFang;
  font-weight: 600;
  color: #000000;
  font-size: 30px;
  letter-spacing: 0.6px;
  line-height: 30px;
  margin-bottom: 19px;
}

.template-title-info .left .info-box .address {
  height: 14px;
  font-family: PingFang;
  font-weight: 500;
  color: #000000;
  font-size: 14px;
}

.template-title-info .left .line {
  margin-left: 16px;
  margin-right: 16px;
  color: #c3c3c3;
}

.template-title-info .left .time {
  height: 14px;
  font-family: PingFang;
  font-weight: 500;
  color: #000000;
  font-size: 14px;
}

.template-title-info .right {
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  margin-bottom: 36px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.template-title-info .right i.icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 10px;
}

.template-title-info .right .avatar-box {
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.template-title-info .right .avatar-box .avatar {
  background-image: url("../images/矢量智能对象拷贝2@2x.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.template-title-info .right .phone-box {
  margin-top: 10px;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.template-title-info .right .phone-box .phone {
  background-image: url('../images/矢量智能对象拷贝2@2x(1).png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ##### Import All CSS ##### */

.page-store-list {
  /* banner */
}

.page-store-list .banner-image {
  width: 100%;
  height: 389px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-store-list .banner-image .banner-title {
  font-family: HYQingYaTiJ;
  font-weight: normal;
  color: #ffffff;
  font-size: 40px;
}

.page-store-list .lr-container {
  position: relative;
  overflow: visible;
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
  width: 1380px;
}

.page-store-list .lr-container .store-list .store-item {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 47px;
}

.page-store-list .lr-container .store-list .store-item .image-container {
  cursor: pointer;
  width: 1250px;
  height: 352px;
  position: relative;
  overflow: hidden;
}

.page-store-list .lr-container .store-list .store-item .image-container img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.page-store-list .lr-container .store-list .store-item .image-container img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.page-store-list .lr-container .store-list .store-item .info-wrapper {
  margin-top: 18px;
  margin-bottom: 8px;
}

.page-store-list .lr-container .store-list .store-item .info-wrapper .title {
  cursor: pointer;
  font-size: 24px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #000000;
  line-height: 30px;
}

.page-store-list .lr-container .store-list .store-item .info-wrapper .position-info {
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #8c8c8c;
  line-height: 24px;
}

.page-store-list .lr-container .store-list .store-item .info-wrapper .position-info img.icon.icon-position {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
  object-fit: contain;
}

.page-store-list .lr-container .store-area-name-list {
  position: absolute;
  top: -5px;
  left: 1345px;
}

.page-store-list .lr-container .store-area-name-list.sfixed {
  position: fixed;
  top: 75px;
}

.page-store-list .lr-container .store-area-name-list .name {
  cursor: pointer;
  white-space: nowrap;
}

.page-store-list .lr-container .store-area-name-list .name,
.page-store-list .lr-container .store-area-name-list .name a {
  color: #a4a4a4;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 24px;
}

.page-store-list .lr-container .store-area-name-list .name.active a,
.page-store-list .lr-container .store-area-name-list .name:hover a,
.page-store-list .lr-container .store-area-name-list .name.active,
.page-store-list .lr-container .store-area-name-list .name:hover {
  font-weight: 500;
  color: #000000;
}

.page-store-list .lr-container .store-area-name-list .name.active::after,
.page-store-list .lr-container .store-area-name-list .name:hover::after {
  content: "";
  width: 18px;
  height: 1px;
  background: #000000;
  display: inline-block;
  margin-bottom: 0.3em;
  margin-left: 10px;
}

.page-store-list .dialog.dialog-store-info .dialog-body {
  width: 900px;
  height: 220px;
  background: #f6f6f3;
  padding: 50px 60px;
}

.page-store-list .dialog.dialog-store-info .dialog-body .top-box {
  min-height: 182px;
  border-bottom: 1px solid #e0e0e0;
}

.page-store-list .dialog.dialog-store-info .dialog-body .top-box .lr-c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-store-list .dialog.dialog-store-info .dialog-body .top-box .lr-c .info .title {
  font-size: 30px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #000000;
  line-height: 1em;
}

.page-store-list .dialog.dialog-store-info .dialog-body .top-box .lr-c .info .info-line {
  margin-top: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-store-list .dialog.dialog-store-info .dialog-body .top-box .lr-c .info .info-line .info-item {
  margin-right: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #000000;
  line-height: 28px;
}

.page-store-list .dialog.dialog-store-info .dialog-body .top-box .lr-c .info .info-line .info-item img.icon {
  width: 24px;
  height: 24px;
}

.page-store-list .dialog.dialog-store-info .dialog-body .top-box .lr-c .qr img.qrcode {
  width: 91px;
  height: 91px;
}

.page-store-list .dialog.dialog-store-info .dialog-body .top-box .lr-c .qr .qrtxt {
  text-align: right;
  margin-top: 1px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #000000;
  line-height: 28px;
}

.page-store-list .dialog.dialog-store-info .dialog-body .bottom-box {
  padding-top: 28px;
}

.page-store-list .dialog.dialog-store-info .dialog-body .bottom-box .info-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #000000;
  line-height: 1.86666667px;
}

.page-store-list .dialog.dialog-store-info .dialog-body .icon {
  width: 24px;
  height: 24px;
}

/* ##### Import All CSS ##### */

.page-store-detail {
  /* banner */
}

.page-store-detail .banner-image {
  width: 100%;
  height: 388px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-store-detail .store-name .name-en {
  height: 38px;
  font-family: GillSans;
  font-weight: bold;
  color: #ffffff;
  font-size: 42px;
  letter-spacing: 12.6px;
}

.page-store-detail .store-name .name-cn {
  height: 36px;
  font-family: HYQingYaTiJ;
  font-weight: 500;
  color: #ffffff;
  font-size: 40px;
  letter-spacing: -2.6px;
}

.page-store-detail .detail-body-box {
  background: #f5f5f5;
}

.page-store-detail .detail-body {
  margin-left: auto;
  margin-right: auto;
  width: 1316px;
  position: relative;
}

.page-store-detail .goback {
  position: absolute;
  left: -43px;
  top: 84px;
  width: 18px;
  height: 18px;
}

.page-store-detail .goback img {
  width: 18px;
  height: 18px;
}

/* ##### Import All CSS ##### */

body > .block-alone-bg {
  background-color: #000;
  background-size: cover;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  opacity: 1;
  z-index: 98;
  /* pointer-events: none; */
  -o-object-fit: cover;
  object-fit: cover;
  /* transition: opacity .8s ease-out; */
}

/* 年份动画 */

@-webkit-keyframes titleAnimation {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  }

  20% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }

  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    /* transform: translateY(50px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% -0%, 0 100%, 0 100%);
    clip-path: polygon(100% 0, 100% -0%, 0 100%, 0 100%); */
  }
}

@keyframes titleAnimation {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  }

  20% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }

  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 15%);
    /* transform: translateY(50px);
    opacity: 0;
    -webkit-clip-path: polygon(100% 0, 100% -0%, 0 100%, 0 100%);
    clip-path: polygon(100% 0, 100% -0%, 0 100%, 0 100%); */
  }
}

.years span {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 80%);
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
  opacity: 0;
  -webkit-animation-name: titleAnimation;
  animation-name: titleAnimation;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
  /* 递归调用自身 */
  /* 每次调用时产生的样式代码 */
  /* 递归调用自身 */
  /* 每次调用时产生的样式代码 */
  /* 递归调用自身 */
  /* 每次调用时产生的样式代码 */
  /* 递归调用自身 */
  /* 每次调用时产生的样式代码 */
  /* 递归调用自身 */
  /* 每次调用时产生的样式代码 */
  /* 递归调用自身 */
  /* 每次调用时产生的样式代码 */
  /* 递归调用自身 */
  /* 每次调用时产生的样式代码 */
}

.years span:first-child {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.years span:last-child {
  /* color: $secondary-color; */
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.years span:nth-child(1) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.years span:nth-child(2) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.years span:nth-child(3) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

.years span:nth-child(4) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.years span:nth-child(5) {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}

.years span:nth-child(6) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.years span:nth-child(7) {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
}

/* 左侧滚动 */

@-webkit-keyframes scroll_effect {
  0% {
    width: 0;
  }

  50% {
    width: 100px;
  }

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

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes scroll_effect {
  0% {
    width: 0;
  }

  50% {
    width: 100px;
  }

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

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.scroll_guide {
  z-index: 11;
  font-size: 10px;
  color: #fff;
  position: fixed;
  left: 47px;
  bottom: 68px;
  letter-spacing: 0.1em;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}

.scroll_guide .txt {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  display: inline-block;
}

.scroll_guide::before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: -208px;
  height: 1px;
  width: 100px;
  background: #fff;
  -webkit-animation: scroll_effect 2s 2s cubic-bezier(0.3, 0.4, 0.1, 1) infinite;
  animation: scroll_effect 2s 2s cubic-bezier(0.3, 0.4, 0.1, 1) infinite;
}

.page-index .section-1 {
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.page-index .section-1 .left-banner {
  width: 329px;
  height: 835px;
  position: relative;
  overflow: hidden;
}

.page-index .section-1 .left-banner .nav-image-list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.page-index .section-1 .left-banner .nav-image-list .p-top-kv__nav-img {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  will-change: width;
}

.page-index .section-1 .left-banner .nav-image-list .p-top-kv__nav-img .p-top-kv__nav-img-obj {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-index .section-1 .left-banner .nav-image-list .p-top-kv__nav-img.on {
  width: 100%;
  z-index: 5;
  opacity: 1;
  -webkit-transition: width 0.7s linear 0s, -webkit-transform 0.7s linear 0s;
  transition: width 0.7s linear 0s, -webkit-transform 0.7s linear 0s;
  -o-transition: width 0.7s linear 0s, transform 0.7s linear 0s;
  transition: width 0.7s linear 0s, transform 0.7s linear 0s;
  transition: width 0.7s linear 0s, transform 0.7s linear 0s, -webkit-transform 0.7s linear 0s;
}

.page-index .section-1 .left-banner .nav-image-list .p-top-kv__nav-img.off {
  width: 0;
  z-index: 10;
  opacity: 1;
  -webkit-transition: width 0.7s linear 0s, -webkit-transform 0.7s linear 0s;
  transition: width 0.7s linear 0s, -webkit-transform 0.7s linear 0s;
  -o-transition: width 0.7s linear 0s, transform 0.7s linear 0s;
  transition: width 0.7s linear 0s, transform 0.7s linear 0s;
  transition: width 0.7s linear 0s, transform 0.7s linear 0s, -webkit-transform 0.7s linear 0s;
}

.page-index .section-1 .right-wrapper {
  padding-left: 5px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.page-index .section-1 .right-wrapper .right-banner {
  height: 835px;
  position: relative;
  overflow: hidden;
}

.page-index .section-1 .right-wrapper .right-banner .image-list {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.page-index .section-1 .right-wrapper .right-banner .image-list .p-top-kv__main-img {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  /* transform: scale(1) translateX(20%); */
  opacity: 0;
  will-change: transform, width;
}

.page-index .section-1 .right-wrapper .right-banner .image-list .p-top-kv__main-img .p-top-kv__main-img-obj {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: scale(1) translateX(0);
  -ms-transform: scale(1) translateX(0);
  transform: scale(1) translateX(0);
  will-change: transform;
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.page-index .section-1 .right-wrapper .right-banner .image-list .p-top-kv__main-img .p-top-kv__main-img-obj.img0 {
  background-image: url("../images/pc-01-r.jpg");
}

.page-index .section-1 .right-wrapper .right-banner .image-list .p-top-kv__main-img .p-top-kv__main-img-obj.img1 {
  background-image: url("../images/pc-02-r.jpg");
}

.page-index .section-1 .right-wrapper .right-banner .image-list .p-top-kv__main-img .p-top-kv__main-img-obj.img2 {
  background-image: url("../images/pc-03-r.jpg");
}

.page-index .section-1 .right-wrapper .right-banner .image-list .p-top-kv__main-img.on .p-top-kv__main-img-obj,
.page-index .section-1 .right-wrapper .right-banner .image-list .p-top-kv__main-img.scale .p-top-kv__main-img-obj {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: -webkit-transform 10s linear 0s;
  transition: -webkit-transform 10s linear 0s;
  -o-transition: transform 10s linear 0s;
  transition: transform 10s linear 0s;
  transition: transform 10s linear 0s, -webkit-transform 10s linear 0s;
}

.page-index .section-1 .right-wrapper .right-banner .image-list .p-top-kv__main-img.off .p-top-kv__main-img-obj {
  -webkit-transform: scale(1.13);
  -ms-transform: scale(1.13);
  transform: scale(1.13);
  -webkit-transition: -webkit-transform 1.3s linear 0s;
  transition: -webkit-transform 1.3s linear 0s;
  -o-transition: transform 1.3s linear 0s;
  transition: transform 1.3s linear 0s;
  transition: transform 1.3s linear 0s, -webkit-transform 1.3s linear 0s;
}

.page-index .section-1 .right-wrapper .right-banner .image-list .p-top-kv__main-img.on {
  width: 100%;
  z-index: 5;
  opacity: 1;
  -webkit-transition: width 1.3s linear 0s;
  -o-transition: width 1.3s linear 0s;
  transition: width 1.3s linear 0s;
}

.page-index .section-1 .right-wrapper .right-banner .image-list .p-top-kv__main-img.off {
  /* transform: translateX(-70px); */
  width: 0;
  z-index: 10;
  opacity: 1;
  -webkit-transition: width 1.3s linear 0s;
  -o-transition: width 1.3s linear 0s;
  transition: width 1.3s linear 0s;
}

.page-index .section-1 .right-wrapper .right-banner .image-list .p-top-kv__main-img.on-init {
  width: 100%;
  z-index: 5;
  opacity: 1;
}

.page-index .section-1 .right-wrapper .right-banner .image-list .aspectFit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-index .section-1 .right-wrapper .right-banner .text-wrapper {
  position: absolute;
  bottom: 58px;
  width: 100%;
  z-index: 11;
}

.page-index .section-1 .right-wrapper .right-banner .text-wrapper .progress-wrapper {
  overflow: hidden;
  position: relative;
  margin: 0 68px;
}

.page-index .section-1 .right-wrapper .right-banner .text-wrapper .progress-wrapper .progress-bar {
  width: 100%;
  height: 1px;
  background: rgba(246, 246, 246, 0.3);
}

.page-index .section-1 .right-wrapper .right-banner .text-wrapper .progress-wrapper .progress-bar .progress {
  /* transition-duration: 5s; */
  /* transition-timing-function: linear; */
  height: 1px;
  width: 100%;
  opacity: 1;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  will-change: transform;
  background-color: #f6f6f6;
}

.page-index .section-1 .right-wrapper .right-banner .text-wrapper .progress-wrapper .progress-bar .progress.off {
  opacity: 0;
  -webkit-transition: opacity 0.7s ease 0s;
  -o-transition: opacity 0.7s ease 0s;
  transition: opacity 0.7s ease 0s;
}

.page-index .section-1 .right-wrapper .right-banner .text-wrapper .progress-wrapper .progress-bar .progress.on {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.page-index .section-1 .right-wrapper .right-banner .text-wrapper .title-small {
  height: 15px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff;
  line-height: 15px;
}

.page-index .section-1 .right-wrapper .right-banner .text-wrapper .title-big {
  margin-top: 18px;
  margin-bottom: 37px;
  margin-left: -10px;
  font-size: 64px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #ffffff;
  line-height: 64px;
}

.page-index .section-1 .right-wrapper .right-banner .text-wrapper .title-big .concept {
  margin-right: 15px;
  letter-spacing: 12.6px;
  font-size: 42px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #ffffff;
  line-height: 64px;
}

.page-index .section-1 .right-wrapper .nav-wrapper {
  padding-left: 58px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-index .section-1 .right-wrapper .nav-wrapper .kv-nav-button {
  cursor: pointer;
  width: 44px;
  height: 44px;
}

.page-index .section-1 .right-wrapper .nav-wrapper .nav-show {
  margin: 0 89px;
  font-size: 12px;
  font-family: Bjorn;
  font-weight: 400;
  color: #838383;
  line-height: 69px;
}

.page-index .section-1 .right-wrapper .nav-wrapper .nav-show #js-kv-main-index {
  width: 16px;
  display: inline-block;
}

.page-index .section-1 .right-wrapper .nav-wrapper .nav-show .diagonal {
  margin: 0 17px;
  width: 14px;
  height: 14px;
}

.page-index .section-1 .right-wrapper .nav-wrapper .nav-show .diagonal .tran-icon {
  display: inline-block;
  -webkit-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  transform: rotate(20deg);
  text-align: center;
  color: #656565;
}

.page-index .section-2 {
  height: 953px;
  position: relative;
  background-image: url("../images/shouhui.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /*
  padding-top: 7px;
  .left-image {
    width: 1008px;
    height: 765px;
    background-image: url('../images/shouhui.png');
    .bgcontain();
  } */
}

.page-index .section-2 .years {
  position: absolute;
  right: 51px;
  bottom: 42px;
  width: 70px;
  height: 501px;
  /* transform: rotate(90deg); */
  /* transform-origin: 100% 0%; */
  background: url("../images/since-1989@2x.png") no-repeat center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-index .section-2 .texture-1 {
  width: 116.1px;
  height: 75px;
  position: absolute;
  top: 75px;
  right: 0;
  background: url("../images/texture-1.png") no-repeat center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-index .section-2 .right-wrapper {
  width: 500px;
  position: absolute;
  right: 316px;
  /* left: 61%; */
  top: 270px;
}

.page-index .section-2 .right-wrapper .title-sm {
  margin-bottom: 24px;
  height: 11px;
  font-size: 14px;
  font-family: Bjorn;
  font-weight: 400;
  color: rgba(24, 24, 24, 0.4);
  line-height: 11px;
}

.page-index .section-2 .right-wrapper .title-big {
  padding-bottom: 30px;
  margin-bottom: 36px;
  position: relative;
  font-size: 48px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #000000;
  line-height: 57px;
}

.page-index .section-2 .right-wrapper .title-big::after {
  position: absolute;
  bottom: 1px;
  left: 0px;
  content: '';
  width: 27px;
  height: 1px;
  background: rgba(100, 100, 100, 0.25);
}

.page-index .section-2 .right-wrapper .description {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #181818;
  line-height: 26px;
  margin-bottom: 42px;
  text-align: justify;
  -moz-text-align-last: left;
  text-align-last: left;
}

.page-index .section-2 .right-wrapper .description2 {
  font-size: 12px;
  font-family: Montserrat;
  font-weight: 300;
  color: rgba(24, 24, 24, 0.6);
  line-height: 22px;
  margin-bottom: 62px;
  text-align: justify;
  -moz-text-align-last: left;
  text-align-last: left;
}

.page-index .section-2 .right-wrapper .arrow-right {
  width: 119.8px;
  height: 46.5px;
  background-image: url("../images/arrow-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-index .section-23 {
  /* height: (763px+157px); */
  height: 870px;
  position: relative;
  background: #F1F2F3;
}

.page-index .section-23 .right-image {
  width: 951.8px;
  max-width: calc(100% - 976px);
  height: 736px;
  background: url("../images/section-23-bg.png") no-repeat top center;
  background-size: contain;
  background-position: top center;
  position: absolute;
  right: 0;
  top: 0;
  /* TODO */
}

.page-index .section-23 .years-2 {
  position: absolute;
  left: 51px;
  top: 268px;
  width: 70px;
  height: 319px;
  /* transform: rotate(90deg); */
  /* transform-origin: 100% 0%; */
  background: url("../images/noisia.png") no-repeat center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-index .section-23 .texture-1 {
  width: 116.1px;
  height: 75px;
  position: absolute;
  top: -37px;
  left: 0;
  background: url("../images/texture-2.png") no-repeat center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-index .section-23 .left-wrapper {
  width: 500px;
  position: absolute;
  left: 247px;
  top: 22px;
}

.page-index .section-23 .left-wrapper .title-sm {
  margin-bottom: 24px;
  height: 11px;
  font-size: 14px;
  font-family: Bjorn;
  font-weight: 400;
  color: rgba(24, 24, 24, 0.4);
  line-height: 11px;
}

.page-index .section-23 .left-wrapper .title-big {
  padding-bottom: 30px;
  margin-bottom: 36px;
  position: relative;
  font-size: 48px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #000000;
  line-height: 57px;
}

.page-index .section-23 .left-wrapper .title-big::after {
  position: absolute;
  bottom: 1px;
  left: 0px;
  content: '';
  width: 27px;
  height: 1px;
  background: rgba(100, 100, 100, 0.25);
}

.page-index .section-23 .left-wrapper .description {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #181818;
  line-height: 26px;
  margin-bottom: 42px;
  text-align: justify;
  -moz-text-align-last: left;
  text-align-last: left;
}

.page-index .section-23 .left-wrapper .description2 {
  font-size: 12px;
  font-family: Montserrat;
  font-weight: 300;
  color: rgba(24, 24, 24, 0.6);
  line-height: 22px;
  margin-bottom: 62px;
  text-align: justify;
  -moz-text-align-last: left;
  text-align-last: left;
}

.page-index .section-23 .left-wrapper .arrow-right {
  width: 119.8px;
  height: 46.5px;
  background-image: url("../images/arrow-right.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.page-index .section-3 {
  height: 960px;
  width: 100%;
  background: #e8ebec;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  /* swiper start */
  /* swiper end */
}

.page-index .section-3 .swiper-container {
  z-index: 99;
  width: 100%;
  height: 100%;
}

.page-index .section-3 .swiper-container .swiper-custom-prev,
.page-index .section-3 .swiper-container .swiper-custom-next {
  width: 54px;
  height: 54px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 15px;
  top: calc(50% - 54px / 2);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-image: url("../images/s3-arrow-right.png");
  z-index: 2;
}

.page-index .section-3 .swiper-container .swiper-custom-prev {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.page-index .section-3 .swiper-container .swiper-custom-next {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.page-index .section-3 .swiper-container .fadeOut {
  pointer-events: none;
}

.page-index .section-3 .series-wrapper {
  height: 100%;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-index .section-3 .series-wrapper.series-1-bg {
  background-image: url("../images/big1.png");
}

.page-index .section-3 .series-wrapper.series-2-bg {
  background-image: url("../images/big2.png");
}

.page-index .section-3 .series-wrapper.series-3-bg {
  background-image: url("../images/big3.png");
}

.page-index .section-3 .series-wrapper .series {
  width: 428px;
  margin: auto;
}

.page-index .section-3 .series-wrapper .series .image-wrapper {
  height: 627px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-index .section-3 .series-wrapper .series .image-wrapper .image-container {
  /* .block-alone-bg {
    background-color: #000;
    background-size: cover;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    object-fit: cover;
    transition: opacity .8s ease-out;
  } */
  margin: auto;
  width: 419px;
  height: 400px;
  position: relative;
}

.page-index .section-3 .series-wrapper .series .image-wrapper .image-container .block-alone-bg {
  background-position: bottom center;
}

.page-index .section-3 .series-wrapper .series .image-wrapper .image-container .block-alone {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
}

.page-index .section-3 .series-wrapper .series .image-wrapper .image-container:hover {
  /* 
    .block-alone-bg {
      opacity: 1;
      z-index: 98;
    } */
}

.page-index .section-3 .series-wrapper .series .image-wrapper .image-container:hover .block-alone {
  background: white;
}

.page-index .section-3 .series-wrapper .series .image-wrapper .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: 50px;
}

.page-index .section-3 .series-wrapper .series .text-wrapper {
  position: absolute;
  bottom: 90px;
  left: 40px;
  max-width: 355px;
  color: white;
}

.page-index .section-3 .series-wrapper .series .text-wrapper .series-text {
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 300;
  line-height: 14px;
}

.page-index .section-3 .series-wrapper .series .text-wrapper .series-title {
  margin-top: 20px;
  font-size: 48px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -3.12px;
}

.page-index .section-3 .series-wrapper .series .text-wrapper .series-title::first-letter {
  margin-left: -0.18em;
}

.page-index .section-3 .series-wrapper .series .text-wrapper .series-title .title-pre {
  letter-spacing: 0;
  text-transform: capitalize;
  margin-left: 23px;
  font-size: 32px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  line-height: 32px;
}

.page-index .section-3 .series-wrapper .series .text-wrapper .series-desc {
  margin-top: 28px;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 20px;
}

.page-index .section-3 .series-wrapper .series .text-wrapper .series-arrow {
  width: 100px;
  height: 30px;
  background-image: url("../images/形状5拷贝@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 47px;
}

.page-index .section-4 {
  overflow: hidden;
  height: 870px;
  background-image: url("../images/色彩平衡1@2x.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.page-index .section-4 .left-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.page-index .section-4 .left-wrapper .text-container {
  width: 419px;
  padding-top: 220px;
  margin-left: 271px;
}

.page-index .section-4 .left-wrapper .text-container .title-sm {
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 400;
  color: #d1d1d1;
}

.page-index .section-4 .left-wrapper .text-container .title-4 {
  letter-spacing: 12.6px;
  /* height: 30px; */
  font-size: 42px;
  font-family: Bjorn;
  font-weight: 400;
  color: #ffffff;
  line-height: 46px;
}

.page-index .section-4 .left-wrapper .text-container .title-42 {
  margin-top: 17px;
  letter-spacing: -4.16px;
  margin-left: -0.18em;
  /* width: 341px; */
  width: 361px;
  font-size: 64px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #ffffff;
  line-height: 80px;
}

.page-index .section-4 .left-wrapper .text-container .description-4 {
  margin-top: 65px;
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #ffffff;
  line-height: 30px;
}

.page-index .section-4 .left-wrapper .text-container .nav-wrapper {
  position: relative;
  cursor: pointer;
  margin-top: 105px;
  width: 419px;
  /* height: 1px; */
  padding-top: 10px;
  padding-bottom: 10px;
}

.page-index .section-4 .left-wrapper .text-container .nav-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  bottom: 10px;
  z-index: 1;
  background: rgba(246, 246, 246, 0.3);
}

.page-index .section-4 .left-wrapper .text-container .nav-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 1px;
  z-index: 2;
  background: #f6f6f6;
  width: 50%;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.page-index .section-4 .left-wrapper .text-container [current="1"].nav-wrapper::after {
  left: 0;
}

.page-index .section-4 .left-wrapper .text-container [current='2'].nav-wrapper::after,
.page-index .section-4 .left-wrapper .text-container .nav-wrapper.current-2::after {
  left: 50%;
}

.page-index .section-4 .right-wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-index .section-4 .right-wrapper .content-wrapper {
  overflow: hidden;
  /* transition: all .8s ease; */
  width: 894px;
  height: 451px;
  position: relative;
  /* img {
        width: 894px;
        height: 451px;
      } */
  /*  .original-image {
        display: none;
      }

      .icon-more {
        display: none;
      } */
  /* &.show {
        .original-image {
          .show();
        }

        .icon-more {
          .show();
        }
      } */
}

.page-index .section-4 .right-wrapper .content-wrapper .target {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.page-index .section-4 .right-wrapper .content-wrapper .target .icon-more.more-1 {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}

.page-index .section-4 .right-wrapper .content-wrapper .target .icon-more.more-2 {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
  -webkit-transition-delay: 1.4s;
  -o-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.page-index .section-4 .right-wrapper .content-wrapper .target.fadeIn {
  z-index: 2;
}

.page-index .section-4 .right-wrapper .content-wrapper .target.fadeIn .icon-more.more-1 {
  opacity: 1;
  pointer-events: auto;
}

.page-index .section-4 .right-wrapper .content-wrapper .target.fadeIn .icon-more.more-2 {
  opacity: 1;
  pointer-events: auto;
}

.page-index .section-4 .right-wrapper .content-wrapper img {
  max-width: none;
}

.page-index .section-4 .right-wrapper .content-wrapper .original-image {
  width: 100%;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.page-index .section-4 .right-wrapper .content-wrapper .icon-more {
  position: absolute;
}

.page-index .section-4 .right-wrapper .content-wrapper .icon-more,
.page-index .section-4 .right-wrapper .content-wrapper .icon-more img {
  width: 58px;
  height: 58px;
}

.page-index .section-4 .right-wrapper .content-wrapper .icon-more.more-1 {
  left: 180px;
  top: 190px;
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.page-index .section-4 .right-wrapper .content-wrapper .icon-more.more-2 {
  left: 539px;
  top: 158px;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.page-index .section-5 {
  min-height: 1063px;
  padding-bottom: 113px;
  background-color: #e8ebec;
  overflow: hidden;
}

.page-index .section-5 .main-wrapper {
  padding-top: 88px;
  width: 1420px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* swiper start */
}

.page-index .section-5 .main-wrapper .swiper-container {
  width: 1420px;
  height: 100%;
  overflow: visible;
}

.page-index .section-5 .main-wrapper .swiper-container .swiper-wrapper {
  overflow: visible;
}

.page-index .section-5 .main-wrapper .swiper-container .swiper-slide {
  background: #e8ebec;
  min-height: 744px;
  width: 1420px;
  height: 100%;
  /*background: white;*/
}

.page-index .section-5 .main-wrapper .swiper-container .swiper-body {
  width: 1380px;
  margin-left: auto;
  margin-right: auto;
}

.page-index .section-5 .main-wrapper .swiper-container .swiper-custom-prev,
.page-index .section-5 .main-wrapper .swiper-container .swiper-custom-next {
  outline: none;
  width: 54px;
  height: 54px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 20px;
  top: -120px;
  background-image: url("../images/s5-arrow-left.png");
  z-index: 2;
}

.page-index .section-5 .main-wrapper .swiper-container .swiper-custom-prev {
  right: 100px;
}

.page-index .section-5 .main-wrapper .swiper-container .swiper-custom-next {
  background-image: url("../images/s3-arrow-right.png");
}

.page-index .section-5 .main-wrapper .swiper-container .disable {
  pointer-events: none;
  opacity: 0.6;
}

.page-index .section-5 .main-wrapper .title-wrapper {
  margin-bottom: 68px;
  padding-left: 20px;
  padding-right: 20px;
  height: 54px;
  line-height: 54px;
}

.page-index .section-5 .main-wrapper .title-wrapper .t1 {
  line-height: 54px;
  font-size: 54px;
  font-family: HYQingYaTiJ;
  margin-left: -0.1em;
  color: #000000;
}

.page-index .section-5 .main-wrapper .title-wrapper .t2 {
  font-size: 54px;
  font-family: HYQingYaTiJ;
  font-weight: 400;
  color: #000000;
  opacity: 0.23;
}

.page-index .section-5 .main-wrapper .main-bg {
  width: 100%;
  height: 540px;
  position: relative;
  overflow: hidden;
}

.page-index .section-5 .main-wrapper .main-bg img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.8s ease-in-out;
  -o-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.page-index .section-5 .main-wrapper .main-bg img:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.page-index .section-5 .main-wrapper .main-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-index .section-5 .main-wrapper .desc-wrapper {
  /* .mt(53); */
  /*padding: 53px 88px 61px 79px;*/
  padding: 44px 0;
}

.page-index .section-5 .main-wrapper .desc-wrapper .title-top {
  font-size: 14px;
  line-height: 1;
  font-family: PingFang SC;
  font-weight: 400;
  color: #b5b5b5;
}

.page-index .section-5 .main-wrapper .desc-wrapper .line {
  background: #000000;
  opacity: 0.1;
}

.page-index .section-5 .main-wrapper .desc-wrapper .line-233 {
  height: 1px;
  background: #e9e9e9;
}

.page-index .section-5 .main-wrapper .desc-wrapper .l1 {
  /*.mt(16);*/
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /*.h(22);*/
  /*.pb(34);*/
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* .tag {
          .plr(11);
          .mr(7);
          height: 22px;
          border: 1px solid rgba(210, 210, 210, 1);

          color: rgba(210, 210, 210, 1);
          line-height: 22px;
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 500;
          color: rgba(130, 130, 130, 1)
        } */
}

.page-index .section-5 .main-wrapper .desc-wrapper .l1 .desc {
  font-size: 30px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #000000;
  line-height: 30px;
  margin-right: 15px;
}

.page-index .section-5 .main-wrapper .desc-wrapper .l1 .tag-wrapper {
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.page-index .section-5 .main-wrapper .desc-wrapper .l1 .image-tag {
  width: 55px;
  height: 31px;
  margin: 0 22px;
  position: relative;
}

.page-index .section-5 .main-wrapper .desc-wrapper .l1 .image-tag:not(:first-child)::before {
  position: absolute;
  left: -23px;
  top: 12px;
  content: '';
  width: 1px;
  height: 10px;
  background: #e9e9e9;
}

.page-index .section-5 .main-wrapper .desc-wrapper .l1 .image-tag img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.page-index .section-5 .main-wrapper .desc-wrapper .l2 {
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
  -ms-flex-align: space-between;
  align-items: space-between;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /*.h(15);*/
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 20px;
  margin-bottom: 40px;
}

.page-index .section-5 .main-wrapper .desc-wrapper .l2 .desc2 {
  max-width: 826px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 400;
  color: #737373;
  line-height: 26px;
}

.page-index .section-5 .main-wrapper .desc-wrapper .l2 .position-wrapper {
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.page-index .section-5 .main-wrapper .desc-wrapper .l2 .position-wrapper .position-icon {
  width: 10px;
  height: 12px;
}

.page-index .section-5 .main-wrapper .desc-wrapper .l2 .position-wrapper .position-txt {
  margin-left: 5px;
  height: 15px;
  font-size: 14px;
  font-family: PingFang SC;
  font-weight: 500;
  color: #000000;
  line-height: 15px;
}

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

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

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

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

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

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

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

  90% {
    -webkit-transform: translate3d(0, -2px, 0);
    transform: translate3d(0, -2px, 0);
  }
}
/* 手机特定 pading-left,padding-right */

.obj-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.obj-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.obj-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.obj-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/*----- 宽度 -----*/

/*----- 高度 -----*/

/*----- 行高 -----*/

/* effects */

/* ##### Import All CSS ##### */

@media (max-width: 767px) {
  .box-banner {
    width: 10rem;
    overflow: hidden;
    padding-bottom: 0.26666667rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .box-banner {
    width: 10rem;
    height: 5.90666667rem;
    background-size: cover;
  }

  .box-banner .pre {
    font-size: 8px;
    line-height: 15px;
    margin-bottom: 0.16666667rem;
    font-size: 0.21333333rem;
    line-height: 0.38666667rem;
  }

  .box-banner .title {
    padding-left: 1.06666667rem;
    padding-right: 1.06666667rem;
    /* font-size: 32px !important; */
    text-align: center;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: -0.18em;
    /* line-height: 35px !important; */
    /* margin-bottom: 17px !important; */
    font-size: 0.85333333rem;
    line-height: 0.94666667rem;
    margin-bottom: 0.3rem;
  }

  .box-banner a.button {
    width: 3.74666667rem;
    height: 0.70666667rem;
    color: #cfcfcf;
    min-width: auto;
    font-size: 0.21333333rem;
  }

  .box-banner a.button span {
    /* font-size: 8px; */
    font-size: 0.21333333rem;
  }
}

/* 
@media screen and (max-width: 575px) {
  .box-banner {
    width: 10rem;
    height: 220px;
    background-size: cover;

    .pre {
      font-size: 8px;
      line-height: 15px;
      margin-bottom: 8px;
    }

    h1 {
      font-size: 32px !important;
      text-align: center;
      line-height: 35px !important;
      margin-bottom: 17px !important;
    }

    a.button {
      width: 141px !important;
      min-width: 141px !important;
      height: 27px;

      span {
        font-size: 8px;
      }
    }
  }
} */

/* ##### Import All CSS ##### */

@media (max-width: 767px) {
  .page.page-brand {
    background: url("../images/bg.jpg") 0 0 repeat;
    background-size: 1920px;
    width: 100%;
    overflow: hidden;
  }

  .page.page-brand .section {
    position: relative;
  }

  .page.page-brand .line {
    margin-top: 1rem;
  }

  .page.page-brand .section-1,
  .page.page-brand .section-2 {
    /*background: #d5d4d1;*/
    /* background: #FEFEFE; */
  }

  .page.page-brand .section-6 {
    background: #FEFEFE;
  }

  .page.page-brand .section-5 {
    /*background: #8D968E;*/
  }

  .page.page-brand .ppp-content-wrapper {
    padding-top: 1.38666667rem;
    padding-left: 1.33333333rem;
    padding-right: 1.2rem;
    padding-bottom: 2.33333333rem;
  }

  .page.page-brand .ppp-content-wrapper .title-4240 {
    margin-bottom: 0.56rem;
  }

  .page.page-brand .ppp-content-wrapper .title-4240 .en {
    font-size: 42px;
    font-family: Gill Sans;
    font-weight: 600;
    color: #000000;
    line-height: 1em;
    /* margin-right: 10px; */
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.3em;
  }

  .page.page-brand .ppp-content-wrapper .title-4240 .cn {
    font-size: 40px;
    font-family: HYQingYaTiJ;
    font-weight: 400;
    color: #000000;
  }

  .page.page-brand .ppp-content-wrapper .ppp {
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #171717;
    line-height: 0.56rem;
  }

  .page.page-brand .ppp-content-wrapper .ppp p {
    font-size: 0.32rem;
  }

  .page.page-brand .ppp-content-wrapper .ppp.en {
    font-size: 12px;
    font-family: Montserrat;
    font-weight: 300;
    color: #5d5d5d;
    line-height: 1.83333333;
  }

  .page.page-brand .box-hero .main-container {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    /* width: 1585.5px; */
    height: 9.2rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
  }

  .page.page-brand .box-hero .main-container .text-wrapper {
    position: absolute;
    bottom: 0.78666667rem;
    width: 100%;
    z-index: 11;
  }

  .page.page-brand .box-hero .main-container .text-wrapper .progress-wrapper {
    /*overflow: hidden;*/
    position: relative;
    width: 7.33333333rem;
    margin: 0 auto;
  }

  .page.page-brand .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar {
    width: 100%;
    height: 1px;
    background: rgba(246, 246, 246, 0.3);
  }

  .page.page-brand .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar::after {
    display: none;
    position: absolute;
    right: -100%;
    width: 100%;
    content: '';
    background: rgba(246, 246, 246, 0.3);
    height: 1px;
    bottom: 0;
  }

  .page.page-brand .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .decorator {
    width: 100%;
    height: 1px;
    background: #f6f6f6;
  }

  .page.page-brand .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .progress {
    /* transition-duration: 5s; */
    /* transition-timing-function: linear; */
    height: 1px;
    width: 100%;
    opacity: 1;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    will-change: transform;
    background-color: #f6f6f6;
  }

  .page.page-brand .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .progress.off {
    opacity: 0;
    -webkit-transition: opacity 0.7s ease 0s;
    -o-transition: opacity 0.7s ease 0s;
    transition: opacity 0.7s ease 0s;
  }

  .page.page-brand .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .progress.on {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }

  .page.page-brand .box-hero .main-container .text-wrapper .title-small {
    font-size: 0.26666667rem;
    height: auto;
    font-family: PingFang SC;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
  }

  .page.page-brand .box-hero .main-container .text-wrapper .title-big {
    font-size: 0.8rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: -0.155em;
    line-height: 0.88rem;
    margin-bottom: 0.42666667rem;
    margin-top: 0.18666667rem;
    margin-left: -0.13333333rem;
    height: auto;
    font-family: HYQingYaTiJ;
    font-weight: 400;
    color: #ffffff;
  }

  .page.page-brand .box-hero .main-container .text-wrapper .title-big .concept {
    display: none;
    margin-right: 0.2rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.3em;
    font-size: 42px;
    font-family: Gill Sans;
    font-weight: 600;
    color: #ffffff;
    line-height: 40px;
  }

  .page.page-brand .section.section-1 .images-container .icon.abo {
    margin-top: 263px;
    margin-left: 61px;
    width: 71px;
    height: 533px;
    margin-right: 202px;
  }

  .page.page-brand .section.section-1 .images-container .main-container {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    /* width: 1585.5px; */
    height: 9.2rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
  }

  .page.page-brand .section.section-1 .images-container .main-container .text-wrapper {
    position: absolute;
    bottom: 0.78666667rem;
    width: 100%;
    z-index: 11;
  }

  .page.page-brand .section.section-1 .images-container .main-container .text-wrapper .progress-wrapper {
    overflow: hidden;
    position: relative;
    margin: 0 68px;
  }

  .page.page-brand .section.section-1 .images-container .main-container .text-wrapper .progress-wrapper .progress-bar {
    width: 100%;
    height: 1px;
    background: rgba(246, 246, 246, 0.3);
  }

  .page.page-brand .section.section-1 .images-container .main-container .text-wrapper .progress-wrapper .progress-bar .progress {
    /* transition-duration: 5s; */
    /* transition-timing-function: linear; */
    height: 1px;
    width: 100%;
    opacity: 1;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    will-change: transform;
    background-color: #f6f6f6;
  }

  .page.page-brand .section.section-1 .images-container .main-container .text-wrapper .progress-wrapper .progress-bar .progress.off {
    opacity: 0;
    -webkit-transition: opacity 0.7s ease 0s;
    -o-transition: opacity 0.7s ease 0s;
    transition: opacity 0.7s ease 0s;
  }

  .page.page-brand .section.section-1 .images-container .main-container .text-wrapper .progress-wrapper .progress-bar .progress.on {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }

  .page.page-brand .section.section-1 .images-container .main-container .text-wrapper .title-small {
    height: 15px;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #ffffff;
    line-height: 15px;
  }

  .page.page-brand .section.section-1 .images-container .main-container .text-wrapper .title-big {
    margin-top: 0.25333333rem;
    margin-bottom: 0.49333333rem;
    height: 40px;
    font-size: 40px;
    font-family: HYQingYaTiJ;
    font-weight: 400;
    color: #ffffff;
    line-height: 40px;
  }

  .page.page-brand .section.section-1 .images-container .main-container .text-wrapper .title-big .concept {
    margin-right: 0.2rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.3em;
    font-size: 42px;
    font-family: Gill Sans;
    font-weight: 600;
    color: #ffffff;
    line-height: 40px;
  }

  .page.page-brand .section.section-2 .ppp-content-wrapper {
    padding-top: 1.45333333rem;
    padding-bottom: 1.45333333rem;
    padding-bottom: 1.2rem;
    padding-left: 1.33333333rem;
    padding-right: 1.33333333rem;
  }

  .page.page-brand .section.section-2 .ppp-content-wrapper .title.xs {
    font-size: 0.37333333rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.02em;
    line-height: 0.4rem;
    font-weight: 600;
    color: #171717;
    margin-bottom: 0.77333333rem;
    color: #000000;
  }

  .page.page-brand .section.section-2 .ppp-content-wrapper .ppp {
    font-size: 0.32rem;
    font-weight: 400;
    color: #3e3e3e;
    line-height: 0.56rem;
  }

  .page.page-brand .section.section-2 .ppp-content-wrapper .ppp p {
    font-size: 0.32rem;
  }

  .page.page-brand .section.section-2 .ppp-content-wrapper .ppp.en {
    font-size: 12px;
    font-family: Montserrat;
    font-weight: 300;
    color: #5d5d5d;
    line-height: 1.83333333;
    margin-bottom: 1.14666667rem;
  }

  .page.page-brand .section.section-2 .line-100 {
    background: #dedede;
    margin-top: 0.86666667rem;
  }

  .page.page-brand .section.section-2 .images-container {
    width: 10rem;
    height: 7.73333333rem;
    margin: 0 auto;
    position: relative;
  }

  .page.page-brand .section.section-2 .images-container .image-container.c1 {
    position: absolute;
    left: 0;
    width: 8.66666667rem;
    height: 7.73333333rem;
  }

  .page.page-brand .section.section-2 .images-container .image-container.c2 {
    display: none;
    position: absolute;
    right: -200px;
    top: 0;
    width: 416px;
    height: 622px;
  }

  .page.page-brand .ppp p {
    color: #181818;
    padding-bottom: 0.7em;
    line-height: 0.56rem;
    font-size: 0.32rem;
  }

  .page.page-brand .section.section-4 {
    margin-bottom: 0rem;
  }

  .page.page-brand .section.section-4 .ppp-content-wrapper {
    margin-top: 0rem;
    padding-top: 1.90666667rem;
    padding-bottom: 1.2rem;
    padding-left: 1.33333333rem;
    padding-right: 1.65333333rem;
  }

  .page.page-brand .section.section-4 .ppp-content-wrapper br::after {
    content: '';
    line-height: 1.5em;
  }

  .page.page-brand .section.section-4 .pre {
    font-size: 0.21333333rem;
    font-family: Montserrat;
    font-weight: 400;
    color: #cbcbcb;
    margin-bottom: 0.16rem;
  }

  .page.page-brand .section.section-4 .title {
    font-family: HYQingYaTiJ;
    font-size: 0.96rem;
    font-weight: 400;
    margin-left: -0.13333333rem;
  }

  .page.page-brand .section.section-4 .box-img img {
    width: 100%;
    height: 10.66666667rem;
    -o-object-fit: cover;
    object-fit: cover;
    /* 看看是否需要换图 */
  }

  .page.page-brand .section.section-5 {
    padding-top: 1.93333333rem;
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper {
    width: 7.33333333rem;
    padding: 0 0;
    margin: 0 auto;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .title-4240 {
    margin-bottom: 1.02666667rem;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .title-4240 .pre {
    font-size: 0.21333333rem;
    font-family: Montserrat;
    font-weight: 400;
    color: #cbcbcb;
    margin-bottom: 0.2rem;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .title-4240 .title {
    font-size: 0.96rem;
    line-height: 1.06666667rem;
    font-family: HYQingYaTiJ;
    font-weight: 400;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .title-4240 .title span {
    margin-left: -0.13333333rem;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .line-dashed {
    background-image: url("../images/line-dashed.png");
    height: 0.04rem;
    width: 100%;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .line-dashed-o {
    opacity: 0.4;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .left {
    width: 7.33333333rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 0.16rem;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .left .box-icon {
    width: 1.48rem;
    height: 1.48rem;
    margin-right: 0.53333333rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .left .box-txt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .left .box-txt h2 {
    font-weight: 600;
    color: #171717;
    line-height: 1;
    margin-bottom: 0.18666667rem;
    font-size: 0.42666667rem;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .left .box-txt p {
    font-weight: 500;
    color: #8C8C8C;
    line-height: 1;
    font-size: 0.21333333rem;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .box-line-one,
  .page.page-brand .section.section-5 .ppp-content-wrapper .box-line-two {
    padding-top: 0.50666667rem;
    padding-bottom: 0.46666667rem;
    display: block;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .box-line-one .right,
  .page.page-brand .section.section-5 .ppp-content-wrapper .box-line-two .right {
    width: 7.33333333rem;
    padding-top: 0.41333333rem;
    display: block;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .box-line-one .right .box-icon,
  .page.page-brand .section.section-5 .ppp-content-wrapper .box-line-two .right .box-icon {
    margin-left: 100px;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .line-dashed-vertical {
    display: none;
    width: 2px;
    height: 54px;
    background: url("../images/line-dashed-vertical.png") 0 0 repeat-y;
    background-size: 100%;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .box-line-one p,
  .page.page-brand .section.section-5 .ppp-content-wrapper .box-line-two p {
    font-weight: 400;
    color: #171717;
    font-size: 0.32rem;
    line-height: 0.53333333rem;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .box-line-one .line-dashed-vertical,
  .page.page-brand .section.section-5 .ppp-content-wrapper .box-line-two .line-dashed-vertical {
    display: none;
  }

  .page.page-brand .section.section-5 .ppp-content-wrapper .box-line-one .right p,
  .page.page-brand .section.section-5 .ppp-content-wrapper .box-line-two .right p {
    margin-left: 0;
  }

  .page.page-brand .section.section-5 .box-img {
    height: 20rem;
  }

  .page.page-brand .section.section-5 .box-img .container {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }

  .page.page-brand .section.section-5 .box-img .container .img-title {
    display: none;
  }

  .page.page-brand .section.section-5 .box-img .container .imgs {
    width: 100%;
    position: absolute;
  }

  .page.page-brand .section.section-5 .box-img .container .imgs img {
    position: absolute;
    margin-right: 0;
    margin-bottom: 0;
  }

  .page.page-brand .section.section-5 .box-img .container .imgs img:first-child {
    left: 0;
    top: 1.2rem;
    width: 8.66666667rem;
    height: 5.64rem;
  }

  .page.page-brand .section.section-5 .box-img .container .imgs img:nth-child(2) {
    right: 0;
    top: 7rem;
    width: 4.92rem;
    height: 5.64rem;
  }

  .page.page-brand .section.section-5 .box-img .container .imgs img:nth-child(3) {
    left: 0;
    top: 7rem;
    width: 4.92rem;
    height: 5.64rem;
  }

  .page.page-brand .section.section-5 .box-img .container .imgs img:nth-child(4) {
    right: 0;
    top: 12.8rem;
    width: 8.66666667rem;
    height: 5.64rem;
  }

  .page.page-brand .section.section-6 {
    margin-bottom: 1.6rem;
    padding-top: 0.4rem;
    width: 100%;
  }

  .page.page-brand .section.section-6 .ppp-content-wrapper {
    padding: 0 0;
    margin: 0 auto;
    padding-bottom: 1.04rem;
    width: 7.46666667rem;
  }

  .page.page-brand .section.section-6 .ppp-content-wrapper .title-4240 {
    margin-bottom: 0.6rem;
  }

  .page.page-brand .section.section-6 .ppp-content-wrapper .title-4240 .pre {
    font-size: 0.21333333rem;
    font-family: Montserrat;
    font-weight: 400;
    color: #cbcbcb;
    line-height: 1;
    margin-bottom: 0.37333333rem;
  }

  .page.page-brand .section.section-6 .ppp-content-wrapper .title-4240 .title {
    font-size: 0.96rem;
    font-family: HYQingYaTiJ;
    font-weight: 400;
    color: #000000;
    line-height: 1;
    margin-left: -0.13333333rem;
  }

  .page.page-brand .section.section-6 .ppp-content-wrapper .title-4240 .line {
    background: #f9f9f9;
  }

  .page.page-brand .section.section-6 .box-img {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page.page-brand .section.section-6 .box-img img {
    position: relative;
    left: 1.33333333rem;
    width: 8.66666667rem;
  }

  .page.page-brand .section.section-6 .box-img .image-1 {
    height: 5.33333333rem;
  }

  .page.page-brand .section.section-6 .box-img .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0.16rem;
    margin-bottom: 0.16rem;
    height: 5.78666667rem;
    grid-gap: 0.16rem;
    grid-template-columns: 3.58666667rem 4.92rem;
  }

  .page.page-brand .section.section-6 .box-img .grid-2 .grid-2-1 {
    width: 3.58666667rem;
    height: 5.78666667rem;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .page.page-brand .section.section-6 .box-img .grid-2 .grid-2-2 {
    width: 4.92rem;
    height: 5.78666667rem;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .page.page-brand .section.section-7 .ppp-content-wrapper {
    padding: 0 0;
    padding-bottom: 1.73333333rem;
    margin: 0 auto;
    width: 7.46666667rem;
  }

  .page.page-brand .section.section-7 .ppp-content-wrapper .title-4240 {
    margin-bottom: 0.66666667rem;
  }

  .page.page-brand .section.section-7 .ppp-content-wrapper .title-4240 .pre {
    font-size: 0.21333333rem;
    font-family: Montserrat;
    font-weight: 400;
    color: #cbcbcb;
    line-height: 1;
    margin-bottom: 0.37333333rem;
  }

  .page.page-brand .section.section-7 .ppp-content-wrapper .title-4240 .title {
    font-size: 0.96rem;
    font-family: HYQingYaTiJ;
    font-weight: 400;
    color: #000000;
    line-height: 1;
    margin-left: -0.13333333rem;
  }

  .page.page-brand .section.section-7 .ppp-content-wrapper .ppp {
    font-size: 0.32rem;
    line-height: 0.56rem;
    margin-bottom: 0.92rem;
  }

  .page.page-brand .section.section-7 .ppp-content-wrapper .ppp p {
    padding-bottom: 0.5em;
  }

  .page.page-brand .section.section-7 .ppp-content-wrapper .box-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0.45333333rem;
  }

  .page.page-brand .section.section-7 .ppp-content-wrapper .box-icons .item {
    margin-right: 0;
    width: 3.42666667rem;
    height: 2.96rem;
    border: 2px solid #e1e1e1;
    padding-top: 0.33333333rem;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page.page-brand .section.section-7 .ppp-content-wrapper .box-icons .item img {
    width: 1.2rem;
    height: 1.2rem;
    margin-bottom: 0.37333333rem;
  }

  .page.page-brand .section.section-7 .ppp-content-wrapper .box-icons .item .title {
    font-size: 0.29333333rem;
    font-weight: 500;
    color: #171717;
    line-height: 1;
    margin-bottom: 0rem;
  }

  .page.page-brand .section.section-7 .ppp-content-wrapper .box-icons .item .sub {
    font-size: 0.29333333rem;
    color: #D3D3D3;
    font-family: Montserrat;
    font-weight: bold;
    /* color: rgba(205, 205, 205, 1); */
  }

  .page.page-brand .section.section-7 .box-img {
    width: 100%;
    height: 10.66666667rem;
  }

  .page.page-brand .section.section-7 .box-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

/* ##### Import All CSS ##### */

@media (max-width: 767px) {
  .page.page-product-list .series-list {
    width: 100%;
    /* .flex(); */
    display: block;
  }

  .page.page-product-list .series-list .series-item {
    /* flex: 1; */
    height: 871px;
    width: 100%;
    height: 6rem;
    position: relative;
    /* transition: all .8s ease; */
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-position: bottom center;
  }

  .page.page-product-list .series-list .series-item .title-wrapper {
    position: absolute;
    left: 0.62666667rem;
    bottom: 0.90666667rem;
    z-index: 2;
    /* margin-left: unit(59*100/480, %); */
    /* margin-left: 59px; */
  }

  .page.page-product-list .series-list .series-item .title-wrapper .title-en {
    /* font-size: 16px; */
    /* font-family: Gill Sans;
            font-weight: 600;
            color: rgba(255, 255, 255, 1); */
    /* line-height: (16+6*2)/16; */
    height: 0.18666667rem;
    line-height: 0.18666667rem;
    font-size: 0.26666667rem;
  }

  .page.page-product-list .series-list .series-item .title-wrapper .title-cn {
    margin-top: 0.11333333rem;
    /* font-size: 40px;
            font-family: HYQingYaTiJ;
            font-weight: 400;
            color: rgba(255, 255, 255, 1);
            line-height: 60/40;
            .letterspacingcn(40, -180); */
    /* .lh(49); */
    font-size: 0.72rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: -0.065em;
  }

  .page.page-product-list .series-list .series-item.s1 {
    background-image: url("../images/A.jpg");
  }

  .page.page-product-list .series-list .series-item.s2 {
    background-image: url("../images/B.jpg");
  }

  .page.page-product-list .series-list .series-item.s3 {
    background-image: url("../images/C.jpg");
  }

  .page.page-product-list .series-list .series-item.s4 {
    background-image: url("../images/D.jpg");
  }

  .page.page-product-list .series-list .series-item::before {
    content: '';
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
    pointer-events: none;
    z-index: 1;
    position: absolute;
    left: 0;
    height: 200px;
    bottom: 0;
    right: 0;
  }

  .page.page-product-list .series-list .series-item::after {
    content: "";
    background: #000000;
    opacity: 0;
    -webkit-transition: opacity 0.8s ease;
    -o-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
    pointer-events: none;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
  }

  .page.page-product-list .series-list:hover .series-item::after {
    opacity: 0.6;
  }

  .page.page-product-list .series-list:hover .series-item:hover::after {
    opacity: 0;
  }

  .page.page-product-list .series-list .series-item {
    cursor: pointer;
  }

  .page.page-product-list .series-list .series-item:hover {
    -webkit-box-flex: 4;
    -webkit-flex: 4;
    -ms-flex: 4;
    flex: 4;
    /*  &.s1 {
          background-image: url('../images/s1.png');
        }

        &.s2 {
          background-image: url('../images/s2.png');
        }

        &.s3 {
          background-image: url('../images/s3.png');
        }

        &.s4 {
          background-image: url('../images/s4.png');
        } */
  }

  .page.page-product-list .series-list .series-item:hover::after {
    content: "";
    opacity: 0;
    /* display: none; */
  }

  .page.page-product-list .series-list .series-item:hover .title-wrapper .title-cn::after {
    content: '>';
    font-stretch: ultra-expanded;
    /* font-stretch: ultra-condensed; */
    /* font-size: 3px/20px; */
  }
}

/* ##### Import All CSS ##### */

@media (max-width: 767px) {
  .page.page-product-detail .banner-width-title {
    width: 100%;
    height: 9.2rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../images/banner6.png");
    position: relative;
  }

  .page.page-product-detail .banner-width-title::after {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0rem;
    height: 4rem;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.3)), color-stop(rgba(0, 0, 0, 0.3)), color-stop(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

  .page.page-product-detail .banner-width-title .fixed1 {
    position: absolute;
    width: 100%;
    bottom: 0.8rem;
    z-index: 2;
  }

  .page.page-product-detail .banner-width-title .title-wrapper .title-1 {
    /* font-size: 14px; */
    font-family: PingFang SC;
    font-weight: 400;
    color: #ffffff;
    line-height: 1em;
    font-size: 0.26666667rem;
  }

  .page.page-product-detail .banner-width-title .title-wrapper .title-2.title-4240.white {
    margin-top: 0.14666667rem;
    margin-left: 0rem;
  }

  .page.page-product-detail .banner-width-title .title-wrapper .line.line-245 {
    margin-top: 0.4rem;
  }

  .page.page-product-detail .bg-dot-white {
    background: url("../images/bg.jpg");
    padding-top: 1.26666667rem;
  }

  .page.page-product-detail .bg-dot-white .content-width .title-44 {
    display: none;
  }

  .page.page-product-detail .bg-dot-white .content-width .ppp.pfirst {
    /* .mt(0); */
  }

  .page.page-product-detail .bg-dot-white img.section-image {
    width: 8.66666667rem;
    height: 5.64rem;
    -o-object-fit: cover;
    object-fit: cover;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.86666667rem;
    margin-bottom: 0.86666667rem;
    margin-bottom: 0.6rem;
  }

  .page.page-product-detail .elaborate-section {
    width: 100%;
    padding-bottom: 2.52rem;
    padding-top: 2.37333333rem;
    /* min-height: 965px; */
    background: #ffffff;
  }

  .page.page-product-detail .elaborate-section .title-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .page.page-product-detail .elaborate-section .title-wrapper .title-44 {
    margin-right: 20px;
  }

  .page.page-product-detail .elaborate-section .title-wrapper .pagination {
    font-size: 0.21333333rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #8f8f8f;
  }

  .page.page-product-detail .elaborate-section .title-wrapper .pagination .no {
    color: #000000;
  }

  .page.page-product-detail .elaborate-section .ppp {
    margin-top: 0.864rem;
  }

  .page.page-product-detail .elaborate-section .elaborate-swiper-container.swiper-container {
    margin-top: 2.14666667rem;
    text-align: center;
  }

  .page.page-product-detail .elaborate-section .elaborate-swiper-container.swiper-container .swiper-button-next:after,
  .page.page-product-detail .elaborate-section .elaborate-swiper-container.swiper-container .swiper-button-prev:after {
    color: #a5a9aa;
  }

  .page.page-product-detail .elaborate-section .elaborate-swiper-container.swiper-container .slide-image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -o-object-fit: contain;
    object-fit: contain;
    margin-left: auto;
    margin-right: auto;
    /* height: 400px; */
    height: 4.21333333rem;
    width: 7.44rem;
  }

  .page.page-product-detail .elaborate-section .swiper-button-prev:after,
  .page.page-product-detail .elaborate-section .swiper-button-next:after {
    font-size: 0.42666667rem;
  }

  .page.page-product-detail .elaborate-section .swiper-button-next,
  .page.page-product-detail .elaborate-section .swiper-container-rtl .swiper-button-prev {
    right: 0;
  }

  .page.page-product-detail .elaborate-section .swiper-button-prev,
  .page.page-product-detail .elaborate-section .swiper-container-rtl .swiper-button-next {
    left: 0;
  }
}

.swiper-button-next,
.swiper-button-prev {
  outline: none;
}

/* ##### Import All CSS ##### */

/* 3d */

/* .case-item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 3px 5px rgba(0, 0, 0, 0.05);
  position: relative;

  transform-style: preserve-3d;
  perspective: 1000px;
  z-index: 5;
  overflow: hidden;

  .left,
  .ze-img-w {
    position: relative;
    overflow: hidden;
     box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: absolute;
    bottom: -60px;
    right: -55px;
    width: 100%;
    height: 300px;
    border-radius: 9px;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;overflow: hidden;

    transform-style: preserve-3d;
    transform: translateZ(15px);
    transition: all 0.5s;

  }

  .left::after {
    content: '';
    position: absolute;
    background: #FFF;
    width: 250%;
    height: 100%;
    top: -200%;
    left: -70%;
    transform: rotateZ(-45deg);
    opacity: 0.2;
    transition: all .5s;
  }

  &:hover {
    .ze-img-w {
      transform: translateZ(20px);
    }

    .left::after {
      top: 200%;
    }
  }
} */

@media (max-width: 767px) {
  .page.page-case-type {
    background: #ebf1f2;
    width: 100%;
    overflow: hidden;
  }

  .page.page-case-type .banner-container {
    /* background-image: url('../images/banner8.png'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    position: relative;
    height: 6rem;
    /* canvas {
        z-index: 0;
        width: 100%;
        height: 100%;
        margin: 0;
      }

      #wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
      }

      .title-wrapper {
        z-index: 2;
        .pt(123);
        .pl(63);
        width: 1380px;
        .ma();

        .title-sm.en {
          font-size: 16px;
          font-family: Gill Sans;
          font-weight: 600;
          color: rgba(255, 255, 255, 1);
          line-height: 1em;
        }

        .title.cn {
          font-size: 60px;
          font-family: HYQingYaTiJ;
          font-weight: 400;
          color: rgba(255, 255, 255, 1);
          line-height: 72/60;
          .letterspacingcn(-180, 60);
          .mt(21-6);
        }
      } */
  }

  .page.page-case-type .box-hero .main-container {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    /* width: 1585.5px; */
    height: 6rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
  }

  .page.page-case-type .box-hero .main-container::after {
    content: '';
    position: absolute;
    width: 100%;
    bottom: 0rem;
    height: 4rem;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.3)), color-stop(rgba(0, 0, 0, 0.3)), color-stop(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

  .page.page-case-type .box-hero .main-container .text-wrapper {
    position: absolute;
    bottom: 0.78666667rem;
    height: auto;
    width: 100%;
    z-index: 11;
  }

  .page.page-case-type .box-hero .main-container .text-wrapper .progress-wrapper {
    /*overflow: hidden;*/
    position: relative;
    width: 8.66666667rem;
    margin: 0 auto;
  }

  .page.page-case-type .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar {
    width: 100%;
    height: 1px;
    background: rgba(246, 246, 246, 0.3);
  }

  .page.page-case-type .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar::after {
    display: none;
    position: absolute;
    right: -100%;
    width: 100%;
    content: '';
    background: rgba(246, 246, 246, 0.3);
    height: 1px;
    bottom: 0;
  }

  .page.page-case-type .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .decorator {
    width: 100%;
    height: 1px;
    background: #f6f6f6;
  }

  .page.page-case-type .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .progress {
    /* transition-duration: 5s; */
    /* transition-timing-function: linear; */
    height: 1px;
    width: 100%;
    opacity: 1;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    will-change: transform;
    background-color: #f6f6f6;
  }

  .page.page-case-type .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .progress.off {
    opacity: 0;
    -webkit-transition: opacity 0.7s ease 0s;
    -o-transition: opacity 0.7s ease 0s;
    transition: opacity 0.7s ease 0s;
  }

  .page.page-case-type .box-hero .main-container .text-wrapper .progress-wrapper .progress-bar .progress.on {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }

  .page.page-case-type .box-hero .main-container .text-wrapper .title-small {
    height: auto;
    font-size: 0.26666667rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
  }

  .page.page-case-type .box-hero .main-container .text-wrapper .title-big {
    margin-top: 0.21333333rem;
    margin-bottom: 0.44rem;
    margin-left: -0.13333333rem;
    font-size: 0.72rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: -0.065em;
    line-height: 3.1356rem;
    height: 0.72rem;
    font-family: HYQingYaTiJ;
    font-weight: 400;
    color: #ffffff;
    line-height: 1;
  }

  .page.page-case-type .box-hero .main-container .text-wrapper .title-big .concept {
    display: none;
  }

  .page.page-case-type .case-list {
    z-index: 2;
    width: 9.06666667rem;
    margin-left: 0.46666667rem;
    margin-right: 0.46666667rem;
    padding-bottom: 1.2rem;
    padding-top: 1.2rem;
    margin-left: auto;
    margin-right: auto;
  }

  .page.page-case-type .case-list .case-item {
    margin-bottom: 0.90666667rem;
  }

  .page.page-case-type .case-list .case-item .box-img {
    height: 4.53333333rem;
    overflow: hidden;
  }

  .page.page-case-type .case-list .case-item .box-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .page.page-case-type .case-list .case-item .box-content {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    padding-left: 0.81333333rem;
    padding-right: 0.81333333rem;
    background-color: white;
  }

  .page.page-case-type .case-list .case-item .box-content .pre {
    font-size: 0.18666667rem;
    color: #B5B5B5;
    margin-bottom: 0.12rem;
  }

  .page.page-case-type .case-list .case-item .box-content .box-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .page.page-case-type .case-list .case-item .box-content .box-title h2 {
    color: black;
    font-size: 0.45333333rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.02em;
    line-height: 0.4rem;
    line-height: 1.2;
    margin-bottom: 0.4rem;
    font-weight: 400;
  }

  .page.page-case-type .case-list .case-item .box-content .box-title h2 a {
    color: black;
  }

  .page.page-case-type .case-list .case-item .box-content .box-title .box-icons {
    /* display: flex; */
    display: none;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .page.page-case-type .case-list .case-item .box-content .box-title .box-icons img {
    width: 70px;
    height: 40px;
    margin-left: 30px;
  }

  .page.page-case-type .case-list .case-item .box-content .line {
    margin-bottom: 0.34666667rem;
    background: #e9e9e9;
  }

  .page.page-case-type .case-list .case-item .box-content .content {
    color: #3E3E3E;
    font-family: PingFangSC;
    font-weight: normal;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.26666667rem;
    line-height: 0.4rem;
    margin-bottom: 0.25333333rem;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper {
    margin-bottom: 0.93333333rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: white;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper:nth-child(2n) .grid-item {
    z-index: 3;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper:nth-child(2n) .grid-item:last-child {
    grid-row-start: 1;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item {
    background: white;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item.left {
    height: 100%;
    position: relative;
    overflow: hidden;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item.left img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item.left img:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item.left img.grid-image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right {
    padding: 85px 100px;
    z-index: 111;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .work {
    margin-bottom: 0.16rem;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #b5b5b5;
    line-height: 1.85714286;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .title-30 {
    font-size: 30px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
    line-height: 1em;
    margin-bottom: 0.37333333rem;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .icon-group-wrapper {
    margin-top: 0.76rem;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .icon-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .icon-group .icon {
    width: 0.73333333rem;
    height: 0.41333333rem;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .icon-group .icon-g {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .icon-group .icon-g::after {
    content: '';
    width: 1px;
    height: 10px;
    background: #e9e9e9;
    margin: 0 23px;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .icon-group .icon-g:last-child::after {
    display: none;
  }

  .page.page-case-type .case-list .case-item.grid-wrapper .grid-item.right .icon-more {
    margin-left: 0.22666667rem;
    width: 0.32rem;
    height: 0.32rem;
  }
}

/* ##### Import All CSS ##### */

@media (max-width: 767px) {
  .page.page-case-detail {
    /* banner */
  }

  .page.page-case-detail .template-line {
    background: #DCDCDC;
    opacity: 1;
  }

  .page.page-case-detail .icon-group {
    padding-left: 0.33333333rem;
    padding-right: 0.33333333rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-columns: 169fr 264fr 169fr;
    /* grid-column-gap: 117px; */
    position: relative;
    margin-bottom: 0.26666667rem;
  }

  .page.page-case-detail .icon-group::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #E9E9E9;
  }

  .page.page-case-detail .icon-group .icon-wrapper {
    text-align: center;
    border-right: none;
    border-bottom: 1px solid #E9E9E9;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page.page-case-detail .icon-group .icon-wrapper:nth-child(3n+1) {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .page.page-case-detail .icon-group .icon-wrapper:nth-child(3n+1) .txt {
    width: 1.33333333rem;
  }

  .page.page-case-detail .icon-group .icon-wrapper:nth-child(3n+3) {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .page.page-case-detail .icon-group .icon-wrapper:nth-child(3n+3) .txt {
    width: 1.33333333rem;
  }

  .page.page-case-detail .icon-group .icon-wrapper:not(:nth-child(3n)) {
    /* border-right: 1px solid #E9E9E9; */
  }

  .page.page-case-detail .icon-group .icon-wrapper:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    right: 0;
    top: 9.2%;
    height: 70%;
    width: 1px;
    background: #E9E9E9;
  }

  .page.page-case-detail .icon-group .icon-wrapper:last-child {
    border-right: 0;
  }

  .page.page-case-detail .icon-group .icon-wrapper:nth-last-child(1),
  .page.page-case-detail .icon-group .icon-wrapper:nth-last-child(2) {
    border-bottom: none;
    padding-bottom: 0.21333333rem;
    padding-top: 0.32rem;
  }

  .page.page-case-detail .icon-group .icon-wrapper:nth-last-child(1)::after,
  .page.page-case-detail .icon-group .icon-wrapper:nth-last-child(2)::after {
    top: 0.42666667rem;
    height: 1.54666667rem;
  }

  .page.page-case-detail .icon-group .icon-wrapper .icon {
    width: 1.33333333rem;
    height: 1.33333333rem;
  }

  .page.page-case-detail .icon-group .icon-wrapper .txt {
    text-align: center;
    font-family: PingFang SC;
    font-weight: 400;
    color: #595959;
    font-size: 0.24rem;
    line-height: 0.34666667rem;
    padding-bottom: 0.45333333rem;
  }

  .page.page-case-detail .template-title-info .left .fs14 {
    font-size: 0.26666667rem;
    line-height: 0.53333333rem;
    color: #7f7f7f;
  }

  .page.page-case-detail .template-title-info.no-bb {
    border-bottom: none;
  }

  .page.page-case-detail .banner-image {
    width: 100vw;
    height: 5.38666667rem;
    min-height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .page.page-case-detail .store-name .name-en {
    height: 0.50666667rem;
    font-family: GillSans;
    font-weight: bold;
    color: #ffffff;
    font-size: 0.56rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.3em;
  }

  .page.page-case-detail .store-name .name-cn {
    height: 0.48rem;
    font-family: HYQingYaTiJ;
    font-weight: 500;
    color: #ffffff;
    font-size: 0.53333333rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: -0.065em;
  }

  .page.page-case-detail .detail-body-box {
    background: url("http://nature-website.oss-cn-chengdu.aliyuncs.com/img/case-detail/bg.jpg") center top repeat-y transparent;
    background-size: 1920px;
    width: 100%;
    overflow: hidden;
  }

  .page.page-case-detail .detail-body {
    margin-left: auto;
    margin-right: auto;
    /* .h5w(); */
    width: 8.66666667rem;
    position: relative;
  }

  .page.page-case-detail .goback {
    position: absolute;
    left: -0.57333333rem;
    top: 1.12rem;
    width: 0.24rem;
    height: 0.24rem;
  }

  .page.page-case-detail .goback img {
    width: 0.24rem;
    height: 0.24rem;
  }
}

@-webkit-keyframes scale-up {
  from {
    -webkit-transform: scaleY(1) scaleX(1);
    transform: scaleY(1) scaleX(1);
    opacity: 0.5;
  }

  to {
    -webkit-transform: scaleX(1.3) scaleY(2);
    transform: scaleX(1.3) scaleY(2);
    opacity: 0;
  }
}

@keyframes scale-up {
  from {
    -webkit-transform: scaleY(1) scaleX(1);
    transform: scaleY(1) scaleX(1);
    opacity: 0.5;
  }

  to {
    -webkit-transform: scaleX(1.3) scaleY(2);
    transform: scaleX(1.3) scaleY(2);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .close_dialog_layer {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 10001;
    display: none;
  }

  .button {
    /*  *,
    &::before,
    &::after {
      transition: none !important;
    } */
    /* 
    position: fixed;
    bottom: 0; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* padding: 16px 36px; */
    color: #ffffff;
    background-color: #000000;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .button.black-e {
    color: #ffffff;
    background-color: #000000;
  }

  .button.black-e:hover {
    color: #000000;
    /* background-color: #000000; */
  }

  .button.gray-e {
    background: #667078;
    color: #ffffff;
    width: 294px;
  }

  .button.gray-e:hover {
    /* background: #667078; */
    color: #000000;
  }

  .button__text {
    position: relative;
    margin-right: 12px;
    -webkit-transition: ease-in-out 0.18s;
    -o-transition: ease-in-out 0.18s;
    transition: ease-in-out 0.18s;
    z-index: 2;
  }

  .button__icon {
    position: relative;
    -webkit-transition: ease-in-out 0.18s;
    -o-transition: ease-in-out 0.18s;
    transition: ease-in-out 0.18s;
    z-index: 2;
  }

  .button:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0;
    /* border-radius: 40px; */
    z-index: -1;
  }

  .button:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 1;
    -webkit-transition: ease-in-out 0.18s;
    -o-transition: ease-in-out 0.18s;
    transition: ease-in-out 0.18s;
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    /* border-radius: 40px; */
  }

  .button:hover {
    color: #000000;
  }

  .button:hover:after {
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    color: #ffffff;
  }

  .button:hover .button__icon {
    -webkit-transform: translate3d(400%, 0px, 0px);
    transform: translate3d(400%, 0px, 0px);
    opacity: 0;
  }

  .button:hover .button__text {
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
  }

  .button:active:hover {
    opacity: 0.8;
    -webkit-transition: opacity ease-in-out 0.3s;
    -o-transition: opacity ease-in-out 0.3s;
    transition: opacity ease-in-out 0.3s;
  }

  .button.active:before {
    -webkit-animation: scale-up 0.3s ease;
    animation: scale-up 0.3s ease;
  }

  .page.page-cooperation {
    /*background: #E9E8EB;*/
    background: #e9e9e9;
    /* TODO replace 3px */
  }

  .page.page-cooperation .banner-bg.banner-bg-496 {
    height: 6rem;
    width: 100%;
    min-height: auto;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .page.page-cooperation .banner-bg.banner-bg-496 .grid-wrapper {
    position: absolute;
    width: 100%;
    bottom: 0.78666667rem;
  }

  .page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 {
    grid-gap: 0 0.66666667rem;
  }

  .page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item {
    cursor: pointer;
    opacity: 0.5;
  }

  .page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding-bottom: 0.46666667rem;
    color: white;
    /* color: rgba(0, 0, 0, .5); */
    border-bottom: 2px solid #ffffff;
  }

  .page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper .en {
    font-size: 0.24rem;
    font-family: Bjorn;
    font-weight: 400;
    line-height: 1em;
  }

  .page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper .cn {
    font-size: 0.42666667rem;
    margin-top: 0.17333333rem;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 1em;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0em;
  }

  .page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper .cn::first-letter {
    margin-left: -0.18em;
  }

  .page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item.active,
  .page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item:hover {
    opacity: 1;
  }

  .page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item.active .title-wrapper,
  .page.page-cooperation .banner-bg.banner-bg-496 .content-width.grid-2 .item:hover .title-wrapper {
    /* color: rgba(125, 125, 125, 1); */
    /* border-bottom: 2px solid rgba(199, 199, 199, 1); */
  }

  .page.page-cooperation .page-body {
    position: relative;
    padding-top: 1.26666667rem;
    padding-bottom: 2.26666667rem;
  }

  .page.page-cooperation .page-body.page-body-2 {
    padding-bottom: 14rem;
  }

  .page.page-cooperation .page-body .first-header-wrapper {
    padding-bottom: 0.72rem;
    /* .flex-start(); */
    /* justify-content: space-between; */
    border-bottom: 0.06666667rem solid #dadeda;
  }

  .page.page-cooperation .page-body .first-header-wrapper a,
  .page.page-cooperation .page-body .first-header-wrapper a:hover,
  .page.page-cooperation .page-body .first-header-wrapper a:focus,
  .page.page-cooperation .page-body .first-header-wrapper a:active {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    text-decoration: none;
    -webkit-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
  }

  .page.page-cooperation .page-body .first-header-wrapper .button.apply {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 113;
    width: 100%;
    background: #707C81;
  }

  .page.page-cooperation .page-body .first-header-wrapper .button.apply img.icon {
    display: none;
    width: 14px;
    height: 14px;
  }

  .page.page-cooperation .page-body .first-header-wrapper.no-bb {
    border-bottom: none;
  }

  .page.page-cooperation .page-body .title-56 {
    font-size: 0.8rem;
    font-weight: 400;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: -0.065em;
    line-height: 0.96rem;
    margin-bottom: 0.32rem;
  }

  .page.page-cooperation .page-body .title-38 {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    font-size: 0.56rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
    line-height: 1.2;
  }

  .page.page-cooperation .page-body .title-14 {
    font-size: 0.29333333rem;
    line-height: 0.53333333rem;
  }

  .page.page-cooperation .page-body .content-width.list-wrapper .list-item {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 0.56rem;
    padding-bottom: 0.56rem;
    border-bottom: 0.06666667rem solid #dadeda;
  }

  .page.page-cooperation .page-body .content-width.list-wrapper .list-item:hover .title-38 {
    font-weight: 400;
  }

  .page.page-cooperation .page-body .content-width.list-wrapper .list-item .title-wrapper .title-14 {
    margin-top: 0.10666667rem;
  }

  .page.page-cooperation .page-body .content-width.list-wrapper .list-item .time {
    font-size: 0.26666667rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #777777;
  }

  .page.page-cooperation .page-body .content-width {
    overflow: hidden;
  }

  .page.page-cooperation .page-body .content-width .left {
    position: absolute;
    z-index: 2;
    width: 8.66666667rem;
  }

  .page.page-cooperation .page-body .content-width .left .for-h5-line-1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page.page-cooperation .page-body .content-width .left .l1 {
    /* width: 100%; */
    width: 8.66666667rem;
    background: #bdbdbd;
    margin-bottom: 0.86666667rem;
    margin-top: 0;
  }

  .page.page-cooperation .page-body .content-width .left .l2 {
    width: 0.34666667rem;
    margin-top: 0.53333333rem;
    margin-bottom: 0.13333333rem;
    margin-left: 0.53333333rem;
    margin-right: 0.53333333rem;
    background: #bdbdbd;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .page.page-cooperation .page-body .content-width .left .l3 {
    width: 26px;
    margin-bottom: 45px;
    margin-top: 40px;
    display: none;
  }

  .page.page-cooperation .page-body .content-width .left .txt-group.txt-group-area {
    margin-top: 0.57333333rem;
  }

  .page.page-cooperation .page-body .content-width .left .txt-group .tsm {
    font-size: 0.26666667rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #757575;
    line-height: 0.4024rem;
  }

  .page.page-cooperation .page-body .content-width .left .txt-group .tn {
    font-size: 0.88rem;
    font-family: PingFang SC;
    font-weight: 600;
    color: #6695a8;
    line-height: 1.16666667;
  }

  .page.page-cooperation .page-body .content-width .left .txt-group .tn .tr {
    font-size: 30px;
    font-family: PingFang SC;
    font-weight: 600;
    color: #6695a8;
    line-height: 1.2;
  }

  .page.page-cooperation .page-body .content-width .map {
    margin-top: 0;
    width: 10rem;
    height: 11rem;
    position: absolute;
    left: 0;
    top: 8.24rem;
    z-index: 0;
  }

  .page.page-cooperation .page-body .content-width .map img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .page.page-cooperation.page-cooperation1 .page-body .first-header-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .page.page-cooperation.page-cooperation1 .page-body .first-header-wrapper .button.apply {
    background: black;
  }

  .page.page-cooperation.page-cooperation1 .page-body .first-header-wrapper .button.apply::before {
    display: none;
  }

  .page.page-cooperation.page-cooperation2 .page-body .first-header-wrapper .title-wrapper .title-56 {
    /* .mb() */
  }

  .page.page-cooperation.page-cooperation2 .page-body .first-header-wrapper .button.apply {
    margin-top: 35px;
  }

  .dialog.dialog-job-info .dialog-body {
    position: relative;
    width: 8.66666667rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
    background: #f6f6f3;
    padding-top: 1.01333333rem;
    padding-bottom: 4.96rem;
    padding-left: 0.81333333rem;
    padding-right: 0.81333333rem;
  }

  .dialog.dialog-job-info .dialog-body .top-box {
    min-height: auto;
    border-bottom: 1px solid #e0e0e0;
  }

  .dialog.dialog-job-info .dialog-body .top-box .lr-c {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: space-between;
    -webkit-align-items: space-between;
    -ms-flex-align: space-between;
    align-items: space-between;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .dialog.dialog-job-info .dialog-body .top-box .lr-c .info .title {
    font-size: 0.53333333rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
  }

  .dialog.dialog-job-info .dialog-body .top-box .lr-c .info .info-line {
    margin-top: 0.37333333rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 0.61333333rem;
  }

  .dialog.dialog-job-info .dialog-body .top-box .lr-c .info .info-line .info-item {
    word-break: break-all;
    margin-right: 0.26666667rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 0.26666667rem;
    line-height: 0.41333333rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
  }

  .dialog.dialog-job-info .dialog-body .top-box .lr-c .info .info-line .info-item:not(:first-child) {
    margin-top: 0.08rem;
  }

  .dialog.dialog-job-info .dialog-body .top-box .lr-c .info .info-line .info-item img.icon {
    /* .mt(-3); */
    height: 0.42666667rem;
    width: 0.42666667rem;
  }

  .dialog.dialog-job-info .dialog-body .top-box .lr-c .qr {
    width: 4rem;
    position: absolute;
    text-align: center;
    bottom: 0.93333333rem;
    left: 50%;
    margin-left: -2rem;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .dialog.dialog-job-info .dialog-body .top-box .lr-c .qr img.qrcode {
    width: 2.26666667rem;
    height: 2.26666667rem;
    margin: auto;
  }

  .dialog.dialog-job-info .dialog-body .top-box .lr-c .qr .qrtxt {
    text-align: center;
    margin-top: 0.16666667rem;
    font-size: 0.21333333rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
    line-height: 0.33333333rem;
  }

  .dialog.dialog-job-info .dialog-body .bottom-box {
    padding-top: 0.66666667rem;
  }

  .dialog.dialog-job-info .dialog-body .bottom-box .info-txt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
  }

  .dialog.dialog-job-info .dialog-body .bottom-box .info-txt p {
    font-size: 0.26666667rem;
    line-height: 0.4rem;
  }

  .dialog.dialog-job-info .dialog-body .bottom-box .info-txt p.mb-5 {
    margin-bottom: 0.16rem;
  }

  .dialog.dialog-job-info .dialog-body .icon {
    vertical-align: bottom;
    width: 0.42666667rem;
    height: 0.42666667rem;
  }

  .dialog.dialog-manager-info .dialog-body {
    width: 6.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* height: 550px; */
    background: #f6f6f3;
    padding-top: 0.66666667rem;
    padding-bottom: 0.66666667rem;
    padding-bottom: 0.83333333rem;
    padding-left: 0.90666667rem;
    padding-right: 0.90666667rem;
  }

  .dialog.dialog-manager-info .dialog-body .top-box .lr-c .info .title {
    font-size: 0.32rem;
    font-family: Bjorn;
    font-weight: 400;
    color: #000000;
    line-height: 1.625;
  }

  .dialog.dialog-manager-info .dialog-body .top-box .lr-c .info .info-line .info-item {
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #171717;
    line-height: 1.625;
  }

  .dialog.dialog-manager-info .dialog-body .top-box .lr-c .qr {
    width: 1.78666667rem;
    height: 1.78666667rem;
  }

  .dialog.dialog-manager-info .dialog-body .bottom-box {
    margin-top: 2.83333333rem;
  }

  .dialog.dialog-manager-info .dialog-body .bottom-box .info-group {
    padding-top: 0rem;
  }

  .dialog.dialog-manager-info .dialog-body .bottom-box .info-group:not(:last-child) {
    padding-bottom: 0.66666667rem;
  }

  .dialog.dialog-manager-info .dialog-body .bottom-box .info-group .title {
    font-size: 0.32rem;
    font-family: Bjorn;
    font-weight: 400;
    color: #000000;
    line-height: 1.625;
  }

  .dialog.dialog-manager-info .dialog-body .bottom-box .info-group .value {
    margin-top: 0.01333333rem;
    font-size: 0.32rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #171717;
    line-height: 1.625;
  }
}

@media (max-width: 767px) {
  .page.page-services {
    background: #E9E8EB;
    /* TODO replace 3px */
  }

  .page.page-services .banner-bg.banner-bg-496 {
    height: 6rem;
    width: 100%;
    min-height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
  }

  .page.page-services .banner-bg.banner-bg-496 .grid-wrapper {
    position: absolute;
    width: 100%;
    bottom: 0.74666667rem;
  }

  .page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 {
    grid-gap: 50px;
    border-bottom: 0.02666667rem solid #f6f6f6;
  }

  .page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item {
    cursor: pointer;
    opacity: 0.5;
  }

  .page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper {
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding-bottom: 0.46666667rem;
    color: #ffffff;
    /* color: rgba(0, 0, 0, .5); */
    /* border-bottom: 2px solid rgba(0, 0, 0, .3); */
    border-bottom: none;
  }

  .page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper .en {
    font-size: 0.24rem;
    font-family: Bjorn;
    font-weight: 400;
    line-height: 1em;
  }

  .page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper .cn {
    margin-top: 0.21333333rem;
    font-size: 0.42666667rem;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 1em;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0em;
  }

  .page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item .title-wrapper .cn::first-letter {
    margin-left: -0.18em;
  }

  .page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item.active,
  .page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item:hover {
    opacity: 1;
  }

  .page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item.active .title-wrapper,
  .page.page-services .banner-bg.banner-bg-496 .content-width.grid-2 .item:hover .title-wrapper {
    /* color: rgba(125, 125, 125, 1); */
    /* border-bottom: 2px solid rgba(199, 199, 199, 1); */
  }

  .page.page-services .page-body {
    padding-top: 1.13333333rem;
    padding-bottom: 1.32rem;
  }

  .page.page-services .page-body .content-width {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .page.page-services .page-body .content-width .list-wrapper {
    width: 1050px;
  }

  .page.page-services .page-body .content-width .list-wrapper .list-item {
    cursor: default;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 0.01333333rem solid #c4c4c4;
    padding-top: 0.73333333rem;
    padding-bottom: 0.73333333rem;
    padding-left: 0rem;
    padding-right: 0rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .page.page-services .page-body .content-width .list-wrapper .list-item:first-child {
    padding-top: 0;
  }

  .page.page-services .page-body .content-width .list-wrapper .list-item .title-38 {
    font-size: 0.42666667rem;
    line-height: 0.66666667rem;
    font-weight: 600;
  }

  .page.page-services .page-body .content-width .list-wrapper .list-item:hover .title-38 {
    /* font-family: PingFangSC; */
    /* font-weight: 600; */
  }

  .page.page-services .page-body .content-width .list-wrapper .list-item .title-wrapper .title-22 {
    font-size: 22px;
    font-family: PingFang SC;
    font-weight: 600;
    color: #000000;
    line-height: 1.18181818;
  }

  .page.page-services .page-body .content-width .list-wrapper .list-item .title-wrapper .title-16 {
    width: 99%;
    font-size: 0.32rem;
    padding-right: 0.00133333rem;
    line-height: 0.56rem;
    margin-top: 0.22666667rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #646464;
  }

  .page.page-services .page-body .content-width .r-menu-wrapper .r-menu-item {
    margin-bottom: 34px;
    font-size: 24px;
    font-family: PingFang SC;
    font-weight: 400;
    color: rgba(99, 99, 99, 0.4);
    line-height: 1.08333333;
  }

  .page.page-services .page-body .content-width .r-menu-wrapper .r-menu-item.active {
    font-weight: 500;
    color: #202020;
  }
}

/* ##### Import All CSS ##### */

@media (max-width: 767px) {
  .page.page-news {
    padding-bottom: 0.26666667rem;
  }

  .page.page-news .banner-container {
    width: 100%;
    height: 5.09333333rem;
    min-height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-image: url("../images/banner7.png");
  }

  .page.page-news .banner-container .title-wrapper {
    text-align: center;
  }

  .page.page-news .banner-container .title-wrapper .title.cn {
    font-family: HYQingYaTiJ;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    font-size: 0.72rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: -0.18em;
  }

  .page.page-news .banner-container .title-wrapper .title-sm.en {
    margin-top: 0.18933333rem;
    font-size: 0.18666667rem;
    font-family: Bjorn;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
  }

  .page.page-news .grid-body {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 0.8rem 0;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    padding-left: 0.66666667rem;
    padding-right: 0.66666667rem;
  }

  .page.page-news .grid-body .grid-item .image-container {
    width: 8.66666667rem;
    height: 5.33333333rem;
  }

  .page.page-news .grid-body .grid-item .image-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .page.page-news .grid-body .grid-item .time {
    margin-top: 0.36rem;
    font-size: 0.24rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #646464;
    line-height: 1em;
  }

  .page.page-news .grid-body .grid-item .title-24 {
    font-size: 0.42666667rem;
    margin-top: 0.11733333rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #000000;
    line-height: 1.2;
  }

  .page.page-news .grid-body .grid-item .title-24 a {
    color: black;
  }

  .page.page-news .grid-body .grid-item .title-12 {
    margin-top: 0.18933333rem;
    font-size: 0.21333333rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #646464;
    line-height: 1.2;
  }

  .page.page-news .more-wrapper {
    cursor: pointer;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 35px;
    line-height: 1em;
    margin: 18px;
    text-align: center;
  }
}

/* ##### Import All CSS ##### */

@media (max-width: 767px) {
  /*webkit内核*/

  .store-area-name-list-body::-webkit-scrollbar {
    width: 0px;
    height: 0px;
  }

  .store-area-name-list-body::-webkit-scrollbar-button {
    background-color: rgba(0, 0, 0, 0);
  }

  .store-area-name-list-body::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
  }

  .store-area-name-list-body::-webkit-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0);
  }

  .store-area-name-list-body::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0);
  }

  .store-area-name-list-body::-webkit-scrollbar-corner {
    background-color: rgba(0, 0, 0, 0);
  }

  .store-area-name-list-body::-webkit-scrollbar-resizer {
    background-color: rgba(0, 0, 0, 0);
  }

  .store-area-name-list-body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }

  /*o内核*/

  .store-area-name-list-body .-o-scrollbar {
    -moz-appearance: none !important;
    background: rgba(0, 255, 0, 0) !important;
  }

  .store-area-name-list-body::-o-scrollbar-button {
    background-color: rgba(0, 0, 0, 0);
  }

  .store-area-name-list-body::-o-scrollbar-track {
    background-color: rgba(0, 0, 0, 0);
  }

  .store-area-name-list-body::-o-scrollbar-track-piece {
    background-color: rgba(0, 0, 0, 0);
  }

  .store-area-name-list-body::-o-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0);
  }

  .store-area-name-list-body::-o-scrollbar-corner {
    background-color: rgba(0, 0, 0, 0);
  }

  .store-area-name-list-body::-o-scrollbar-resizer {
    background-color: rgba(0, 0, 0, 0);
  }

  /*IE10,IE11,IE12*/

  .store-area-name-list-body {
    -ms-scroll-chaining: chained;
    -ms-content-zooming: zoom;
    -ms-scroll-rails: none;
    -ms-content-zoom-limit-min: 100%;
    -ms-content-zoom-limit-max: 500%;
    -ms-scroll-snap-type: proximity;
    -ms-scroll-snap-points-x: snapList(100%, 200%, 300%, 400%, 500%);
    -ms-overflow-style: none;
    overflow: auto;
  }

  .page-store-list {
    /* banner */
  }

  .page-store-list .header-area-wrapper .header-area {
    position: absolute;
    top: 0;
  }

  .page-store-list .banner-image {
    width: 100%;
    width: 10rem;
    height: 5.09333333rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .page-store-list .banner-image .banner-title {
    text-align: center;
    font-family: HYQingYaTiJ;
    color: #ffffff;
  }

  .page-store-list .banner-image .banner-title .t1 {
    font-size: 0.72rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: -0.065em;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    margin-right: 0.065em;
  }

  .page-store-list .banner-image .banner-title .t2 {
    margin-top: 0.36rem;
    font-size: 0.29333333rem;
    font-weight: 300;
    font-family: PingFang;
    /* .letterspacing(22, 280);
        .letterspacingmr(22, 280); */
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.22em;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    margin-right: -0.22em;
  }

  .page-store-list .lr-container {
    position: relative;
    overflow: hidden;
    margin-top: 0rem;
    margin-left: auto;
    margin-right: auto;
    width: 10rem;
  }

  .page-store-list .lr-container .store-list {
    padding-top: 0.84rem;
    padding-bottom: 0.4rem;
    padding-left: 0.66666667rem;
    padding-right: 0.66666667rem;
  }

  .page-store-list .lr-container .store-list .store-item {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0.88rem;
  }

  .page-store-list .lr-container .store-list .store-item .image-container {
    cursor: pointer;
    width: 8.66666667rem;
    height: 4.53333333rem;
    position: relative;
    overflow: hidden;
  }

  .page-store-list .lr-container .store-list .store-item .image-container img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
  }

  .page-store-list .lr-container .store-list .store-item .image-container img:hover {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  .page-store-list .lr-container .store-list .store-item .image-container img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .page-store-list .lr-container .store-list .store-item .info-wrapper {
    margin-top: 0.39466667rem;
    margin-bottom: 0.12rem;
  }

  .page-store-list .lr-container .store-list .store-item .info-wrapper .title {
    cursor: pointer;
    /* font-size: 24px; */
    font-family: PingFang SC;
    font-weight: 500;
    color: #000000;
    /* line-height: 30px; */
    font-size: 0.45333333rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.02em;
    line-height: 0.544rem;
  }

  .page-store-list .lr-container .store-list .store-item .info-wrapper .position-info {
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0.168rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #8c8c8c;
    font-size: 0.26666667rem;
    line-height: 0.32rem;
  }

  .page-store-list .lr-container .store-list .store-item .info-wrapper .position-info img.icon.icon-position {
    width: 0.2rem;
    height: 0.22666667rem;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .page-store-list .lr-container .store-area-name-list {
    position: relative;
    /* .pr(49/2); */
    top: 0rem;
    left: 0rem;
    width: 10rem;
    height: 1.2rem;
    background: white;
    overflow: hidden;
    border-bottom: 1px solid #ffffff;
  }

  .page-store-list .lr-container .store-area-name-list .store-area-name-list-body {
    height: 1.2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-x: scroll;
  }

  .page-store-list .lr-container .store-area-name-list .store-area-name-list-body::after {
    content: '';
    display: block;
    padding-left: 0.01333333rem;
    padding-right: 0.01333333rem;
    padding-top: 0.13333333rem;
    padding-bottom: 0.13333333rem;
  }

  .page-store-list .lr-container .store-area-name-list.sfixed {
    position: fixed;
    z-index: 1111;
    top: 0;
  }

  .page-store-list .lr-container .store-area-name-list .name {
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    margin-left: 0.32666667rem;
    margin-right: 0.32666667rem;
  }

  .page-store-list .lr-container .store-area-name-list .name,
  .page-store-list .lr-container .store-area-name-list .name a,
  .page-store-list .lr-container .store-area-name-list .name:hover a {
    width: auto;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: PingFangSC;
    color: #a4a4a4;
    font-weight: 400;
    font-size: 0.34666667rem;
    line-height: 0.92rem;
  }

  .page-store-list .lr-container .store-area-name-list .name:hover::after {
    display: none;
  }

  .page-store-list .lr-container .store-area-name-list .name.active a,
  .page-store-list .lr-container .store-area-name-list .name.active {
    font-weight: 500;
    color: black;
  }

  .page-store-list .lr-container .store-area-name-list .name.active::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #000000;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
  }

  .page-store-list .dialog.dialog-store-info .dialog-body {
    width: 900px;
    height: 220px;
    background: #f6f6f3;
    padding: 50px 60px;
  }

  .page-store-list .dialog.dialog-store-info .dialog-body .top-box {
    min-height: 182px;
    border-bottom: 1px solid #e0e0e0;
  }

  .page-store-list .dialog.dialog-store-info .dialog-body .top-box .lr-c {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: space-between;
    -webkit-align-items: space-between;
    -ms-flex-align: space-between;
    align-items: space-between;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .page-store-list .dialog.dialog-store-info .dialog-body .top-box .lr-c .info .title {
    font-size: 30px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #000000;
    line-height: 1em;
  }

  .page-store-list .dialog.dialog-store-info .dialog-body .top-box .lr-c .info .info-line {
    margin-top: 0.24rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page-store-list .dialog.dialog-store-info .dialog-body .top-box .lr-c .info .info-line .info-item {
    margin-right: 0.26666667rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
    line-height: 28px;
  }

  .page-store-list .dialog.dialog-store-info .dialog-body .top-box .lr-c .info .info-line .info-item img.icon {
    width: 24px;
    height: 24px;
  }

  .page-store-list .dialog.dialog-store-info .dialog-body .top-box .lr-c .qr img.qrcode {
    width: 1.21333333rem;
    height: 1.21333333rem;
  }

  .page-store-list .dialog.dialog-store-info .dialog-body .top-box .lr-c .qr .qrtxt {
    text-align: right;
    margin-top: 0.01333333rem;
    font-size: 14px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
    line-height: 28px;
  }

  .page-store-list .dialog.dialog-store-info .dialog-body .bottom-box {
    padding-top: 0.37333333rem;
  }

  .page-store-list .dialog.dialog-store-info .dialog-body .bottom-box .info-txt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
    line-height: 1.86666667px;
  }

  .page-store-list .dialog.dialog-store-info .dialog-body .icon {
    width: 24px;
    height: 24px;
  }
}

/* ##### Import All CSS ##### */

@media (max-width: 767px) {
  .page-store-detail {
    /* banner */
  }

  .page-store-detail .banner-image {
    width: 100%;
    width: 10rem;
    height: 3.84rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .page-store-detail .store-name {
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page-store-detail .store-name .name-en {
    font-family: GillSans;
    font-weight: bold;
    color: #ffffff;
    font-size: 0.61333333rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.3em;
  }

  .page-store-detail .store-name .name-cn {
    font-size: 0.53333333rem;
  }

  .page-store-detail .detail-body-box {
    background: #f5f5f5;
  }

  .page-store-detail .detail-body {
    margin-left: auto;
    margin-right: auto;
    width: 8.66666667rem;
    position: relative;
  }

  .page-store-detail .goback {
    display: none;
  }

  .page-store-detail .template-gap-10 {
    padding-top: 0.13333333rem;
  }

  .page-store-detail .template-gap-20 {
    padding-top: 0.26666667rem;
  }

  .page-store-detail .template-gap-30 {
    padding-top: 0.4rem;
  }

  .page-store-detail .template-gap-40 {
    padding-top: 0.48rem;
  }

  .page-store-detail .template-gap-45 {
    padding-top: 0.6rem;
  }

  .page-store-detail .template-gap-50 {
    padding-top: 0.66666667rem;
  }

  .page-store-detail .template-gap-60 {
    padding-top: 0.8rem;
  }

  .page-store-detail .template-gap-80 {
    padding-top: 1.06666667rem;
  }

  .page-store-detail .template-gap-100 {
    padding-top: 1.73333333rem;
  }

  .page-store-detail .template-gap-130 {
    padding-top: 2.02666667rem;
  }

  .page-store-detail .template-image-1316-690 {
    width: 8.66666667rem;
    height: 4.53333333rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .page-store-detail .template-image-1316-690 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .page-store-detail .template-h5-gap-118 {
    padding-top: 1.57333333rem;
  }

  .page-store-detail .template-h5-gap-152 {
    padding-top: 2.02666667rem;
  }

  .page-store-detail .template-title {
    font-family: PingFang;
    font-weight: bold;
    color: #000000;
    font-size: 0.45333333rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.02em;
  }

  .page-store-detail .template-desc {
    font-family: PingFang;
    font-weight: 500;
    color: #3e3e3e;
    font-size: 0.32rem;
    line-height: 0.61333333rem;
  }

  .page-store-detail .template-coloumn-3-image-box {
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: space-between;
    -webkit-align-items: space-between;
    -ms-flex-align: space-between;
    align-items: space-between;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .page-store-detail .template-coloumn-3-image-box img {
    width: 2.70666667rem;
    height: 3.90666667rem;
  }

  .page-store-detail .template-line {
    border-bottom: 1px solid #c3c3c3;
  }

  .page-store-detail .template-title-info {
    border-bottom: 1px solid #c3c3c3;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: space-between;
    -webkit-align-items: space-between;
    -ms-flex-align: space-between;
    align-items: space-between;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .page-store-detail .template-title-info .title {
    font-weight: bold;
    font-size: 0.53333333rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.02em;
    line-height: 0.4rem;
    margin-bottom: 0.6rem;
  }

  .page-store-detail .template-title-info .info-box {
    margin-bottom: 0.65333333rem;
  }

  .page-store-detail .template-title-info .info-box .icon {
    width: 0.26666667rem;
    height: 0.26666667rem;
    margin-right: 0.10666667rem;
  }

  .page-store-detail .template-title-info .info-box .infos {
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000000;
    font-size: 0.29333333rem;
    line-height: 0.29333333rem;
  }

  .page-store-detail .template-title-info .info-box .infos .name {
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 0.41333333rem;
  }

  .page-store-detail .template-title-info .info-box .infos .phone {
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #000000;
    margin-right: 0.41333333rem;
  }

  .page-store-detail .template-title-info .info-box .infos .time {
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page-store-detail .template-title-info .info-box .address {
    margin-top: 0.46666667rem;
    margin-bottom: -0.06666667rem;
    font-size: 0.29333333rem;
    line-height: 0.42666667rem;
    /* .lh(40); */
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page-store-detail .h5-arrow-box {
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: space-between;
    -webkit-align-items: space-between;
    -ms-flex-align: space-between;
    align-items: space-between;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .page-store-detail .h5-arrow-box .arrow-box {
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .page-store-detail .h5-arrow-box .arrow-box img {
    width: 1.12rem;
    height: 1.12rem;
    margin-right: 0.33333333rem;
  }

  .page-store-detail .h5-arrow-box .share-box {
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .page-store-detail .h5-arrow-box .share-box img {
    margin-left: 0.48rem;
    width: 0.868rem;
    height: 0.868rem;
  }
}

/* ##### Import All CSS ##### */

@media (max-width: 767px) {
  .page-index .section-1 {
    width: 10rem;
    height: 9.6rem;
  }

  .page-index .section-1 .right-wrapper {
    padding-left: 0;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page-index .section-1 .right-wrapper .right-banner {
    height: 9.6rem;
  }

  .page-index .section-1 .right-wrapper .right-banner .text-wrapper {
    bottom: 0.78666667rem;
  }

  .page-index .section-1 .right-wrapper .right-banner .text-wrapper .progress-wrapper {
    overflow: visible;
    margin-left: 0.66666667rem;
    margin-right: 0.66666667rem;
  }

  .page-index .section-1 .right-wrapper .right-banner .text-wrapper .title-small {
    height: 0.26666667rem;
    font-size: 0.26666667rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #ffffff;
    line-height: 0.26666667rem;
  }

  .page-index .section-1 .right-wrapper .right-banner .text-wrapper .title-big {
    margin-left: -0.16rem;
    height: 0.93333333rem;
    font-size: 0.93333333rem;
    line-height: 0.93333333rem;
    margin-top: 0.22666667rem;
    margin-bottom: 0.44rem;
  }

  .page-index .section-1 .right-wrapper .right-banner .text-wrapper .title-big .idea {
    display: none;
    font-size: 0.72rem;
    line-height: 0.72rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.1em;
    font-family: Gill Sans;
    font-weight: 600;
    color: #ffffff;
  }

  .page-index .section-1 .right-wrapper .nav-wrapper {
    padding-left: 0.42666667rem;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .page-index .section-1 .right-wrapper .nav-wrapper .kv-nav-button {
    width: 0.90666667rem;
    height: 0.90666667rem;
  }

  .page-index .section-1 .right-wrapper .nav-wrapper .nav-show {
    margin-left: 0.66666667rem;
    margin-right: 0.66666667rem;
  }

  .page-index .section-1 .right-wrapper .nav-wrapper .nav-show .diagonal {
    margin-left: 0.6rem;
    margin-right: 0.6rem;
  }

  .page-index .section-1 .right-wrapper .right-banner .image-list .p-top-kv__main-img .p-top-kv__main-img-obj.img0 {
    background-image: url("../images/h5-01-r.jpg");
  }

  .page-index .section-1 .right-wrapper .right-banner .image-list .p-top-kv__main-img .p-top-kv__main-img-obj.img1 {
    background-image: url("../images/h5-02-r.jpg");
  }

  .page-index .section-1 .right-wrapper .right-banner .image-list .p-top-kv__main-img .p-top-kv__main-img-obj.img2 {
    background-image: url("../images/h5-03-r.jpg");
  }

  .page-index .section-2 {
    height: auto;
    /* background: url('../images/1px-h5-s2-bg.jpg'); */
    background: url("../images/section-2-1px.png");
    padding-top: 1.74666667rem;
  }

  .page-index .section-2 .bg1 {
    width: 10rem;
    height: 7.84933333rem;
    background-image: url("../images/mobile-shouhui.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .page-index .section-2 .right-wrapper {
    width: auto;
    padding-left: 1.2rem;
    padding-right: 1.6rem;
    padding-top: 0.62666667rem;
    /* .mt(588); */
    position: relative;
    right: 0;
    top: 0;
    padding-bottom: 1.72rem;
  }

  .page-index .section-2 .right-wrapper .title-sm {
    margin-bottom: 0.34rem;
    font-size: 0.24rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.04em;
    line-height: 0.17333333rem;
    /* font-family: Bjorn; */
    /* font-weight: 400; */
    /* color: rgba(24, 24, 24, .4); */
    /* line-height: 11px; */
  }

  .page-index .section-2 .right-wrapper .title-big {
    white-space: nowrap;
    padding-bottom: 0.42666667rem;
    margin-bottom: 0.4rem;
    position: relative;
    font-size: 0.8rem;
    line-height: 0.93333333rem;
    /* .cnleft(); */
  }

  .page-index .section-2 .right-wrapper .title-big::after {
    left: 0.18em;
    width: 0.36rem;
  }

  .page-index .section-2 .right-wrapper .description {
    font-size: 0.29333333rem;
    font-family: PingFangSC;
    font-weight: 400;
    line-height: 0.53333333rem;
    margin-bottom: 0.49333333rem;
    text-align: justify;
    -moz-text-align-last: left;
    text-align-last: left;
  }

  .page-index .section-2 .right-wrapper .description2 {
    font-size: 0.24rem;
    line-height: 0.4rem;
    margin-bottom: 0.69333333rem;
    text-align: justify;
    -moz-text-align-last: left;
    text-align-last: left;
  }

  .page-index .section-2 .right-wrapper .arrow-right {
    width: 2.93333333rem;
    height: 0.53333333rem;
    background-image: url("../images/形状6@2x.png");
  }

  .page-index .section-23 {
    height: auto;
    /* background: url('../images/1px-h5-s2-bg.jpg'); */
    background: url("../images/section-2-1px.png");
  }

  .page-index .section-23 .bg1 {
    width: 10rem;
    height: 9.81333333rem;
    background-image: url("../images/bg2.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .page-index .section-23 .left-wrapper {
    width: auto;
    padding-left: 1.2rem;
    padding-right: 1.6rem;
    padding-top: 1.62666667rem;
    left: 0;
    /* .mt(588); */
    position: relative;
    right: 0;
    top: 0;
    padding-bottom: 2.24rem;
  }

  .page-index .section-23 .left-wrapper .title-sm {
    margin-bottom: 0.34rem;
    font-size: 0.24rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.04em;
    line-height: 0.17333333rem;
    /* font-family: Bjorn; */
    /* font-weight: 400; */
    /* color: rgba(24, 24, 24, .4); */
    /* line-height: 11px; */
  }

  .page-index .section-23 .left-wrapper .title-big {
    padding-bottom: 0.38666667rem;
    margin-bottom: 0.4rem;
    position: relative;
    font-size: 0.8rem;
    line-height: 0.93333333rem;
    /* .cnleft(); */
  }

  .page-index .section-23 .left-wrapper .title-big::after {
    left: 0.18em;
    width: 0.36rem;
  }

  .page-index .section-23 .left-wrapper .description {
    font-size: 0.29333333rem;
    font-family: PingFangSC;
    font-weight: 400;
    line-height: 0.53333333rem;
    margin-bottom: 0.49333333rem;
    text-align: justify;
    -moz-text-align-last: left;
    text-align-last: left;
  }

  .page-index .section-23 .left-wrapper .description2 {
    font-size: 0.24rem;
    line-height: 0.4rem;
    margin-bottom: 0.69333333rem;
    text-align: justify;
    -moz-text-align-last: left;
    text-align-last: left;
  }

  .page-index .section-23 .left-wrapper .arrow-right {
    width: 2.93333333rem;
    height: 0.53333333rem;
    background-image: url("../images/形状6@2x.png");
  }

  .page-index .section-3 {
    position: relative;
    height: 15.09333333rem;
    /* swiper end */
  }

  .page-index .section-3 .swiper-container .pagination {
    /* display: inline-block; */
    width: auto;
    position: absolute;
    z-index: 3;
    top: 0.45333333rem;
    right: 0.50666667rem;
    height: 0.24rem;
    font-family: Bjorn;
    font-weight: normal;
    color: #a4a6a8;
    font-size: 0.24rem;
    line-height: 0.24rem;
  }

  .page-index .section-3 .swiper-container .pagination .t2 {
    color: #a4a6a8;
  }

  .page-index .section-3 .swiper-container .swiper-scrollbar {
    -webkit-transform: scaleX(1.02);
    -ms-transform: scaleX(1.02);
    transform: scaleX(1.02);
    bottom: 0px;
    background: white;
    height: 0.10666667rem;
  }

  .page-index .section-3 .swiper-container .swiper-scrollbar .swiper-scrollbar-drag {
    height: 0.10666667rem;
    border-radius: 0;
    background: #a1a9ab;
  }

  .page-index .section-3 .swiper-container .swiper-pagination-fraction {
    left: auto;
    bottom: auto;
  }

  .page-index .section-3 .swiper-container .swiper-pagination-fraction .swiper-pagination-current {
    color: #5d5e5f;
    display: inline-block;
    margin-right: 0.06666667rem;
    /* .w(33); */
  }

  .page-index .section-3 .swiper-container .swiper-pagination-fraction .swiper-pagination-current::before {
    content: ' 0 ';
  }

  .page-index .section-3 .swiper-container .swiper-pagination-fraction .swiper-pagination-current::after {
    content: ' ';
  }

  .page-index .section-3 .swiper-container .swiper-pagination-fraction .swiper-pagination-total::before {
    content: ' 0 ';
  }

  .page-index .section-3 .series-wrapper {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .page-index .section-3 .series-wrapper .series {
    padding-left: 1.2rem;
    padding-right: 1.6rem;
    width: auto;
  }

  .page-index .section-3 .series-wrapper .series .text-wrapper {
    max-width: 7.02666667rem;
    bottom: 1.65333333rem;
    /* 文本太大，调52
          .series-title {
            .mt(20);
            .h(54);
            .lh(54);
            .fs(54);
            .letterspacing(54, -65);

            .title-pre {
              .h(42);
              .fs(54);
              .letterspacing(54, 300);
              .lh(42);
              .mr(0);
            }
          } */
  }

  .page-index .section-3 .series-wrapper .series .text-wrapper .series-text {
    height: 0.26666667rem;
    font-size: 0.26666667rem;
    line-height: 0.26666667rem;
  }

  .page-index .section-3 .series-wrapper .series .text-wrapper .series-title {
    margin-left: -0.18em;
    text-align: justify;
    margin-top: 0.26666667rem;
    height: 0.8rem;
    line-height: 0.8rem;
    font-size: 0.8rem;
  }

  .page-index .section-3 .series-wrapper .series .text-wrapper .series-title .title-pre {
    text-align: justify;
    height: 0.8rem;
    font-size: 0.64rem;
    letter-spacing: 0;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    margin-right: -0.3em;
    line-height: 0.8rem;
    margin-left: 0.29333333rem;
    /* .mr(0); */
  }

  .page-index .section-3 .series-wrapper .series .text-wrapper .series-title .title-cn {
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: -0.09074em;
    margin-left: -0.18em;
    padding-left: 0.26666667rem;
  }

  .page-index .section-3 .series-wrapper .series .text-wrapper .series-title .title-cn::first-letter {
    margin-left: -0.18em;
  }

  .page-index .section-3 .series-wrapper .series .text-wrapper .series-desc {
    margin-top: 0.49333333rem;
    font-size: 0.29333333rem;
    line-height: 0.53333333rem;
  }

  .page-index .section-3 .series-wrapper .series .text-wrapper .series-arrow {
    width: 2.93333333rem;
    height: 0.53333333rem;
    background-image: url("../images/形状6@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 0.77333333rem;
  }

  .page-index .section-4 {
    height: auto;
    background-image: url("../images/色彩平衡1拷贝@2x.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
  }

  .page-index .section-4 .left-wrapper {
    -webkit-box-flex: 0;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
  }

  .page-index .section-4 .left-wrapper .text-container {
    width: auto;
    margin-left: 1.2rem;
    margin-right: 1.6rem;
    padding-top: 2.29333333rem;
    padding-bottom: 1.90666667rem;
  }

  .page-index .section-4 .left-wrapper .text-container .title-4 {
    font-size: 0.72rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.3em;
    line-height: 0.50666667rem;
    width: 4.53333333rem;
  }

  .page-index .section-4 .left-wrapper .text-container .title-42 {
    margin-top: 0.28rem;
    font-size: 0.96rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: -0.09074em;
    line-height: 1.06666667rem;
    width: 7rem;
    margin-left: 0;
  }

  .page-index .section-4 .left-wrapper .text-container .title-42::first-letter {
    margin-left: -0.18em;
  }

  .page-index .section-4 .left-wrapper .text-container .title-sm {
    font-size: 0.21333333rem;
  }

  .page-index .section-4 .left-wrapper .text-container .description-4 {
    margin-top: 0.44rem;
    font-size: 0.29333333rem;
    line-height: 0.53333333rem;
  }

  .page-index .section-4 .left-wrapper .text-container .line-h5 {
    margin-top: 0.50666667rem;
    width: 0.50666667rem;
    height: 1px;
    background-color: rgba(100, 100, 100, 0.5);
  }

  .page-index .section-4 .right-wrapper {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 2.96rem;
  }

  .page-index .section-4 .right-wrapper .content-wrapper {
    margin-top: 0.4rem;
    width: 9.97333333rem;
    height: 6.38666667rem;
    position: relative;
  }

  .page-index .section-4 .right-wrapper .content-wrapper img {
    width: 9.97333333rem;
    height: 6.38666667rem;
  }

  .page-index .section-5 {
    height: auto;
    min-height: 13.33333333rem;
    padding-bottom: 1.18666667rem;
  }

  .page-index .section-5 .main-wrapper {
    padding-top: 0.85333333rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    overflow: hidden;
    position: relative;
    /* swiper start */
  }

  .page-index .section-5 .main-wrapper .swiper-container {
    width: 100%;
    height: 100%;
    overflow: visible;
    position: static;
    /* 自作主张 */
  }

  .page-index .section-5 .main-wrapper .swiper-container .swiper-slide {
    min-height: auto;
  }

  .page-index .section-5 .main-wrapper .swiper-container .swiper-body {
    width: 9.10666667rem;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    min-height: 8.4rem;
    padding-bottom: 0.89333333rem;
    /* margin: 0; */
    background: #ffffff;
  }

  .page-index .section-5 .main-wrapper .swiper-container .swiper-custom-prev,
  .page-index .section-5 .main-wrapper .swiper-container .swiper-custom-next {
    outline: none;
    width: 0.88rem;
    height: 0.88rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    z-index: 11;
    right: 0.45333333rem;
    top: 0.78666667rem;
    background-image: url("../images/组11拷贝2@2x.png");
  }

  .page-index .section-5 .main-wrapper .swiper-container .swiper-custom-prev {
    right: 1.66666667rem;
  }

  .page-index .section-5 .main-wrapper .swiper-container .swiper-custom-next {
    background-image: url("../images/组11拷贝@2x.png");
  }

  .page-index .section-5 .main-wrapper .swiper-container .disable {
    /* pointer-events: none; */
    opacity: 0.6;
  }

  .page-index .section-5 .main-wrapper .swiper-container .pagination {
    /* display: inline-block; */
    width: auto;
    position: absolute;
    z-index: 3;
    right: 0.65333333rem;
    bottom: 0.64rem;
    height: 0.17333333rem;
    font-family: Bjorn;
    font-weight: normal;
    color: #a4a6a8;
    font-size: 0.24rem;
    line-height: 0.17333333rem;
  }

  .page-index .section-5 .main-wrapper .swiper-container .pagination .t2 {
    color: #a4a6a8;
  }

  .page-index .section-5 .main-wrapper .swiper-container .swiper-pagination-fraction {
    left: auto;
    top: auto;
  }

  .page-index .section-5 .main-wrapper .swiper-container .swiper-pagination-fraction .swiper-pagination-current {
    color: #5d5e5f;
    display: inline-block;
    margin-right: 0.06666667rem;
    /* .w(33); */
  }

  .page-index .section-5 .main-wrapper .swiper-container .swiper-pagination-fraction .swiper-pagination-current::before {
    content: ' 0 ';
  }

  .page-index .section-5 .main-wrapper .swiper-container .swiper-pagination-fraction .swiper-pagination-current::after {
    content: ' ';
  }

  .page-index .section-5 .main-wrapper .swiper-container .swiper-pagination-fraction .swiper-pagination-total::before {
    content: ' 0 ';
  }

  .page-index .section-5 .main-wrapper .title-wrapper {
    font-size: 0.8rem;
    line-height: 1;
    height: 0.8rem;
    padding-bottom: 1rem;
    padding-left: 0.45333333rem;
    padding-right: 0.45333333rem;
    margin: 0;
    height: auto;
  }

  .page-index .section-5 .main-wrapper .title-wrapper .t1 {
    display: block;
    font-size: 0.64rem;
    font-size: 0.8rem;
    line-height: 1;
    font-family: HYQingYaTiJ;
    font-weight: 400;
    color: #000000;
    letter-spacing: 0;
    height: auto;
  }

  .page-index .section-5 .main-wrapper .title-wrapper .t2 {
    display: block;
    margin-top: 0.198rem;
    height: auto;
    font-size: 0.64rem;
    line-height: 0.64rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: -0.09074em;
  }

  .page-index .section-5 .main-wrapper .title-wrapper .t2::first-letter {
    margin-left: -0.18em;
  }

  .page-index .section-5 .main-wrapper .main-bg {
    width: 100%;
    height: 5.81333333rem;
    margin-top: 0rem;
  }

  .page-index .section-5 .main-wrapper .desc-wrapper {
    /* .mt(53); */
    padding-top: 0.62666667rem;
    padding-left: 0.76rem;
    padding-right: 0.76rem;
    padding-bottom: 0rem;
  }

  .page-index .section-5 .main-wrapper .desc-wrapper .title-top {
    font-size: 0.18666667rem;
    font-family: PingFang SC;
    line-height: 1.85714286;
  }

  .page-index .section-5 .main-wrapper .desc-wrapper .line-233 {
    height: 1px;
    background: #e9e9e9;
  }

  .page-index .section-5 .main-wrapper .desc-wrapper .l1 {
    margin-top: 0.08rem;
    display: block;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 0.42666667rem;
    height: auto;
    /* .tag {
          .plr(11);
          .mr(7);
          height: 22px;
          border: 1px solid rgba(210, 210, 210, 1);

          color: rgba(210, 210, 210, 1);
          line-height: 22px;
          font-size: 12px;
          font-family: PingFang SC;
          font-weight: 500;
          color: rgba(130, 130, 130, 1)
        } */
  }

  .page-index .section-5 .main-wrapper .desc-wrapper .l1 .desc {
    font-size: 0.48rem;
    height: auto;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
    line-height: 0.48rem;
    margin-right: 0rem;
  }

  .page-index .section-5 .main-wrapper .desc-wrapper .l1 .tag-wrapper {
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .page-index .section-5 .main-wrapper .desc-wrapper .l1 .image-tag {
    width: 55px;
    height: 31px;
    margin: 0 22px;
    position: relative;
  }

  .page-index .section-5 .main-wrapper .desc-wrapper .l1 .image-tag:not(:first-child)::before {
    position: absolute;
    left: -23px;
    top: 12px;
    content: '';
    width: 1px;
    height: 10px;
    background: #e9e9e9;
  }

  .page-index .section-5 .main-wrapper .desc-wrapper .l1 .image-tag img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }

  .page-index .section-5 .main-wrapper .desc-wrapper .l2 {
    display: block;
    height: auto;
    margin-bottom: 0rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0.30666667rem;
  }

  .page-index .section-5 .main-wrapper .desc-wrapper .l2 .box-location {
    display: none;
    margin-top: 0.37333333rem;
    font-size: 0.18666667rem;
  }

  .page-index .section-5 .main-wrapper .desc-wrapper .l2 .desc2 {
    font-size: 0.18666667rem;
    max-width: 826px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 0.26666667rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #3e3e3e;
    line-height: 0.4rem;
  }
}

/* ##### Import All CSS ##### */

@media (max-width: 767px) {
  .line {
    height: 0.01333333rem;
    background: #a3a29d;
  }

  .line.line-163 {
    background: #a3a29d;
  }

  .line.line-98 {
    background: #626961;
  }

  .line.line-216 {
    background: #d8d7d4;
  }

  .line.line-245 {
    background: #f5f5f5;
  }

  .content-width {
    width: 8.66666667rem;
    margin-left: auto;
    margin-right: auto;
  }

  .title-4240.white {
    line-height: 0.66666667rem;
  }

  .title-4240.white .en {
    /*  font-family: Gill Sans;
        font-weight: 600;
        color: white;
        line-height: 1em; */
    /* margin-right: 10px; */
    font-weight: 400;
    /* font-weight: 300; */
    font-size: 0.66666667rem;
    /* .letterspacing(50, -65); */
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.08em;
    /* 这个和设计稿效果比较一致 */
  }

  .title-4240.white .cn {
    /*  font-family: HYQingYaTiJ;
        font-weight: 400;
        color: white;
        line-height: 1em; */
    font-size: 0.66666667rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: -0.065em;
    margin-left: -0.15em;
  }

  .title-56 {
    font-size: 56px;
    font-family: HYQingYaTiJ;
    font-weight: 400;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.078176em;
    line-height: 1em;
  }

  .title-56.black {
    color: #000000;
  }

  .title-56::first-letter {
    margin-left: -0.18em;
  }

  .title-44 {
    font-family: PingFang SC;
    font-weight: 300;
    color: #000000;
    font-size: 0.58666667rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.02em;
    line-height: 1.2em;
    height: auto;
  }

  .title-30 {
    font-size: 30px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #000000;
    line-height: 1em;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.03em;
  }

  .title-12 {
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #7f7f7f;
    /* line-height: 2; */
    /* .letterspacing(20, 30); */
  }

  .title-12.rt {
    line-height: 1em;
    margin-left: 12px;
  }

  .ppp.p14 {
    /* font-size: 14px; */
    font-family: PingFang SC;
    font-weight: 400;
    color: #3e3e3e;
    line-height: 1.75;
    font-size: 0.32rem;
  }

  .ppp.p12 {
    font-size: 12px;
    font-family: PingFang SC;
    font-weight: 400;
    color: #3e3e3e;
    line-height: 2.16666667;
  }

  .fs14 {
    font-size: 14px;
  }

  .gray127 {
    color: #7f7f7f;
  }

  /* template */

  .template-gap-10 {
    padding-top: 0.13333333rem;
  }

  .template-gap-20 {
    padding-top: 0.26666667rem;
  }

  .template-gap-30 {
    padding-top: 0.4rem;
  }

  .template-gap-40 {
    padding-top: 0.53333333rem;
  }

  .template-gap-50 {
    padding-top: 0.66666667rem;
  }

  .template-gap-60 {
    padding-top: 0.8rem;
  }

  .template-gap-70 {
    padding-top: 0.93333333rem;
  }

  .template-gap-80 {
    padding-top: 1.06666667rem;
  }

  .template-gap-90 {
    padding-top: 1.2rem;
  }

  .template-gap-100 {
    padding-top: 1.33333333rem;
  }

  .template-gap-110 {
    padding-top: 1.46666667rem;
  }

  .template-gap-130 {
    padding-top: 1.73333333rem;
  }

  .template-gap-120 {
    padding-top: 1.6rem;
  }

  .template-image-1316-690 {
    width: 100%;
    height: 5.64rem;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  .template-image-1316-690 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .title-20 {
    font-size: 20px;
    font-family: PingFang SC;
    font-weight: 500;
    color: #3e3e3e;
    line-height: 24px;
  }

  .template-title {
    font-family: PingFang;
    font-weight: bold;
    color: #000000;
    font-size: 0.32rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.02em;
  }

  .template-desc {
    font-family: PingFang;
    font-weight: 500;
    color: #3e3e3e;
    font-size: 0.32rem;
    line-height: 0.56rem;
  }

  .template-coloumn-3-image-box {
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: space-between;
    -webkit-align-items: space-between;
    -ms-flex-align: space-between;
    align-items: space-between;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .template-coloumn-3-image-box img {
    width: 5.57333333rem;
    height: 8.05333333rem;
  }

  .template-grid-3-image-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 8px;
    height: 4.92rem;
  }

  .template-grid-3-image-box img {
    /* border: 1px solid #ddd; */
    height: 100%;
    width: 2.88888889rem;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .template-line {
    border-bottom: 1px solid #c3c3c3;
  }

  .template-title-info {
    border-bottom: 1px solid #c3c3c3;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: space-between;
    -webkit-align-items: space-between;
    -ms-flex-align: space-between;
    align-items: space-between;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .template-title-info .left {
    margin-bottom: 0rem;
  }

  .template-title-info .left .title {
    font-family: PingFang;
    font-weight: 600;
    color: #000000;
    font-size: 0.53333333rem;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: 0.02em;
    line-height: 0.53333333rem;
    margin-bottom: 0.65333333rem;
  }

  .template-title-info .left .info-box .address {
    height: 0.18666667rem;
    font-family: PingFang;
    font-weight: 500;
    color: #000000;
    font-size: 0.18666667rem;
  }

  .template-title-info .left .line {
    margin-left: 0.21333333rem;
    margin-right: 0.21333333rem;
    color: #c3c3c3;
  }

  .template-title-info .left .time {
    height: 0.18666667rem;
    font-family: PingFang;
    font-weight: 500;
    color: #000000;
    font-size: 0.18666667rem;
  }

  .template-title-info .right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    font-size: 0.18666667rem;
    margin-bottom: 0.48rem;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .template-title-info .right i.icon {
    width: 0.2rem;
    height: 0.2rem;
    display: inline-block;
    margin-right: 0.13333333rem;
  }

  .template-title-info .right .avatar-box {
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .template-title-info .right .avatar-box .avatar {
    background-image: url("../images/矢量智能对象拷贝2@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .template-title-info .right .phone-box {
    margin-top: 0.13333333rem;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .template-title-info .right .phone-box .phone {
    background-image: url('../images/矢量智能对象拷贝2@2x(1).png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}

[h5],
[h5-block] {
  display: none !important;
}

[h5-important],
[h5-block-important] {
  display: none !important;
}

[h5-inline] {
  display: none !important;
}

[h5-inline-block] {
  display: none !important;
}

[h5-flex] {
  display: none !important;
}

[pc],
[pc-block] {
  display: block !important;
}

[pc-only] {
  display: block;
}

[pc-important] {
  display: block !important;
}

[pc-flex-important] {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

[pc-flex] {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

[pc-inline] {
  display: inline !important;
}

[pc-inline-h5-block] {
  display: inline !important;
}

[pc-inline-block] {
  display: inline-block !important;
}

@media (max-width: 767px) {
  [h5],
  [h5-block] {
    display: block !important;
  }

  [h5-flex] {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  [h5-inline] {
    display: inline !important;
  }

  [h5-inline-block] {
    display: inline-block !important;
  }

  [pc],
  [pc-block] {
    display: none !important;
  }

  [pc-only] {
    display: none;
  }

  [pc-flex] {
    display: none !important;
  }

  [pc-inline] {
    display: none !important;
  }

  [pc-inline-block] {
    display: none !important;
  }

  [pc-important] {
    display: none !important;
  }

  [pc-flex-important] {
    display: none !important;
  }

  [h5-important] {
    display: block !important;
  }

  [pc-inline-h5-block] {
    display: block !important;
  }
}

@media (max-width: 767px) {
  body {
    min-width: 340px;
  }

  .h5-menu {
    outline: none;
    width: 100%;
    position: fixed;
    -webkit-transition: -webkit-transform 1s cubic-bezier(1, 0.1, 0, 0.9) 0s;
    transition: -webkit-transform 1s cubic-bezier(1, 0.1, 0, 0.9) 0s;
    -o-transition: transform 1s cubic-bezier(1, 0.1, 0, 0.9) 0s;
    transition: transform 1s cubic-bezier(1, 0.1, 0, 0.9) 0s;
    transition: transform 1s cubic-bezier(1, 0.1, 0, 0.9) 0s, -webkit-transform 1s cubic-bezier(1, 0.1, 0, 0.9) 0s;
    will-change: transform;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 1111111;
    left: 0px;
    top: 0;
    margin-top: 2.2rem;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #092821;
  }

  .h5-menu.on {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }

  .h5-menu .menu-wrapper {
    height: calc(100% - 210px - 63px);
    margin-top: 38px;
    margin-bottom: 43px;
    overflow-y: scroll;
  }

  .h5-menu .menu-wrapper .menu-container {
    padding-left: 10px;
    margin: 0px 12px;
    height: 100%;
    -ms-overflow-style: none;
  }

  .h5-menu .menu-wrapper .menu-container::-webkit-scrollbar {
    /*隐藏滚轮*/
    display: none;
  }

  .h5-menu .menu-wrapper .menu-container li:nth-child(1),
  .h5-menu .menu-wrapper .menu-container .menu-block:nth-child(1) {
    -webkit-animation-delay: 0.12s;
    animation-delay: 0.12s;
  }

  .h5-menu .menu-wrapper .menu-container li:nth-child(2),
  .h5-menu .menu-wrapper .menu-container .menu-block:nth-child(2) {
    -webkit-animation-delay: 0.24s;
    animation-delay: 0.24s;
  }

  .h5-menu .menu-wrapper .menu-container li:nth-child(3),
  .h5-menu .menu-wrapper .menu-container .menu-block:nth-child(3) {
    -webkit-animation-delay: 0.36s;
    animation-delay: 0.36s;
  }

  .h5-menu .menu-wrapper .menu-container li:nth-child(4),
  .h5-menu .menu-wrapper .menu-container .menu-block:nth-child(4) {
    -webkit-animation-delay: 0.48s;
    animation-delay: 0.48s;
  }

  .h5-menu .menu-wrapper .menu-container li:nth-child(5),
  .h5-menu .menu-wrapper .menu-container .menu-block:nth-child(5) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }

  .h5-menu .menu-wrapper .menu-container li:nth-child(6),
  .h5-menu .menu-wrapper .menu-container .menu-block:nth-child(6) {
    -webkit-animation-delay: 0.72s;
    animation-delay: 0.72s;
  }

  .h5-menu .menu-wrapper .menu-container li:nth-child(7),
  .h5-menu .menu-wrapper .menu-container .menu-block:nth-child(7) {
    -webkit-animation-delay: 0.84s;
    animation-delay: 0.84s;
  }

  .h5-menu .menu-wrapper .menu-container li:nth-child(8),
  .h5-menu .menu-wrapper .menu-container .menu-block:nth-child(8) {
    -webkit-animation-delay: 0.96s;
    animation-delay: 0.96s;
  }

  .h5-menu .menu-wrapper .menu-container li.menu-item {
    display: block;
    overflow: hidden;
  }

  .h5-menu .menu-wrapper .menu-container li.menu-item .menu-block {
    line-height: 40px;
    padding: calc((40 - 14) / 2);
  }

  .h5-menu .menu-wrapper .menu-container li.menu-item .menu-block:hover {
    opacity: 0.5;
  }

  .h5-menu .menu-wrapper .menu-container li.menu-item .menu-block .zh-name {
    cursor: pointer;
    display: inline-block;
    /* letter-spacing: unit(@fs * @sp /1000 * @PX_TO_REM, rem); */
    letter-spacing: -0.065em;
    font-size: 0.48rem;
    font-family: PingFang SC;
    font-weight: 400;
    color: #ffffff;
    /* line-height: 40px; */
    /* min-width: 90px; */
    min-width: 10px;
    margin-right: 10px;
  }

  .h5-menu .menu-wrapper .menu-container li.menu-item .menu-block .en-name {
    cursor: pointer;
    display: inline-block;
    width: 64px;
    margin-left: 0.16rem;
    font-size: 0.48rem;
    font-family: Gill Sans;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.2);
    /* line-height: 40px; */
  }

  .header-area-wrapper {
    height: 2.2rem;
  }

  .header-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: space-between;
    -webkit-align-items: space-between;
    -ms-flex-align: space-between;
    align-items: space-between;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 0.66666667rem;
    padding-right: 0.66666667rem;
    padding-top: 0.4rem;
    padding-bottom: 0.76rem;
    height: 2.2rem;
    z-index: 111;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: white;
    /* 直接fix */
    position: fixed;
    top: 0;
    left: 0;
    /* .menu-icon {
      .w(78);
      .h(78);

      img {
        .w(78);
        .h(78);
      }
    } */
  }

  .header-area.h5-menu-on {
    position: fixed;
    top: 0;
    left: 0;
  }

  .header-area .nav-brand-right-img {
    width: 5.25333333rem;
    height: 1.04rem;
  }

  .box-banner h1 {
    font-size: 64px;
  }

  .section-footer {
    height: auto;
    background: white;
    color: #777777;
  }

  .section-footer .h5-top {
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .section-footer .h5-top .h5-top-left {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 1.2rem;
    margin-top: 1.78666667rem;
    font-family: PingFangSC;
    font-weight: normal;
  }

  .section-footer .h5-top .h5-top-left ul li.title {
    color: black;
    font-size: 0.29333333rem;
    line-height: 0.29333333rem;
    margin-bottom: 0.41333333rem;
  }

  .section-footer .h5-top .h5-top-left ul li.link {
    width: 3.84rem;
    color: #777777;
    font-size: 0.29333333rem;
    line-height: 0.66666667rem;
  }

  .section-footer .h5-top .h5-top-left ul li.link:hover {
    opacity: 0.4;
  }

  .section-footer .h5-top .h5-top-left ul li.link.link2 {
    line-height: 0.56rem;
  }

  .section-footer .h5-top .h5-top-left ul:not(:first-child) {
    margin-top: 0.90666667rem;
  }

  .section-footer .h5-top .h5-top-left .copyright {
    margin-top: 1.42666667rem;
    margin-bottom: 1.54666667rem;
    font-family: PingFangSC;
    font-weight: normal;
    color: #4f4f4f;
    font-size: 0.26666667rem;
    line-height: 0.26666667rem;
    opacity: 0.65;
  }

  .section-footer .h5-top .h5-top-right {
    width: 1.73333333rem;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 1.66666667rem;
  }

  .section-footer .h5-top .h5-top-right img {
    width: 0.64rem;
    height: 0.64rem;
    margin-bottom: 0.38666667rem;
  }

  .section-footer .h5-bottom {
    border-top: 1px solid #ededed;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 1.57333333rem;
  }

  .section-footer .h5-bottom .partner {
    margin-left: 1.2rem;
    width: 8.12rem;
    height: 0.34666667rem;
  }
}

#menu-toggle {
  width: 1.04rem;
  height: 1.04rem;
  position: relative;
  cursor: pointer;
  /* background:rgba(255, 255, 255, .4); */
  border-radius: 0.05333333rem;
}

#menu-toggle * {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#menu-toggle.transition * {
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#menu-toggle span {
  display: block;
  background: #030303;
  border-radius: 0.05333333rem;
}

#menu-toggle:hover {
  /* background: rgba(245, 245, 245, .8); */
}

#menu-toggle #hamburger {
  position: absolute;
  height: 100%;
  width: 100%;
}

#menu-toggle #hamburger span {
  width: 0.8rem;
  height: 0.05333333rem;
  position: relative;
  top: 0.13333333rem;
  left: 0px;
  margin: 0.2rem 0;
}

#menu-toggle #hamburger span:nth-child(1) {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

#menu-toggle #hamburger span:nth-child(2) {
  width: 0.53333333rem;
  -webkit-transition-delay: 0.625s;
  -o-transition-delay: 0.625s;
  transition-delay: 0.625s;
}

#menu-toggle #hamburger span:nth-child(3) {
  -webkit-transition-delay: 0.75s;
  -o-transition-delay: 0.75s;
  transition-delay: 0.75s;
}

#menu-toggle #cross {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#menu-toggle #cross span:nth-child(1) {
  height: 0%;
  width: 0.05333333rem;
  position: absolute;
  top: 10%;
  left: 0.49333333rem;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

#menu-toggle #cross span:nth-child(2) {
  width: 0%;
  height: 0.05333333rem;
  position: absolute;
  left: 10%;
  top: 0.48666667rem;
  -webkit-transition-delay: 0.25s;
  -o-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

#menu-toggle.open #hamburger span {
  width: 0%;
}

#menu-toggle.open #hamburger span:nth-child(1) {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}

#menu-toggle.open #hamburger span:nth-child(2) {
  -webkit-transition-delay: 0.125s;
  -o-transition-delay: 0.125s;
  transition-delay: 0.125s;
}

#menu-toggle.open #hamburger span:nth-child(3) {
  -webkit-transition-delay: 0.25s;
  -o-transition-delay: 0.25s;
  transition-delay: 0.25s;
}

#menu-toggle.open #cross span:nth-child(1) {
  height: 80%;
  -webkit-transition-delay: 0.625s;
  -o-transition-delay: 0.625s;
  transition-delay: 0.625s;
}

#menu-toggle.open #cross span:nth-child(2) {
  width: 80%;
  -webkit-transition-delay: 0.375s;
  -o-transition-delay: 0.375s;
  transition-delay: 0.375s;
}

/* 
#menu-toggle {

  * {
    transition: .25s ease-in-out;
    box-sizing: border-box;
  }

  span {
    display: block;
    background: rgba(3, 3, 3, 1);
    border-radius: 3px;
  }

  width:78px;
  height:78px;
  position:relative;
  cursor:pointer;
  background:rgba(255, 255, 255, .4);
  border-radius:5px;

  &:hover {
    background: rgba(255, 255, 255, .8);
  }

  #hamburger {
    position: absolute;
    background: #ddd;
    height: 100%;
    width: 100%;

    span {
      width: 60px;
      height: 3px;
      position: relative;
      top: 10px;
      left: 0px;
      margin: 15px 0;

      &:nth-child(1) {
        transition-delay: .5s;
      }

      &:nth-child(2) {
        width: 40px;
        transition-delay: .625s;
      }

      &:nth-child(3) {
        transition-delay: .75s;
      }
    }
  }

  #cross {
    position: absolute;
    background: rgba(200, 200, 200, .3);
    height: 100%;
    width: 100%;
    transform: rotate(45deg);

    span {
      &:nth-child(1) {
        height: 0%;
        width: 3px;
        position: absolute;
        top: 10%;
        left: unit(78/2-1.5,px);
        transition-delay: 0s;
      }

      &:nth-child(2) {
        width: 0%;
        height: 3px;
        position: absolute;
        left: 10%;
        top: unit(78/2-1.5,px);
        transition-delay: .25s;
      }
    }
  }
}

#menu-toggle.open {
  #hamburger {
    span {
      width: 0%;

      &:nth-child(1) {
        transition-delay: 0s;
      }

      &:nth-child(2) {
        transition-delay: .125s;
      }

      &:nth-child(3) {
        transition-delay: .25s;
      }
    }
  }

  #cross {
    span {
      &:nth-child(1) {
        height: 80%;
        transition-delay: .625s;
      }
    }

    span {
      &:nth-child(2) {
        width: 80%;
        transition-delay: .375s;
      }
    }
  }
} */