
@charset "UTF-8";
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the Hippocratic License 2.1 - http://firstdonoharm.dev
 *
 * Copyright (c) 2022 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

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

  25%,
  75% {
    opacity: 0;
  }
}
.animate__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);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-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);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  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 shakeX {
  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);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-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);
  }
}
.animate__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);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

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

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

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

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

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

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

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

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

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-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);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

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

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

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

  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) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

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

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

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

  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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

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

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

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

  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) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

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

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

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

  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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-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);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-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;
  }
}
.animate__animated.animate__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);
  }
}
.animate__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);
  }
}
.animate__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;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  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 lightSpeedInRight {
  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);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  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 lightSpeedInLeft {
  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);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -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-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-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-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-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-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;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-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;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-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;
  }
}
.animate__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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-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);
  }
}
@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);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-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);
  }
}
@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);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/**
 * Swiper 7.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 24, 2021
 */

 @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');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}


 @font-face {
    font-family: "socialshare";
    src: url("");
    src: url("") format("embedded-opentype"),url("") format("woff"),url("") format("truetype"),url("#iconfont") format("svg")
}

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

.social-share * {
    font-family: "socialshare" !important
}

.social-share .icon-tencent:before {
    content: "\f07a"
}

.social-share .icon-qq:before {
    content: "\f11a"
}

.social-share .icon-weibo:before {
    content: "\f12a"
}

.social-share .icon-wechat:before {
    content: "\f09a"
}

.social-share .icon-douban:before {
    content: "\f10a"
}

.social-share .icon-heart:before {
    content: "\f20a"
}

.social-share .icon-like:before {
    content: "\f00a"
}

.social-share .icon-qzone:before {
    content: "\f08a"
}

.social-share .icon-linkedin:before {
    content: "\f01a"
}

.social-share .icon-diandian:before {
    content: "\f05a"
}

.social-share .icon-facebook:before {
    content: "\f03a"
}

.social-share .icon-google:before {
    content: "\f04a"
}

.social-share .icon-twitter:before {
    content: "\f06a"
}

.social-share a {
    position: relative;
    text-decoration: none;
    margin: 4px;
    display: inline-block;
    outline: none
}

.social-share .social-share-icon {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 32px;
    font-size: 20px;
    border-radius: 50%;
    line-height: 32px;
    border: 1px solid #666;
    color: #666;
    text-align: center;
    vertical-align: middle;
    transition: background 0.6s ease-out 0s
}

.social-share .social-share-icon:hover {
    background: #666;
    color: #fff
}

.social-share .icon-weibo {
    color: #ff763b;
    border-color: #ff763b
}

.social-share .icon-weibo:hover {
    background: #ff763b
}

.social-share .icon-tencent {
    color: #56b6e7;
    border-color: #56b6e7
}

.social-share .icon-tencent:hover {
    background: #56b6e7
}

.social-share .icon-qq {
    color: #56b6e7;
    border-color: #56b6e7
}

.social-share .icon-qq:hover {
    background: #56b6e7
}

.social-share .icon-qzone {
    color: #FDBE3D;
    border-color: #FDBE3D
}

.social-share .icon-qzone:hover {
    background: #FDBE3D
}

.social-share .icon-douban {
    color: #33b045;
    border-color: #33b045
}

.social-share .icon-douban:hover {
    background: #33b045
}

.social-share .icon-linkedin {
    color: #0077B5;
    border-color: #0077B5
}

.social-share .icon-linkedin:hover {
    background: #0077B5
}

.social-share .icon-facebook {
    color: #44619D;
    border-color: #44619D
}

.social-share .icon-facebook:hover {
    background: #44619D
}

.social-share .icon-google {
    color: #db4437;
    border-color: #db4437
}

.social-share .icon-google:hover {
    background: #db4437
}

.social-share .icon-twitter {
    color: #55acee;
    border-color: #55acee
}

.social-share .icon-twitter:hover {
    background: #55acee
}

.social-share .icon-diandian {
    color: #307DCA;
    border-color: #307DCA
}

.social-share .icon-diandian:hover {
    background: #307DCA
}

.social-share .icon-wechat {
    position: relative;
    color: #7bc549;
    border-color: #7bc549
}

.social-share .icon-wechat:hover {
    background: #7bc549
}

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

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

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

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

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

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

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

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

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


*{
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: border-box;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img,
video {
	border: 0;
	vertical-align: middle;
	max-width: 100%;
	object-fit: cover;
}

.clearfix:after {
	content: "";
	height: 0;
	display: block;
	clear: both;
}

.fl {
	float: left;
}

.fr {
	float: right;
}


ul {
	list-style: none;
}

a {
	text-decoration: none;
	color: #111;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: 500;
}
a,
input,
button,
select,
textarea {
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border-radius: 0;
	line-height: normal;
}

abbr,
acronym {
	border: 0;
}



html,body{
	/* scroll-behavior: smooth; */
}
body {
	font-family: 'Alibaba' !important;
	font-size: 16px;
	color: #111;
}
@font-face {
	font-family: 'gilroy_bold';
	src: url('../fonts/gilroy-bold-4.otf') format('truetype');
}
@font-face {
	font-family: 'gilroy_light';
	src: url('../fonts/Gilroy-Light-11.otf') format('truetype');
}
@font-face {
	font-family: 'gilroy_Medium';
	src: url('../fonts/Gilroy-Medium-2.otf') format('truetype');
}

@font-face {
	font-family: 'gilroy_regular';
	src: url('../fonts/gilroy-regular-3.otf') format('truetype');
}

@font-face {
	font-family: 'Alibaba';
	src: url('../fonts/Alibaba-PuHuiTi-Regular.woff2') format('truetype');
}



.flexBetween {
	display: -webkit-flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.flexStart {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.flexCenter {
	display: -webkit-flex;
	/* Safari */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.flexEnd {
	display: -webkit-flex;
	/* Safari */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-flex-wrap: wrap;
	    -ms-flex-wrap: wrap;
	        flex-wrap: wrap;
}

.ellipsis {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-justify: distribute-all-lines;
}

.ellipsis2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-justify: distribute-all-lines;
}

.ellipsis3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-justify: distribute-all-lines;
}

.ellipsis4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	text-justify: distribute-all-lines;
}

.ellipsis5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
	text-justify: distribute-all-lines;
}

.ellipsis6 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 6;
	overflow: hidden;
	text-justify: distribute-all-lines;
}





.l_scrollx {
	overflow: auto;
	overflow-x: scroll;
	overflow-y: auto;
}

.l_scrolly {
	overflow: auto;
	overflow-x: hidden;
	overflow-y: auto;
}

.l_scroll::-webkit-scrollbar {
	width: 1px;
	height: 2px;
}

.l_scroll::-webkit-scrollbar-thumb {
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.7);
}

.l_scroll::-webkit-scrollbar-track {
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.3);
}



.layerVideo {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background: rgba(0, 0, 0, 0.5);
	display: none;
}

.layerVideo .box {
	width: min(8rem,80vw);
	position: absolute;
	top: 50%;
	left: 50%;
	max-height: 60vh;
	-ms-transform: translateX(-50%) translateY(-50%);
	    transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
}

.layerVideo .box video {
	width: 100%;
}

.layerVideo .box span {
	position: absolute;
	right: -32px;
	top: -32px;
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	cursor: pointer;
}

.input::-webkit-input-placeholder {
	color: #999;
	font-size: 16px;
}

.input::-moz-placeholder {
	color: #999;
	font-size: 16px;
}

.input:-moz-placeholder {
	color: #999;
	font-size: 16px;
}

.input:-ms-input-placeholder {
	color: #999;
	font-size: 16px;
}

.textarea::-webkit-input-placeholder {
	color: #999;
	font-size: 16px;
}

.textarea::-moz-placeholder {
	color: #999;
	font-size: 16px;
}

.textarea:-moz-placeholder {
	color: #999;
	font-size: 16px;
}

.textarea:-ms-input-placeholder {
	color: #999;
	font-size: 16px;
}

.lpk_phone {
	display: none;
}
.lpk_ipad{
	display: none;
}

.MobileMain {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 5;
	width: 100%;
	background: #fff;
	display: none;
  }
  .HeaderMobile {
	border-bottom: 1px solid #f5f5f5;
	/* display: none; */
	/* -webkit-box-shadow: 0px 01px 0px 1px #f5f5f5;
	        box-shadow: 0px 01px 0px 1px #f5f5f5; */
  }
  .HeaderMobile .box {
	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;
	padding: 10px 5vw;
  }
  .HeaderMobile .box .logo {
	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;
  }
  .HeaderMobile .box .logo a {
	display: block;
  }
  .HeaderMobile .box .logo a img {
	height: 36px;
  }
  .HeaderMobile .box .button {
	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;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
  }
  .HeaderMobile .box .button .search p svg {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
  }
  .HeaderMobile .box .button .search .Close {
	display: none;
  }
  .HeaderMobile .box .button .search .active .Show {
	display: none;
  }
  .HeaderMobile .box .button .search .active .Close {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
  }
  .HeaderMobile .box .button .word {
	font-size: 14px;
	font-weight: bold;
  }
  .HeaderMobile .box .button .word a {
	color: #206231;
	text-decoration: none;
  }
  .HeaderMobile .box .button .word a svg {
	display: inline-block;
	vertical-align: sub;
	animation: CallUp 0.5s ease 0s infinite;
	-webkit-animation: CallUp 0.5s ease 0s infinite;
	-moz-animation: CallUp 0.5s ease 0s infinite;
	-o-animation: CallUp 0.5s ease 0s infinite;
  }
  .HeaderMobile .box .button .word a img {
	position: relative;
  }
  .HeaderMobile .box .button .call a {
	font-size: 0.18rem;
    font-family: 'gilroy_bold';
	/* color: #cf0f35; */
  }
  .HeaderMobile .box .button .call img{
	animation: headanim 0.5s ease 0s infinite;
	margin-top: -2px;
  }
  .HeaderMobile .box .button .Lanuage {
	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;
	height: 100%;
	margin-left: 50px;
  }
  .HeaderMobile .box .button .Lanuage p {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-around;
	    -ms-flex-pack: distribute;
	        justify-content: space-around;
	/* border: 1px solid #999; */
	padding: 7px 8px;
	border-radius: 15px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
  }
  .HeaderMobile .box .button .Lanuage p a {
	color: #fff;
	font-size: 14px;
	display: inline-block;
	line-height: 16px;
	text-decoration: none;
	padding: 0 7px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
  }
  .HeaderMobile .box .button .Lanuage p a  i{
	font-size: 12px;
  }
  .HeaderMobile .box .button .Lanuage p a:not(:last-child) {
	border-right: 1px solid #999;
  }
  .HeaderMobile .box .button .Lanuage p a:hover {
	color: #206231;
  }
  .HeaderMobile .box .button .search{
	margin-left: .5rem;
  }
  .HeaderMobile .box .button .menu {
	margin-left: .5rem;
  }
  .HeaderMobile .box .button .menu .menu_btn p {
	position: relative;
  }
  .HeaderMobile .box .button .menu .menu_btn p span {
	display: block;
	width: 30px;
	height: 2px;
	background: #cf0f35;
	margin: 8px 0;
  }
  .HeaderMobile .box .button .menu .menu_btn p span:nth-child(1) {
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
  }
  .HeaderMobile .box .button .menu .menu_btn p span:nth-child(2) {
	opacity: 0;
  }
  .HeaderMobile .box .button .menu .menu_btn p span:nth-child(3) {
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
  }
  .HeaderMobile .box .button .menu .menu_btn p::before {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 2px;
	background: #cf0f35;
	top: 50%;
	margin-top: -1px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
  }
  .HeaderMobile .box .button .menu .menu_btn p::after {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 2px;
	background: #cf0f35;
	top: 50%;
	margin-top: -1px;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
  }
  .HeaderMobile .box .button .menu .menu_btn.active p span {
	opacity: 0;
  }
  .HeaderMobile .box .button .menu .menu_btn.active p::before {
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
  }
  .HeaderMobile .box .button .menu .menu_btn.active p::after {
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
  }
  .MobileNav {
	position: absolute;
	width: 100%;
	height: -webkit-calc(100vh - 58px);
	height: calc(100vh - 58px);
	background: #fff;
	z-index: 3;
	display: none;
  }
  .MobileNav .box {
	margin: 0 5vw;
	padding: 30px 0;
	height: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
  }
  .MobileNav .box .box_scroll {
	overflow: scroll;
	height: 100%;
	-ms-scroll-chaining: none;
	    overscroll-behavior: contain;
  }
  .MobileNav .box .box_scroll::-webkit-scrollbar {
	display: none;
  }
  .MobileNav .box .item > p {
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	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;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
	/* pointer-events: none; */
  }
  .MobileNav .box .active p {
	pointer-events: auto;
  }
  .MobileNav .box .item > p a {
	display: block;
	font-size: 22px;
	line-height: 76px;
	color: #000;
	text-decoration: none;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
  }
  .MobileNav .box .item > p span {
	width: 22px;
	height: 76px;
	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;
	position: absolute;
	z-index: 2;
	right: 0;
  }
  .MobileNav .box .item > p i {
	display: block;
	width: 22px;
	height: 1px;
	background: #999;
	position: relative;
  }
  .MobileNav .box .item > p i::after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	background: #999;
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
  }
  .MobileNav .box .item > p .active i::after {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
  }
  .MobileNav .box .item ul {
	display: none;
	padding: 16px 24px;
	list-style: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .MobileNav .box .item:last-child p {
	/* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
  }
  .MobileNav .box .item ul li a {
	display: block;
	font-size: 20px;
	color: #000;
	line-height: 54px;
	opacity: 0.8;
	text-decoration: none;
  }

  
.PhoneNav {
	z-index: 3;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 58px;
	background: #fff;
	display: none;
  }
  .PhoneNav .box {
	padding: 5vw;
	height: 90%;
	overflow: scroll;
  }
  .PhoneNav .box .item p {
	position: relative;
  }
  .PhoneNav .box .item a {
	display: block;
	position: relative;
	font-size: 0.24rem;
	color: #000;
	line-height: 0.76rem;
  }
  .PhoneNav .box .item i {
	font-size: 0.22rem;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	color: #999;
  }
  .PhoneNav .box .item span {
	font-size: 0.22rem;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	width: 0.2rem;
	height: 2px;
	background: #999;
  }
  .PhoneNav .box .item span::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #999;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
  }
  .PhoneNav .box .item > p {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .PhoneNav .box .item > p > a {
	width: 84%;
  }
  .PhoneNav .box .item .item_two {
	padding-left: 0.32rem;
	display: none;
  }
  .PhoneNav .box .item .item_two > li > p {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .PhoneNav .box .item .item_two > li > p a {
	font-size: 0.23rem;
  }
  .PhoneNav .box .item .item_two > li .item_three {
	padding-left: 0.32rem;
	display: none;
  }
  .PhoneNav .box .item .item_two > li .item_three > li > p {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .PhoneNav .box .item .item_two > li .item_three > li > p a {
	font-size: 0.22rem;
  }
  .PhoneNav .box .item .item_two > li .item_three > li .item_four {
	padding-left: 0.32rem;
	display: none;
  }
  .PhoneNav .box .item .item_two > li .item_three > li .item_four > li > p {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .PhoneNav .box .item .item_two > li .item_three > li .item_four > li > p a {
	font-size: 0.2rem;
	line-height: 0.6rem;
  }
  .PhoneNav .box .item .item_two > li .item_three > li .item_four > li > p a i {
	font-size: 20px;
  }
  .PhoneNav .box .item .item_two > li .item_three > li.active > p a span::after {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
  }
  .PhoneNav .box .item .item_two > li.active > p a span::after {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
  }
  .PhoneNav .box .item.active > p a span::after {
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
  }
@media screen and (max-width:992px) {
	.lpk_pc {
		display: none;
	}
	.lpk_phone {
		display: block;
	}
	.MobileMain{
		display: block;
	}
}
@media screen and (max-width: 699px) {
	.MobileNav .box .item > p a {
		font-size: 16px;
		line-height: 50px;
	  }
	  .MobileNav .box .item > p span {
		width: 15px;
		height: 50px;
	  }
	  .MobileNav .box .item > p font {
		display: inline-block;
		-webkit-transform: scale(0.8);
		    -ms-transform: scale(0.8);
		        transform: scale(0.8);
		position: relative;
		right: -2px;
	  }
	  .MobileNav .box .item ul li a {
		font-size: 14px;
		line-height: 36px;
	  }
	  .MobileNav .box .item ul {
		padding: 16px 20px;
	  }
}

/* animation: headanim 0.5s ease 0s infinite; */
@keyframes headanim{
	0%{ transform: rotate(0deg); -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); }
	25%{ transform: rotate(10deg); -webkit-transform: rotate(10deg); -moz-transform: rotate(10deg); -o-transform: rotate(10deg); }
	100%{ transform: rotate(-10deg); -webkit-transform: rotate(-10deg); -moz-transform: rotate(-10deg); -o-transform: rotate(-10deg); }
}
@-webkit-keyframes headanim{
	0%{ transform: rotate(0deg); -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); }
	25%{ transform: rotate(10deg); -webkit-transform: rotate(10deg); -moz-transform: rotate(10deg); -o-transform: rotate(10deg); }
	100%{ transform: rotate(-10deg); -webkit-transform: rotate(-10deg); -moz-transform: rotate(-10deg); -o-transform: rotate(-10deg); }
}
@-moz-keyframes headanim{
	0%{ transform: rotate(0deg); -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); }
	25%{ transform: rotate(10deg); -webkit-transform: rotate(10deg); -moz-transform: rotate(10deg); -o-transform: rotate(10deg); }
	100%{ transform: rotate(-10deg); -webkit-transform: rotate(-10deg); -moz-transform: rotate(-10deg); -o-transform: rotate(-10deg); }
}
@-o-keyframes headanim{
	0%{ transform: rotate(0deg); -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); }
	25%{ transform: rotate(10deg); -webkit-transform: rotate(10deg); -moz-transform: rotate(10deg); -o-transform: rotate(10deg); }
	100%{ transform: rotate(-10deg); -webkit-transform: rotate(-10deg); -moz-transform: rotate(-10deg); -o-transform: rotate(-10deg); }
}



.w1620 {
    padding-left: 7.8vw;
    padding-right: 7.8vw;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
  }
  .EditButton{
      display: none;
  }
  
  .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;
  }
  .HomeBanner .banner {
    position: relative;
  }
  .HomeBanner .banner .swiper-slide {
    position: relative;
  }
  .HomeBanner .banner .swiper-slide .img img {
    width: 100%;
  }
  .HomeBanner .banner .swiper-slide .position {
    position: absolute;
    left: 0;
    top: 2.25rem;
    width: 100%;
  }
  .HomeBanner .banner .swiper-slide .position .main {
    width: 5.8rem;
    color: #000;
  }
  .HomeBanner .banner .swiper-slide .position .main .title {
    font-size: 0.52rem;
    line-height: 1;
  }
  .HomeBanner .banner .swiper-slide .position .main .desc {
    font-size: 16px;
    line-height: 1.9;
    margin-top: 0.26rem;
  }
  .HomeBanner .banner .swiper-slide .position .main .tag {
    margin-top: 0.32rem;
  }
  .HomeBanner .banner .swiper-slide .position .main .tag p {
    display: inline-block;
    font-size: 16px;
    line-height: 0.4rem;
    border: 1px solid rgba(0, 0, 0, 0.33);
    padding: 0 0.22rem;
    border-radius: 5px;
    margin-right: 0.18rem;
  }
  .HomeBanner .banner .swiper-slide .position .main .link {
    margin-top: 0.48rem;
  }
  .HomeBanner .banner .page {
    position: absolute;
    bottom: 1.74rem;
    left: 50%;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .HomeBanner .banner .page span {
    width: 0.4rem;
    height: 0.03rem;
    border-radius: 4px;
    background: #fff;
  }
  .home_link {
    display: inline-block;
  }
  .home_link .a {
    display: block;
    font-size: 16px;
    color: #fff;
    line-height: 0.5rem;
    width: 1.4rem;
    text-align: center;
    background: #cf0f35;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
  }
  .home_link .a span {
    position: relative;
    z-index: 1;
  }
  .home_link .a::before,
  .home_link .a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    border-radius: 5px;
  }
  .home_link .a::before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
  }
  .home_link .a::after {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
  }
  .home_link .a:hover::before,
  .home_link .a:hover::after {
    -webkit-animation: lay_button 0.8s linear;
    animation: lay_button 0.8s linear;
  }
  .home_link1 {
    display: inline-block;
  }
  .home_link1 .a {
    display: block;
    font-size: 16px;
    color: #fff;
    line-height: 0.48rem;
    width: 1.38rem;
    text-align: center;
    border-radius: 5.7px;
    position: relative;
    border: 1px solid #fff;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
  }
  .home_link1 .a span {
    position: relative;
    z-index: 1;
  }
  .home_link1 .a::before,
  .home_link1 .a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #cf0f35;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    border-radius: 5px;
  }
  .home_link1 .a::before {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
  }
  .home_link1 .a::after {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
  }
  .home_link1 .a:hover {
    border-color: #cf0f35;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .home_link1 .a:hover::before,
  .home_link1 .a:hover::after {
    -webkit-animation: lay_button1 0.4s linear forwards;
    animation: lay_button1 0.4s linear forwards;
  }
  .home_link1.color .a {
    border-color: #cf0f35;
    color: #cf0f35;
  }
  .home_link1.color .a:hover {
    color: #fff;
  }
  @-webkit-keyframes lay_button {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0);
      opacity: 0;
    }
    50% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0.3;
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes lay_button {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0);
      opacity: 0;
    }
    50% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 0.3;
    }
    100% {
      opacity: 0;
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @-webkit-keyframes lay_button1 {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0);
      opacity: 0;
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }
  }
  @keyframes lay_button1 {
    0% {
      -webkit-transform: scale(0);
      transform: scale(0);
      opacity: 0;
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
    }
  }
  .MARKETING {
    height: 0;
    position: relative;
    z-index: 1;
  }
  .MARKETING .w1620 {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.7);
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  .MARKETING .box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .MARKETING .box .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0.45rem 0;
  }
  .MARKETING .box .item .left {
    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-right: 0.18rem;
  }
  .MARKETING .box .item .left img {
    max-height: 0.5rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .MARKETING .box .item .right h5 {
    font-size: 0.24rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .MARKETING .box .item .right p {
    font-size: 16px;
    color: #555;
    margin-top: 0.08rem;
  }
  .MARKETING .box .item:hover .left img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .MARKETING .box .item:hover .right h5 {
    color: #cf0f35;
  }
  .header_container {
    position: fixed;
    top: 0;
    z-index: 9;
    left: 0;
    width: 100%;
  }
  .header_container .box .boxLeft {
    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;
    color: #fff;
  }
  .header_container .box .boxLeft .left {
    padding-right: 13px;
    margin-right: 13px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
  .header_container .box .boxLeft .left a {
    display: block;
  }
  .header_container .box .boxLeft .left a img {
    height: 36px;
  }
  .header_container .box .boxLeft .left a .img2 {
    display: none;
  }
  .header_container .box .boxLeft .right {
    font-size: 16px;
    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-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .header_container .box nav .item {
    padding: 0 0.24rem;
  }
  .header_container .box nav .item > p a {
    font-size: 16px;
    color: #fff;
    display: block;
    line-height: 80px;
    position: relative;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .header_container .box nav .item > p a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    height: 2px;
    background: #fff;
  }
  .header_container .box nav .item:hover > p a {
    color: #cf0f35 !important;
  }
  .header_container .box nav .item:hover .product_nav {
    display: block;
  }
  .header_container .box nav .item:hover .case_nav {
    display: block;
  }

  .header_container .box nav .item1 {
    position: relative;
  }
  .header_container .box nav .item1 .select {
    position: absolute;
    display: none;
    left: 0;
    background: #fff;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 10px #eee;
    box-shadow: 0px 0px 10px #eee;
  }
  .header_container .box nav .item1 .select ul {
    padding: 0.1rem 0;
  }
  .header_container .box nav .item1 .select li a {
    font-size: 16px;
    line-height: 1.8;
    color: #111;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    padding: 5px 0;
    display: block;
  }
  .header_container .box nav .item1 .select li a:hover {
    color: #cf0f35;
  }
  .header_container .box nav .item1 .select .active a {
    color: #cf0f35;
  }
  .header_container .box nav .item1:hover .select {
    display: block;
  }
  .header_container .box nav .active > p a::after {
    width: 100%;
  }
  .header_container .box .boxRight {
    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;
  }
  .header_container .box .boxRight .left {
    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;
  }
  .header_container .box .boxRight .left img {
    margin-right: 0.1rem;
    height: 18px ;
    position: relative;
    top: -2px;
    -webkit-animation: headanim 0.5s ease 0s infinite;
    animation: headanim 0.5s ease 0s infinite;
  }
  .header_container .box .boxRight .left .img2 {
    display: none;
  }
  .header_container .box .boxRight .left a {
    font-size: 16px;
    font-family: 'gilroy_bold';
    color: #fff;
    display: inline-block;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .header_container .box .boxRight .button1 {
    margin: 0 0.16rem;
  }
  .header_container.active {
    background: #fff;
    box-shadow: 0px 0px 0px 1px #eee;
  }
  .header_container.active .box .boxLeft .left {
    border-color: #eeeeee;
  }
  .header_container.active .box .boxLeft .left .img1 {
    display: none;
  }
  .header_container.active .box .boxLeft .left .img2 {
    display: block;
  }
  .header_container.active .box .boxLeft .right {
    color: #111;
  }
  .header_container.active .box nav .item > p a {
    color: #111;
  }
  .header_container.active .box nav .item > p a::after {
    background: #cf0f35;
  }
  .header_container.active .box .boxRight .left a {
    color: #111;
  }
  .header_container.active .box .boxRight .left .img1 {
    display: none;
  }
  .header_container.active .box .boxRight .left .img2 {
    display: inline-block;
  }
  .header_container.active .box .boxRight .button1 .home_link1 a {
    border-color: #cf0f35;
    color: #cf0f35;
  }
  .header_container.active .box .boxRight .button1 .home_link1 a:hover {
    color: #fff;
  }
  .header_container.on{
       /*box-shadow: 0px 0px 0px 1px #eee;*/
  }
  .header_container.on .box .boxLeft .left {
    border-color: #eeeeee;
  }
  .header_container.on .box .boxLeft .left .img1 {
    display: none;
  }
  .header_container.on .box .boxLeft .left .img2 {
    display: block;
  }
  .header_container.on .box .boxLeft .right {
    color: #111;
  }
  .header_container.on .box nav .item > p a {
    color: #111;
  }
  
  .header_container.on .box nav .item > p a::after {
    background: #cf0f35;
  }
  .header_container.on .box .boxRight .left a {
    color: #111;
  }
  .header_container.on .box .boxRight .left .img1 {
    display: none;
  }
  .header_container.on .box .boxRight .left .img2 {
    display: inline-block;
  }
  .header_container.on .box .boxRight .button1 .home_link1 a {
    border-color: #cf0f35;
    color: #cf0f35;
  }
  .header_container.on .box .boxRight .button1 .home_link1 a:hover {
    color: #fff;
  }
  .product_nav {
    position: absolute;
    left: 0;
    width: 100%;
    background: #fff;
    min-height: 1rem;
    z-index: 7;
    display: none;
  }
  .product_nav ._left {
    width: 4.4rem;
    padding-left: 7.8vw;
    background: #f5faff;
    padding-right: 0.4rem;
  }
  .product_nav ._left ul {
    padding: 0.5rem 0;
    display: grid;
    gap: 0.4rem;
  }
  .product_nav ._left ul li a {
    color: #111f2c;
    font-size: 0.2rem;
    cursor: pointer;
    padding: 0 0.25rem;
    display: block;
    line-height: 0.52rem;
    border-radius: 5px;
  }
  .product_nav ._left ul li a img {
    width: 0.39rem;
    margin-right: 0.16rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .product_nav ._left ul .active a {
    color: #cf0f35;
    background: #f1e1ea;
  }
  .product_nav ._right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: url(../images/img17.png) no-repeat 87% 50%;
    background-size: auto 100%;
    padding-left: 1.5rem;
    padding: 0.5rem 7.8vw 0.8rem 4vw;
  }
  .product_nav ._right .toggleMain {
    display: none;
  }
  .product_nav ._right .toggleMain.active {
    display: block;
  }
  .product_nav ._right .ite {
    width: 2rem;
    margin-right: 0.4rem;
    margin-bottom: 0.3rem;
  }
  .product_nav ._right .ite h5 {
    color: #111;
    font-size: 16px;
    padding-bottom: 0.28rem;
    border-bottom: 1px solid #eeeeee;
  }
  .product_nav ._right .ite h5 a {
    color: #111;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .product_nav ._right .ite h5 a:hover {
    color: #cf0f35;
  }
  .product_nav ._right .ite ul {
    margin-top: 0.26rem;
  }
  .product_nav ._right .ite ul li {
    line-height: 2.2;
  }
  .product_nav ._right .ite ul li a {
    font-size: 0.16rem;
    color: #555;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .product_nav ._right .ite ul li a:hover {
    color: #cf0f35;
  }

  
.case_nav {
  position: absolute;
  left: 0;
  width: 100%;
  background: #fff;
  min-height: 1rem;
  z-index: 7;
  display: none;
}
.case_nav .main ._left {
  width: 4.4rem;
  padding-left: 7.8vw;
  background: #f5faff;
  padding-right: 0.4rem;
}
.case_nav .main ._left ul {
  padding: 0.5rem 0;
  display: grid;
  gap: 0.4rem;
}
.case_nav .main ._left ul li a {
  color: #111f2c;
  font-size: 0.2rem;
  cursor: pointer;
  padding: 0 0.25rem;
  display: block;
  line-height: 0.52rem;
  border-radius: 5px;
}
.case_nav .main ._left ul li a img {
  width: 0.39rem;
  margin-right: 0.16rem;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.case_nav .main ._left ul .active a {
  color: #cf0f35;
  background: #f1e1ea;
}
.case_nav .main ._right {
  padding: 0.5rem 7.8vw 0.5rem 0.8rem;
  flex: 1;
}
.case_nav .main ._right .toggleMain {
  display: none;
}
.case_nav .main ._right .toggleMain .m .m_l {
  height: 100%;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.22rem;
  padding-right: 0.7rem;
}
.case_nav .main ._right .toggleMain .m .m_l .ite a {
  transition: 0.4s;
  border-radius: 5px;
  display: block;
  padding: 0.1rem 0.08rem 0.08rem;
}
.case_nav .main ._right .toggleMain .m .m_l .ite a figcaption {
  font-size: 18px;
  color: #111;
  transition: 0.4s;
}
.case_nav .main ._right .toggleMain .m .m_l .ite a figure {
  margin-top: 0.12rem;
  overflow: hidden;
  background: rgb(0 0 0);
  border-radius: 5px;
  -webkit-transform: rotate(0deg);
}
.case_nav .main ._right .toggleMain .m .m_l .ite a figure img {
  width: 100%;
  opacity: 0.8;
}
.case_nav .main ._right .toggleMain .m .m_l .ite a figure img:hover {
  opacity: 1;
}
.case_nav .main ._right .toggleMain .m .m_l .ite a:hover {
  background: #fbebef;
}
.case_nav .main ._right .toggleMain .m .m_l .ite a:hover figcaption {
  color: #cf0f35;
}
.case_nav .main ._right .toggleMain .m .m_r {
  width: 3.1rem;
  height: 100%;
  background: #f5f7fa;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
}
.case_nav .main ._right .toggleMain .m .m_r figure {
  overflow: hidden;
}
.case_nav .main ._right .toggleMain .m .m_r figure img {
  width: 100%;
  transition: 0.2s;
}
.case_nav .main ._right .toggleMain .m .m_r figcaption {
  padding: 0 0.3rem 0.38rem;
}
.case_nav .main ._right .toggleMain .m .m_r figcaption .content1 {
  font-size: 0.28rem;
}
.case_nav .main ._right .toggleMain .m .m_r figcaption .content2 {
  font-size: 0.18rem;
  line-height: 0.28rem;
  color: #333;
  margin-top: 0.15rem;
}
.case_nav .main ._right .toggleMain .m .m_r figcaption .content3 {
  margin-top: 0.26rem;
}
.case_nav .main ._right .toggleMain .m .m_r figcaption .content3 a {
  line-height: 0.4rem;
  font-size: 0.16rem;
}
.case_nav .main ._right .toggleMain .m .m_r figcaption .content3 a i {
  font-size: 0.16rem;
}
.case_nav .main ._right .toggleMain .m .m_r:hover figure img {
  transition: 1s;
  transform: scale(1.1);
}

/*.case_nav{*/
/*    display: block !important;*/
/*}*/



.case_nav .main ._right .toggleMain .mm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.2rem;
}
.case_nav .main ._right .toggleMain .mm .ite {
  background: #f6f6f6;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
}
.case_nav .main ._right .toggleMain .mm .ite a {
  display: block;
  min-height: 1rem;
  position: relative;
  z-index: 1;
  padding: 0.3rem 0.5rem 0.4rem;
}
.case_nav .main ._right .toggleMain .mm .ite a .content1 {
  font-size: 0.28rem;
  color: #111;
}
.case_nav .main ._right .toggleMain .mm .ite a .content2 {
  font-size: 0.18rem;
  color: #333;
  margin-top: 0.14rem;
  height: 0.25rem;
}
.case_nav .main ._right .toggleMain .mm .ite a .content3 {
  margin-top: 0.58rem;
}
.case_nav .main ._right .toggleMain .mm .ite a .content3 .a {
  line-height: 0.4rem;
  font-size: 0.16rem;
}
.case_nav .main ._right .toggleMain .mm .ite a .content3 .a i {
  font-size: 0.16rem;
}
.case_nav .main ._right .toggleMain .mm .ite .img {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  height: 100%;
}
.case_nav .main ._right .toggleMain .mm .ite .img img {
  height: 100%;
  transition: 0.2s;
  transform-origin: 70% center;
}
.case_nav .main ._right .toggleMain .mm .ite:hover .img img {
  transform: scale(1.1);
  transition: 1s;
}
.case_nav .main ._right .active {
  display: block;
}


  .p105 {
    padding-top: 1.05rem;
  }
  .p105_ {
    padding-bottom: 1.05rem;
  }
  .HomeTiele {
    text-align: center;
  }
  .HomeTiele h1 ,
  .HomeTiele .h1 {
    font-size: 0.48rem;
    line-height: 1;
  }
  .HomeTiele p {
    font-size: 0.2rem;
    margin-top: 0.22rem;
    color: #555;
  }
  .HomeTiele.white {
    color: #fff;
  }
  .HomeTiele.white p {
    color: #fff;
  }
  .HomeManage {
    background: #fcfdfd;
  }
  .HomeManage .box .item {
    -webkit-box-flex: 1 ;
    -webkit-flex: 1 ;
    -ms-flex: 1 ;
    flex: 1 ;
    background: #f5f7fa;
    min-height: 1rem;
    margin-right: 1%;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .HomeManage .box .item:last-child {
    margin-right: 0;
  }
  .HomeManage .box .item .item_left {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    -webkit-transition: 0.4s, opacity 0.2s;
    -o-transition: 0.4s, opacity 0.2s;
    transition: 0.4s, opacity 0.2s;
  }
  .HomeManage .box .item .item_left .img {
    width: 100%;
    height: 100%;
  }
  .HomeManage .box .item .item_left .img img {
    width: 100%;
    height: 100%;
  }
  .HomeManage .box .item .item_left .posi {
    padding: 0 0.54rem;
    position: absolute;
    bottom: 0.76rem;
    left: 0;
    width: 100%;
    color: #fff;
  }
  .HomeManage .box .item .item_left .posi .con0 {
    font-size: 0.32rem;
  }
  .HomeManage .box .item .item_left .posi .con1 {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 0.18rem;
    height: 0.64rem;
  }
  .HomeManage .box .item .item_left .posi .con2 {
    margin-top: 0.36rem;
  }
  .HomeManage .box .item .item_left .posi .con2 p {
    width: 0.48rem;
    height: 0.48rem;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: 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;
  }
  .HomeManage .box .item .item_left .posi .con2 p i {
    margin: auto;
    color: #fff;
  }
  .HomeManage .box .item .item_right {
    width: 100%;
    min-width: 7.75rem;
    padding: 0.8rem 0.65rem;
    position: relative;
    -webkit-clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .HomeManage .box .item .item_right .content0 {
    font-size: 0.32rem;
    color: #cf0f35;
  }
  .HomeManage .box .item .item_right .content1 {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-top: 0.12rem;
  }
  .HomeManage .box .item .item_right .content2 {
    margin-top: 0.4rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.1rem;
    padding-right: 10px;
    /*scrollbar-color:  #cf0f35 #fff;*/
     /* 第一个方块颜色，第二个轨道颜色(用于更改火狐浏览器样式) */
     /*scrollbar-width: thin;*/
     /* 火狐滚动条无法自定义宽度，只能通过此属性使滚动条宽度变细 */
    /* -ms-overflow-style: none;*/
  }
  
  
  .HomeManage .box .item .item_right .content2::-webkit-scrollbar {
      width: 4px;
      height: 4px;
  }
  
  .HomeManage .box .item .item_right .content2::-webkit-scrollbar-thumb {
      background: #cf0f35;
  }
  
  .HomeManage .box .item .item_right .content2::-webkit-scrollbar-track {
      background: #fff;
  }
  
  
  
  .HomeManage .box .item .item_right .content2>div{
      display: flex;
      /*width: 168%;*/
  }
  
  
  
  
  .HomeManage .box .item .item_right .content2 .ite {
    margin-right: 0.86rem;
    white-space: nowrap;
  }
  .HomeManage .box .item .item_right .content2 .ite:last-child {
    margin-right: 0;
  }
  .HomeManage .box .item .item_right .content2 .ite h5 {
    font-size: 0.24rem;
  }
  .HomeManage .box .item .item_right .content2 .ite ul {
    margin-top: 0.18rem;
    /*height: 1.28rem;*/
  }
  .HomeManage .box .item .item_right .content2 .ite ul li {
    line-height: 2;
    position: relative;
    padding-left: 0.14rem;
  }
  .HomeManage .box .item .item_right .content2 .ite ul li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #cf0f35;
    border-radius: 50%;
  }
  /*.HomeManage .box .item .item_right .content2 .ite ul li{*/
  /*    display: none;*/
  /*}*/
  /*.HomeManage .box .item .item_right .content2 .ite ul li:nth-child(-n+4) {*/
  /*    display: block;*/
  /*}*/
  /*.HomeManage .box .item .item_right .content2 .ite ul .li{*/
  /*    display: block;*/
  /*}*/
  
  
  .HomeManage .box .item .item_right .content2 .ite ul .li::after{
      display: none;
  }
  .HomeManage .box .item .item_right .content2 .ite ul li a {
    font-size: 0.16rem;
    color: #333;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .HomeManage .box .item .item_right .content2 .ite ul li a:hover {
    color: #cf0f35;
  }
  .HomeManage .box .item .item_right .content3 {
    margin-top: 0.4rem;
  }
  .HomeManage .box .item .item_right .content4 {
    position: absolute;
    top: 0.36rem;
    right: 0.4rem;
  }
  .HomeManage .box .item .item_right .content4 img {
    width: 2.6rem;
  }
  @media screen and (min-width: 1024px) {
    .HomeManage .box .active {
      -webkit-box-flex: 2 ;
      -webkit-flex: 2 ;
      -ms-flex: 2 ;
      flex: 2 ;
    }
    .HomeManage .box .active .item_left {
      width: 50%;
      -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
      clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
      opacity: 0;
    }
    .HomeManage .box .active .item_right {
      opacity: 1;
      -webkit-clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 100%);
      clip-path: polygon(100% 0%, 0% 0%, 0% 100%, 100% 100%);
    }
  }
  .HomeSolution {
    background: #f5f7fa;
  }
  .HomeSolution .toggle {
    border-bottom: 1px solid #d8dbde;
  }
  .HomeSolution .toggle ul li {
    font-size: 0.2rem;
    color: #555;
    margin: 0 0.72rem;
    position: relative;
    padding-bottom: 0.3rem;
    cursor: pointer;
  }
  .HomeSolution .toggle ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 2px;
    background: #cf0f35;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .HomeSolution .toggle ul li:hover::after {
    width: 100%;
  }
  .HomeSolution .toggle ul .active {
    color: #cf0f35;
  }
  .HomeSolution .toggle ul .active::after {
    width: 100%;
  }
  .HomeSolution .box {
    margin-top: 0.58rem;
  }
  .HomeSolution .box .list {
    display: none;
  }
  .HomeSolution .box .list .item .boxLeft {
    width: 3.9rem;
    padding-right: 0.2rem;
    display: flex;
    align-items: center;
  }
  
  
  
  .HomeSolution .box .list .item .boxLeft .content0 {
    font-size: 0.24rem;
  }
  .HomeSolution .box .list .item .boxLeft .content1 ul {
    margin-top: 0.18rem;
   /*height: 1.28rem;*/
      overflow: auto;
      overflow-x: hidden;
      overflow-y: auto;
    
    
  }
  
  .HomeSolution .box .list .item .boxLeft .content1 ul::-webkit-scrollbar {
      width: 2px;
      height: 2px;
    }
    .HomeSolution .box .list .item .boxLeft .content1 ul::-webkit-scrollbar-thumb {
      border-radius: 2px;
      background: #cf0f35;
    }
    .HomeSolution .box .list .item .boxLeft .content1 ul::-webkit-scrollbar-track {
      border-radius: 2px;
      background: rgba(0, 0, 0, 0.1);
    }
  
  
  
  
  .HomeSolution .box .list .item .boxLeft .content1 ul li {
    line-height: 2;
    position: relative;
    padding-left: 0.14rem;
  }
  .HomeSolution .box .list .item .boxLeft .content1 ul li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #cf0f35;
    border-radius: 50%;
  }
  .HomeSolution .box .list .item .boxLeft .content1 ul li a {
    font-size: 16px;
    color: #333;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .HomeSolution .box .list .item .boxLeft .content1 ul li a:hover {
    color: #cf0f35;
  }
  .HomeSolution .box .list .item .boxLeft .content2 {
    /*margin-top: 0.4rem;*/
  }
  .HomeSolution .box .list .item .boxLeft .content2 .ite {
    width: 1.4rem;
    margin-right: 0.48rem;
    margin-top: 0.36rem;
    border-right: 1px solid #ddd;
  }
  .HomeSolution .box .list .item .boxLeft .content2 .ite:nth-child(2n) {
    border-right: 0;
    margin-right: 0;
  }
  .HomeSolution .box .list .item .boxLeft .content2 .ite .top div {
    font-size: 0.3rem;
    font-family: 'gilroy_regular';
  }
  .HomeSolution .box .list .item .boxLeft .content2 .ite .top span {
    font-size: 16px;
  }
  .HomeSolution .box .list .item .boxLeft .content2 .ite .bot {
    font-size: 0.16rem;
    margin-top: 8px;
  }
  .HomeSolution .box .list .item .boxLeft .content3 .button1 {
    margin-right: 0.16rem;
  }
  
  .HomeSolution .box .list .item .boxLeft .content3{
       margin-top: 0.36rem;
  }
  .HomeSolution .box .list .item .boxRight {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .HomeSolution .box .list .item .boxRight img {
    width: 100%;
  }
  .HomeSolution .box .list.active {
    display: block;
  }
  .m54 {
    margin-top: 0.54rem;
  }
  .HomeMode {
    min-height: 4rem;
    background: url(../images/img6.png) no-repeat 50% 50%/100% 100%;
  }
  .HomeMode .box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
  }
  .HomeMode .box .item {
    background: #fff;
  }
  .HomeMode .box .item a {
    padding: 0.64rem;
    display: block;
    color: #333;
  }
  .HomeMode .box .item a .content0 .left {
    font-family: 'gilroy_bold';
    font-size: 0.54rem;
    color: #ddd;
    line-height: 1;
    margin-right: 0.18rem;
    height: 0.48rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 55%, 70% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 55%, 70% 100%, 0% 100%);
  }
  .HomeMode .box .item a .content0 .right {
    font-size: 0.28rem;
    color: #111;
    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-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .HomeMode .box .item a .content1 {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 0.3rem;
    height: 0.88rem;
  }
  
  .HomeMode .box .item a .content2 {
    margin-top: 0.46rem;
  }
  .HomeMode .box .item a .content2 .ite {
    margin-right: 0.6rem;
  }
  .HomeMode .box .item a .content2 .ite:last-child {
    margin-right: 0;
  }
  .HomeMode .box .item a .content2 .ite .top {
    font-size: 0.3rem;
    font-family: 'gilroy_regular';
  }
  .HomeMode .box .item a .content2 .ite .bot {
    font-size: 16px;
    margin-top: 8px;
  }
  .HomeMode .box .item a .content3 {
    font-size: 16px;
    color: #cf0f35;
    margin-top: 0.68rem;
  }
  .HomeMode .box .item a .content3 i {
    font-size: 16px;
  }
  .HomeMode .box .item a:hover .content0 .left,
  .HomeMode .box .item a:hover .content0 .right {
    color: #cf0f35;
  }
  .HomeService .box .boxLeft {
    width: 2.8rem;
    background: #f5f7fa;
    padding: 0.2rem 0;
    border-radius: 5px 0 0 5px;
  }
  .HomeService .box .boxLeft ul li a {
    font-size: 0.2rem;
    color: #111;
    text-align: center;
    line-height: 0.5rem;
    display: block;
    cursor: pointer;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: relative;
  }
  .HomeService .box .boxLeft ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 0%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    width: 2px;
    background: #cf0f35;
    left: 0;
  }
  .HomeService .box .boxLeft ul li a:hover {
    color: #cf0f35;
  }
  .HomeService .box .boxLeft ul .active a {
    background: #f3ecf0;
    color: #cf0f35;
  }
  .HomeService .box .boxLeft ul .active a::after {
    height: 100%;
    top: 0;
    bottom: auto;
  }
  .HomeService .box .boxLeft .link {
    padding: 0.18rem 0;
  }
  .HomeService .box .boxRight {
    border-radius: 0 5px 5px 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0.6rem 0 ;
    position: relative;
  }
  .HomeService .box .boxRight::after {
    content: '';
    background: -o-linear-gradient(150deg, #fff, #f5f8fd);
    background: linear-gradient(300deg, #fff, #f5f8fd);
    -webkit-box-shadow: -5px 0px 20px #f1f1f1;
    box-shadow: -5px 0px 20px #f1f1f1;
    position: absolute;
    top: 0;
    left: 0;
    width: -webkit-calc(98.1%);
    width: calc(100% - 1.9rem);
    height: 100%;
    border: 1px solid #fff;
  }
  .HomeService .box .boxRight .main {
    position: relative;
    z-index: 1;
  }
  .HomeService .box .boxRight .main .left {
    padding: 0 1.2rem;
    width: 8.98rem;
  }
  .HomeService .box .boxRight .main .left .content0 {
    font-size: 0.36rem;
  }
  .HomeService .box .boxRight .main .left .content1 {
    margin-top: 0.3rem;
  }
  .HomeService .box .boxRight .main .left .content1 div {
    margin-right: 0.12rem;
    background: #fff;
    line-height: 0.48rem;
    padding: 0 12px 0 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0px 0px 12px #f5f8fd;
    box-shadow: 0px 0px 12px #f5f8fd;
    -webkit-transform: skew(-15deg);
    -ms-transform: skew(-15deg);
    transform: skew(-15deg);
    border-radius: 5px;
  }
  .HomeService .box .boxRight .main .left .content1 div span {
    width: 3px;
    background: #cf0f35;
    height: 18px;
    margin-right: 0.12rem;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .HomeService .box .boxRight .main .left .content1 div p {
    font-size: 16px;
    -webkit-transform: skew(15deg);
    -ms-transform: skew(15deg);
    transform: skew(15deg);
  }
  .HomeService .box .boxRight .main .left .content2 {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-top: 0.25rem;
    height: 0.9rem;
    
  }
  
  .HomeService .box .boxRight .main .left .content3 {
    margin: 0.45rem 0;
  }
  .HomeService .box .boxRight .main .left .content3 .banner .swiper-wrapper {
    padding: 10px 0;
  }
  .HomeService .box .boxRight .main .left .content3 .banner .swiper-slide {
    border: 1px solid #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    height: 60px;
    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;
  }
  .HomeService .box .boxRight .main .left .content3 .banner .swiper-slide img {
    margin: auto;
    max-width: 80%;
    max-height: 80%;
  }
  .HomeService .box .boxRight .main .left .content4 .button1 {
    margin-right: 0.16rem;
  }
  .HomeService .box .boxRight .main .right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .HomeDomain {
    background: #eceef2;
    position: relative;
  }
  .HomeDomain .box {
    margin-top: 0.85rem;
    position: relative;
  }
  .HomeDomain .box .img {
    text-align: center;
  }
  .HomeDomain .box .img img {
    width: 12.8rem;
  }
  .HomeDomain .box .position {
    position: absolute;
    top: 0;
    width: 100%;
  }
  .HomeDomain .box .position .m {
    display: grid;
    gap: 0.78rem;
  }
  .HomeDomain .box .position .list .item .top {
    font-size: 0.5rem;
    font-family: 'gilroy_regular';
  }
  .HomeDomain .box .position .list .item .bot {
    font-size: 16px;
    margin-top: 0.1rem;
  }
  .HomeDomain .box .position .list .item:last-child {
    text-align: right;
  }
  .HomeDomain .logo_posi {
    position: absolute;
    overflow: hidden;
    bottom: 0;
    left: 0;
    background: url(../images/img11.png) no-repeat 50% 50%;
    background-size: 100% 100%;
    width: 100%;
    padding: 0.3rem 0;
  }
  .HomeDomain .logo_posi .banner .item {
    text-align: center;
  }
  .HomeDomain .logo_posi .banner .item .top img {
    width: 0.76rem;
  }
  .HomeDomain .logo_posi .banner .item .bot {
    font-size: 0.16rem;
    color: #555;
    margin-top: 0.08rem;
  }
  .HomeCooperation .box {
    --height: 1.14rem;
    position: relative;
  }
  .HomeCooperation .box .banner {
    /*height: calc(var(--height) * 5 - 0.2rem);*/
    position: relative;
  }
  .HomeCooperation .box::before {
    z-index: 2;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 20vw;
    background: -webkit-gradient(linear, right top, left top, from(#ffffff), color-stop(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(right, #ffffff, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  }
  .HomeCooperation .box::after {
    z-index: 2;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20vw;
    background: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(left, #ffffff, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  }
  .HomeCooperation .box .banner .swiper {
    /*height: calc(var(--height) * 5);*/
  }
  
  
  .HomeCooperation .box .banner .swiper .swiper-slide {
    padding: 0 0.1rem 0.2rem;
    height: var(--height);
  }
  .HomeCooperation .box .banner .swiper .swiper-slide .item {
    text-align: center;
    border: 1px solid #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    -webkit-box-shadow: 0px 0px 12px #f5f8fd;
    box-shadow: 0px 0px 12px #f5f8fd;
    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;
    border-radius: 6px;
  }
  .HomeCooperation .box .banner .swiper .swiper-slide .item img {
    margin: auto;
    max-width: 80%;
    max-height: 80%;
  }
  .HomeNews {
    background: #eceef2;
  }
  .HomeNews .box .boxLeft {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .HomeNews .box .boxLeft ul {
    display: grid;
    gap: 0.4rem;
  }
  .HomeNews .box .boxLeft ul li a {
    font-size: 0.2rem;
    color: #666;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
  }
  .HomeNews .box .boxLeft ul li a:hover {
    color: #cf0f35;
  }
  .HomeNews .box .boxLeft ul .active a {
    color: #cf0f35;
  }
  .HomeNews .box .boxLeft .link {
    margin-top: 0.64rem;
  }
  .HomeNews .box .boxRight {
    width: 13.35rem;
  }
  .HomeNews .box .boxRight .banner .a {
    display: block;
  }
  .HomeNews .box .boxRight .banner .a .content0 {
    overflow: hidden;
    border-radius: 5px;
  }
  .HomeNews .box .boxRight .banner .a .content0 img {
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .HomeNews .box .boxRight .banner .a .content1 {
    margin-top: 0.32rem;
    font-size: 0.2rem;
    color: #111;
    line-height: 0.3rem;
    height: 0.6rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .HomeNews .box .boxRight .banner .a .content2 {
    font-size: 16px;
    color: #666;
    margin-top: 0.24rem;
  }
  .HomeNews .box .boxRight .banner .a .content3 {
    margin-top: 0.42rem;
    padding-top: 0.26rem;
    border-top: 1px solid #d8d8d8;
    line-height: 20px;
  }
  .HomeNews .box .boxRight .banner .a .content3 .left {
    font-size: 16px;
    color: #d1193e;
  }
  .HomeNews .box .boxRight .banner .a .content3 .left span {
    font-size: 16px;
  }
  .HomeNews .box .boxRight .banner .a .content3 .right {
    font-size: 16px;
    font-family: 'gilroy_regular';
    color: #666;
  }
  .HomeNews .box .boxRight .banner .a:hover .content0 img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .HomeNews .box .boxRight .banner .a:hover .content1 {
    color: #cf0f35;
  }
  .HomeNews .box .boxRight .page {
    margin-top: 0.7rem;
    height: 2px;
    position: relative;
  }
  .HomeNews .box .boxRight .page .swiper-pagination {
    background: #d8d8d8;
    z-index: 1;
    height: 2px;
  }
  .HomeNews .box .boxRight .page .swiper-pagination span {
    background: #cf0f35;
  }
  .HomeNews .box .boxRight .page .button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 1.95rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: #fff;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .HomeNews .box .boxRight .page .button p {
    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;
  }
  .HomeNews .box .boxRight .page .button p i {
    color: #a9a9a9;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
  }
  .HomeNews .box .boxRight .page .button p i:hover {
    color: #cf0f35;
  }
  .HomeAdvertisement {
    position: relative;
  }
  .HomeAdvertisement .img img {
    width: 100%;
    vertical-align: bottom;
  }
  .HomeAdvertisement .position {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    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;
  }
  .HomeAdvertisement .position .main {
    margin: auto;
    text-align: center;
  }
  .HomeAdvertisement .position .main .top {
    font-size: 0.42rem;
    color: #fff;
    letter-spacing: 2px;
  }
  .HomeAdvertisement .position .main .bot {
    margin-top: 0.32rem;
  }
  .HomeAdvertisement .position .main .bot .button1 {
    margin-left: 0.2rem;
  }
  .footer_container {
    background: #111e2f;
    margin-top: -1px;
  }
  .footer_container .boxTop {
    padding: 0.8rem 0 0;
  }
  .footer_container .boxTop .boxLeft .item {
    margin-right: 1.04rem;
  }
  .footer_container .boxTop .boxLeft .item:last-child {
    margin-right: 0;
  }
  .footer_container .boxTop .boxLeft .item h5 {
    font-size: 0.2rem;
    color: #fff;
  }
  .footer_container .boxTop .boxLeft .item ul {
    margin-top: 0.16rem;
  }
  .footer_container .boxTop .boxLeft .item ul li a {
    color: #9aaabe;
    line-height: 2.2;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    font-size: 0.16rem;
    opacity: 0.7;
  }
  .footer_container .boxTop .boxLeft .item ul li a:hover {
    opacity: 1;
  }
  .footer_container .boxTop .boxCenter .content0 {
    font-size: 0.2rem;
    color: #fff;
  }
  .footer_container .boxTop .boxCenter .content1 {
    margin-top: 0.18rem;
  }
  .footer_container .boxTop .boxCenter .content1 a {
    font-size: 0.36rem;
    color: #fff;
    font-family: 'gilroy_bold';
  }
  .footer_container .boxTop .boxCenter .content2 {
    margin-top: 0.2rem;
  }
  .footer_container .boxTop .boxCenter .content2 p {
    font-size: 0.16rem;
    color: #9aaabe;
    line-height: 2;
  }
  .footer_container .boxTop .boxCenter .content2 p a {
    color: #9aaabe;
  }
  .footer_container .boxTop .boxCenter .content2 p img,
  .footer_container .boxTop .boxCenter .content2 p svg {
    margin-right: 5px;
  }
  .footer_container .boxTop .boxRight {
    padding-top: 0.45rem;
  }
  .footer_container .boxTop .boxRight .item {
    text-align: center;
  }
  .footer_container .boxTop .boxRight .item:not(:last-child) {
    margin-right: 0.2rem;
  }
  .footer_container .boxTop .boxRight .item figure img {
    width: 1.12rem;
  }
  .footer_container .boxTop .boxRight .item figcaption {
    color: #4a5667;
    margin-top: 0.12rem;
  }
  .footer_container .box {
    margin-top: 1.8rem;
    padding: 0.3rem 0;
    border-top: 1px solid #192636;
  }
  .footer_container .boxBot .left {
    width: 13rem;
    line-height: 1.8;
  }
  .footer_container .boxBot .left .link {
    font-size: 0.16rem;
    color: #9aaabe;
  }
  .footer_container .boxBot .left .link span {
    opacity: 0.35;
  }
  .footer_container .boxBot .left .link a {
    color: #9aaabe;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0.35;
      display: inline-block;
      margin-right: 5px;
  }
  .footer_container .boxBot .left .link a:hover {
    opacity: 1;
  }
  .footer_container .boxBot .left .infomation {
    font-size: 0.16rem;
    color: #9aaabe;
  }
  .footer_container .boxBot .left .infomation span {
    opacity: 0.35;
  }
  .footer_container .boxBot .left .infomation a {
    color: #9aaabe;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0.35;
  }
  .footer_container .boxBot .left .infomation a:hover {
    opacity: 1;
  }
  .footer_container .boxBot .left .infomation img {
    margin-left: 0.2rem;
  }
  .footer_container .boxBot .right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: right;
  }
  .footer_container .boxBot .right a {
    color: #4a5667;
    font-size: 0.16rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .footer_container .boxBot .right a:hover {
    color: #9aaabe;
  }
  .sidebar_container {
    position: fixed;
    right: 3px;
    top: 50%;
    z-index: 9;
    transform: translateY(-50%);
    background: #fff;
    /*width: 0.86rem;*/
    border-radius: 5px;
    display: none;
    -webkit-box-shadow: 0px 0px 10px #eee;
    box-shadow: 0px 0px 10px #eee;
  }
  .sidebar_container .item {
    padding: 0 0.15rem;
    position: relative;
  }
  .sidebar_container .item > a {
    display: block;
    text-align: center;
    padding: 0.18rem 0;
    border-bottom: 1px solid #e9ecf1;
  }
  .sidebar_container .item > a figcaption {
    font-size: 14px;
    color: #333;
    margin-top: 0.1rem;
  }
  .sidebar_container .phone {
    cursor: default;
  }
  .sidebar_container .phone .position {
    position: absolute;
    background: #fff;
    -webkit-box-shadow: 0px 0px 16px #f1f1f1;
    box-shadow: 0px 0px 16px #f1f1f1;
    right: 0.98rem;
    top: 50%;
    -webkit-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    padding: 0.32rem 0.28rem;
    border-radius: 5px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .sidebar_container .phone .position::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(100%);
    -ms-transform: translateY(-50%) translateX(100%);
    transform: translateY(-50%) translateX(100%);
    border: 6px solid transparent;
    border-left-color: #fff;
  }
  .sidebar_container .phone .position h5 {
    font-size: 0.16rem;
    color: #333;
    white-space: nowrap;
  }
  .sidebar_container .phone .position p {
    margin-top: 8px;
  }
  .sidebar_container .phone .position p a {
    font-size: 0.24rem;
    font-family: 'gilroy_bold';
    white-space: nowrap;
    color: #cf0f35;
  }
  .sidebar_container .phone:hover .position {
    -webkit-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }
  .sidebar_container .wechat .position {
    position: absolute;
    background: #fff;
    -webkit-box-shadow: 0px 0px 16px #f1f1f1;
    box-shadow: 0px 0px 16px #f1f1f1;
    right: 0.98rem;
    top: 50%;
    -webkit-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    border-radius: 5px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .sidebar_container .wechat .position::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(100%);
    -ms-transform: translateY(-50%) translateX(100%);
    transform: translateY(-50%) translateX(100%);
    border: 6px solid transparent;
    border-left-color: #fff;
  }
  .sidebar_container .wechat .position img {
    max-width: 1.2rem;
    width: 1.2rem;
  }
  .sidebar_container .wechat:hover .position {
    -webkit-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
  }
  .InnerBanner {
    position: relative;
  }
  .InnerBanner .img img {
    width: 100%;
  }
  .InnerBanner .positon {
    position: absolute;
    top: 2.16rem;
    left: 0;
    width: 100%;
  }
  .InnerBanner .positon .content0 {
    font-size: 0.3rem;
  }
  .InnerBanner .positon .content1 {
    font-size: 0.5rem;
    margin-top: 0.12rem;
  }
  .InnerBanner .positon .content2 {
    font-size: 0.2rem;
    color: #333;
    margin-top: 0.24rem;
    line-height: 1.6;
  }
  .InnerBanner .positon .content3 {
    margin-top: 0.36rem;
  }
  .InnerBanner.white {
    color: #fff;
  }
  .InnerBanner.white .positon .content2 {
    color: #fff;
  }
  .InnerBanner .positon_ {
    position: absolute;
    top: 2.16rem;
    left: 0;
    width: 100%;
  }
  .InnerBanner .positon_ .content0 {
    font-size: 0.48rem;
  }
  .InnerBanner .positon_ .content1 {
    margin-top: 12px;
    font-size: 16px;
  }
  .InnerBanner .positon_ .content2 {
    margin: 0.34rem 0;
  }
  .InnerBanner .positon_ .content2 p {
    width: 6.06rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
  .InnerBanner .positon_ .content3 {
    font-size: 16px;
  }
  .InnerBanner .positon_ .content4 {
    margin-top: 16px;
  }
  .InnerBanner .positon_ .content4 .le {
    font-size: 16px;
    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;
  }
  .InnerBanner .positon_ .content4 .ri .flexStart div {
    margin-right: 0.12rem;
    background: rgba(255, 255, 255, 0.1);
    line-height: 0.48rem;
    padding: 0 12px 0 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: skew(-15deg);
    -ms-transform: skew(-15deg);
    transform: skew(-15deg);
    border-radius: 5px;
  }
  .InnerBanner .positon_ .content4 .ri .flexStart div span {
    width: 3px;
    background: #cf0f35;
    height: 18px;
    margin-right: 0.12rem;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .InnerBanner .positon_ .content4 .ri .flexStart div p {
    font-size: 16px;
    -webkit-transform: skew(15deg);
    -ms-transform: skew(15deg);
    transform: skew(15deg);
  }
  .customer_container .toggle .item {
    cursor: pointer;
    padding-bottom: 0.32rem;
    position: relative;
  }
  .customer_container .toggle .item::after {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    height: 3px;
    background: #cf0f35;
    width: 0%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .customer_container .toggle .item .left {
    margin-right: 0.25rem;
  }
  .customer_container .toggle .item .left p {
    font-family: 'gilroy_regular';
    font-size: 0.78rem;
    line-height: 1;
    position: relative;
    overflow: hidden;
  }
  .customer_container .toggle .item .left p span {
    opacity: 0.1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .customer_container .toggle .item .left p::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 30px;
    height: 40px;
    background: #fff;
    border-left: 1px solid #f0f0f0;
    -webkit-transform: translateX(50%) rotate(45deg);
    -ms-transform: translateX(50%) rotate(45deg);
    transform: translateX(50%) rotate(45deg);
  }
  .customer_container .toggle .item .right div {
    font-size: 0.32rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .customer_container .toggle .item .right p {
    font-size: 16px;
    color: #555;
    margin: 6px 0 0;
  }
  .customer_container .toggle .item:nth-child(2) {
    margin: 0 1.4rem;
  }
  .customer_container .toggle .item:hover::after {
    width: 100%;
  }
  .customer_container .toggle .active::after {
    width: 100%;
  }
  .customer_container .toggle .active .left p {
    color: #cf0f35;
  }
  .customer_container .toggle .active .left p span {
    opacity: 1;
  }
  .customer_container .toggle .active .right div {
    color: #cf0f35;
  }
  .customer_container_main {
    background: #f5f7fa;
    padding-top: 0.7rem;
  }
  .customer_container_main section {
    display: none;
  }
  .customer_container_main section.active {
    display: block;
  }
  .customer_container_main .box .boxLeft {
    width: 5.2rem;
    display: grid;
    gap: 10px;
  }
  .customer_container_main .box .boxLeft .item {
    background: #fff;
    padding: 0.2rem 0.4rem;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border-left: 2px solid transparent;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .customer_container_main .box .boxLeft .item .title {
    font-size: 0.26rem;
  }
  .customer_container_main .box .boxLeft .item .desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-top: 0.12rem;
    text-align: justify;
  }
  .customer_container_main .box .boxLeft .active {
    border-color: #cf0f35;
  }
  .customer_container_main .box .boxRight {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 0.3rem;
    padding-left: 0.88rem;
    display: flex;
    align-items: center;
  }
  .customer_container_main .box .boxRight img {
    width: 100%;
  }
  .customer_container_main .box .boxRight p {
    display: none;
  }
  .customer_container_main .box .boxRight .active {
    display: block;
  }
  .customer_container_main .link {
    margin-top: 0.56rem;
  }
  .customer_container_main .link .button1 {
    margin-right: 0.16rem;
  }
  .argument_container .section {
    display: none;
  }
  .argument_container .section.active {
    display: block;
  }
  .argument_container .box {
    margin: 1rem 0 0;
  }
  .argument_container .box .item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
    cursor: default;
  }
  .argument_container .box .item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #f5f8fd;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
  }
  .argument_container .box .item .mian {
    padding: 0.6rem 0.4rem 0.5rem;
    position: relative;
    z-index: 2;
  }
  .argument_container .box .item .mian .content0 img {
    height: 0.65rem;
  }
  .argument_container .box .item .mian .content1 {
    font-size: 0.26rem;
    color: #333;
    margin-top: 0.32rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .argument_container .box .item .mian .content2 {
    margin-top: 0.32rem;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    height: 0.85rem;
  }
  .argument_container .box .item:hover {
    z-index: 1;
  }
  .argument_container .box .item:hover::after {
    border-bottom: 2px solid #cf0f35;
    -webkit-transform: scaleY(1.12);
    -ms-transform: scaleY(1.12);
    transform: scaleY(1.12);
  }
  .argument_container .box .item:hover .mian .content1 {
    color: #cf0f35;
  }
  .argument_container .link {
    margin-top: 0.8rem;
  }
  .argument_container .link .button1 {
    margin-right: 0.16rem;
  }
  .client_container {
    background: #f0f3f7;
  }
  .client_container .box {
    position: relative;
  }
  .client_container .box .banner .swiper-slide {
    width: 12.16rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    min-height: 2rem;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    border: 1px solid #fff;
    -webkit-filter: opacity(0.6);
    filter: opacity(0.6);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .client_container .box .banner .swiper-slide .item .boxLeft {
    padding: 0.98rem 0.75rem 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .client_container .box .banner .swiper-slide .item .boxLeft .content0 {
    font-size: 0.36rem;
  }
  .client_container .box .banner .swiper-slide .item .boxLeft .content1 {
    font-size: 16px;
    color: #555;
    margin-top: 0.18rem;
  }
  .client_container .box .banner .swiper-slide .item .boxLeft .content2 {
    margin-top: 0.16rem;
  }
  .client_container .box .banner .swiper-slide .item .boxLeft .content2 div {
    margin-right: 0.12rem;
    background: #fff;
    line-height: 0.48rem;
    padding: 0 12px 0 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0px 0px 12px #f5f8fd;
    box-shadow: 0px 0px 12px #f5f8fd;
    -webkit-transform: skew(-15deg);
    -ms-transform: skew(-15deg);
    transform: skew(-15deg);
    border-radius: 5px;
  }
  .client_container .box .banner .swiper-slide .item .boxLeft .content2 div span {
    width: 3px;
    background: #cf0f35;
    height: 18px;
    margin-right: 0.12rem;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .client_container .box .banner .swiper-slide .item .boxLeft .content2 div p {
    font-size: 16px;
    -webkit-transform: skew(15deg);
    -ms-transform: skew(15deg);
    transform: skew(15deg);
  }
  .client_container .box .banner .swiper-slide .item .boxLeft .content3 {
    margin-top: 0.25rem;
    font-size: 16px;
    color: #555;
    line-height: 2;
    height: 0.96rem;
  }
  .client_container .box .banner .swiper-slide .item .boxRight {
    width: 4.5rem;
    padding: 0.5rem 0.45rem 0.5rem 0;
  }
  .client_container .box .banner .swiper-slide .item .boxRight p {
    border-radius: 5px;
    overflow: hidden;
  }
  .client_container .box .banner .swiper-slide .item .boxRight img {
    width: 100%;
  }
  .client_container .box .banner .swiper-slide-active {
    -webkit-filter: opacity(1);
    filter: opacity(1);
  }
  .client_container .box ._button p {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
  }
  .client_container .box ._button p i {
    font-weight: bold;
    color: #999;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .client_container .box ._button p:hover {
    background: #cf0f35;
  }
  .client_container .box ._button p:hover i {
    color: #fff;
  }
  .client_container .box ._button .prev {
    left: 0.5rem;
  }
  .client_container .box ._button .next {
    right: 0.5rem;
  }
  .client_container .link {
    margin-top: 0.45rem;
  }
  .client_container .link .button1 {
    margin-right: 0.16rem;
  }
  .client_container .box1 {
    --height: 1.14rem;
    /*display: grid;*/
    /*    gap: .2rem;*/
  }
  .client_container .box1 .banner {
    /*height: calc(var(--height) * 2 - 0.2rem);*/
    position: relative;
  }
  .client_container .box1::before {
    z-index: 2;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 20vw;
    background: -webkit-gradient(linear, right top, left top, from(#ffffff), color-stop(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(right, #ffffff, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  }
  .client_container .box1::after {
    z-index: 2;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20vw;
    background: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(rgba(255, 255, 255, 0.5)), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(left, #ffffff, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  }
  .client_container .box1 .banner .swiper {
    /*height: calc(var(--height) * 2);*/
  }
  .client_container .box1 .banner{
      margin-bottom: .2rem;
  }.client_container .box1 .banner:last-child{
      margin-bottom: 0;
  }
  .client_container .box1 .banner .swiper .swiper-slide {
    padding: 0 0.1rem ;
    height: var(--height);
  }
  .client_container .box1 .banner .swiper .swiper-slide .item {
    text-align: center;
    border: 1px solid #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    -webkit-box-shadow: 0px 0px 12px #f5f8fd;
    box-shadow: 0px 0px 12px #f5f8fd;
    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;
    border-radius: 6px;
  }
  .client_container .box1 .banner .swiper .swiper-slide .item img {
    margin: auto;
    max-width: 80%;
    max-height: 80%;
  }
  .ContractService .box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.36rem;
  }
  .ContractService .box .item {
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
    border: 1px solid #fff;
    padding: 0.55rem;
    cursor: default;
  }
  .ContractService .box .item .content0 img {
    height: 0.7rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .ContractService .box .item .content1 {
    font-size: 0.32rem;
    margin-top: 0.46rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .ContractService .box .item .content2 {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    height: 1.23rem;
    margin-top: 0.2rem;
  }
  .ContractService .box .item:hover {
    -webkit-box-shadow: 0px 0px 20px #e5e5e5;
    box-shadow: 0px 0px 20px #e5e5e5;
  }
  .ContractService .box .item:hover .content0 img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .ContractService .box .item:hover .content1 {
    color: #cf0f35;
  }
  .ContractService .link {
    margin-top: 0.54rem;
  }
  .ContractService .link .button1 {
    margin-right: 0.16rem;
  }
  .problem_container {
    background: url(../images/img22.png) no-repeat 50% 50%;
    background-size: 100% 100%;
  }
  .problem_container .section {
    display: none;
  }
  
  .problem_container .div0{
      position: relative;
      z-index: 2;
  }
  .problem_container .section.active {
    display: block;
  }
  .problem_container .box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem 0.36rem;
  }
  .problem_container .box .item {
    position: relative;
  }
  .problem_container .box .item .top {
    font-size: 0.24rem;
    line-height: 0.8rem;
    padding: 0 0.55rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
    border: 1px solid #fff;
    position: relative;
  }
  .problem_container .box .item .top > div {
    padding-left: 0.5rem;
    position: relative;
  }
  .problem_container .box .item .top p {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 0.24rem;
    font-family: 'gilroy_regular';
    width: 0.32rem;
    height: 0.32rem;
    line-height: 0.32rem;
    border-radius: 5px;
    background: #cf0f35;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
  }
  .problem_container .box .item .bot {
    position: absolute;
    background: #fbfcfe;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    width: 100%;
    left: 0;
    z-index: 2;
    padding: 0.2rem 0.55rem;
    -webkit-box-shadow: 0px 5px 20px #f1f1f1;
    box-shadow: 0px 5px 20px #f1f1f1;
    display: none;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
  }
  .problem_container .box .item .bot > div {
    padding-left: 0.5rem;
    position: relative;
  }
  .problem_container .box .item .bot p {
    position: absolute;
    left: 0;
    top: 0%;
    font-size: 0.24rem;
    font-family: 'gilroy_regular';
    width: 0.32rem;
    height: 0.32rem;
    line-height: 0.32rem;
    border-radius: 5px;
    background: #eeeeee;
    text-align: center;
    text-transform: uppercase;
    color: #111;
  }
  .problem_container .box .item:hover .top {
    border-radius: 5px 5px 0 0;
  }
  .problem_container .box .item:hover .bot {
    display: block;
    border-radius: 0px 0px 5px 5px;
  }
  .problem_container .link {
    margin-top: 0.56rem;
  }
  .problem_container .link .button1 {
    margin-right: 0.16rem;
  }
  .feature_container .box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
  }
  .feature_container .box .item {
    text-align: center;
    border: 1px solid #e8e8e8;
    padding: 0.54rem 0;
    border-radius: 5px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .feature_container .box .item .content0 {
    height: 0.79rem;
    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;
  }
  .feature_container .box .item .content0 img {
    max-height: 100%;
    margin: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .feature_container .box .item .content1 {
    font-size: 0.2rem;
    margin: 0.28rem 0 0.12rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .feature_container .box .item .content2 {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
  }
  .feature_container .box .item:hover {
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    border-color: transparent;
  }
  .feature_container .box .item:hover .content0 img {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  .feature_container .box .item:hover .content1 {
    color: #cf0f35;
  }
  .news_container {
    background: #f0f3f7;
  }
  .news_container .toggle {
    border-bottom: 1px solid #d8dbde;
  }
  .news_container .toggle ul li {
    font-size: 0.2rem;
    color: #555;
    margin: 0 0.72rem;
    position: relative;
    cursor: pointer;
    padding: 0 0.2rem 0.3rem;
  }
  .news_container .toggle ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 2px;
    background: #cf0f35;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .news_container .toggle ul li:hover::after {
    width: 100%;
  }
  .news_container .toggle ul .active {
    color: #cf0f35;
  }
  .news_container .toggle ul .active::after {
    width: 100%;
  }
  .news_container .box {
    margin-top: 0.6rem;
    display: none;
  }
  .news_container .box.active {
    display: block;
  }
  .news_container .box .list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .news_container .box .list a {
    display: block;
  }
  .news_container .box .list a .content0 {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
  }
  .news_container .box .list a .content0 img {
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .news_container .box .list a .content0 .position {
    position: absolute;
    left: 0.2rem;
    bottom: 0.2rem;
    font-size: 16px;
    color: #fff;
    min-width: 1.1rem;
    padding: 0 0.2rem;
    line-height: 30px;
    background: rgba(0, 0, 0, 0.33);
    text-align: center;
    border-radius: 5px;
  }
  .news_container .box .list a .content1 {
    font-size: 0.2rem;
    color: #333;
    line-height: 0.3rem;
    height: 0.6rem;
    margin-top: 0.32rem;
  }
  .news_container .box .list a .content2 {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-top: 0.22rem;
    height: 0.58rem;
  }
  .news_container .box .list a .content3 {
    font-size: 16px;
    color: #d1193e;
    margin-top: 0.3rem;
  }
  .news_container .box .list .item_list ul {
    margin-top: -0.24rem;
  }
  .news_container .box .list .item_list ul li {
    border-bottom: 1px solid #e1e3e7;
  }
  .news_container .box .list .item_list ul li:last-child {
    border: 0;
  }
  .news_container .box .list .item_list ul li a {
    padding: 0.24rem 0;
    display: block;
  }
  .news_container .box .list .item_list ul li a div {
    font-size: 0.2rem;
    color: #333;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .news_container .box .list .item_list ul li a p {
    font-size: 0.16rem;
    font-family: 'gilroy_regular';
    color: #888;
    margin-top: 5px;
  }
  .news_container .box .list .item_list ul li a:hover div {
    color: #cf0f35;
  }
  .linear_gradient {
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
    border: 1px solid #fff;
  }
  .PainPoint .box .list1 {
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
    border: 1px solid #fff;
    padding: 1rem 0.9rem;
    position: relative;
    overflow: hidden;
  }
  .PainPoint .box .list1 .main .content0 {
    font-size: 0.32rem;
  }
  .PainPoint .box .list1 .main .content0 img {
    margin-right: 0.18rem;
    vertical-align: sub;
    width: 0.35rem;
  }
  .PainPoint .box .list1 .main .content1 {
    margin-top: 0.3rem;
    width: 74%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.24rem;
    font-size: 16px;
    color: #555;
  }
  .PainPoint .box .list1 .main .content1 font {
    color: #cf0f35;
    display: inline-block;
    margin-right: 0.15rem;
  }
  .PainPoint .box .list1 .main .content1 p {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: default;
  }
  .PainPoint .box .list1 .main .content1 p:hover {
    color: #cf0f35;
  }
  .PainPoint .box .list1 .img {
    position: absolute;
    right: 0.9rem;
    bottom: -1.1rem;
    width: 4.26rem;
  }
  .PainPoint .box .list1 .img img {
    width: 100%;
  }
  .PainPoint .box .list2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .PainPoint .box .list2 .item {
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
    border: 1px solid #fff;
    padding: 0.8rem 0.6rem;
    position: relative;
    overflow: hidden;
  }
  .PainPoint .box .list2 .item .main {
    position: relative;
    z-index: 1;
  }
  .PainPoint .box .list2 .item .main .content0 {
    font-size: 0.32rem;
  }
  .PainPoint .box .list2 .item .main .content0 img {
    margin-right: 0.18rem;
    vertical-align: sub;
    width: 0.35rem;
  }
  .PainPoint .box .list2 .item .main .content1 {
    margin-top: 0.3rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.24rem;
    font-size: 16px;
    color: #555;
  }
  .PainPoint .box .list2 .item .main .content1 font {
    color: #cf0f35;
    display: inline-block;
    margin-right: 0.15rem;
  }
  .PainPoint .box .list2 .item .main .content1 p {
    cursor: default;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .PainPoint .box .list2 .item .main .content1 p:hover {
    color: #cf0f35;
  }
  .PainPoint .box .list2 .item .img {
    position: absolute;
    right: 0rem;
    bottom: -1.1rem;
    width: 4.26rem;
  }
  .PainPoint .box .list2 .item .img img {
    width: 100%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.2;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .PainPoint .box .list2 .item:hover .img img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1;
  }
  .business_container {
    background: #f5f7fa;
  }
  .business_container .toggle {
    border-bottom: 1px solid #d8dbde;
  }
  .business_container .toggle ul li {
    font-size: 0.2rem;
    color: #555;
    margin: 0 0.6rem;
    position: relative;
    padding-bottom: 0.3rem;
    cursor: pointer;
  }
  .business_container .toggle ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 2px;
    background: #cf0f35;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .business_container .toggle ul li:hover::after {
    width: 100%;
  }
  .business_container .toggle ul .active {
    color: #cf0f35;
  }
  .business_container .toggle ul .active::after {
    width: 100%;
  }
  .business_container .box {
    margin-top: 0.46rem;
    padding-bottom: 0.8rem;
  }
  .business_container .box .list {
    display: none;
  }
  .business_container .box .list.active {
    display: block;
  }
  .business_container .box .list .boxLeft {
    width: 5.75rem;
    padding-right: 0.5rem;
    padding-top: 0.6rem;
  }
  .business_container .box .list .boxLeft .content0 {
    font-size: 0.36rem;
  }
  .business_container .box .list .boxLeft .content1 {
    font-size: 16px;
    margin-top: 0.12rem;
  }
  .business_container .box .list .boxLeft .content1 font {
    display: inline-block;
    margin: 0 4px;
  }
  .business_container .box .list .boxLeft .content2 {
    margin-top: 0.32rem;
    font-size: 16px;
    color: #555;
    display: grid;
    gap: 0.12rem;
  }
  .business_container .box .list .boxLeft .content2 font {
    color: #cf0f35;
    display: inline-block;
    margin-right: 0.15rem;
  }
  .business_container .box .list .boxLeft .content2 p {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: default;
    position: relative;
    padding-left: 0.25rem;
  }
  .business_container .box .list .boxLeft .content2 p font{
      position: absolute;
      top: 0;
      left: 0;
      display: inline-block;
  }
  
  
  
  .business_container .box .list .boxLeft .content2 p:hover {
    color: #cf0f35;
  }
  .business_container .box .list .boxLeft .content3 {
    margin-top: 0.52rem;
  }
  .business_container .box .list .boxRight {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  
  
  .business_container .box .list .boxRight .lpk_phone{
      margin-top: 0.4rem;
  }
  .business_container .box .list .boxRight img {
    width: 100%;
  }
  .banner_container {
    position: relative;
  }
  .banner_container .img img {
    width: 100%;
  }
  .banner_container .position {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 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;
  }
  .banner_container .position .box {
    margin: auto;
    color: #fff;
    text-align: center;
  }
  .banner_container .position .box h5 {
    font-size: 0.52rem;
  }
  .banner_container .position .box p {
    font-size: 0.2rem;
    margin-top: 0.24rem;
  }
  .Solution_Container:nth-child(even) {
    background: #f5f7fa;
  }
  .Solution_Container .box .list .item .boxLeft {
    width: 3.9rem;
    padding-right: 0.2rem;
  }
  .Solution_Container .box .list .item .boxLeft .content_title {
    font-size: 0.36rem;
    margin-bottom: 0.12rem;
  }
  .Solution_Container .box .list .item .boxLeft .content0 {
    font-size: 0.24rem;
  }
  .Solution_Container .box .list .item .boxLeft .content1 ul {
    margin-top: 0.18rem;
    height: 1.28rem;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .Solution_Container .box .list .item .boxLeft .content1 ul li {
    line-height: 2;
    position: relative;
    padding-left: 0.14rem;
  }
  .Solution_Container .box .list .item .boxLeft .content1 ul li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #cf0f35;
    border-radius: 50%;
  }
  .Solution_Container .box .list .item .boxLeft .content1 ul li a {
    font-size: 0.16rem;
    color: #333;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .Solution_Container .box .list .item .boxLeft .content1 ul li a:hover {
    color: #cf0f35;
  }
  .Solution_Container .box .list .item .boxLeft .content1 ul::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }
  .Solution_Container .box .list .item .boxLeft .content1 ul::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: #cf0f35;
  }
  .Solution_Container .box .list .item .boxLeft .content1 ul::-webkit-scrollbar-track {
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.1);
  }
  .Solution_Container .box .list .item .boxLeft .content2 {
    margin-top: 0.4rem;
  }
  .Solution_Container .box .list .item .boxLeft .content2 .ite {
    width: 1.4rem;
    margin-right: 0.48rem;
    margin-bottom: 0.36rem;
    border-right: 1px solid #ddd;
  }
  .Solution_Container .box .list .item .boxLeft .content2 .ite:nth-child(2n) {
    margin-right: 0;
    border-color: transparent;
  }
  .Solution_Container .box .list .item .boxLeft .content2 .ite .top div {
    font-size: 0.3rem;
    font-family: 'gilroy_regular';
  }
  .Solution_Container .box .list .item .boxLeft .content2 .ite .top span {
    font-size: 16px;
  }
  .Solution_Container .box .list .item .boxLeft .content2 .ite .bot {
    font-size: 0.16rem;
    margin-top: 8px;
  }
  .Solution_Container .box .list .item .boxLeft .content3 .button1 {
    margin-right: 0.16rem;
  }
  .Solution_Container .box .list .item .boxRight {
    -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;
  }
  .Solution_Container .box .list .item .boxRight img {
    width: 100%;
  }
  .solution_toggle {
    height: 0;
  }
  .solution_toggle .box {
    position: relative;
    z-index: 1;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    overflow: hidden;
  }
  .solution_toggle .box .item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background: transparent;
    background-size: 100% 100%;
    border-right: 1px solid #dadada;
  }
  .solution_toggle .box .item a {
    line-height: 1.3rem;
    padding: 0 0.76rem;
  }
  .solution_toggle .box .item .left {
    margin-right: 0.28rem;
  }
  .solution_toggle .box .item .left img {
    max-width: 0.56rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .solution_toggle .box .item .left .img2 {
    display: none;
  }
  .solution_toggle .box .item .right {
    font-size: 0.24rem;
    color: #111;
  }
  .solution_toggle .box .item:hover .left img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  .solution_toggle .box .active {
    background: url(../images/img30.jpg) no-repeat 50% 50%;
  }
  .solution_toggle .box .active .left .img1 {
    display: none;
  }
  .solution_toggle .box .active .left .img2 {
    display: inline-block;
  }
  .solution_toggle .box .active .right {
    color: #fff;
  }
  .puzzle_container {
    position: relative;
  }
  .puzzle_container .img img {
    width: 100%;
  }
  .puzzle_container .title {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    text-align: center;
  }
  .puzzle_container .box .item {
    position: absolute;
    top: 0;
    font-size: 0.22rem;
    color: #333;
    line-height: 1.6;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    border-radius: 0.3rem;
    padding: 0.1rem 0.3rem;
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    text-align: center;
  }
  .puzzle_container .box .item:hover {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  .puzzle_container .box .item1 {
    top: 37%;
    left: 15vw;
  }
  .puzzle_container .box .item2 {
    top: 37%;
    right: 15vw;
  }
  .puzzle_container .box .item3 {
    top: 57%;
    left: 7.8vw;
  }
  .puzzle_container .box .item4 {
    top: 57%;
    right: 7.8vw;
  }
  .puzzle_container .box .item5 {
    top: 77%;
    left: 15vw;
  }
  .puzzle_container .box .item6 {
    top: 77%;
    right: 15vw;
  }
  .WinCustomer .toggle {
    border-bottom: 1px solid #d8dbde;
  }
  .WinCustomer .toggle ul li {
    font-size: 0.2rem;
    color: #555;
    margin: 0 0.6rem;
    position: relative;
    padding-bottom: 0.3rem;
    cursor: pointer;
  }
  .WinCustomer .toggle ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 2px;
    background: #cf0f35;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .WinCustomer .toggle ul li:hover::after {
    width: 100%;
  }
  .WinCustomer .toggle ul .active {
    color: #cf0f35;
  }
  .WinCustomer .toggle ul .active::after {
    width: 100%;
  }
  .WinCustomer .box .list {
    display: none;
  }
  .WinCustomer .box .list.active {
    display: block;
  }
  .WinCustomer .box .list .item .boxLeft {
    width: 4.15rem;
    display: flex;
    align-items: center;
    
  }
  .WinCustomer .box .list .item .boxLeft .content0 {
    font-size: 0.36rem;
  }
  .WinCustomer .box .list .item .boxLeft .content1 {
    margin-top: 0.32rem;
  }
  .WinCustomer .box .list .item .boxLeft .content1 p {
    position: relative;
    padding-left: 0.18rem;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
  }
  .WinCustomer .box .list .item .boxLeft .content1 p::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0.12rem;
    width: 6px;
    height: 6px;
    background: #cf0f35;
    border-radius: 50%;
  }
  .WinCustomer .box .list .item .boxLeft .home_link {
    margin-top: 0.38rem;
  }
  .WinCustomer .box .list .item .boxRight {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 0.5rem;
  }
  .WinCustomer .box .list .item .boxRight img {
    width: 100%;
  }
  .SchemeValue .box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
  }
  .SchemeValue .box .item {
    border: 2px solid #f5f8fd;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
    padding: 0.8rem 0.56rem 0.7rem;
  }
  .SchemeValue .box .item .content0 {
    font-size: 0.32rem;
  }
  .SchemeValue .box .item .content1 {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-top: 0.24rem;
    height: 1.3rem;
  }
  .SchemeValue .box .item .content2 {
    margin-top: 0.4rem;
  }
  .SchemeValue .box .item .content2 .ite {
    margin-right: 0.6rem;
  }
  .SchemeValue .box .item .content2 .ite:last-child {
    margin-right: 0;
  }
  .SchemeValue .box .item .content2 .ite .top {
    font-size: 0.3rem;
    font-family: 'gilroy_regular';
  }
  .SchemeValue .box .item .content2 .ite .bot {
    font-size: 16px;
    margin-top: 8px;
  }
  .SchemeValue .link .button1 {
    margin-right: 0.16rem;
  }
  .ProductFunction {
    background: #f0f3f7;
  }
  .ProductFunction .box .banner {
    --width: 1.5rem;
    position: relative;
  }
  .ProductFunction .box .banner .width {
    width: var(--width);
  }
  .ProductFunction .box .banner .swiper-slide {
    background: #f8fafb;
    border-radius: 5px;
    text-align: center;
    padding: 0.3rem 0 0.4rem;
    border: 2px solid #e7e9ec;
  }
  .ProductFunction .box .banner .swiper-slide figure {
    height: 0.42rem;
    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;
  }
  .ProductFunction .box .banner .swiper-slide figure img {
    max-height: 100%;
    margin: auto;
  }
  .ProductFunction .box .banner .swiper-slide figcaption {
    font-size: 16px;
    color: #333;
    margin-top: 12px;
  }
  .ProductFunction ._button p {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
    -webkit-box-shadow: 0px 8px 12px #f1f1f1;
    box-shadow: 0px 8px 12px #f1f1f1;
  }
  .ProductFunction ._button p i {
    font-weight: bold;
    color: #999;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .ProductFunction ._button p:hover {
    background: #cf0f35;
  }
  .ProductFunction ._button p:hover i {
    color: #fff;
  }
  .ProductFunction ._button .prev {
    left: 0.5rem;
  }
  .ProductFunction ._button .next {
    right: 0.5rem;
  }
  .CaseNavigation {
    height: 0;
  }
  .CaseNavigation .main {
    position: relative;
    z-index: 1;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .CaseNavigation .main .box {
    background: #fff;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    border-radius: 5px;
    padding: 12px 0;
    -webkit-box-shadow: 0px 5px 20px #f9fafb;
    box-shadow: 0px 5px 20px #f9fafb;
  }
  .CaseNavigation .main .box .item {
    text-align: center;
  }
  .CaseNavigation .main .box .item a {
    font-size: 16px;
    color: #555;
    display: inline-block;
    line-height: 0.7rem;
    border-bottom: 3px solid transparent;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .CaseNavigation .main .box .item a:hover {
    color: #cf0f35;
  }
  .CaseNavigation .main .box .item.active a {
    border-color: #cf0f35;
    color: #cf0f35;
  }
  .equipment {
    margin-top: 1.78rem;
  }
  .equipment .box_ {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.48rem;
  }
  .equipment .box_ .item {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
    overflow: hidden;
  }
  .equipment .box_ .item a {
    display: block;
  }
  .equipment .box_ .item a .boxTop {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
  }
  .equipment .box_ .item a .boxTop img {
    width: 100%;
  }
  .equipment .box_ .item a .boxTop .position {
    opacity: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/img34.png) no-repeat 50% 50%;
    background-size: 100% 100%;
    padding: 0.64rem 0.52rem;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .equipment .box_ .item a .boxTop .position .content0 {
    font-size: 0.24rem;
    color: #fff;
  }
  .equipment .box_ .item a .boxTop .position .content1 {
    margin-top: 0.26rem;
    display: grid;
    gap: 0.1rem;
    height: 1.26rem;
        overflow: auto;
      overflow-x: hidden;
      overflow-y: auto;
    
  }
  
  .equipment .box_ .item a .boxTop .position .content1::-webkit-scrollbar {
      width: 2px;
      height: 2px;
  }
  
  .equipment .box_ .item a .boxTop .position .content1::-webkit-scrollbar-thumb {
      border-radius: 2px;
      background: rgba(255, 255, 255, 0.7);
  }
  
  .equipment .box_ .item a .boxTop .position .content1::-webkit-scrollbar-track {
      border-radius: 2px;
      background: rgba(255, 255, 255, 0.3);
  }
  
  
  
  
  
  
  
  .equipment .box_ .item a .boxTop .position .content1 div span {
    width: 22px;
    height: 22px;
    line-height: 22px;
    display: inline-block;
    background: #fff;
    border-radius: 50%;
    vertical-align: bottom;
    margin-right: 0.16rem;
    font-size: 13px;
    font-family: 'gilroy_regular';
    color: #cf0f35;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
  }
  .equipment .box_ .item a .boxTop .position .content1 div{
      padding-left: 32px;
      position: relative;
  }
  .equipment .box_ .item a .boxTop .position .content1 div p {
    display: inline-block;
    font-size: 16px;
    color: #fff;
  }
  .equipment .box_ .item a .boxBot {
    position: relative;
  }
  .equipment .box_ .item a .boxBot .content0 {
    font-size: 0.2rem;
    color: #111;
  }
  .equipment .box_ .item a .boxBot .content1 {
    margin-top: 0.16rem;
    font-size: 16px;
    color: #666;
    line-height: 0.25rem;
    height: 0.5rem;
  }
  .equipment .box_ .item a .boxBot .top {
    padding: 0.36rem 0 0.22rem;
  }
  .equipment .box_ .item a .boxBot .top .content2 {
    margin-top: 0.36rem;
  }
  .equipment .box_ .item a .boxBot .top .content2 .left {
    font-size: 16px;
    color: #333;
    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;
  }
  .equipment .box_ .item a .boxBot .top .content2 .left p {
    width: 1.18rem;
    line-height: 0.38rem;
    border-radius: 5px;
    border: 1px solid #eeeeee;
    text-align: center;
  }
  .equipment .box_ .item a .boxBot .top .content2 .right {
    width: 1.78rem;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #eeeeee;
    padding: 0.1rem 0;
  }
  .equipment .box_ .item a .boxBot .top .content2 .right img {
    height: 0.44rem;
  }
  .equipment .box_ .item a .boxBot .bot {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 0.36rem 0.52rem 0;
    opacity: 0;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .equipment .box_ .item a .boxBot .bot .content2 {
    margin-top: 0.48rem;
    font-size: 16px;
    color: #cf0f35;
    text-align: right;
  }
  .equipment .box_ .item a .boxBot .bot .content2 span {
    margin-right: 5px;
    display: inline-block;
  }
  .equipment .box_ .item:hover {
    -webkit-box-shadow: 0px 10px 16px #f5f5f5;
    box-shadow: 0px 10px 16px #f5f5f5;
  }
  .equipment .box_ .item:hover a .boxTop .position {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  .equipment .box_ .item:hover a .boxBot .bot {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  .inner_page .box {
    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;
    width: 100%;
  }
  .inner_page .box .button p a {
    width: 40px;
    height: 40px;
    font-size: 16px;
    color: #666;
    line-height: 40px;
    border: 1px solid #ddd;
    display: block;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
    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;
  }
  .inner_page .box .button p a i {
    font-weight: bold;
  }
  .inner_page .box .button p a:hover {
    background: #cf0f35;
    color: #fff;
    border: 1px solid #cf0f35;
  }
  .inner_page .box .button p a:hover svg path {
    fill: #fff;
  }
  .inner_page .box .button.next p a svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .inner_page .box .page {
    margin: 0 10px;
    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;
  }
  .inner_page .box .page a {
    font-size: 16px;
    line-height: 40px;
    border: 1px solid #ddd;
    width: 40px;
    display: block;
    text-align: center;
    margin: 0 6px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
    color: #000;
  }
  .inner_page .box .page a:hover {
    background: #cf0f35;
    color: #fff;
    border: 1px solid #cf0f35;
  }
  .inner_page .box .page span {
    font-size: 16px;
    font-family: 'gilroy_bold';
    line-height: 40px;
    border: 1px solid transparent;
    width: 40px;
    display: block;
    text-align: center;
    margin: 0 6px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: default;
  }
  .inner_page .box .page .active {
    background: #cf0f35;
    color: #fff;
    border: 1px solid #cf0f35;
  }
  .p58 {
    padding-top: 0.4rem;
  }
  .mbx {
    font-size: 16px;
  }
  .mbx img {
    margin-right: 5px;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  .mbx a {
    color: #555;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .mbx a:hover {
    color: #cf0f35;
  }
  .CaseDetails .box .boxLeft {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 1rem;
    border-right: 1px solid #eee;
  }
  .CaseDetails .box .boxLeft .content1 {
    font-size: 0.36rem;
    margin-top: 0.52rem;
  }
  .CaseDetails .box .boxLeft .content2 {
    margin-top: 0.5rem;
  }
  .CaseDetails .box .boxLeft .content2 h5 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .CaseDetails .box .boxLeft .content2 h5 .left {
    font-family: 'gilroy_bold';
    font-size: 0.54rem;
    color: #cf0f35;
    line-height: 1;
    margin-right: 0.18rem;
    height: 0.48rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 55%, 70% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 55%, 70% 100%, 0% 100%);
  }
  .CaseDetails .box .boxLeft .content2 h5 .right {
    font-size: 0.36rem;
    color: #111;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .CaseDetails .box .boxLeft .content3 {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-top: 0.28rem;
  }
  .CaseDetails .box .boxLeft .content3 img {
    margin: auto;
    display: block;
  }
  .CaseDetails .box .boxLeft .content4 {
    font-size: 0.24rem;
    margin-top: 0.1rem;
  }
  .CaseDetails .box .boxLeft .link {
    margin-top: 0.48rem;
  }
  .CaseDetails .box .boxRight {
    width: 5.1rem;
    padding-left: 1rem;
  }
  .CaseDetails .box .boxRight section {
    position: -webkit-sticky;
    position: sticky;
    top: 1rem;
  }
  .CaseDetails .box .boxRight h5 {
    font-size: 0.24rem;
  }
  .CaseDetails .box .boxRight .list {
    margin-top: 0.36rem;
    display: grid;
    gap: 0.32rem;
  }
  .CaseDetails .box .boxRight .list .item a {
    display: block;
  }
  .CaseDetails .box .boxRight .list .item a figure {
    overflow: hidden;
    border-radius: 5px;
  }
  .CaseDetails .box .boxRight .list .item a figure img {
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .CaseDetails .box .boxRight .list .item a figcaption {
    font-size: 0.2rem;
    margin-top: 0.16rem;
    color: #111;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .CaseDetails .box .boxRight .list .item a p {
    margin-top: 0.16rem;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
  }
  .CaseDetails .box .boxRight .list .item a:hover figure img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .CaseDetails .box .boxRight .list .item a:hover figcaption {
    color: #cf0f35;
  }
  .UpDown {
    margin-top: 0.58rem;
    display: grid;
    gap: 12px;
  }
  .UpDown div {
    font-size: 0.16rem;
    color: #666;
    line-height: 0.5rem;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 0 0.32rem;
  }
  .UpDown div a {
    font-size: 16px;
    color: #333;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .UpDown div:hover a {
    color: #cf0f35;
  }
  .videoToggle {
    overflow: hidden;
  }
  .videoToggle .toggle {
    border-bottom: 1px solid #d8dbde;
  }
  .videoToggle .toggle ul li {
    font-size: 0.2rem;
    color: #555;
    margin: 0 0.36rem;
    position: relative;
    line-height: 1rem;
    cursor: pointer;
  }
  .videoToggle .toggle ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 2px;
    background: #cf0f35;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .videoToggle .toggle ul li:hover::after {
    width: 100%;
  }
  .videoToggle .toggle ul .active {
    color: #cf0f35;
  }
  .videoToggle .toggle ul .active::after {
    width: 100%;
  }
  .VideoList .box_ .boxLeft {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 1rem;
    border-right: 1px solid #eee;
  }
  .VideoList .box_ .boxLeft .HomeTiele h1,
  .VideoList .box_ .boxLeft .HomeTiele .h1 {
    text-align: left;
  }
  .VideoList .box_ .boxLeft .list {
    margin-top: 0.56rem;
    display: grid;
    gap: 0.4rem;
  }
  .VideoList .box_ .boxLeft .list .item a {
    background: #f5f7fa;
    border-radius: 5px;
  }
  .VideoList .box_ .boxLeft .list .item a .left {
    width: 5.4rem;
    overflow: hidden;
    border-radius: 5px;
  }
  .VideoList .box_ .boxLeft .list .item a .left img {
    width: 100%;
  }
  .VideoList .box_ .boxLeft .list .item a .right {
    -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;
    padding: 0 0.68rem;
  }
  .VideoList .box_ .boxLeft .list .item a .right .main .title {
    font-size: 0.2rem;
    color: #333;
  }
  .VideoList .box_ .boxLeft .list .item a .right .main .desc {
    margin-top: 0.26rem;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
  }
  .VideoList .box_ .boxLeft .list .item a .right .main .link {
    font-size: 16px;
    color: #cf0f35;
    margin-top: 0.6rem;
  }
  .VideoList .box_ .boxLeft .page_box {
    margin-top: 0.58rem;
  }
  .VideoList .box_ .boxRight {
    width: 5.1rem;
    padding-left: 1rem;
  }
  .VideoList .box_ .boxRight .list_box {
    margin-bottom: 0.4rem;
  }
  .VideoList .box_ .boxRight .list_box:last-child {
    margin-bottom: 0;
  }
  .VideoList .box_ .boxRight .list_box h5 {
    font-size: 0.24rem;
  }
  .VideoList .box_ .boxRight .list_box .list {
    margin-top: 0.36rem;
    display: grid;
    gap: 0.4rem;
  }
  .VideoList .box_ .boxRight .list_box .list a {
    display: block;
  }
  .VideoList .box_ .boxRight .list_box .list a figure {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
  }
  .VideoList .box_ .boxRight .list_box .list a figure img {
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .VideoList .box_ .boxRight .list_box .list a figure p {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 1.56rem;
    line-height: 36px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.33);
  }
  .VideoList .box_ .boxRight .list_box .list a .time {
    font-size: 0.16rem;
    color: #666;
    margin-top: 0.15rem;
  }
  .VideoList .box_ .boxRight .list_box .list a figcaption {
    font-size: 0.2rem;
    color: #333;
    margin-top: 0.14rem;
    line-height: 1.6;
  }
  .VideoList .box_ .boxRight .list_box .list a:hover figure img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .VideoList .box_ .boxRight .list_box .list a:hover figcaption {
    color: #cf0f35;
  }
  .VideoInfoContainer {
    margin-top: 1.56rem;
  }
  .VideoInfoContainer .box .boxLeft {
    width: 4.95rem;
    padding-right: 0.9rem;
  }
  .VideoInfoContainer .box .boxLeft h5 {
    font-size: 0.24rem;
  }
  .VideoInfoContainer .box .boxLeft .list {
    display: grid;
    gap: 0.34rem;
    margin-top: 0.3rem;
  }
  .VideoInfoContainer .box .boxLeft .list a {
    display: block;
  }
  .VideoInfoContainer .box .boxLeft .list a figure {
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.26rem;
  }
  .VideoInfoContainer .box .boxLeft .list a figure img {
    width: 100%;
  }
  .VideoInfoContainer .box .boxLeft .list a figcaption {
    font-size: 0.2rem;
    color: #333;
    line-height: 1.6;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .VideoInfoContainer .box .boxLeft .list a:hover figcaption {
    color: #cf0f35;
  }
  .VideoInfoContainer .box .boxRight {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 0.9rem;
    border-left: 1px solid #eee;
  }
  .VideoInfoContainer .box .boxRight .content1 {
    font-size: 0.36rem;
    margin-top: 0.4rem;
  }
  .VideoInfoContainer .box .boxRight .content2 {
    font-family: 'gilroy_regular';
    font-size: 16px;
    color: #555;
    margin-top: 0.15rem;
  }
  .VideoInfoContainer .box .boxRight .content3 {
    margin-top: 0.34rem;
    padding-top: 0.34rem;
    border-top: 1px solid #eee;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
  }
  .VideoInfoContainer .box .boxRight .content4 {
    margin-top: 0.34rem;
  }
  .VideoInfoContainer .box .boxRight .content4 .video {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
  }
  .VideoInfoContainer .box .boxRight .content4 .video video {
    width: 100%;
    height: 5.9rem;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .VideoInfoContainer .box .boxRight .content4 .video .position {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 1;
  }
  .VideoInfoContainer .box .boxRight .content4 .video .position img {
    width: 1.15rem;
    cursor: pointer;
  }
  .VideoInfoContainer .box .boxRight .content4 .video .position.active {
    opacity: 0;
  }
  .VideoInfoContainer .box .boxRight .link {
    margin-top: 0.48rem;
  }
  .login_layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.33);
    z-index: 11;
    display: none;
  }
  .login_layer .box {
    width: min(7rem, 80vw);
    background: #fff;
    min-height: 4rem;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 5px;
    padding: 0.64rem 0.9rem;
  }
  .login_layer .box .close {
    position: absolute;
    top: 0.3rem;
    right: 0.3rem;
  }
  .login_layer .box .close i {
    font-size: 0.3rem;
    font-weight: bold;
    color: #666;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
    display: inline-block;
  }
  .login_layer .box .close:hover i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    color: #cf0f35;
  }
  .login_layer .box h5 {
    font-size: 0.32rem;
    margin-bottom: 0.28rem;
  }
  .login_layer .box .item {
    margin-bottom: 0.2rem;
    position: relative;
  }
  .login_layer .box .item input[type='text'] {
    display: block;
    width: 100%;
    height: 48px;
    border: 1px solid #eee;
    padding: 0 0.3rem;
    font-size: 16px;
    border-radius: 5px;
    color: #373737;
  }
  .login_layer .box .item input[type='text']::-webkit-input-placeholder {
    color: #373737;
  }
  .login_layer .box .item input[type='text']::-moz-placeholder {
    color: #373737;
  }
  .login_layer .box .item input[type='text']:-ms-input-placeholder {
    color: #373737;
  }
  .login_layer .box .item input[type='text']::-ms-input-placeholder {
    color: #373737;
  }
  .login_layer .box .item input[type='text']::placeholder {
    color: #373737;
  }
  .login_layer .box .item .positon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .login_layer .box .item .positon input {
    font-size: 16px;
    height: 48px;
    background: none;
    border: 0;
    padding: 0 0.28rem;
    color: #373737;
    cursor: pointer;
  }
  .login_layer .box .item1 input {
    background: #cf0f35;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    border: 0;
    text-align: center;
    height: 48px;
    display: block;
    width: 100%;
    cursor: pointer;
  }
  .about_container .box .boxLeft {
    width: 6.7rem;
  }
  .about_container .box .boxLeft p {
    border-radius: 5px;
    overflow: hidden;
  }
  .about_container .box .boxLeft img {
    width: 100%;
  }
  .about_container .box .boxRight {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-left: 0.86rem;
  }
  .about_container .box .boxRight .HomeTiele {
    text-align: left;
  }
  .about_container .box .boxRight .content1 {
    margin-top: 0.48rem;
    font-size: 16px;
    color: #555;
    text-align: justify;
    line-height: 1.8;
  }
  .about_container .box .boxRight .content2 {
    margin-top: 0.64rem;
  }
  .about_container .box .boxRight .content2 .item:not(:last-child) {
    width: 2.38rem;
  }
  .about_container .box .boxRight .content2 .item div {
    font-family: 'gilroy_regular';
    font-size: 0.5rem;
    line-height: 1;
  }
  .about_container .box .boxRight .content2 .item p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
  }
  .certificate_container {
    position: relative;
  }
  .certificate_container .img img {
    width: 100%;
  }
  .certificate_container .position {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    padding-top: 1.78rem;
  }
  .certificate_container .position .HomeTiele {
    text-align: left;
  }
  .certificate_container .position .box .desc {
    margin-top: 0.24rem;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    width: min(8rem, 100%);
    text-align: justify;
  }
  .certificate_container .logo_posi {
    position: absolute;
    overflow: hidden;
    bottom: 0;
    left: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.11);
    width: 100%;
    padding: 0.5rem 0;
    border-top: 1px solid #fff;
  }
  .certificate_container .logo_posi .banner .item {
    text-align: center;
  }
  .certificate_container .logo_posi .banner .item .top img {
    width: 0.76rem;
  }
  .certificate_container .logo_posi .banner .item .bot {
    font-size: 0.16rem;
    color: #555;
    margin-top: 0.08rem;
  }
  .data_container {
    position: relative;
    background: url(../images/img50.png) no-repeat 50% 50%;
    background-size: 100% 100%;
    padding-bottom: 1.7rem;
  }
  .data_container .box {
    margin-top: 0.85rem;
    position: relative;
  }
  .data_container .box .img {
    text-align: center;
  }
  .data_container .box .img img {
    width: 12.8rem;
  }
  .data_container .box .position .m {
    display: grid;
    gap: 0.78rem;
  }
  .data_container .box .position .list .item .top {
    font-size: 0.5rem;
    font-family: 'gilroy_regular';
  }
  .data_container .box .position .list .item .bot {
    font-size: 16px;
    margin-top: 0.1rem;
  }
  .data_container .box .position .list .item:last-child {
    text-align: right;
  }
  .course_container .box {
    padding: 0.5rem 0 0;
    position: relative;
  }
  .course_container .box::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: #eee;
  }
  .course_container .box .list {
    display: grid;
    gap: 0.6rem;
  }
  .course_container .box .list .item {
    display: none;
  }
  .course_container .box .list .item > div {
    width: -webkit-calc(49.22%);
    width: calc(50% - 0.78rem);
  }
  .course_container .box .list .item .main {
    border: 2px solid #f5f8fd;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
    padding: 0.36rem 0.64rem;
    position: relative;
  }
  .course_container .box .list .item .main .posi {
    font-size: 0.5rem;
    font-family: 'gilroy_regular';
    line-height: 1;
    position: absolute;
    top: 0;
    left: -0.78rem;
    width: 1.68rem;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .course_container .box .list .item .main .posi span {
    display: block;
    position: absolute;
    right: -8px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1px solid #b9b9b9;
    border-radius: 50%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .course_container .box .list .item .main .posi span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    background: #b9b9b9;
    width: 12px;
    height: 12px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .course_container .box .list .item .main ul {
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .course_container .box .list .item .main ul li {
    position: relative;
    padding-left: 0.14rem;
  }
  .course_container .box .list .item .main ul li::after {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: #cf0f35;
    border-radius: 50%;
  }
  .course_container .box .list .item .main ul li a {
    font-size: 16px;
    color: #333;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    line-height: 1.9;
    cursor: default;
  }
  .course_container .box .list .item .main ul li a:hover {
    color: #cf0f35;
  }
  .course_container .box .list .item .main ul::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }
  .course_container .box .list .item .main ul::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: #cf0f35;
  }
  .course_container .box .list .item .main ul::-webkit-scrollbar-track {
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.1);
  }
  .course_container .box .list .item .main::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #cf0f35;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .course_container .box .list .item .main:hover::after {
    right: auto;
    left: 0;
    width: 100%;
  }
  .course_container .box .list .item .main:hover .posi {
    color: #cf0f35;
    font-family: 'gilroy_bold';
  }
  .course_container .box .list .item .main:hover .posi span {
    border-color: #cf0f35;
  }
  .course_container .box .list .item .main:hover .posi span::after {
    background: #cf0f35;
  }
  .course_container .box .list .item:nth-child(2n-1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: column-reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }
  .course_container .box .list .item:nth-child(2n-1) .main .posi {
    left: auto;
    right: -0.78rem;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    text-align: right;
  }
  .course_container .box .list .item:nth-child(2n-1) .main .posi span {
    right: auto;
    left: -8px;
  }
  .course_container .box svg {
    position: absolute;
    bottom: -0.3rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .course_container .link {
    margin-top: 0.8rem;
  }
  .course_container .link .home_link {
    cursor: pointer;
  }
  .CorporateCulture {
    background: url(../images/img51.png) no-repeat 50% 50%;
    background-size: 100% 100%;
  }
  .CorporateCulture .desc {
    font-size: 16px;
    color: #555;
    text-align: center;
    line-height: 1;
    padding: 0.7rem 0 1.06rem;
  }
  .CorporateCulture .box .item {
    width: 48.5%;
    position: relative;
  }
  .CorporateCulture .box .item .img {
    overflow: hidden;
  }
  .CorporateCulture .box .item .img img {
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .CorporateCulture .box .item .position {
    position: absolute;
    top: 0.64rem;
    left: 0.7rem;
  }
  .CorporateCulture .box .item .position img {
    height: 0.67rem;
  }
  .CorporateCulture .box .item .positon1 {
    position: absolute;
    bottom: 0.7rem;
    left: 0.7rem;
    color: #fff;
  }
  .CorporateCulture .box .item .positon1 h5 {
    font-size: 0.36rem;
  }
  .CorporateCulture .box .item .positon1 p {
    font-size: 0.2rem;
    margin-top: 0.11rem;
  }
  .CorporateCulture .box .item:hover .img img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .idea {
    background: url(../images/img54.png) no-repeat 50% 50%;
    background-size: 100% 100%;
  }
  .idea .box .left {
    padding-top: 1.05rem;
    width: min(6.8rem, 100%);
  }
  .idea .box .left .HomeTiele {
    text-align: left;
  }
  .idea .box .left .desc {
    font-size: 16px;
    color: #555;
    line-height: 2;
    margin-top: 0.4rem;
  }
  .idea .box .right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
  }
  .idea .box .right img {
    width: 6.5rem;
  }
  .Mission {
    background: #f5f7fa;
    padding-bottom: 0.8rem;
  }
  .Mission .box {
    margin-top: 0.4rem;
  }
  .Mission .box .banner {
    position: relative;
  }
  .Mission .box .swiper-wrapper {
    padding: 10px 0;
  }
  .Mission .box .swiper-slide {
    width: 4.2rem;
    background: #fff;
    padding: 0.4rem 0.48rem 0.7rem;
    border: 2px solid #f5f8fd;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px;
    position: relative;
  }
  .Mission .box .swiper-slide .top figure {
    border-radius: 5px;
    overflow: hidden;
  }
  .Mission .box .swiper-slide .top figure img {
    width: 100%;
  }
  .Mission .box .swiper-slide .top figcaption {
    font-size: 0.28rem;
    text-align: center;
    margin: 0.45rem 0 0.22rem;
  }
  .Mission .box .swiper-slide .top .desc {
    font-size: 16px;
    color: #555;
    line-height:0.3rem;
    text-align: justify;
    height: 0.9rem;
  }
  .Mission .box .swiper-slide .bot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #cf0f35;
    border-radius: 5px;
    padding: 0.64rem 0.38rem 0 0.48rem;
    color: #fff;
    opacity: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .Mission .box .swiper-slide .bot .name {
    font-size: 0.32rem;
    text-align: center;
  }
  .Mission .box .swiper-slide .bot .desc {
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    margin-top: 0.3rem;
    text-align: justify;
    height: 3.5rem;
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 0.1rem;
  }
  .Mission .box .swiper-slide .bot .desc::-webkit-scrollbar {
    width: 1px;
    height: 2px;
  }
  .Mission .box .swiper-slide .bot .desc::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.7);
  }
  .Mission .box .swiper-slide .bot .desc::-webkit-scrollbar-track {
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
  }
  .Mission .box .swiper-slide:hover .bot {
    opacity: 1;
  }
  .Mission ._button p {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
    -webkit-box-shadow: 0px 8px 12px #f1f1f1;
    box-shadow: 0px 8px 12px #f1f1f1;
  }
  .Mission ._button p i {
    font-weight: bold;
    color: #999;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .Mission ._button p:hover {
    background: #cf0f35;
  }
  .Mission ._button p:hover i {
    color: #fff;
  }
  .Mission ._button .prev {
    left: 0.5rem;
  }
  .Mission ._button .next {
    right: 0.5rem;
  }
  .TeamStyle .box {
    text-align: center;
  }
  .TeamStyle .box img {
    width: 12.17rem;
  }
  .CooperationSystem .box .boxLeft {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 0.8rem;
    border: 2px solid #f5f8fd;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    border-radius: 5px 0 0 5px;
  }
  .CooperationSystem .box .boxLeft .title {
    font-size: 0.3rem;
    padding-top: 0.74rem;
  }
  .CooperationSystem .box .boxLeft .main {
    margin-top: 0.35rem;
    display: grid;
    gap: 0.5rem 0.8rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .CooperationSystem .box .boxLeft .main .item .content0 img {
    height: 23px;
  }
  .CooperationSystem .box .boxLeft .main .item .content1 {
    font-size: 0.24rem;
    margin: 0.15rem 0;
  }
  .CooperationSystem .box .boxLeft .main .item .content2 {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
  }
  .CooperationSystem .box .boxRight {
    width: 5.2rem;
  }
  .CooperationSystem .box .boxRight img {
    width: 100%;
    border-radius: 5px;
  }
  .ConditionsCooperation {
    background: #f5f7fa;
  }
  .ConditionsCooperation .box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.3rem;
  }
  .ConditionsCooperation .box .item {
    border: 2px solid #f5f8fd;
    background: -webkit-gradient(linear, left top, left bottom, from(#f4f8fd), to(#fff));
    background: -o-linear-gradient(top, #f4f8fd, #fff);
    background: linear-gradient(to bottom, #f4f8fd, #fff);
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    padding: 0.68rem 0.32rem 0.72rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: relative;
  }
  .ConditionsCooperation .box .item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 2px;
    background: #cf0f35;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .ConditionsCooperation .box .item .content0 {
    text-align: center;
  }
  .ConditionsCooperation .box .item .content0 img {
    height: 0.6rem;
  }
  .ConditionsCooperation .box .item .content1 {
    font-size: 0.24rem;
    margin: 0.3rem 0 0.26rem;
    text-align: center;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .ConditionsCooperation .box .item .content2 {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
  }
  .ConditionsCooperation .box .item:hover::after {
    width: 100%;
  }
  .ConditionsCooperation .box .item:hover .content1 {
    color: #cf0f35;
  }
  .agent .box .boxleft {
    width: 50%;
    text-align: right;
  }
  .agent .box .boxleft img {
    width: min(7.39rem, 100%);
  }
  .agent .box .boxRight {
    width: 6.2rem;
    position: relative;
  }
  .agent .box .boxRight .img img {
    width: 100%;
  }
  .agent .box .boxRight .position {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    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;
  }
  .agent .box .boxRight .position .main {
    margin: auto;
    text-align: center;
  }
  .agent .box .boxRight .position .main .content0 {
    font-size: 0.3rem;
  }
  .agent .box .boxRight .position .main .content1 {
    margin: 0.4rem 0;
  }
  .agent .box .boxRight .position .main .content1 img {
    width: 1.64rem;
  }
  .agent .box .boxRight .position .main .content2 {
    font-size: 0.24rem;
  }
  .agent .box .boxRight .position .main .content3 {
    font-size: 0.24rem;
    margin-top: 0.2rem;
  }
  .agent .box .boxRight .position .main .content3 a {
    color: #333;
    display: inline-block;
    margin-left: 6px;
  }
  .ContactUs {
    background: url(../images/img61.png) no-repeat 50% 100%;
    background-size: 100% auto;
  }
  .ContactUs .box {
    font-size: 16px;
    color: #555;
    line-height: 2;
    text-align: center;
    padding: 0 2.34rem;
  }
  .ContactUs .box1 {
    text-align: center;
    margin-top: 0.18rem;
  }
  .ContactUs .box1 p {
    font-size: 16px;
    font-weight: bold;
  }
  .ContactUs .box1 div {
    margin-top: 6px;
  }
  .ContactUs .box1 div a {
    font-family: 'gilroy_regular';
    font-size: 0.36rem;
    color: #cf0f35;
  }
  .ContactUs .box2 {
    margin-top: 0.6rem;
  }
  .ContactUs .box2 .item {
    border: 2px solid #f5f8fd;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    width: 4.06rem;
    height: 1.54rem;
    margin: 0 0.2rem;
  }
  .ContactUs .box2 .item .left {
    font-size: 0.5rem;
    font-family: 'gilroy_regular';
    margin-right: 0.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;
  }
  .ContactUs .box2 .item .right {
    font-size: 16px;
    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;
    line-height: 1.8;
    width: 2.04rem;
  }
  .ServiceNetwork {
    position: relative;
  }
  .ServiceNetwork .img img {
    width: 100%;
  }
  .ServiceNetwork .position {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    width: 100%;
  }
  .ServiceNetwork .position .box {
    width: 8.56rem;
    min-height: 1rem;
    background: #fff;
    padding: 0.92rem 0.75rem;
    border-radius: 5px;
  }
  .ServiceNetwork .position .box .HomeTiele {
    text-align: left;
  }
  .ServiceNetwork .position .box .content0 {
    margin-top: 0.58rem;
    border-bottom: 1px solid #e1e2e4;
  }
  .ServiceNetwork .position .box .content0 ul li {
    font-size: 16px;
    padding: 0 0.15rem;
    margin-right: 5px;
    padding-bottom: 0.4rem;
    position: relative;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    cursor: pointer;
  }
  .ServiceNetwork .position .box .content0 ul li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 2px;
    background: #cf0f35;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .ServiceNetwork .position .box .content0 ul .active {
    color: #cf0f35;
  }
  .ServiceNetwork .position .box .content0 ul .active::after {
    width: 100%;
  }
  .ServiceNetwork .position .box .content1 {
    margin-top: 0.4rem;
  }
  .ServiceNetwork .position .box .content1 ul {
    display: none;
  }
  .ServiceNetwork .position .box .content1 ul.active {
    display: block;
  }
  .ServiceNetwork .position .box .content1 ul li {
    display: inline-block;
    margin-right: 0.3rem;
    font-size: 16px;
    margin-bottom: 0.2rem;
  }
  .message_container .toggle {
    margin-top: 0.36rem;
  }
  .message_container .toggle ul li a {
    font-size: 16px;
    color: #555;
    display: inline-block;
    padding: 0 0.36rem;
    border: 1px solid transparent;
    line-height: 0.48rem;
    border-radius: 5px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .message_container .toggle ul li a:hover {
    color: #cf0f35;
  }
  .message_container .toggle ul .active a {
    color: #cf0f35;
    border-color: #cf0f35;
  }
  .message_container .box_ {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .message_container .box_ .item a {
    display: block;
  }
  .message_container .box_ .item a .content0 {
    border-radius: 5px;
    overflow: hidden;
  }
  .message_container .box_ .item a .content0 img {
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .message_container .box_ .item a .content1 {
    margin-top: 0.24rem;
    font-size: 0.24rem;
    color: #111;
    line-height: 0.36rem;
    height: 0.72rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .message_container .box_ .item a .content2 {
    font-size: 16px;
    color: #666;
    margin-top: 0.2rem;
    line-height: 1.6;
    height: 0.58rem;
  }
  .message_container .box_ .item a .content3 {
    padding-top: 0.3rem;
    line-height: 20px;
  }
  .message_container .box_ .item a .content3 .left {
    font-size: 16px;
    color: #d1193e;
  }
  .message_container .box_ .item a .content3 .left span {
    font-size: 16px;
  }
  .message_container .box_ .item a .content3 .right {
    font-size: 16px;
    font-family: 'gilroy_regular';
    color: #666;
  }
  .message_container .box_ .item a:hover .content0 img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .message_container .box_ .item a:hover .content1 {
    color: #cf0f35;
  }
  .message_container .inner_page {
    margin-top: 0.72rem;
  }
  .news_info {
    margin-top: 1.56rem;
  }
  .news_info .box .boxLeft {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-right: 1px solid #eee;
    padding-right: 0.85rem;
  }
  .news_info .box .boxLeft .content0 {
    font-size: 0.36rem;
    margin-top: 0.54rem;
    line-height: 1.4;
  }
  .news_info .box .boxLeft .content1 {
    margin-top: 0.36rem;
  }
  .news_info .box .boxLeft .content1 .left {
    font-size: 16px;
    padding-top: 0.16rem;
    color: #555;
    font-family: 'gilroy_regular';
  }
  .news_info .box .boxLeft .content1 .left span{
      display: inline-block;
      margin-right: 0.32rem;
  }
  .news_info .box .boxLeft .content1 .right .l {
    width: 0.6rem;
    border-radius: 50%;
  }
  .news_info .box .boxLeft .content1 .right .l img {
    width: 100%;
  }
  .news_info .box .boxLeft .content1 .right .r {
    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-left: 0.16rem;
    font-size: 16px;
    color: #555;
  }
  .news_info .box .boxLeft .content2 {
    margin-top: 0.26rem;
    padding-top: 0.38rem;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    border-top: 1px solid #ddd;
    word-break: break-all;
  }
  .news_info .box .boxLeft .content2 img {
    display: block;
    margin: auto;
  }
  .news_info .box .boxLeft .link {
    margin-top: 0.48rem;
  }
  .news_info .box .boxRight {
    width: 4.95rem;
    padding-left: 0.9rem;
  }
  .news_info .box .boxRight .list {
    margin-bottom: 0.58rem;
  }
  .news_info .box .boxRight .list .toggle {
    font-size: 0.24rem;
    color: #888;
    line-height: 1;
  }
  .news_info .box .boxRight .list .toggle p {
    border-right: 1px solid #ddd;
    padding-right: 0.3rem;
    margin-right: 0.3rem;
    cursor: pointer;
  }
  .news_info .box .boxRight .list .toggle p:last-child {
    border: 0;
  }
  .news_info .box .boxRight .list .toggle .active {
    color: #000;
  }
  .news_info .box .boxRight .list .toggle_main .list_item {
    display: none;
  }
  .news_info .box .boxRight .list .toggle_main .list_item.active {
    display: block;
  }
  .news_info .box .boxRight .list .toggle_main .list_item > div {
    display: grid;
    gap: 0.34rem;
    margin-top: 0.3rem;
  }
  .news_info .box .boxRight .list .toggle_main .list_item > div a {
    display: block;
  }
  .news_info .box .boxRight .list .toggle_main .list_item > div a figure {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
  }
  .news_info .box .boxRight .list .toggle_main .list_item > div a figure img {
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .news_info .box .boxRight .list .toggle_main .list_item > div a figure p {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 1.56rem;
    line-height: 36px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.33);
  }
  .news_info .box .boxRight .list .toggle_main .list_item > div a .time {
    font-size: 0.16rem;
    color: #666;
    margin-top: 0.15rem;
  }
  .news_info .box .boxRight .list .toggle_main .list_item > div a figcaption {
    font-size: 0.2rem;
    color: #333;
    margin-top: 0.14rem;
    line-height: 1.6;
  }
  .news_info .box .boxRight .list .toggle_main .list_item > div a:hover figure img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .news_info .box .boxRight .list .toggle_main .list_item > div a:hover figcaption {
    color: #cf0f35;
  }
  .news_info .box .boxRight .list .toggle_main .list_item1 a {
    display: block;
  }
  .news_info .box .boxRight .list .toggle_main .list_item1 a figure {
    border-radius: 5px;
    overflow: hidden;
  }
  .news_info .box .boxRight .list .toggle_main .list_item1 a figure img {
    width: 100%;
  }
  .news_info .box .boxRight .list .toggle_main .list_item1 a figcaption {
    font-size: 0.2rem;
    color: #333;
    line-height: 1.6;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .news_info .box .boxRight .list .toggle_main .list_item1 a:hover figcaption {
    color: #cf0f35;
  }
  .Qa .box {
    margin-top: 0.36rem;
  }
  .Qa .box ul li {
    margin: 0 0.16rem;
  }
  .Qa .box ul li a {
    display: inline-block;
    font-size: 16px;
    color: #555;
    padding: 0 0.15rem;
    line-height: 0.48rem;
    border: 1px solid transparent;
    border-radius: 5px;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .Qa .box ul li a:hover {
    color: #cf0f35;
  }
  .Qa .box ul .active a {
    color: #cf0f35;
    border-color: #cf0f35;
  }
  .Qa_contaier .box_ {
    display: grid;
    gap: 0.2rem;
  }
  .Qa_contaier .box_ .item {
    position: relative;
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
    background: -webkit-gradient(linear, left top, left bottom, from(#f5f8fd), to(#fff));
    background: -o-linear-gradient(top, #f5f8fd, #fff);
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    border-radius: 5px;
    border: 1px solid #fff;
  }
  .Qa_contaier .box_ .item .top {
    font-size: 0.24rem;
    line-height: 0.8rem;
    padding: 0 0.55rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: relative;
  }
  .Qa_contaier .box_ .item .top > div {
    padding-left: 0.5rem;
    position: relative;
    border-bottom: 1px solid #eee;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .Qa_contaier .box_ .item .top p {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 0.24rem;
    font-family: 'gilroy_regular';
    width: 0.32rem;
    height: 0.32rem;
    line-height: 0.32rem;
    border-radius: 5px;
    background: #cf0f35;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
  }
  .Qa_contaier .box_ .item .bot {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    z-index: 2;
    padding: 0.2rem 0.55rem;
  }
  .Qa_contaier .box_ .item .bot > div {
    padding-left: 0.5rem;
    position: relative;
  }
  .Qa_contaier .box_ .item .bot > div > p {
    position: absolute;
    left: 0;
    top: 0%;
    font-size: 0.24rem;
    font-family: 'gilroy_regular';
    width: 0.32rem;
    height: 0.32rem;
    line-height: 0.32rem;
    border-radius: 5px;
    background: #eeeeee;
    text-align: center;
    text-transform: uppercase;
    color: #111;
  }
  .Qa_contaier .box_ .item .bot > div div p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
  }
  .Qa_contaier .box_ .item:hover .top div {
    color: #cf0f35;
  }
  .Qa_contaier .inner_page {
    margin-top: 0.72rem;
  }
  .DownloadCenter .box_ {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .DownloadCenter .box_ .item a {
    display: block;
  }
  .DownloadCenter .box_ .item a .content0 {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
  }
  .DownloadCenter .box_ .item a .content0 > img {
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .DownloadCenter .box_ .item a .content0 p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .DownloadCenter .box_ .item a .content0 p img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .DownloadCenter .box_ .item a .content1 {
    margin-top: 0.24rem;
    font-size: 0.2rem;
    color: #111;
    line-height: 0.36rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .DownloadCenter .box_ .item a .content2 {
    font-size: 16px;
    color: #666;
    margin-top: 0.2rem;
    line-height: 0.31rem;
    height: 0.62rem;
  }
  .DownloadCenter .box_ .item a .content3 {
    padding-top: 0.3rem;
    line-height: 20px;
  }
  .DownloadCenter .box_ .item a .content3 .left {
    font-size: 16px;
    color: #d1193e;
  }
  .DownloadCenter .box_ .item a .content3 .left span {
    font-size: 16px;
  }
  .DownloadCenter .box_ .item a .content3 .right {
    font-size: 16px;
    font-family: 'gilroy_regular';
    color: #666;
  }
  .DownloadCenter .box_ .item a:hover .content1 {
    color: #cf0f35;
  }
  .DownloadCenter .inner_page {
    margin-top: 0.72rem;
  }
  .DownloadDetails {
    margin-top: 1.56rem;
  }
  .DownloadDetails .box .boxLeft {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-right: 1px solid #eee;
    padding-right: 0.85rem;
  }
  .DownloadDetails .box .boxLeft .content0 {
    margin-top: 0.42rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #eee;
  }
  .DownloadDetails .box .boxLeft .content0 .left {
    font-size: 0.36rem;
    width: 64%;
    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;
  }
  .DownloadDetails .box .boxLeft .content0 .right .button2 a {
    cursor: pointer;
  }
  .DownloadDetails .box .boxLeft .content0 .right .button1 {
    margin-left: 0.15rem;
  }
  .DownloadDetails .box .boxLeft .content1 {
    margin-top: 0.3rem;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
  }
  .DownloadDetails .box .boxLeft .content1 img {
    width: 100%;
  }
  .DownloadDetails .box .boxRight {
    width: 4.95rem;
    padding-left: 0.9rem;
  }
  .DownloadDetails .box .boxRight .list {
    margin-bottom: 0.58rem;
  }
  .DownloadDetails .box .boxRight .list .toggle {
    font-size: 0.24rem;
    color: #111;
    line-height: 1;
  }
  .DownloadDetails .box .boxRight .list .toggle p {
    cursor: pointer;
  }
  .DownloadDetails .box .boxRight .list .toggle p:last-child {
    border: 0;
  }
  .DownloadDetails .box .boxRight .list .toggle .active {
    color: #000;
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item.active {
    display: block;
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item > div {
    display: grid;
    gap: 0.34rem;
    margin-top: 0.3rem;
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item > div a {
    display: block;
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item > div a figure {
    overflow: hidden;
    border-radius: 5px;
    position: relative;
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item > div a figure img {
    width: 100%;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item > div a figure p {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 1.56rem;
    line-height: 36px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.33);
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item > div a .time {
    font-size: 0.16rem;
    color: #666;
    margin-top: 0.15rem;
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item > div a figcaption {
    font-size: 0.2rem;
    color: #333;
    margin-top: 0.14rem;
    line-height: 1.6;
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item > div a:hover figure img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item > div a:hover figcaption {
    color: #cf0f35;
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item1 a {
    display: block;
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item1 a figure {
    border-radius: 5px;
    overflow: hidden;
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item1 a figure img {
    width: 100%;
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item1 a figcaption {
    font-size: 0.2rem;
    color: #333;
    line-height: 1.6;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .DownloadDetails .box .boxRight .list .toggle_main .list_item1 a:hover figcaption {
    color: #cf0f35;
  }
  .login_container {
    width: 100vmax;
    height: 100vmin;
    background: url(../images/img71.png) no-repeat 50% 50%;
    background-size: 100% 100%;
  }
  .login_container .w1620 {
    height: 100%;
  }
  .login_container .box {
    min-height: 1rem;
    background: #fff;
    position: relative;
    border-radius: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 20px #f1f1f1;
    box-shadow: 0px 0px 20px #f1f1f1;
  }
  .login_container .box .boxLeft {
    width: 8.56rem;
    padding: 0.7rem 0.95rem;
    background: url(../images/img72.jpg) no-repeat 50% 50%;
    background-size: 100% 100%;
  }
  .login_container .box .boxLeft .content0 .left {
    padding-right: 13px;
    margin-right: 13px;
    border-right: 1px solid #ddd;
  }
  .login_container .box .boxLeft .content0 .left a {
    display: block;
  }
  .login_container .box .boxLeft .content0 .left a img {
    height: 36px;
  }
  .login_container .box .boxLeft .content0 .left a .img2 {
    display: none;
  }
  .login_container .box .boxLeft .content0 .right {
    font-size: 16px;
    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-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .login_container .box .boxLeft .content1 {
    margin-top: 0.28rem;
    font-size: 0.4rem;
    line-height: 1.4;
  }
  .login_container .box .boxLeft .content1 span {
    color: #cf0f35;
    font-family: 'gilroy_Medium';
  }
  .login_container .box .boxLeft .content2 {
    font-size: 16px;
    color: #555;
    line-height: 2;
    margin-top: 0.24rem;
  }
  .login_container .box .boxLeft .content2 span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #cf0f35;
    border-radius: 50%;
    margin-right: 0.12rem;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  .login_container .box .boxLeft .content3 {
    font-size: 0.24rem;
    margin-top: 0.32rem;
  }
  .login_container .box .boxLeft .content4 {
    margin-top: 0.22rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .login_container .box .boxLeft .content4 .item {
    border-radius: 5px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 16px #f1f1f1;
    box-shadow: 0px 0px 16px #f1f1f1;
    height: 0.65rem;
    background: #fff;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #f5f8fd, #fff);
    
    
  }
  .login_container .box .boxLeft .content4 .item img {
   max-width: 100%;
    max-height: 90%;
    margin: auto;
  }
  .login_container .box .boxLeft .content5 {
    margin-top: 0.36rem;
    font-size: 16px;
  }
  .login_container .box .boxLeft .content5 a {
    font-size: 0.36rem;
    font-family: 'gilroy_bold';
    color: #cf0f35;
  }
  .login_container .box .boxRight {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 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;
  }
  .login_container .box .boxRight .main {
    width: 100%;
  }
  .login_container .box .boxRight .main .content0 {
    font-size: 0.32rem;
  }
  .login_container .box .boxRight .main .content1 {
    margin-top: 0.25rem;
  }
  .login_container .box .boxRight .main .content1 .textarea textarea {
    display: block;
    border: 1px solid #eee;
    resize: none;
    height: 1.5rem;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    padding: 0.18rem 0.3rem;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .login_container .box .boxRight .main .content1 .textarea textarea:hover {
    border-color: #cf0f35;
  }
  .login_container .box .boxRight .main .content1 .textarea textarea::-webkit-input-placeholder {
    color: #373737;
  }
  .login_container .box .boxRight .main .content1 .textarea textarea::-moz-placeholder {
    color: #373737;
  }
  .login_container .box .boxRight .main .content1 .textarea textarea:-ms-input-placeholder {
    color: #373737;
  }
  .login_container .box .boxRight .main .content1 .textarea textarea::-ms-input-placeholder {
    color: #373737;
  }
  .login_container .box .boxRight .main .content1 .textarea textarea::placeholder {
    color: #373737;
  }
  .login_container .box .boxRight .main .content1 .check {
    margin: 0.24rem 0;
  }
  .login_container .box .boxRight .main .content1 .check .layui-unselect {
    background: url(../images/icon41.png) no-repeat 0% 50%;
  }
  .login_container .box .boxRight .main .content1 .check .layui-anim {
    opacity: 0;
    visibility: hidden;
  }
  .login_container .box .boxRight .main .content1 .check .layui-form-radioed {
    background: url(../images/icon42.png) no-repeat 0% 50%;
  }
  .login_container .box .boxRight .main .content1 .check .layui-form-radio * {
    font-size: 16px;
    color: #111;
  }
  .login_container .box .boxRight .main .content1 .item {
    margin-bottom: 0.2rem;
    position: relative;
  }
  .login_container .box .boxRight .main .content1 .item input[type='text'] {
    display: block;
    width: 100%;
    height: 48px;
    border: 1px solid #eee;
    padding: 0 0.3rem;
    font-size: 16px;
    border-radius: 5px;
    color: #333;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
  }
  .login_container .box .boxRight .main .content1 .item input[type='text']:hover {
    border-color: #cf0f35;
  }
  .login_container .box .boxRight .main .content1 .item input[type='text']::-webkit-input-placeholder {
    color: #373737;
  }
  .login_container .box .boxRight .main .content1 .item input[type='text']::-moz-placeholder {
    color: #373737;
  }
  .login_container .box .boxRight .main .content1 .item input[type='text']:-ms-input-placeholder {
    color: #373737;
  }
  .login_container .box .boxRight .main .content1 .item input[type='text']::-ms-input-placeholder {
    color: #373737;
  }
  .login_container .box .boxRight .main .content1 .item input[type='text']::placeholder {
    color: #373737;
  }
  .login_container .box .boxRight .main .content1 .item .positon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .login_container .box .boxRight .main .content1 .item .positon input {
    font-size: 16px;
    height: 48px;
    background: none;
    border: 0;
    padding: 0 0.28rem;
    cursor: pointer;
    color: #373737;
  }
  .login_container .box .boxRight .main .content1 .item1 input {
    background: #cf0f35;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    border: 0;
    text-align: center;
    height: 48px;
    display: block;
    width: 100%;
    cursor: pointer;
  }
  
  
  
    @media screen and (min-width: 1200px) and (max-width: 1680px) {
      /* .about_container .box .boxRight .content1{
          font-size: 16px;
      } */
  
    }
    
  
  @media screen and (max-width: 1680px) {
    .footer_container .boxTop .boxRight .item figcaption {
      font-size: 0.16rem;
    }
      .equipment .box_ .item a .boxTop .position {
      padding: 0.54rem 0.32rem;
  }
  .equipment .box_ .item a .boxTop .position .content1{
      height: 1.46rem;
  }
    .solution_toggle .box {
      -webkit-transform: translateY(-99%);
      -ms-transform: translateY(-99%);
      transform: translateY(-99%);
  }
  .HomeDomain .box .position .m {
      gap: 0.38rem;
  }
  
  
  
  
  }
  
  @media screen and (max-width: 1540px) {
      .HomeNews .box .boxRight {
          width: 12.35rem;
      }
      .client_container .box .banner .swiper-slide .item .boxLeft .content3 {
          height: 1.16rem;
      }
      .HomeService .box .boxRight .main .left .content2{
          height:1.1rem;
      }
      .HomeBanner .banner .swiper-slide .position .main{
          width: 6.2rem;
      }
      .HomeMode .box .item a .content2 .ite .bot,
      .SchemeValue .box .item .content2 .ite .bot{
          font-size: 13px;
      }
      .header_container .box nav .item {
          padding: 0 0.14rem;
      }
  }
  
  @media screen and (max-width: 1440px) {
     
    .MARKETING .box .item {
      padding: 0.45rem 0.45rem 0.45rem 0;
    }
    .HomeNews .box .boxRight {
      width: 12rem;
    }
    .footer_container .boxTop .boxLeft .item {
      margin-right: 0.74rem;
    }
    .sidebar_container .item > a figcaption {
      font-size: 12px;
    }
    .sidebar_container {
      width: 65px;
    }
    .login_container .box .boxRight {
      padding: 0 0.8rem;
    }
    .InnerBanner .positon {
      top: 1.76rem;
    }
    .news_container .box .list .item_list ul li a {
      padding: 0.19rem 0;
    }
    .WinCustomer .toggle ul li {
      margin: 0 0.4rem;
    }
    .CaseDetails .box .boxLeft {
      padding-right: 0.8rem;
    }
    .VideoInfoContainer .box .boxRight .content4 .video video {
      height: 4.9rem;
    }
    .certificate_container .position {
      padding-top: 1.18rem;
    }
    .CooperationSystem .box .boxLeft .title {
      padding-top: 0.44rem;
    }
    .Qa .box ul li {
      margin: 0 0.06rem;
    }
    
    
  
  
  
  .SchemeValue .box .item {
      padding: 0.6rem 0.36rem 0.5rem;
  }
  .SchemeValue .box .item .content2 .ite {
      margin-right: 0.5rem;
  }
  .VideoList .box_ .boxLeft .list .item a .right {
      padding: 0 0.38rem;
  }
  .VideoList .box_ .boxLeft .list .item a .left {
      width: 5rem;
  }
  
  .product_nav ._right .ite {
      width: 1.8rem;
      margin-right: 0.3rem;
  }
    .equipment .box_ .item a .boxTop .position .content1 {
      height: 1.06rem;
  }
  
  
  
  .HomeBanner .banner .swiper-slide .position .main{
    width: 6rem;
  }
  
  .HomeService .box .boxRight .main .left .content2 {
    height: 1.1rem;
  }
  
  
  
  }
  
  
  @media screen and (max-width: 1366px) {
  /*    .equipment .box_ .item a .boxTop .position .content1 div p {*/
  /*    width: 85%;*/
  /*}*/
  .equipment .box_ .item a .boxTop .position .content1 div span{
      font-size: 12px;
  }
      .product_nav ._right .ite ul li {
      line-height: 2;
  }
    .MARKETING .box .item {
      padding: 0.35rem 0.35rem 0.35rem 0;
    }
    .HomeManage .box .item .item_right .content2 .ite ul li {
      line-height: 1.7;
    }
    .HomeSolution .box .list .item .boxLeft .content1 ul li {
      line-height: 1.6;
    }
    .login_container .box .boxRight {
      padding: 0 0.5rem;
    }
    .login_container .box .boxLeft {
      padding: 0.4rem 0.75rem;
    }
    .login_container .box .boxLeft .content1 {
      font-size: 0.3rem;
    }
    .login_container .box .boxRight .main .content1 .check {
      margin: 0.14rem 0;
    }
    .InnerBanner .positon .content1,
    .banner_container .position .box h5,
    .HomeTiele h1,
    .HomeTiele .h1,
    .InnerBanner .positon_ .content0,
    .HomeBanner .banner .swiper-slide .position .main .title {
      font-size: 0.4rem;
    }
    .problem_container .box .item .top {
      font-size: 0.2rem;
    }
  }
  @media screen and (max-width: 1280px) {
    .MARKETING .w1620 {
      -webkit-transform: translateY(-99.7%);
      -ms-transform: translateY(-99.7%);
      transform: translateY(-99.7%);
    }
    .header_container .box nav .item {
      padding: 0 0.14rem;
    }
    .HomeBanner .banner .swiper-slide .position {
      top: 1.75rem;
    }
    .HomeManage .box .item .item_right .content2 {
      margin-top: 0.4rem;
    }
    .HomeMode .box .item a {
      padding: 0.4rem;
    }
    .HomeService .box .boxRight .main .left {
      padding: 0 0.9rem;
    }
    .HomeNews .box .boxRight {
      width: 11.2rem;
    }
    .footer_container .boxTop .boxLeft .item {
      margin-right: 0.44rem;
    }
    .footer_container .boxTop .boxCenter .content1 a {
      font-size: 0.26rem;
    }
    .header_container .box .boxLeft .right {
      font-size: 0.16rem;
    }
    .customer_container_main .box .boxLeft .item .desc {
      font-size: 0.16rem;
    }
    .customer_container_main .box .boxLeft .item .title {
      font-size: 0.24rem;
    }
    .PainPoint .box .list2 .item .img {
      width: 3.36rem;
    }
    .header_container .box nav .item1 .select li a {
      /*font-size: 0.14rem;*/
    }
    .SchemeValue .box .item .content2 .ite {
      margin-right: 0.3rem;
    }
    .SchemeValue .box .item {
      border-radius: 5px;
      padding: 0.6rem 0.46rem;
    }
    .CaseDetails .box .boxRight,
    .VideoList .box_ .boxRight {
      width: 5rem;
      padding-left: 0.9rem;
    }
    .VideoList .box_ .boxLeft .list .item a .left {
      width: 3.5rem;
    }
    .VideoList .box_ .boxLeft .list .item a .right {
      padding: 0 0.48rem;
    }
    .VideoList .box_ .boxLeft .list .item a .right .main .link {
      margin-top: 0.2rem;
    }
    .VideoInfoContainer .box .boxRight .content4 .video video {
      height: 4.2rem;
    }
    .about_container .box .boxRight {
      -webkit-box-flex: 1;
      -webkit-flex: 1;
      -ms-flex: 1;
      flex: 1;
      padding-left: 0.66rem;
    }
    .about_container .box .boxRight .content1 {
      font-size: 0.16rem;
    }
    .about_container .box .boxRight .content2 .item div {
      font-size: 0.4rem;
    }
    .about_container .box .boxRight .content2 .item:not(:last-child) {
      width: 1.68rem;
    }
    .certificate_container .logo_posi {
      padding: 0.3rem 0;
    }
    .CooperationSystem .box .boxLeft {
      padding: 0 0.6rem;
    }
    .CooperationSystem .box .boxLeft .main {
      gap: 0.3rem 0.7rem;
    }
    .ContactUs .box2 .item {
      width: 3.86rem;
    }
    .ContactUs .box2 .item .left {
      font-size: 0.4rem;
    }
    .DownloadDetails .box .boxLeft .content0 .left {
      font-size: 0.28rem;
      width: 56%;
    }
    .login_container .box .boxLeft .content2 {
      display: none;
    }
    .login_container .box .boxRight .main .content1 .textarea textarea {
      height: 1.1rem;
    }
    .login_container .box .boxLeft {
      width: 8rem;
      padding: 0.5rem 0.6rem;
    }
    .login_container .layui-form-radio {
      margin: 0;
    }
    .login_container .box .boxRight {
      padding: 0 0.4rem;
    }
    .login_container .box .boxRight .main .content1 .item input[type='text'] {
      height: 40px;
    }
  }
  @media screen and (max-width: 1024px) {
      .solution_toggle {
          transform: translateY(-1px);
      }
    .sidebar_container {
      visibility: hidden;
    }
    .w1620 {
      padding-left: 5vw;
      padding-right: 5vw;
    }
    .header_container {
      display: none;
    }
    .HomeNews .box .boxRight {
      width: 100%;
    }
    .HomeService .box .boxRight .main .left {
      width: 100%;
    }
    .MARKETING {
      height: auto;
    }
    .MARKETING .w1620 {
      -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
      transform: translateY(0%);
    }
    .HomeBanner .banner .swiper-slide .position {
      top: 0.8rem;
    }
    .HomeBanner .banner .swiper-slide .img img {
      min-height: 4.5rem;
    }
    .InnerBanner .positon .content1,
    .banner_container .position .box h5,
    .HomeTiele h1,
    .HomeTiele .h1,
    .InnerBanner .positon_ .content0,
    .HomeBanner .banner .swiper-slide .position .main .title {
      font-size: 0.3rem;
    }
    .HomeBanner .banner .page {
      bottom: 0.14rem;
    }
    .MARKETING .box {
      grid-template-columns: repeat(2, 1fr);
    }
    .HomeTiele p {
      line-height: 1.6;
    }
    .HomeSolution .toggle ul li {
      margin: 0 0.32rem;
    }
    .HomeSolution .box .list .item .boxLeft {
      width: 100%;
    }
    .HomeSolution .box .list .item .boxRight {
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      margin-top: 0.4rem;
      width: 100%;
    }
    .p105 {
      padding-top: 0.85rem;
    }
    .p105_ {
      padding-bottom: 0.85rem;
    }
    .HomeMode .box {
      grid-template-columns: repeat(1, 1fr);
      gap: 0.2rem;
    }
    .HomeMode .box .item a .content1 br {
      display: none;
    }
    .HomeMode .box .item a .content3 {
      margin-top: 0.28rem;
    }
    .HomeMode .box .item a .content2 {
      margin-top: 0.26rem;
    }
    .HomeMode .box .item a .content0 .right {
      font-size: 0.24rem;
    }
    .HomeMode .box .item a .content0 .left {
      font-size: 0.44rem;
      height: 0.38rem;
    }
    .HomeManage .box .item .item_left .posi {
      padding: 0 0.24rem;
      bottom: 0.3rem;
    }
    .HomeManage .box .item .item_right {
      display: none;
    }
    .HomeManage .box .item .item_left {
      position: initial;
    }
    .HomeManage .box .item .item_left .posi .con0 {
      font-size: 0.22rem;
    }
    .HomeManage .box .item .item_left .posi .con1 {
      font-size: 0.16rem;
    }
    .HomeService .box .boxRight {
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      width: 100%;
      padding: 0.3rem;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
    }
    .HomeService .box .boxRight .main .left {
      padding: 0;
    }
    .HomeService .box .boxRight::after {
      width: 100%;
    }
    .HomeService .box .boxRight .main .right {
      display: none;
    }
    .HomeService .box .boxLeft {
      width: 100%;
      padding: 0;
      margin-bottom: 0.3rem;
    }
    .HomeService .box .boxLeft ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .HomeService .box .boxLeft ul li {
      width: 20%;
    }
    .HomeService .box .boxRight .main .left .content0 {
      font-size: 0.26rem;
    }
    .HomeDomain .box {
      margin-top: 0.54rem;
    }
    .HomeDomain .box .position .list .item .top {
      font-size: 0.4rem;
    }
    .HomeDomain .box .position .m {
      gap: 0.38rem;
    }
    .HomeDomain .box .img img {
      width: 100%;
      min-height: 5.4rem;
    }
    .HomeNews .box .boxLeft {
      margin-bottom: 0.5rem;
      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;
    }
    .HomeNews .box .boxLeft ul {
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      width: 50%;
      line-height: 0.5rem;
    }
    .HomeNews .box .boxLeft .link {
      margin-top: 0;
    }
    .HomeAdvertisement .img img {
      min-height: 3rem;
    }
    .HomeAdvertisement .position .main .top {
      font-size: 0.34rem;
      letter-spacing: 0px;
    }
    .footer_container .boxTop .boxLeft {
      display: none;
    }
    .footer_container .boxTop {
      padding: 0.6rem 0 0;
    }
    .footer_container .boxBot .left {
      width: 84%;
    }
    .footer_container .boxBot .left .link {
      display: none;
    }
    .footer_container .boxBot .left a {
      display: block;
    }
    .footer_container .boxBot .left .infomation img {
      margin-left: 0;
    }
    .footer_container .box {
      margin-top: 0.4rem;
    }
    .MARKETING .box .item {
      padding: 0.35rem 0.25rem 0.35rem 0;
    }
    .InnerBanner .positon {
      top: 0.8rem;
    }
    .InnerBanner .img img {
      min-height: 4.3rem;
    }
    .InnerBanner .positon .content0 {
      font-size: 0.24rem;
    }
    .customer_container .toggle .item .left p {
      font-size: 0.58rem;
    }
    .customer_container .toggle .item .left p::after {
      bottom: -8px;
      width: 22px;
      height: 28px;
    }
    .customer_container .toggle .item .right div {
      font-size: 0.24rem;
    }
    .customer_container .toggle .item .left {
      margin-right: 0.15rem;
    }
    .customer_container .toggle .item:nth-child(2) {
      margin: 0 0.3rem;
    }
    .customer_container_main .box .boxLeft {
      width: 100%;
    }
    .customer_container_main .box .boxRight {
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      width: 100%;
      padding-top: 0.5rem;
      padding-left: 0;
    }
    .argument_container .box .item {
      -webkit-box-flex: 1;
      -webkit-flex: 1 50%;
      -ms-flex: 1 50%;
      flex: 1 50%;
    }
    .argument_container .box .item .mian .content0 img {
      height: 0.55rem;
    }
    .argument_container .box {
      margin: 0.54rem 0 0;
    }
    .client_container .box .banner .swiper-slide {
      width: 80vw;
    }
    .client_container .box .banner .swiper-slide .item .boxLeft {
      width: 100%;
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      padding: 0.5rem;
    }
    .client_container .box .banner .swiper-slide .item .boxRight {
      display: none;
      width: 100%;
      padding: 0;
      text-align: center;
    }
    .client_container .box .banner .swiper-slide .item .boxRight img {
      width: 50%;
    }
    .client_container .box .banner .swiper-slide .item .boxLeft .content0 {
      font-size: 0.3rem;
    }
    .ContractService .box {
      grid-template-columns: repeat(1, 1fr);
      gap: 0.2rem;
    }
    .ContractService .box .item .content2 {
      height: auto;
    }
    .ContractService .box .item {
      padding: 0.45rem;
    }
    .ContractService .box .item .content0 img {
      height: 0.6rem;
    }
    .ContractService .box .item .content1 {
      font-size: 0.26rem;
      margin-top: 0.32rem;
    }
    .problem_container .box {
      grid-template-columns: repeat(1, 1fr);
      gap: 0.2rem 0.36rem;
    }
    .feature_container .box {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.2rem;
    }
    .feature_container .box .item .content0 {
      height: 0.6rem;
    }
    .news_container .toggle ul li {
      margin: 0 0.22rem;
    }
    .news_container .box .list {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.2rem;
    }
    .news_container .box .list .item:last-child {
      display: none;
    }
    .news_container .box .list .item_list {
      display: none;
    }
    .PainPoint .box .list2 {
      grid-template-columns: repeat(1, 1fr);
      gap: 0.2rem;
    }
    .business_container .toggle ul li {
      margin: 0 0.4rem 0.2rem;
    }
    .business_container .box .list .boxLeft {
      width: 100%;
      padding-right: 0;
      padding-top: 0;
    }
    .business_container .box .list .boxRight {
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      width: 100%;
      margin-top: 0.5rem;
    }
    .business_container .box .list .boxLeft .content0 {
      font-size: 0.28rem;
    }
    .business_container .box .list .boxLeft .content1 {
      margin-top: 0.22rem;
    }
    .Solution_Container .box .list .item .boxLeft {
      width: 100%;
      padding-right: 0;
    }
    .Solution_Container .box .list .item .boxRight {
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      width: 100%;
      margin-top: 0.5rem;
    }
    .Solution_Container .box .list .item .boxLeft .content1 ul {
      height: auto;
    }
    .solution_toggle {
      height: auto;
    }
    .solution_toggle .box {
      -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
      transform: translateY(0%);
    }
    .solution_toggle .box .item {
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      background-size: 100% 100%;
    }
    .solution_toggle .box .item a {
      line-height: 1.2rem;
      padding: 0 5vw;
    }
    .puzzle_container .img img {
      min-height: 9rem;
    }
    .puzzle_container .box .item1 {
      top: 20%;
      left: 5vw;
    }
    .puzzle_container .box .item2 {
      top: 33%;
      right: 5vw;
    }
    .puzzle_container .box .item3 {
      top: 46%;
      left: 5vw;
    }
    .puzzle_container .box .item4 {
      top: 59%;
      right: 5vw;
    }
    .puzzle_container .box .item5 {
      top: 72%;
      left: 5vw;
    }
    .puzzle_container .box .item6 {
      top: 85%;
      right: 5vw;
    }
    .WinCustomer .toggle ul li {
      margin: 0 0.3rem;
      margin-bottom: 0.2rem;
    }
    .WinCustomer .box .list .item .boxLeft {
      width: 100%;
    }
    .WinCustomer .box .list .item .boxRight {
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      margin-top: 0.5rem;
      padding-left: 0;
    }
    .SchemeValue .box {
      grid-template-columns: repeat(1, 1fr);
      gap: 0.2rem;
    }
    .ProductFunction .box .banner .swiper-slide {
      padding: 0.3rem 0 0.3rem;
    }
    .CaseNavigation {
      height: auto;
    }
    .CaseNavigation .main {
      position: relative;
      z-index: 1;
      -webkit-transform: translateY(8%);
      -ms-transform: translateY(8%);
      transform: translateY(8%);
    }
    .equipment {
      margin-top: 0.85rem;
    }
    .equipment .box_ {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.38rem 0.2rem;
    }
    .inner_page .box .button {
      margin: 0 0.2rem;
    }
    .inner_page .box .page {
      display: none;
    }
    .InnerBanner .positon_ {
      top: 0.8rem;
    }
    .CaseDetails .box .boxLeft,
    .VideoList .box_ .boxLeft {
      padding-right: 0;
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      border: 0;
    }
    .CaseDetails .box .boxRight,
    .VideoList .box_ .boxRight {
      margin-top: 0.5rem;
      padding: 0;
      width: 100%;
    }
    .CaseDetails .box .boxLeft .content3 {
      text-align: justify;
    }
    .CaseDetails .box .boxRight .list,
    .VideoList .box_ .boxRight .list_box .list,
    .news_info .box .boxRight .list .toggle_main .list_item > div,
    .DownloadDetails .box .boxRight .list .toggle_main .list_item > div {
      grid-template-columns: repeat(2, 1fr);
    }
    .CaseDetails .box .boxRight .list .item,
    .VideoList .box_ .boxRight .list_box .list .item,
    .news_info .box .boxRight .list .toggle_main .list_item > div .item,
    .DownloadDetails .box .boxRight .list .toggle_main .list_item > div .item,
    .CaseDetails .box .boxRight .list a,
    .VideoList .box_ .boxRight .list_box .list a,
    .news_info .box .boxRight .list .toggle_main .list_item > div a,
    .DownloadDetails .box .boxRight .list .toggle_main .list_item > div a {
      display: none;
    }
    .CaseDetails .box .boxRight .list .item:nth-child(1),
    .VideoList .box_ .boxRight .list_box .list .item:nth-child(1),
    .news_info .box .boxRight .list .toggle_main .list_item > div .item:nth-child(1),
    .DownloadDetails .box .boxRight .list .toggle_main .list_item > div .item:nth-child(1),
    .CaseDetails .box .boxRight .list a:nth-child(1),
    .VideoList .box_ .boxRight .list_box .list a:nth-child(1),
    .news_info .box .boxRight .list .toggle_main .list_item > div a:nth-child(1),
    .DownloadDetails .box .boxRight .list .toggle_main .list_item > div a:nth-child(1) {
      display: block;
    }
    .CaseDetails .box .boxRight .list .item:nth-child(2),
    .VideoList .box_ .boxRight .list_box .list .item:nth-child(2),
    .news_info .box .boxRight .list .toggle_main .list_item > div .item:nth-child(2),
    .DownloadDetails .box .boxRight .list .toggle_main .list_item > div .item:nth-child(2),
    .CaseDetails .box .boxRight .list a:nth-child(2),
    .VideoList .box_ .boxRight .list_box .list a:nth-child(2),
    .news_info .box .boxRight .list .toggle_main .list_item > div a:nth-child(2),
    .DownloadDetails .box .boxRight .list .toggle_main .list_item > div a:nth-child(2) {
      display: block;
    }
    .VideoInfoContainer .box .boxLeft {
      display: none;
    }
    .VideoInfoContainer .box .boxRight {
      width: 100%;
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      padding: 0;
    }
    .VideoInfoContainer {
      margin-top: 0.85rem;
    }
    .VideoInfoContainer .box .boxRight .content1 br {
      display: none;
    }
    .videoToggle .toggle ul li {
      margin: 0 0.2rem;
    }
    .about_container .box .boxLeft {
      width: 100%;
    }
    .about_container .box .boxRight {
      width: 100%;
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      padding: 0;
      margin-top: 0.5rem;
    }
    .certificate_container .position {
      padding-top: 0.85rem;
    }
    .certificate_container .img img {
      min-height: 5rem;
    }
    .data_container {
      padding-bottom: 0.85rem;
    }
    .course_container .box .list .item:nth-child(2n-1) {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-flow: initial;
      -ms-flex-flow: initial;
      flex-flow: initial;
    }
    .course_container .box .list .item p {
      display: none;
    }
    .course_container .box .list .item > div {
      width: 100%;
    }
    .course_container .box::before {
      display: none;
    }
    .course_container .box .list .item .main .posi,
    .course_container .box .list .item:nth-child(2n-1) .main .posi {
      position: initial;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
      text-align: left;
      width: auto;
      margin-bottom: 0.3rem;
    }
    .course_container .box .list .item .main .posi span,
    .course_container .box .list .item:nth-child(2n-1) .main .posi span {
      display: none;
    }
    .course_container .box .list .item .main {
      padding: 0.36rem 0.44rem;
    }
    .course_container .box svg {
      display: none;
    }
    .CorporateCulture .box {
      display: grid;
      gap: 0.2rem;
    }
    .CorporateCulture .box .item {
      width: 100%;
    }
    .CorporateCulture {
      background-size: cover;
    }
    .idea .box .left {
      padding-top: 0;
    }
    .idea .box .right {
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      text-align: center;
      margin-top: 0.5rem;
    }
    .CooperationSystem .box .boxRight {
      width: 100%;
      margin-top: 0.5rem;
      display: none;
    }
    .CooperationSystem .box .boxLeft {
      padding: 0.6rem 0.5rem;
    }
    .CooperationSystem .box .boxLeft .title {
      padding-top: 0;
    }
    .CooperationSystem .box .boxLeft .main {
      gap: 0.3rem 0.6rem;
    }
    .ConditionsCooperation .box {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.2rem;
    }
    .agent .box .boxleft {
      width: 100%;
      text-align: center;
    }
    .agent .box .boxRight {
      width: 100%;
      margin-top: 0.5rem;
    }
    .ContactUs .box {
      padding: 0;
    }
    .ContactUs .box2 .item {
      width: 3.5rem;
      margin-bottom: 0.2rem;
    }
    .ServiceNetwork .position .box {
      width: 100%;
      background: #fff;
      padding: 0.72rem 0.6rem;
    }
    .ServiceNetwork .img img {
      width: 100%;
      min-height: 5.6rem;
    }
    .message_container .box_ {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem 0.2rem;
    }
    .message_container .box_ .item a .content1 {
      font-size: 0.22rem;
    }
    .news_info .box .boxLeft,
    .DownloadDetails .box .boxLeft {
      width: 100%;
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      padding: 0;
      border: 0;
    }
    .news_info .box .boxRight,
    .DownloadDetails .box .boxRight {
      width: 100%;
      margin-top: 0.5rem;
      padding: 0;
    }
    .news_info .box .boxLeft .content0 {
      font-size: 0.26rem;
    }
    .news_info .box .boxRight {
      padding-left: 0;
    }
    .news_info .box .boxRight .list:last-child {
      margin-bottom: 0;
    }
    .DownloadCenter .box_ {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem 0.2rem;
    }
    .DownloadDetails,
    .news_info {
      margin-top: 0.85rem;
    }
    .mbx a {
      line-height: 3;
    }
    .news_info .box .boxLeft .content0 br {
      display: none;
    }
    .login_container .box .boxLeft .content4 {
      display: none;
    }
    .login_container .box .boxLeft {
      width: 100%;
    }
    .login_container .box .boxRight {
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      padding: 0.5rem 0.6rem;
      width: 100%;
    }
    .login_container {
      width: 100vw;
      height: auto;
      min-height: 100vh;
      padding: 0.8rem 0;
    }
    .login_container .box {
      -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
      transform: translateY(0%);
    }
    .HomeBanner .banner .swiper-slide .position .main {
      width: 100%;
    }
    .HomeBanner .banner .swiper-slide .position .main .tag {
      /*display: none;*/
    }
    .login_container .box .boxLeft .content3 {
      display: none;
    }
    .customer_container .toggle .item {
      padding-bottom: 0.2rem;
  }
  
  .HomeSolution .box .list .item .boxLeft .content2 .ite {
      margin-bottom: 0;
      margin-top: 0.2rem;
  }
  .HomeSolution .box .list .item .boxRight .content3   {
      margin-top: 0.3rem;
  }
  .HomeSolution .box .list .item .boxRight .content3 .button1{
      margin-right: 0.2rem;
  }
  
  .CaseNavigation .main .box {
      grid-template-columns: repeat(5, 1fr);
  }
  .banner_container .position .box p{
      padding: 0 5vw;
  }
  .VideoInfoContainer .box .boxRight{
      border: 0;
  }
  
  }
  @media screen and (max-width: 699px) {
     .HomeDomain .box .position .list .item ,.data_container .box .position .list .item {
         width: 48%;
     }
     .about_container .box .boxRight .content2 .item:not(:last-child) {
      width: 1.48rem;
  }
     .news_container .toggle ul li {
      margin: 0 ;
  }
      .HomeBanner .banner .swiper-slide .position .main .tag p{
          margin-bottom: 0.2rem;
      }
      .HomeBanner .banner .swiper-slide .position .main .link {
          margin-top: 0.18rem;
      }
      .home_link1 .a::before, .home_link1 .a::after{
          border-radius: 0;
      }
  .HomeBanner .banner .swiper-slide .img img {
      min-height: 5.1rem;
  }
  
    .HeaderMobile .box .logo a img {
      height: 28px;
    }
    .HeaderMobile .box .button .call a {
      font-size: 14px;
    }
    .InnerBanner .positon .content1,
    .banner_container .position .box h5,
    .HomeTiele h1,
    .HomeTiele .h1,
    .InnerBanner .positon_ .content0,
    .HomeBanner .banner .swiper-slide .position .main .title {
      font-size: 0.3rem;
      line-height: 1.4;
    }
    .HomeManage .box .item {
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      height: 4rem;
      margin-bottom: 0.2rem;
    }
    .HomeManage .box .item:last-child {
      margin-bottom: 0;
    }
    .HomeManage {
      margin-top: -0.3rem;
    }
    .p105_ {
      padding-bottom: 0.65rem;
    }
    .p105 {
      padding-top: 0.65rem;
    }
    .HomeSolution .toggle ul li {
      margin: 0 0.2rem 0.2rem;
      padding-bottom: 0.2rem;
    }
    .HomeSolution .box .list .item .boxLeft .content2 .ite {
      width: 1.7rem;
    }
    .HomeService .box .boxLeft ul li {
      width: 33.333%;
    }
    .HomeService .box .boxRight .main .left .content1 div {
      margin-bottom: 0.12rem;
    }
    .HomeDomain .box .position .list .item .bot {
      font-size: 12px;
    }
    .HomeDomain .box .position .list .item .top {
      font-size: 0.36rem;
    }
    .HomeNews .box .boxLeft ul {
      width: 68%;
    }
    .footer_container .boxTop .boxCenter {
      width: 100%;
    }
    .footer_container .boxBot .left {
      width: 100%;
    }
    .customer_container .toggle {
      display: grid;
      gap: 0.2rem;
      grid-template-columns: 1fr;
    }
    .customer_container .toggle .item:nth-child(2) {
      margin: 0;
    }
    .argument_container .box .item {
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
    }
    .client_container .box .banner .swiper-slide {
      width: 90vw;
    }
    .client_container .box ._button .prev {
      left: 1vw;
    }
    .client_container .box ._button .next {
      right: 1vw;
    }
    .feature_container .box .item {
      padding: 0.34rem 0;
    }
    .news_container .box .list {
      grid-template-columns: repeat(1, 1fr);
    }
    .PainPoint .box .list2 .item {
      padding: 0.6rem 0.3rem;
    }
    .PainPoint .box .list2 .item .main .content1 p,
    .business_container .box .list .boxLeft .content2 p {
      position: relative;
      padding-left: 0.2rem;
    }
    .PainPoint .box .list2 .item .main .content1 p font,
    .business_container .box .list .boxLeft .content2 p font {
      position: absolute;
      display: block;
      top: 0;
      left: 0;
    }
    .PainPoint .box .list2 .item .main .content0,
    .Solution_Container .box .list .item .boxLeft .content_title,
    .WinCustomer .box .list .item .boxLeft .content0,
    .SchemeValue .box .item .content0,
    .CaseDetails .box .boxLeft .content1,
    .CaseDetails .box .boxLeft .content2 h5 .right,
    .VideoInfoContainer .box .boxRight .content1 {
      font-size: 0.26rem;
    }
    .business_container .toggle ul li {
      margin: 0 0.2rem 0.2rem;
    }
    .Solution_Container .box .list .item .boxLeft .content2 .ite,
    .HomeSolution .box .list .item .boxLeft .content2 .ite {
      width: 50%;
      margin-right: 0;
      margin-bottom: 0.36rem;
      border-right: 0;
    }
    .puzzle_container .title .HomeTiele {
      padding: 0 5vw;
    }
    .VideoInfoContainer .box .boxRight {
      border: 0;
    }
    .CaseNavigation .main .box {
      grid-template-columns: repeat(2, 1fr);
    }
    .equipment .box_ {
      grid-template-columns: repeat(1, 1fr);
      gap: 0.28rem 0.2rem;
    }
    .CaseDetails .box .boxLeft .content2 h5 .left {
      font-size: 0.44rem;
      height: 0.38rem;
    }
    .CaseDetails .box .boxRight .list,
    .VideoList .box_ .boxRight .list_box .list,
    .news_info .box .boxRight .list .toggle_main .list_item > div,
    .DownloadDetails .box .boxRight .list .toggle_main .list_item > div {
      grid-template-columns: repeat(1, 1fr);
    }
    .InnerBanner .positon_ .content2 p {
      width: 100%;
    }
    .InnerBanner .positon_ .content4 .ri {
      margin-top: 0.2rem;
    }
    .InnerBanner .img img {
      min-height: 5.2rem;
    }
    .VideoList .box_ .boxLeft .list .item a .left {
      width: 100%;
    }
    .VideoList .box_ .boxLeft .list .item a .right {
      padding: 0.3rem;
    }
    .InnerBanner .positon_ .content4 .ri .flexStart div{
        margin-bottom: 5px;
    }
    
    .VideoList .box_ .boxLeft .list {
      gap: 0.2rem;
    }
    .VideoInfoContainer .box .boxRight .content4 .video video {
      height: 2.8rem;
    }
    .certificate_container .position {
      padding-top: 0.65rem;
    }
    .data_container .box .position .list .item .top {
      font-size: 0.36rem;
    }
    .course_container .box .list .item .main .posi {
      font-size: 0.4rem;
    }
    .CorporateCulture .desc {
      padding: 0.6rem 0 0.66rem;
    }
    .CorporateCulture .box .item .position {
      top: 0.4rem;
      left: 0.3rem;
    }
    .CorporateCulture .box .item .positon1 {
      bottom: 0.4rem;
      left: 0.3rem;
    }
    .CorporateCulture .box .item .positon1 h5 {
      font-size: 0.26rem;
    }
    .CorporateCulture .box .item .position img {
      height: 0.57rem;
    }
    .CooperationSystem .box .boxLeft .main {
      grid-template-columns: repeat(1, 1fr);
    }
    .ConditionsCooperation .box {
      grid-template-columns: repeat(1, 1fr);
    }
    .banner_container .img img {
      min-height: 3rem;
    }
    .ContactUs .box2 .item {
      width: 100%;
    }
    .ServiceNetwork .position .box {
      padding: 0.42rem 0.3rem;
    }
    .ServiceNetwork .position .box .content0 ul li {
      padding: 0 0 0.2rem;
      margin-right: 0.3rem;
    }
    .ServiceNetwork .position .box .content1 ul li {
      margin-right: 0.2rem;
      margin-bottom: 0.1rem;
    }
    .videoToggle .toggle ul li {
      line-height: 0.8rem;
    }
    .message_container .box_ {
      grid-template-columns: repeat(1, 1fr);
    }
    .news_info .box .boxLeft .content0 {
      line-height: 1.6;
      font-size: 0.24rem;
    }
    .news_info .box .boxLeft .content1 .right .l {
      width: 0.5rem;
    }
    .Qa_contaier .box_ .item .top {
      padding: 0 0.35rem;
    }
    .Qa_contaier .box_ .item .bot {
      padding: 0.2rem 0.35rem;
    }
    .Qa_contaier .box_ .item .top {
      font-size: 0.22rem;
    }
    .DownloadCenter .box_ {
      grid-template-columns: repeat(1, 1fr);
    }
    .DownloadDetails,
    .news_info,
    .VideoInfoContainer {
      margin-top: 0.65rem;
    }
    .DownloadDetails .box .boxLeft .content0 .left {
      width: 100%;
      margin-bottom: 0.3rem;
    }
    .DownloadDetails .box .boxRight .list {
      margin-bottom: 0.5rem;
    }
    .DownloadDetails .box .boxRight .list:last-child {
      margin-bottom: 0rem;
    }
    .login_container .box .boxLeft {
      padding: 0.4rem 0.3rem;
    }
    .login_container .box .boxLeft .content0 .left a img {
      height: 32px;
    }
    .login_container .box .boxLeft .content1 {
      font-size: 0.24rem;
    }
    .login_container .box .boxLeft .content5 a {
      font-size: 0.26rem;
    }
    .login_container .box .boxRight {
      -webkit-box-flex: 1;
      -webkit-flex: 1 100%;
      -ms-flex: 1 100%;
      flex: 1 100%;
      padding: 0.4rem 0.3rem;
      width: 100%;
    }
    .login_container .box .boxRight .main .content0 {
      font-size: 0.26rem;
    }
    .login_container .box .boxRight .main .content1 .textarea textarea {
      height: 1.4rem;
    }
    .Mission ._button .prev {
      left: 5vw;
  }
  .Mission ._button .next{
      right: 5vw;
  }
  
  .customer_container .toggle .item {
      padding-bottom: 0.2rem;
  }
  
  .HomeSolution .box .list .item .boxLeft .content2 .ite {
      margin-bottom: 0;
      margin-top: 0.2rem;
  }
  .HomeSolution .box .list .item .boxRight .content3   {
      margin-top: 0.4rem;
  }
  .HomeSolution .box .list .item .boxRight .content3 .button1{
      margin-right: 0.2rem;
  }
  .WinCustomer .box .list .item .boxRight{
      margin-top: 0.4rem;
  }
  
  .WinCustomer .box .list .item .boxRight .content2 {
      margin-top: 0.4rem;
  }
  .equipment .box_ .item a .boxTop .position .content1{
      height: 1.2rem;
  }
  
  .HomeService .box .boxRight .main .left .content4,.client_container .box .banner .swiper-slide .item .boxLeft .content4,.business_container .box .list .boxRight .lpk_phone{
          justify-content: center;
          display: flex;
  }
  
  .client_container .box2  .banner {
      padding:0 0.3rem;
  }
  
  .client_container .box ._button p{
      width:40px;
      height:40px;
      line-height: 40px;
  }
  
  .HomeBanner .banner .swiper-slide .position .main .desc{
    line-height: 1.6;
  }
  
  
  .HomeSolution .box .list .item .boxLeft .content1 ul li a,
  .HomeDomain .box .position .list .item .bot,
  .HomeDomain .logo_posi .banner .item .bot,
  .customer_container_main .box .boxLeft .item .desc,
  .puzzle_container .box .item{
    font-size: 14px;
  }
  
  .HomeMode .box .item a .content1 ,
  .HomeManage .box .item .item_left .posi .con1 ,
  .HomeSolution .toggle ul li,
  .InnerBanner .positon .content2,
  .feature_container .box .item .content1,
  .UpDown div,
  .about_container .box .boxRight .content1,
  .CorporateCulture .box .item .positon1 p{
    font-size: 16px;
  }
  
  
  .footer_container .boxTop .boxCenter .content2 p{
      font-size: 15px;
  }
  .VideoList .box_ .boxLeft .list .item a .right .main .title{
      font-size: 17px;
  }
  .ContactUs .box2 .item .right {
      width: 2.24rem;
  }
  .Mission .box .swiper-slide .bot {
      padding: 0.64rem 0.18rem 0 0.18rem;
  }
  /*.Mission .box .swiper-slide .top .desc {*/
  /*    height: 1.08rem;*/
  /*}*/
  .CooperationSystem .box .boxLeft {
      padding: 0.6rem 0.3rem;
  }
  .banner_container .position .box p {
      font-size: 16px;
      padding: 0 5vw;
  }
  .ConditionsCooperation .box .item .content1 {
      font-size: 0.26rem;
  }
  .CooperationSystem .box .boxLeft .title {
      font-size: 0.26rem;
  }
  .feature_container .box {
      grid-template-columns: repeat(1, 1fr);
  }
  .about_container .box .boxRight .content2 {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
  }
  .argument_container .box .item .mian {
      padding: 0.5rem 0.32rem 0.5rem;
  }
  .ContractService .box .item {
      padding: 0.45rem 5vw;
  }
  .news_container .box .list a .content2 {
      height: 0.68rem;
  }
  .argument_container .box .item .mian .content2 {
      height: 1.05rem;
  }
  .client_container .box .banner .swiper-slide .item .boxLeft .content0 {
      font-size: 0.24rem;
  }
  .client_container .box .banner .swiper-slide .item .boxLeft .content3 {
      height: 1.16rem;
  }
  .CorporateCulture .desc{
      line-height: 1.8;
  }
  .certificate_container .img img {
      min-height: 6rem;
  }
  .course_container .box .list .item .main {
      padding: 0.36rem 0.25rem;
  }
  .problem_container .box .item .bot {
      padding: 0.2rem 0.25rem;
  }
  
  .news_container .box .list a .content1 {
      font-size: 0.22rem;
  }
  .feature_container .box .item .content2 {
      line-height: 1.6;
      padding: 0 0.2rem;
  }
  .problem_container .box .item .top {
      padding: 0 0.25rem;
  }
  .client_container .box .banner .swiper-slide .item .boxLeft {
      padding: 0.5rem 0.3rem;
  }
  .client_container .box .banner .swiper-slide .item .boxLeft .content2 div{
      margin-bottom: 5px ;
  }
  
  .MARKETING .box {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .gaba{
    display: inline-block !important;
  }
  
  .HomeManage .box .item .item_left .posi .con0 {
    font-size: 17px;
  }
  .HomeMode .box .item a .content1 {
    height: 1.18rem;
  }
  .HomeService .box .boxRight .main .left .content2 {
    height: 1.1rem;
  }
  .login_layer .box {
      width: 90vw;
      padding: 0.34rem 0.3rem;
  }
  .login_layer .box h5 {
      font-size: 0.26rem;
      margin-bottom: 0.28rem;
  }
  
  
  }
  /*# sourceMappingURL=./style.css.map */


.case_nav .mmList {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 0.55rem;
}
.case_nav .mmList > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.case_nav .mmList > div .ite {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0.24rem 0.15rem;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}
.case_nav .mmList > div .ite .ri {
  padding-left: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.case_nav .mmList > div .ite .ri .div {
  font-size: 18px;
  color: #000;
}
.case_nav .mmList > div .ite .ri .div p {
  display: inline-block;
  position: relative;
}
.case_nav .mmList > div .ite .ri .div p span {
  position: absolute;
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background: #D10731;
  width: 40px;
  bottom: 2px;
  transform: translateX(10px);
  line-height: 20px;
  border-radius: 4px;
  text-align: center;
}
.case_nav .mmList > div .ite .ri .p {
  font-size: var(--f16);
  color: #737373;
  margin-top: 0.05rem;
}
.case_nav .mmList > div .ite:hover {
  background: #F7F8FC;
}
.case_nav .mmTj {
  width: 2.2rem;
}
.case_nav .mmTj a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.case_nav .mmTj a img {
  width: 100%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 5px;
}
.case_nav .mmTj a figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.15rem 0.2rem;
  z-index: 1;
}
.case_nav .mmTj a figcaption .cont1 {
  font-size: 0.18rem;
  color: #000;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.case_nav .mmTj a figcaption .cont2 {
  color: #737373;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 0.05rem;
}
.case_nav .mmTj a:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.case_nav .mmTj a:hover figcaption .cont1 {
  color: #D10731;
}
.HomeSolution .toggle ul li {
  margin: 0 0.2rem !important;
}
.HomeMode {
  display: none;
}
.HomeModeNew {
  background: url(../images/583.jpg) no-repeat 50% 50% / cover;
}
.HomeModeNew .box {
  overflow: hidden;
  padding: 0.3rem 0;
  margin-top: 0.3rem;
}
.HomeModeNew .box .ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation: 30s pmd linear infinite ;
  animation: 30s pmd linear infinite ;
}
.HomeModeNew .box .ul .li {
  margin: 0 0.15rem;
  width: 4.7rem;
  background: #fff;
  padding: 0.4rem;
  border-radius: 0.2rem;
  height: 3.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.HomeModeNew .box .ul .li .content1 .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.HomeModeNew .box .ul .li .content1 .icon img {
  width: 100%;
  height: 100%;
  border: 50%;
}
.HomeModeNew .box .ul .li .content1 .content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 0.1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.HomeModeNew .box .ul .li .content1 .content .p1 {
  font-size: 0.21rem;
  color: #000;
  font-weight: 500;
}
.HomeModeNew .box .ul .li .content1 .content .p2 {
  font-size: 14px;
}
.HomeModeNew .box .ul .li .content2 {
  font-size: 0.17rem;
  color: #646A73;
  margin-top: 0.3rem;
  line-height: 28px;
}
.HomeModeNew .box .ul .li .content3 {
  position: absolute;
  right: 0.4rem;
  top: 0.25rem;
}
.HomeModeNew .box .ul .li:hover {
  -webkit-box-shadow: 0px 2px 50px rgba(78, 25, 156, 0.18);
  box-shadow: 0px 2px 50px rgba(78, 25, 156, 0.18);
}
.HomeModeNew .box .ul:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.HomeModeNew .box1 {
  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;
  margin-top: 0.3rem;
}
.HomeModeNew .box1 .ite {
  padding: 0 0.5rem;
}
.HomeModeNew .box1 .ite .top {
  font-size: 0.2rem;
}
.HomeModeNew .box1 .ite .top span,
.HomeModeNew .box1 .ite .top em {
  font-size: 0.4rem;
  line-height: 1;
  font-weight: bold;
}
.HomeModeNew .box1 .ite .bot {
  font-size: 0.18rem;
  color: #111;
  margin-top: 0.04rem;
}
@-webkit-keyframes pmd {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
@keyframes pmd {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.w1500 {
  padding-left: 2.1rem;
  padding-right: 2.1rem;
}
@media screen and (max-width: 1280px) {
  .w1500 {
    padding-left: 7.8vw;
    padding-right: 7.8vw;
  }
}
@media screen and (max-width: 1200px) {
  .w1500 {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.solution_toggle_new {
  height: 0;
}
.solution_toggle_new .box {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  min-height: 0.3rem;
  position: relative;
  top: -0.4rem;
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.solution_toggle_new .box .item {
  padding: 0 0.3rem;
}
.solution_toggle_new .box .item a {
  line-height: 0.74rem;
  display: block;
  font-size: 0.2rem;
  color: #333;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}
.solution_toggle_new .box .item a:hover {
  border-bottom-color: #D10731;
}
.solution_toggle_new .box .active a {
  color: #D10731;
  border-bottom-color: #D10731;
}
.InnerBanner .w1620 {
  padding-left: 2.1rem;
  padding-right: 2.1rem;
}
@media screen and (max-width: 1280px) {
  .InnerBanner .w1620 {
    padding-left: 7.8vw;
    padding-right: 7.8vw;
  }
}
@media screen and (max-width: 1200px) {
  .InnerBanner .w1620 {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
@media screen and (max-width: 1600px) {
  .case_nav .mmTj a figcaption .cont2 {
    line-height: 1.6;
  }
 
}
@media screen and (max-width: 1440px) {
  .case_nav .mmList > div .ite .ri .div p span {
    font-size: 10px;
    width: 35px;
    line-height: 16px;
  }
  .case_nav .mmTj a img {
    min-height: 2.7rem;
  }
   .case_nav .mmList > div .ite .ri .div,
   .case_nav .main ._right .toggleMain .m .m_l .ite a figcaption{
      font-size: 16px;
  }
}
@media screen and (max-width: 1280px) {
  .case_nav .mmList > div {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .HomeSolution .toggle ul {
    gap: 0.2rem 0;
  }
  .HomeSolution .toggle ul li {
    padding-bottom: 0.1rem;
  }
  .HomeModeNew .box1 {
    flex-wrap: wrap;
    gap: 0.4rem 0;
  }
  .solution_toggle_new .box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 699px) {
  .solution_toggle_new {
    height: auto;
  }
  .solution_toggle_new .box {
    transform: translateY(0);
    margin-top: 0;
    top: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 0.3rem;
  }
  .solution_toggle_new .box .item {
    margin: 0;
    padding: 0;
  }
  .solution_toggle_new .box .item a {
    line-height: 0.54rem;
  }
  .HomeSolution .toggle ul {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    gap: 0.2rem 0.3rem;
  }
  .HomeSolution .toggle ul li {
    margin: 0 !important;
    font-size: 14px;
  }
}
/*# sourceMappingURL=./style.css.map */










