:root { --animate-duration: 1s; --animate-delay: 1s; --animate-repeat: 1; }
.animate__animated { animation-duration: var(--animate-duration); animation-fill-mode: both; }
.animate__animated.animate__infinite { animation-iteration-count: infinite; }
.animate__animated.animate__repeat-1 { animation-iteration-count: var(--animate-repeat); }
.animate__animated.animate__repeat-2 { animation-iteration-count: calc(var(--animate-repeat)*2); }
.animate__animated.animate__repeat-3 { animation-iteration-count: calc(var(--animate-repeat)*3); }
.animate__animated.animate__delay-1s { animation-delay: var(--animate-delay); }
.animate__animated.animate__delay-2s { animation-delay: calc(var(--animate-delay)*2); }
.animate__animated.animate__delay-3s { animation-delay: calc(var(--animate-delay)*3); }
.animate__animated.animate__delay-4s { animation-delay: calc(var(--animate-delay)*4); }
.animate__animated.animate__delay-5s { animation-delay: calc(var(--animate-delay)*5); }
.animate__animated.animate__faster { animation-duration: calc(var(--animate-duration)/2); }
.animate__animated.animate__fast { animation-duration: calc(var(--animate-duration)*.8); }
.animate__animated.animate__slow { animation-duration: calc(var(--animate-duration)*2); }
.animate__animated.animate__slower { animation-duration: calc(var(--animate-duration)*3); }
@media (prefers-reduced-motion: reduce), print {
  .animate__animated { animation-duration: 1ms !important; animation-iteration-count: 1 !important; transition-duration: 1ms !important; }
  .animate__animated[class*="Out"] { opacity: 0; }
}
@-webkit-keyframes bounce { 
  0%, 20%, 53%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); transform: translateZ(0px); }
  40%, 43% { animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); transform: translate3d(0px, -30px, 0px) scaleY(1.1); }
  70% { animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); transform: translate3d(0px, -15px, 0px) scaleY(1.05); }
  80% { transform: translateZ(0px) scaleY(0.95); transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  90% { transform: translate3d(0px, -4px, 0px) scaleY(1.02); }
}
@keyframes bounce { 
  0%, 20%, 53%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); transform: translateZ(0px); }
  40%, 43% { animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); transform: translate3d(0px, -30px, 0px) scaleY(1.1); }
  70% { animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); transform: translate3d(0px, -15px, 0px) scaleY(1.05); }
  80% { transform: translateZ(0px) scaleY(0.95); transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  90% { transform: translate3d(0px, -4px, 0px) scaleY(1.02); }
}
.animate__bounce { animation-name: bounce; transform-origin: center bottom; }
@-webkit-keyframes flash { 
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
@keyframes flash { 
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}
.animate__flash { animation-name: flash; }
@-webkit-keyframes pulse { 
  0% { transform: scaleX(1); }
  50% { transform: scale3d(1.05, 1.05, 1.05); }
  100% { transform: scaleX(1); }
}
@keyframes pulse { 
  0% { transform: scaleX(1); }
  50% { transform: scale3d(1.05, 1.05, 1.05); }
  100% { transform: scaleX(1); }
}
.animate__pulse { animation-name: pulse; animation-timing-function: ease-in-out; }
@-webkit-keyframes rubberBand { 
  0% { transform: scaleX(1); }
  30% { transform: scale3d(1.25, 0.75, 1); }
  40% { transform: scale3d(0.75, 1.25, 1); }
  50% { transform: scale3d(1.15, 0.85, 1); }
  65% { transform: scale3d(0.95, 1.05, 1); }
  75% { transform: scale3d(1.05, 0.95, 1); }
  100% { transform: scaleX(1); }
}
@keyframes rubberBand { 
  0% { transform: scaleX(1); }
  30% { transform: scale3d(1.25, 0.75, 1); }
  40% { transform: scale3d(0.75, 1.25, 1); }
  50% { transform: scale3d(1.15, 0.85, 1); }
  65% { transform: scale3d(0.95, 1.05, 1); }
  75% { transform: scale3d(1.05, 0.95, 1); }
  100% { transform: scaleX(1); }
}
.animate__rubberBand { animation-name: rubberBand; }
@-webkit-keyframes shakeX { 
  0%, 100% { transform: translateZ(0px); }
  10%, 30%, 50%, 70%, 90% { transform: translate3d(-10px, 0px, 0px); }
  20%, 40%, 60%, 80% { transform: translate3d(10px, 0px, 0px); }
}
@keyframes shakeX { 
  0%, 100% { transform: translateZ(0px); }
  10%, 30%, 50%, 70%, 90% { transform: translate3d(-10px, 0px, 0px); }
  20%, 40%, 60%, 80% { transform: translate3d(10px, 0px, 0px); }
}
.animate__shakeX { animation-name: shakeX; }
@-webkit-keyframes shakeY { 
  0%, 100% { transform: translateZ(0px); }
  10%, 30%, 50%, 70%, 90% { transform: translate3d(0px, -10px, 0px); }
  20%, 40%, 60%, 80% { transform: translate3d(0px, 10px, 0px); }
}
@keyframes shakeY { 
  0%, 100% { transform: translateZ(0px); }
  10%, 30%, 50%, 70%, 90% { transform: translate3d(0px, -10px, 0px); }
  20%, 40%, 60%, 80% { transform: translate3d(0px, 10px, 0px); }
}
.animate__shakeY { animation-name: shakeY; }
@-webkit-keyframes headShake { 
  0% { transform: translateX(0px); }
  6.5% { transform: translateX(-6px) rotateY(-9deg); }
  18.5% { transform: translateX(5px) rotateY(7deg); }
  31.5% { transform: translateX(-3px) rotateY(-5deg); }
  43.5% { transform: translateX(2px) rotateY(3deg); }
  50% { transform: translateX(0px); }
}
@keyframes headShake { 
  0% { transform: translateX(0px); }
  6.5% { transform: translateX(-6px) rotateY(-9deg); }
  18.5% { transform: translateX(5px) rotateY(7deg); }
  31.5% { transform: translateX(-3px) rotateY(-5deg); }
  43.5% { transform: translateX(2px) rotateY(3deg); }
  50% { transform: translateX(0px); }
}
.animate__headShake { animation-name: headShake; animation-timing-function: ease-in-out; }
@-webkit-keyframes swing { 
  20% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  60% { transform: rotate(5deg); }
  80% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}
@keyframes swing { 
  20% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  60% { transform: rotate(5deg); }
  80% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}
.animate__swing { animation-name: swing; transform-origin: center top; }
@-webkit-keyframes tada { 
  0% { transform: scaleX(1); }
  10%, 20% { transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% { transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); }
  40%, 60%, 80% { transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); }
  100% { transform: scaleX(1); }
}
@keyframes tada { 
  0% { transform: scaleX(1); }
  10%, 20% { transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg); }
  30%, 50%, 70%, 90% { transform: scale3d(1.1, 1.1, 1.1) rotate(3deg); }
  40%, 60%, 80% { transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg); }
  100% { transform: scaleX(1); }
}
.animate__tada { animation-name: tada; }
@-webkit-keyframes wobble { 
  0% { transform: translateZ(0px); }
  15% { transform: translate3d(-25%, 0px, 0px) rotate(-5deg); }
  30% { transform: translate3d(20%, 0px, 0px) rotate(3deg); }
  45% { transform: translate3d(-15%, 0px, 0px) rotate(-3deg); }
  60% { transform: translate3d(10%, 0px, 0px) rotate(2deg); }
  75% { transform: translate3d(-5%, 0px, 0px) rotate(-1deg); }
  100% { transform: translateZ(0px); }
}
@keyframes wobble { 
  0% { transform: translateZ(0px); }
  15% { transform: translate3d(-25%, 0px, 0px) rotate(-5deg); }
  30% { transform: translate3d(20%, 0px, 0px) rotate(3deg); }
  45% { transform: translate3d(-15%, 0px, 0px) rotate(-3deg); }
  60% { transform: translate3d(10%, 0px, 0px) rotate(2deg); }
  75% { transform: translate3d(-5%, 0px, 0px) rotate(-1deg); }
  100% { transform: translateZ(0px); }
}
.animate__wobble { animation-name: wobble; }
@-webkit-keyframes jello { 
  0%, 11.1%, 100% { transform: translateZ(0px); }
  22.2% { transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% { transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% { transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% { transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% { transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% { transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% { transform: skewX(-0.195312deg) skewY(-0.195312deg); }
}
@keyframes jello { 
  0%, 11.1%, 100% { transform: translateZ(0px); }
  22.2% { transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% { transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% { transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% { transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% { transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% { transform: skewX(0.390625deg) skewY(0.390625deg); }
  88.8% { transform: skewX(-0.195312deg) skewY(-0.195312deg); }
}
.animate__jello { animation-name: jello; transform-origin: center center; }
@-webkit-keyframes heartBeat { 
  0% { transform: scale(1); }
  14% { transform: scale(1.3); }
  28% { transform: scale(1); }
  42% { transform: scale(1.3); }
  70% { transform: scale(1); }
}
@keyframes heartBeat { 
  0% { transform: scale(1); }
  14% { transform: scale(1.3); }
  28% { transform: scale(1); }
  42% { transform: scale(1.3); }
  70% { transform: scale(1); }
}
.animate__heartBeat { animation-duration: calc(var(--animate-duration)*1.3); animation-name: heartBeat; animation-timing-function: ease-in-out; }
@-webkit-keyframes backInDown { 
  0% { opacity: 0.7; transform: translateY(-1200px) scale(0.7); }
  80% { opacity: 0.7; transform: translateY(0px) scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes backInDown { 
  0% { opacity: 0.7; transform: translateY(-1200px) scale(0.7); }
  80% { opacity: 0.7; transform: translateY(0px) scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}
.animate__backInDown { animation-name: backInDown; }
@-webkit-keyframes backInLeft { 
  0% { opacity: 0.7; transform: translateX(-2000px) scale(0.7); }
  80% { opacity: 0.7; transform: translateX(0px) scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes backInLeft { 
  0% { opacity: 0.7; transform: translateX(-2000px) scale(0.7); }
  80% { opacity: 0.7; transform: translateX(0px) scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}
.animate__backInLeft { animation-name: backInLeft; }
@-webkit-keyframes backInRight { 
  0% { opacity: 0.7; transform: translateX(2000px) scale(0.7); }
  80% { opacity: 0.7; transform: translateX(0px) scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes backInRight { 
  0% { opacity: 0.7; transform: translateX(2000px) scale(0.7); }
  80% { opacity: 0.7; transform: translateX(0px) scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}
.animate__backInRight { animation-name: backInRight; }
@-webkit-keyframes backInUp { 
  0% { opacity: 0.7; transform: translateY(1200px) scale(0.7); }
  80% { opacity: 0.7; transform: translateY(0px) scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes backInUp { 
  0% { opacity: 0.7; transform: translateY(1200px) scale(0.7); }
  80% { opacity: 0.7; transform: translateY(0px) scale(0.7); }
  100% { opacity: 1; transform: scale(1); }
}
.animate__backInUp { animation-name: backInUp; }
@-webkit-keyframes backOutDown { 
  0% { opacity: 1; transform: scale(1); }
  20% { opacity: 0.7; transform: translateY(0px) scale(0.7); }
  100% { opacity: 0.7; transform: translateY(700px) scale(0.7); }
}
@keyframes backOutDown { 
  0% { opacity: 1; transform: scale(1); }
  20% { opacity: 0.7; transform: translateY(0px) scale(0.7); }
  100% { opacity: 0.7; transform: translateY(700px) scale(0.7); }
}
.animate__backOutDown { animation-name: backOutDown; }
@-webkit-keyframes backOutLeft { 
  0% { opacity: 1; transform: scale(1); }
  20% { opacity: 0.7; transform: translateX(0px) scale(0.7); }
  100% { opacity: 0.7; transform: translateX(-2000px) scale(0.7); }
}
@keyframes backOutLeft { 
  0% { opacity: 1; transform: scale(1); }
  20% { opacity: 0.7; transform: translateX(0px) scale(0.7); }
  100% { opacity: 0.7; transform: translateX(-2000px) scale(0.7); }
}
.animate__backOutLeft { animation-name: backOutLeft; }
@-webkit-keyframes backOutRight { 
  0% { opacity: 1; transform: scale(1); }
  20% { opacity: 0.7; transform: translateX(0px) scale(0.7); }
  100% { opacity: 0.7; transform: translateX(2000px) scale(0.7); }
}
@keyframes backOutRight { 
  0% { opacity: 1; transform: scale(1); }
  20% { opacity: 0.7; transform: translateX(0px) scale(0.7); }
  100% { opacity: 0.7; transform: translateX(2000px) scale(0.7); }
}
.animate__backOutRight { animation-name: backOutRight; }
@-webkit-keyframes backOutUp { 
  0% { opacity: 1; transform: scale(1); }
  20% { opacity: 0.7; transform: translateY(0px) scale(0.7); }
  100% { opacity: 0.7; transform: translateY(-700px) scale(0.7); }
}
@keyframes backOutUp { 
  0% { opacity: 1; transform: scale(1); }
  20% { opacity: 0.7; transform: translateY(0px) scale(0.7); }
  100% { opacity: 0.7; transform: translateY(-700px) scale(0.7); }
}
.animate__backOutUp { animation-name: backOutUp; }
@-webkit-keyframes bounceIn { 
  0%, 20%, 40%, 60%, 80%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
  20% { transform: scale3d(1.1, 1.1, 1.1); }
  40% { transform: scale3d(0.9, 0.9, 0.9); }
  60% { opacity: 1; transform: scale3d(1.03, 1.03, 1.03); }
  80% { transform: scale3d(0.97, 0.97, 0.97); }
  100% { opacity: 1; transform: scaleX(1); }
}
@keyframes bounceIn { 
  0%, 20%, 40%, 60%, 80%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
  20% { transform: scale3d(1.1, 1.1, 1.1); }
  40% { transform: scale3d(0.9, 0.9, 0.9); }
  60% { opacity: 1; transform: scale3d(1.03, 1.03, 1.03); }
  80% { transform: scale3d(0.97, 0.97, 0.97); }
  100% { opacity: 1; transform: scaleX(1); }
}
.animate__bounceIn { animation-duration: calc(var(--animate-duration)*.75); animation-name: bounceIn; }
@-webkit-keyframes bounceInDown { 
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: translate3d(0px, -3000px, 0px) scaleY(3); }
  60% { opacity: 1; transform: translate3d(0px, 25px, 0px) scaleY(0.9); }
  75% { transform: translate3d(0px, -10px, 0px) scaleY(0.95); }
  90% { transform: translate3d(0px, 5px, 0px) scaleY(0.985); }
  100% { transform: translateZ(0px); }
}
@keyframes bounceInDown { 
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: translate3d(0px, -3000px, 0px) scaleY(3); }
  60% { opacity: 1; transform: translate3d(0px, 25px, 0px) scaleY(0.9); }
  75% { transform: translate3d(0px, -10px, 0px) scaleY(0.95); }
  90% { transform: translate3d(0px, 5px, 0px) scaleY(0.985); }
  100% { transform: translateZ(0px); }
}
.animate__bounceInDown { animation-name: bounceInDown; }
@-webkit-keyframes bounceInLeft { 
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: translate3d(-3000px, 0px, 0px) scaleX(3); }
  60% { opacity: 1; transform: translate3d(25px, 0px, 0px) scaleX(1); }
  75% { transform: translate3d(-10px, 0px, 0px) scaleX(0.98); }
  90% { transform: translate3d(5px, 0px, 0px) scaleX(0.995); }
  100% { transform: translateZ(0px); }
}
@keyframes bounceInLeft { 
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: translate3d(-3000px, 0px, 0px) scaleX(3); }
  60% { opacity: 1; transform: translate3d(25px, 0px, 0px) scaleX(1); }
  75% { transform: translate3d(-10px, 0px, 0px) scaleX(0.98); }
  90% { transform: translate3d(5px, 0px, 0px) scaleX(0.995); }
  100% { transform: translateZ(0px); }
}
.animate__bounceInLeft { animation-name: bounceInLeft; }
@-webkit-keyframes bounceInRight { 
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: translate3d(3000px, 0px, 0px) scaleX(3); }
  60% { opacity: 1; transform: translate3d(-25px, 0px, 0px) scaleX(1); }
  75% { transform: translate3d(10px, 0px, 0px) scaleX(0.98); }
  90% { transform: translate3d(-5px, 0px, 0px) scaleX(0.995); }
  100% { transform: translateZ(0px); }
}
@keyframes bounceInRight { 
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: translate3d(3000px, 0px, 0px) scaleX(3); }
  60% { opacity: 1; transform: translate3d(-25px, 0px, 0px) scaleX(1); }
  75% { transform: translate3d(10px, 0px, 0px) scaleX(0.98); }
  90% { transform: translate3d(-5px, 0px, 0px) scaleX(0.995); }
  100% { transform: translateZ(0px); }
}
.animate__bounceInRight { animation-name: bounceInRight; }
@-webkit-keyframes bounceInUp { 
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: translate3d(0px, 3000px, 0px) scaleY(5); }
  60% { opacity: 1; transform: translate3d(0px, -20px, 0px) scaleY(0.9); }
  75% { transform: translate3d(0px, 10px, 0px) scaleY(0.95); }
  90% { transform: translate3d(0px, -5px, 0px) scaleY(0.985); }
  100% { transform: translateZ(0px); }
}
@keyframes bounceInUp { 
  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% { opacity: 0; transform: translate3d(0px, 3000px, 0px) scaleY(5); }
  60% { opacity: 1; transform: translate3d(0px, -20px, 0px) scaleY(0.9); }
  75% { transform: translate3d(0px, 10px, 0px) scaleY(0.95); }
  90% { transform: translate3d(0px, -5px, 0px) scaleY(0.985); }
  100% { transform: translateZ(0px); }
}
.animate__bounceInUp { animation-name: bounceInUp; }
@-webkit-keyframes bounceOut { 
  20% { transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% { opacity: 1; transform: scale3d(1.1, 1.1, 1.1); }
  100% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
}
@keyframes bounceOut { 
  20% { transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% { opacity: 1; transform: scale3d(1.1, 1.1, 1.1); }
  100% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
}
.animate__bounceOut { animation-duration: calc(var(--animate-duration)*.75); animation-name: bounceOut; }
@-webkit-keyframes bounceOutDown { 
  20% { transform: translate3d(0px, 10px, 0px) scaleY(0.985); }
  40%, 45% { opacity: 1; transform: translate3d(0px, -20px, 0px) scaleY(0.9); }
  100% { opacity: 0; transform: translate3d(0px, 2000px, 0px) scaleY(3); }
}
@keyframes bounceOutDown { 
  20% { transform: translate3d(0px, 10px, 0px) scaleY(0.985); }
  40%, 45% { opacity: 1; transform: translate3d(0px, -20px, 0px) scaleY(0.9); }
  100% { opacity: 0; transform: translate3d(0px, 2000px, 0px) scaleY(3); }
}
.animate__bounceOutDown { animation-name: bounceOutDown; }
@-webkit-keyframes bounceOutLeft { 
  20% { opacity: 1; transform: translate3d(20px, 0px, 0px) scaleX(0.9); }
  100% { opacity: 0; transform: translate3d(-2000px, 0px, 0px) scaleX(2); }
}
@keyframes bounceOutLeft { 
  20% { opacity: 1; transform: translate3d(20px, 0px, 0px) scaleX(0.9); }
  100% { opacity: 0; transform: translate3d(-2000px, 0px, 0px) scaleX(2); }
}
.animate__bounceOutLeft { animation-name: bounceOutLeft; }
@-webkit-keyframes bounceOutRight { 
  20% { opacity: 1; transform: translate3d(-20px, 0px, 0px) scaleX(0.9); }
  100% { opacity: 0; transform: translate3d(2000px, 0px, 0px) scaleX(2); }
}
@keyframes bounceOutRight { 
  20% { opacity: 1; transform: translate3d(-20px, 0px, 0px) scaleX(0.9); }
  100% { opacity: 0; transform: translate3d(2000px, 0px, 0px) scaleX(2); }
}
.animate__bounceOutRight { animation-name: bounceOutRight; }
@-webkit-keyframes bounceOutUp { 
  20% { transform: translate3d(0px, -10px, 0px) scaleY(0.985); }
  40%, 45% { opacity: 1; transform: translate3d(0px, 20px, 0px) scaleY(0.9); }
  100% { opacity: 0; transform: translate3d(0px, -2000px, 0px) scaleY(3); }
}
@keyframes bounceOutUp { 
  20% { transform: translate3d(0px, -10px, 0px) scaleY(0.985); }
  40%, 45% { opacity: 1; transform: translate3d(0px, 20px, 0px) scaleY(0.9); }
  100% { opacity: 0; transform: translate3d(0px, -2000px, 0px) scaleY(3); }
}
.animate__bounceOutUp { animation-name: bounceOutUp; }
@-webkit-keyframes fadeIn { 
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeIn { 
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.animate__fadeIn { animation-name: fadeIn; }
@-webkit-keyframes fadeInDown { 
  0% { opacity: 0; transform: translate3d(0px, -100%, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes fadeInDown { 
  0% { opacity: 0; transform: translate3d(0px, -100%, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__fadeInDown { animation-name: fadeInDown; }
@-webkit-keyframes fadeInDownBig { 
  0% { opacity: 0; transform: translate3d(0px, -2000px, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes fadeInDownBig { 
  0% { opacity: 0; transform: translate3d(0px, -2000px, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__fadeInDownBig { animation-name: fadeInDownBig; }
@-webkit-keyframes fadeInLeft { 
  0% { opacity: 0; transform: translate3d(-100%, 0px, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes fadeInLeft { 
  0% { opacity: 0; transform: translate3d(-100%, 0px, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__fadeInLeft { animation-name: fadeInLeft; }
@-webkit-keyframes fadeInLeftBig { 
  0% { opacity: 0; transform: translate3d(-2000px, 0px, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes fadeInLeftBig { 
  0% { opacity: 0; transform: translate3d(-2000px, 0px, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__fadeInLeftBig { animation-name: fadeInLeftBig; }
@-webkit-keyframes fadeInRight { 
  0% { opacity: 0; transform: translate3d(100%, 0px, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes fadeInRight { 
  0% { opacity: 0; transform: translate3d(100%, 0px, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__fadeInRight { animation-name: fadeInRight; }
@-webkit-keyframes fadeInRightBig { 
  0% { opacity: 0; transform: translate3d(2000px, 0px, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes fadeInRightBig { 
  0% { opacity: 0; transform: translate3d(2000px, 0px, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__fadeInRightBig { animation-name: fadeInRightBig; }
@-webkit-keyframes fadeInUp { 
  0% { opacity: 0; transform: translate3d(0px, 100%, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes fadeInUp { 
  0% { opacity: 0; transform: translate3d(0px, 100%, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__fadeInUp { animation-name: fadeInUp; }
@-webkit-keyframes fadeInUpBig { 
  0% { opacity: 0; transform: translate3d(0px, 2000px, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes fadeInUpBig { 
  0% { opacity: 0; transform: translate3d(0px, 2000px, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__fadeInUpBig { animation-name: fadeInUpBig; }
@-webkit-keyframes fadeInTopLeft { 
  0% { opacity: 0; transform: translate3d(-100%, -100%, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes fadeInTopLeft { 
  0% { opacity: 0; transform: translate3d(-100%, -100%, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__fadeInTopLeft { animation-name: fadeInTopLeft; }
@-webkit-keyframes fadeInTopRight { 
  0% { opacity: 0; transform: translate3d(100%, -100%, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes fadeInTopRight { 
  0% { opacity: 0; transform: translate3d(100%, -100%, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__fadeInTopRight { animation-name: fadeInTopRight; }
@-webkit-keyframes fadeInBottomLeft { 
  0% { opacity: 0; transform: translate3d(-100%, 100%, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes fadeInBottomLeft { 
  0% { opacity: 0; transform: translate3d(-100%, 100%, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__fadeInBottomLeft { animation-name: fadeInBottomLeft; }
@-webkit-keyframes fadeInBottomRight { 
  0% { opacity: 0; transform: translate3d(100%, 100%, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes fadeInBottomRight { 
  0% { opacity: 0; transform: translate3d(100%, 100%, 0px); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__fadeInBottomRight { animation-name: fadeInBottomRight; }
@-webkit-keyframes fadeOut { 
  0% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes fadeOut { 
  0% { opacity: 1; }
  100% { opacity: 0; }
}
.animate__fadeOut { animation-name: fadeOut; }
@-webkit-keyframes fadeOutDown { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(0px, 100%, 0px); }
}
@keyframes fadeOutDown { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(0px, 100%, 0px); }
}
.animate__fadeOutDown { animation-name: fadeOutDown; }
@-webkit-keyframes fadeOutDownBig { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(0px, 2000px, 0px); }
}
@keyframes fadeOutDownBig { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(0px, 2000px, 0px); }
}
.animate__fadeOutDownBig { animation-name: fadeOutDownBig; }
@-webkit-keyframes fadeOutLeft { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(-100%, 0px, 0px); }
}
@keyframes fadeOutLeft { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(-100%, 0px, 0px); }
}
.animate__fadeOutLeft { animation-name: fadeOutLeft; }
@-webkit-keyframes fadeOutLeftBig { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(-2000px, 0px, 0px); }
}
@keyframes fadeOutLeftBig { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(-2000px, 0px, 0px); }
}
.animate__fadeOutLeftBig { animation-name: fadeOutLeftBig; }
@-webkit-keyframes fadeOutRight { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(100%, 0px, 0px); }
}
@keyframes fadeOutRight { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(100%, 0px, 0px); }
}
.animate__fadeOutRight { animation-name: fadeOutRight; }
@-webkit-keyframes fadeOutRightBig { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(2000px, 0px, 0px); }
}
@keyframes fadeOutRightBig { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(2000px, 0px, 0px); }
}
.animate__fadeOutRightBig { animation-name: fadeOutRightBig; }
@-webkit-keyframes fadeOutUp { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(0px, -100%, 0px); }
}
@keyframes fadeOutUp { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(0px, -100%, 0px); }
}
.animate__fadeOutUp { animation-name: fadeOutUp; }
@-webkit-keyframes fadeOutUpBig { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(0px, -2000px, 0px); }
}
@keyframes fadeOutUpBig { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(0px, -2000px, 0px); }
}
.animate__fadeOutUpBig { animation-name: fadeOutUpBig; }
@-webkit-keyframes fadeOutTopLeft { 
  0% { opacity: 1; transform: translateZ(0px); }
  100% { opacity: 0; transform: translate3d(-100%, -100%, 0px); }
}
@keyframes fadeOutTopLeft { 
  0% { opacity: 1; transform: translateZ(0px); }
  100% { opacity: 0; transform: translate3d(-100%, -100%, 0px); }
}
.animate__fadeOutTopLeft { animation-name: fadeOutTopLeft; }
@-webkit-keyframes fadeOutTopRight { 
  0% { opacity: 1; transform: translateZ(0px); }
  100% { opacity: 0; transform: translate3d(100%, -100%, 0px); }
}
@keyframes fadeOutTopRight { 
  0% { opacity: 1; transform: translateZ(0px); }
  100% { opacity: 0; transform: translate3d(100%, -100%, 0px); }
}
.animate__fadeOutTopRight { animation-name: fadeOutTopRight; }
@-webkit-keyframes fadeOutBottomRight { 
  0% { opacity: 1; transform: translateZ(0px); }
  100% { opacity: 0; transform: translate3d(100%, 100%, 0px); }
}
@keyframes fadeOutBottomRight { 
  0% { opacity: 1; transform: translateZ(0px); }
  100% { opacity: 0; transform: translate3d(100%, 100%, 0px); }
}
.animate__fadeOutBottomRight { animation-name: fadeOutBottomRight; }
@-webkit-keyframes fadeOutBottomLeft { 
  0% { opacity: 1; transform: translateZ(0px); }
  100% { opacity: 0; transform: translate3d(-100%, 100%, 0px); }
}
@keyframes fadeOutBottomLeft { 
  0% { opacity: 1; transform: translateZ(0px); }
  100% { opacity: 0; transform: translate3d(-100%, 100%, 0px); }
}
.animate__fadeOutBottomLeft { animation-name: fadeOutBottomLeft; }
@-webkit-keyframes flip { 
  0% { animation-timing-function: ease-out; transform: perspective(400px) scaleX(1) translateZ(0px) rotateY(-1turn); }
  40% { animation-timing-function: ease-out; transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg); }
  50% { animation-timing-function: ease-in; transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg); }
  80% { animation-timing-function: ease-in; transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0px) rotateY(0deg); }
  100% { animation-timing-function: ease-in; transform: perspective(400px) scaleX(1) translateZ(0px) rotateY(0deg); }
}
@keyframes flip { 
  0% { animation-timing-function: ease-out; transform: perspective(400px) scaleX(1) translateZ(0px) rotateY(-1turn); }
  40% { animation-timing-function: ease-out; transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg); }
  50% { animation-timing-function: ease-in; transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg); }
  80% { animation-timing-function: ease-in; transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0px) rotateY(0deg); }
  100% { animation-timing-function: ease-in; transform: perspective(400px) scaleX(1) translateZ(0px) rotateY(0deg); }
}
.animate__animated.animate__flip { animation-name: flip; backface-visibility: visible; }
@-webkit-keyframes flipInX { 
  0% { animation-timing-function: ease-in; opacity: 0; transform: perspective(400px) rotateX(90deg); }
  40% { animation-timing-function: ease-in; transform: perspective(400px) rotateX(-20deg); }
  60% { opacity: 1; transform: perspective(400px) rotateX(10deg); }
  80% { transform: perspective(400px) rotateX(-5deg); }
  100% { transform: perspective(400px); }
}
@keyframes flipInX { 
  0% { animation-timing-function: ease-in; opacity: 0; transform: perspective(400px) rotateX(90deg); }
  40% { animation-timing-function: ease-in; transform: perspective(400px) rotateX(-20deg); }
  60% { opacity: 1; transform: perspective(400px) rotateX(10deg); }
  80% { transform: perspective(400px) rotateX(-5deg); }
  100% { transform: perspective(400px); }
}
.animate__flipInX { animation-name: flipInX; backface-visibility: visible !important; }
@-webkit-keyframes flipInY { 
  0% { animation-timing-function: ease-in; opacity: 0; transform: perspective(400px) rotateY(90deg); }
  40% { animation-timing-function: ease-in; transform: perspective(400px) rotateY(-20deg); }
  60% { opacity: 1; transform: perspective(400px) rotateY(10deg); }
  80% { transform: perspective(400px) rotateY(-5deg); }
  100% { transform: perspective(400px); }
}
@keyframes flipInY { 
  0% { animation-timing-function: ease-in; opacity: 0; transform: perspective(400px) rotateY(90deg); }
  40% { animation-timing-function: ease-in; transform: perspective(400px) rotateY(-20deg); }
  60% { opacity: 1; transform: perspective(400px) rotateY(10deg); }
  80% { transform: perspective(400px) rotateY(-5deg); }
  100% { transform: perspective(400px); }
}
.animate__flipInY { animation-name: flipInY; backface-visibility: visible !important; }
@-webkit-keyframes flipOutX { 
  0% { transform: perspective(400px); }
  30% { opacity: 1; transform: perspective(400px) rotateX(-20deg); }
  100% { opacity: 0; transform: perspective(400px) rotateX(90deg); }
}
@keyframes flipOutX { 
  0% { transform: perspective(400px); }
  30% { opacity: 1; transform: perspective(400px) rotateX(-20deg); }
  100% { opacity: 0; transform: perspective(400px) rotateX(90deg); }
}
.animate__flipOutX { animation-duration: calc(var(--animate-duration)*.75); animation-name: flipOutX; backface-visibility: visible !important; }
@-webkit-keyframes flipOutY { 
  0% { transform: perspective(400px); }
  30% { opacity: 1; transform: perspective(400px) rotateY(-15deg); }
  100% { opacity: 0; transform: perspective(400px) rotateY(90deg); }
}
@keyframes flipOutY { 
  0% { transform: perspective(400px); }
  30% { opacity: 1; transform: perspective(400px) rotateY(-15deg); }
  100% { opacity: 0; transform: perspective(400px) rotateY(90deg); }
}
.animate__flipOutY { animation-duration: calc(var(--animate-duration)*.75); animation-name: flipOutY; backface-visibility: visible !important; }
@-webkit-keyframes lightSpeedInRight { 
  0% { opacity: 0; transform: translate3d(100%, 0px, 0px) skewX(-30deg); }
  60% { opacity: 1; transform: skewX(20deg); }
  80% { transform: skewX(-5deg); }
  100% { transform: translateZ(0px); }
}
@keyframes lightSpeedInRight { 
  0% { opacity: 0; transform: translate3d(100%, 0px, 0px) skewX(-30deg); }
  60% { opacity: 1; transform: skewX(20deg); }
  80% { transform: skewX(-5deg); }
  100% { transform: translateZ(0px); }
}
.animate__lightSpeedInRight { animation-name: lightSpeedInRight; animation-timing-function: ease-out; }
@-webkit-keyframes lightSpeedInLeft { 
  0% { opacity: 0; transform: translate3d(-100%, 0px, 0px) skewX(30deg); }
  60% { opacity: 1; transform: skewX(-20deg); }
  80% { transform: skewX(5deg); }
  100% { transform: translateZ(0px); }
}
@keyframes lightSpeedInLeft { 
  0% { opacity: 0; transform: translate3d(-100%, 0px, 0px) skewX(30deg); }
  60% { opacity: 1; transform: skewX(-20deg); }
  80% { transform: skewX(5deg); }
  100% { transform: translateZ(0px); }
}
.animate__lightSpeedInLeft { animation-name: lightSpeedInLeft; animation-timing-function: ease-out; }
@-webkit-keyframes lightSpeedOutRight { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(100%, 0px, 0px) skewX(30deg); }
}
@keyframes lightSpeedOutRight { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(100%, 0px, 0px) skewX(30deg); }
}
.animate__lightSpeedOutRight { animation-name: lightSpeedOutRight; animation-timing-function: ease-in; }
@-webkit-keyframes lightSpeedOutLeft { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(-100%, 0px, 0px) skewX(-30deg); }
}
@keyframes lightSpeedOutLeft { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(-100%, 0px, 0px) skewX(-30deg); }
}
.animate__lightSpeedOutLeft { animation-name: lightSpeedOutLeft; animation-timing-function: ease-in; }
@-webkit-keyframes rotateIn { 
  0% { opacity: 0; transform: rotate(-200deg); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes rotateIn { 
  0% { opacity: 0; transform: rotate(-200deg); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__rotateIn { animation-name: rotateIn; transform-origin: center center; }
@-webkit-keyframes rotateInDownLeft { 
  0% { opacity: 0; transform: rotate(-45deg); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes rotateInDownLeft { 
  0% { opacity: 0; transform: rotate(-45deg); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__rotateInDownLeft { animation-name: rotateInDownLeft; transform-origin: left bottom; }
@-webkit-keyframes rotateInDownRight { 
  0% { opacity: 0; transform: rotate(45deg); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes rotateInDownRight { 
  0% { opacity: 0; transform: rotate(45deg); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__rotateInDownRight { animation-name: rotateInDownRight; transform-origin: right bottom; }
@-webkit-keyframes rotateInUpLeft { 
  0% { opacity: 0; transform: rotate(45deg); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes rotateInUpLeft { 
  0% { opacity: 0; transform: rotate(45deg); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__rotateInUpLeft { animation-name: rotateInUpLeft; transform-origin: left bottom; }
@-webkit-keyframes rotateInUpRight { 
  0% { opacity: 0; transform: rotate(-90deg); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes rotateInUpRight { 
  0% { opacity: 0; transform: rotate(-90deg); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__rotateInUpRight { animation-name: rotateInUpRight; transform-origin: right bottom; }
@-webkit-keyframes rotateOut { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: rotate(200deg); }
}
@keyframes rotateOut { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: rotate(200deg); }
}
.animate__rotateOut { animation-name: rotateOut; transform-origin: center center; }
@-webkit-keyframes rotateOutDownLeft { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg); }
}
@keyframes rotateOutDownLeft { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: rotate(45deg); }
}
.animate__rotateOutDownLeft { animation-name: rotateOutDownLeft; transform-origin: left bottom; }
@-webkit-keyframes rotateOutDownRight { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: rotate(-45deg); }
}
@keyframes rotateOutDownRight { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: rotate(-45deg); }
}
.animate__rotateOutDownRight { animation-name: rotateOutDownRight; transform-origin: right bottom; }
@-webkit-keyframes rotateOutUpLeft { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: rotate(-45deg); }
}
@keyframes rotateOutUpLeft { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: rotate(-45deg); }
}
.animate__rotateOutUpLeft { animation-name: rotateOutUpLeft; transform-origin: left bottom; }
@-webkit-keyframes rotateOutUpRight { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: rotate(90deg); }
}
@keyframes rotateOutUpRight { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: rotate(90deg); }
}
.animate__rotateOutUpRight { animation-name: rotateOutUpRight; transform-origin: right bottom; }
@-webkit-keyframes hinge { 
  0% { animation-timing-function: ease-in-out; }
  20%, 60% { animation-timing-function: ease-in-out; transform: rotate(80deg); }
  40%, 80% { animation-timing-function: ease-in-out; opacity: 1; transform: rotate(60deg); }
  100% { opacity: 0; transform: translate3d(0px, 700px, 0px); }
}
@keyframes hinge { 
  0% { animation-timing-function: ease-in-out; }
  20%, 60% { animation-timing-function: ease-in-out; transform: rotate(80deg); }
  40%, 80% { animation-timing-function: ease-in-out; opacity: 1; transform: rotate(60deg); }
  100% { opacity: 0; transform: translate3d(0px, 700px, 0px); }
}
.animate__hinge { animation-duration: calc(var(--animate-duration)*2); animation-name: hinge; transform-origin: left top; }
@-webkit-keyframes jackInTheBox { 
  0% { opacity: 0; transform: scale(0.1) rotate(30deg); transform-origin: center bottom; }
  50% { transform: rotate(-10deg); }
  70% { transform: rotate(3deg); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes jackInTheBox { 
  0% { opacity: 0; transform: scale(0.1) rotate(30deg); transform-origin: center bottom; }
  50% { transform: rotate(-10deg); }
  70% { transform: rotate(3deg); }
  100% { opacity: 1; transform: scale(1); }
}
.animate__jackInTheBox { animation-name: jackInTheBox; }
@-webkit-keyframes rollIn { 
  0% { opacity: 0; transform: translate3d(-100%, 0px, 0px) rotate(-120deg); }
  100% { opacity: 1; transform: translateZ(0px); }
}
@keyframes rollIn { 
  0% { opacity: 0; transform: translate3d(-100%, 0px, 0px) rotate(-120deg); }
  100% { opacity: 1; transform: translateZ(0px); }
}
.animate__rollIn { animation-name: rollIn; }
@-webkit-keyframes rollOut { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(100%, 0px, 0px) rotate(120deg); }
}
@keyframes rollOut { 
  0% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(100%, 0px, 0px) rotate(120deg); }
}
.animate__rollOut { animation-name: rollOut; }
@-webkit-keyframes zoomIn { 
  0% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
  50% { opacity: 1; }
}
@keyframes zoomIn { 
  0% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
  50% { opacity: 1; }
}
.animate__zoomIn { animation-name: zoomIn; }
@-webkit-keyframes zoomInDown { 
  0% { animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(0px, -1000px, 0px); }
  60% { animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(0px, 60px, 0px); }
}
@keyframes zoomInDown { 
  0% { animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(0px, -1000px, 0px); }
  60% { animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(0px, 60px, 0px); }
}
.animate__zoomInDown { animation-name: zoomInDown; }
@-webkit-keyframes zoomInLeft { 
  0% { animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0px, 0px); }
  60% { animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0px, 0px); }
}
@keyframes zoomInLeft { 
  0% { animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0px, 0px); }
  60% { animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0px, 0px); }
}
.animate__zoomInLeft { animation-name: zoomInLeft; }
@-webkit-keyframes zoomInRight { 
  0% { animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0px, 0px); }
  60% { animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0px, 0px); }
}
@keyframes zoomInRight { 
  0% { animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0px, 0px); }
  60% { animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0px, 0px); }
}
.animate__zoomInRight { animation-name: zoomInRight; }
@-webkit-keyframes zoomInUp { 
  0% { animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(0px, 1000px, 0px); }
  60% { animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(0px, -60px, 0px); }
}
@keyframes zoomInUp { 
  0% { animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(0px, 1000px, 0px); }
  60% { animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(0px, -60px, 0px); }
}
.animate__zoomInUp { animation-name: zoomInUp; }
@-webkit-keyframes zoomOut { 
  0% { opacity: 1; }
  50% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
  100% { opacity: 0; }
}
@keyframes zoomOut { 
  0% { opacity: 1; }
  50% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
  100% { opacity: 0; }
}
.animate__zoomOut { animation-name: zoomOut; }
@-webkit-keyframes zoomOutDown { 
  40% { animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(0px, -60px, 0px); }
  100% { animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(0px, 2000px, 0px); }
}
@keyframes zoomOutDown { 
  40% { animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(0px, -60px, 0px); }
  100% { animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(0px, 2000px, 0px); }
}
.animate__zoomOutDown { animation-name: zoomOutDown; transform-origin: center bottom; }
@-webkit-keyframes zoomOutLeft { 
  40% { opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0px, 0px); }
  100% { opacity: 0; transform: scale(0.1) translate3d(-2000px, 0px, 0px); }
}
@keyframes zoomOutLeft { 
  40% { opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0px, 0px); }
  100% { opacity: 0; transform: scale(0.1) translate3d(-2000px, 0px, 0px); }
}
.animate__zoomOutLeft { animation-name: zoomOutLeft; transform-origin: left center; }
@-webkit-keyframes zoomOutRight { 
  40% { opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0px, 0px); }
  100% { opacity: 0; transform: scale(0.1) translate3d(2000px, 0px, 0px); }
}
@keyframes zoomOutRight { 
  40% { opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0px, 0px); }
  100% { opacity: 0; transform: scale(0.1) translate3d(2000px, 0px, 0px); }
}
.animate__zoomOutRight { animation-name: zoomOutRight; transform-origin: right center; }
@-webkit-keyframes zoomOutUp { 
  40% { animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(0px, 60px, 0px); }
  100% { animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(0px, -2000px, 0px); }
}
@keyframes zoomOutUp { 
  40% { animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); opacity: 1; transform: scale3d(0.475, 0.475, 0.475) translate3d(0px, 60px, 0px); }
  100% { animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); opacity: 0; transform: scale3d(0.1, 0.1, 0.1) translate3d(0px, -2000px, 0px); }
}
.animate__zoomOutUp { animation-name: zoomOutUp; transform-origin: center bottom; }
@-webkit-keyframes slideInDown { 
  0% { transform: translate3d(0px, -100%, 0px); visibility: visible; }
  100% { transform: translateZ(0px); }
}
@keyframes slideInDown { 
  0% { transform: translate3d(0px, -100%, 0px); visibility: visible; }
  100% { transform: translateZ(0px); }
}
.animate__slideInDown { animation-name: slideInDown; }
@-webkit-keyframes slideInLeft { 
  0% { transform: translate3d(-100%, 0px, 0px); visibility: visible; }
  100% { transform: translateZ(0px); }
}
@keyframes slideInLeft { 
  0% { transform: translate3d(-100%, 0px, 0px); visibility: visible; }
  100% { transform: translateZ(0px); }
}
.animate__slideInLeft { animation-name: slideInLeft; }
@-webkit-keyframes slideInRight { 
  0% { transform: translate3d(100%, 0px, 0px); visibility: visible; }
  100% { transform: translateZ(0px); }
}
@keyframes slideInRight { 
  0% { transform: translate3d(100%, 0px, 0px); visibility: visible; }
  100% { transform: translateZ(0px); }
}
.animate__slideInRight { animation-name: slideInRight; }
@-webkit-keyframes slideInUp { 
  0% { transform: translate3d(0px, 100%, 0px); visibility: visible; }
  100% { transform: translateZ(0px); }
}
@keyframes slideInUp { 
  0% { transform: translate3d(0px, 100%, 0px); visibility: visible; }
  100% { transform: translateZ(0px); }
}
.animate__slideInUp { animation-name: slideInUp; }
@-webkit-keyframes slideOutDown { 
  0% { transform: translateZ(0px); }
  100% { transform: translate3d(0px, 100%, 0px); visibility: hidden; }
}
@keyframes slideOutDown { 
  0% { transform: translateZ(0px); }
  100% { transform: translate3d(0px, 100%, 0px); visibility: hidden; }
}
.animate__slideOutDown { animation-name: slideOutDown; }
@-webkit-keyframes slideOutLeft { 
  0% { transform: translateZ(0px); }
  100% { transform: translate3d(-100%, 0px, 0px); visibility: hidden; }
}
@keyframes slideOutLeft { 
  0% { transform: translateZ(0px); }
  100% { transform: translate3d(-100%, 0px, 0px); visibility: hidden; }
}
.animate__slideOutLeft { animation-name: slideOutLeft; }
@-webkit-keyframes slideOutRight { 
  0% { transform: translateZ(0px); }
  100% { transform: translate3d(100%, 0px, 0px); visibility: hidden; }
}
@keyframes slideOutRight { 
  0% { transform: translateZ(0px); }
  100% { transform: translate3d(100%, 0px, 0px); visibility: hidden; }
}
.animate__slideOutRight { animation-name: slideOutRight; }
@-webkit-keyframes slideOutUp { 
  0% { transform: translateZ(0px); }
  100% { transform: translate3d(0px, -100%, 0px); visibility: hidden; }
}
@keyframes slideOutUp { 
  0% { transform: translateZ(0px); }
  100% { transform: translate3d(0px, -100%, 0px); visibility: hidden; }
}
.animate__slideOutUp { animation-name: slideOutUp; }
.td-certificate { background: linear-gradient(rgb(248, 249, 250), rgb(221, 231, 239)) center bottom / 100% 100% no-repeat; height: auto; position: relative; width: 100%; }
.td-certificate .title { color: rgb(22, 22, 22); font-family: "PingFang SC"; padding-top: 70px; text-align: center; }
.td-certificate .title_1 { font-size: 42px; font-weight: 500; line-height: 59px; }
.td-certificate .title_2 { font-size: 42px; font-weight: 600; line-height: 59px; }
.td-certificate .title_3 { font-size: 32px; font-weight: 500; line-height: 45px; }
.td-certificate .bg_color_wrap { background-image: url('../img/202304231614135f9fc79c5ff1e4_be864142.png'); background-position: center bottom; background-repeat: no-repeat; background-size: auto 100%; content: ""; display: block; height: 100%; position: absolute; top: 0px; width: 100%; z-index: 0; }
.td-certificate .certificate_wrap { box-sizing: border-box; height: 390px; position: relative; z-index: 1; }
.td-certificate .certificate_wrap .qa_cont { overflow: hidden; position: relative; }
.td-certificate .certificate_wrap .qa_bx { box-sizing: border-box; display: flex; justify-content: center; margin: auto; min-width: 1200px; padding-bottom: 25px; padding-top: 32px; position: relative; width: 100%; z-index: 1; }
.td-certificate .certificate_wrap .qa_bx.list2 { padding: 0px 0px 25px; }
.td-certificate .certificate_wrap .qa_item { align-items: center; background: rgb(255, 255, 255); border-radius: 12px; box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 10px; box-sizing: border-box; cursor: pointer; display: flex; flex-direction: column; height: 126px; justify-content: center; margin-left: 9px; margin-right: 9px; transition: transform 0.3s; width: 184px; }
.td-certificate .certificate_wrap .qa_item:hover { box-shadow: rgba(21, 18, 53, 0.18) 0px 10px 26px; transform: translateY(-6px); }
.td-certificate .certificate_wrap .qa_item:hover .qa_text { color: rgb(11, 128, 254); }
.td-certificate .certificate_wrap .qa_icon { cursor: pointer; height: 59px; width: auto; }
.td-certificate .certificate_wrap .qa_text { box-sizing: border-box; color: rgb(116, 117, 118); font-family: PingFangSC-Semibold, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 20px; margin-top: 8px; padding: 0px 12px; text-align: center; }
.td-certificate .certificate_wrap .showCertificate { background: rgba(0, 9, 23, 0.69); height: 100vh; left: 0px; position: fixed; top: 0px; width: 100vw; z-index: 10; }
.td-certificate .certificate_wrap .showCertificate .bx { align-items: center; display: flex; height: 100%; justify-content: center; }
.td-certificate .certificate_wrap .showCertificate .bx .imgCertificate { height: 680px; width: auto; }
.td-certificate .certificate_wrap .showCertificate .bx .closeCertificate { cursor: pointer; height: auto; left: 20px; position: relative; top: -250px; width: 20px; }
@media screen and (max-width: 1440px) {
  .td-certificate .certificate_wrap .qa_text { height: 44px; }
}
.td-trustCompany { background: rgb(248, 249, 250); overflow: hidden; position: relative; width: 100%; }
.td-trustCompany .title { color: rgb(22, 22, 22); font-family: "PingFang SC"; padding-top: 70px; text-align: center; }
.td-trustCompany .title_1 { font-size: 42px; font-weight: 500; line-height: 59px; }
.td-trustCompany .title_2 { font-size: 42px; font-weight: 600; line-height: 59px; }
.td-trustCompany .title_3 { font-size: 32px; font-weight: 500; line-height: 45px; }
.td-trustCompany .ex_next_btn, .td-trustCompany .ex_prev_btn { align-items: center; display: flex; justify-content: center; }
.td-trustCompany .ex_next_btn img, .td-trustCompany .ex_prev_btn img { display: block; margin-left: 2px; }
.td-trustCompany .ex_prev_btn { background-color: rgba(0, 0, 0, 0.2); border-radius: 50%; cursor: pointer; height: 48px; left: 20px; position: absolute; top: 292px; width: 48px; }
.td-trustCompany .ex_prev_btn:hover { background-color: rgba(0, 0, 0, 0.35); }
.td-trustCompany .ex_next_btn { background-color: rgba(0, 0, 0, 0.2); border-radius: 50%; cursor: pointer; height: 48px; position: absolute; right: 20px; top: 292px; transform: rotate(180deg); width: 48px; }
.td-trustCompany .ex_next_btn:hover { background-color: rgba(0, 0, 0, 0.35); }
.td-trustCompany .version_wrap { display: flex; justify-content: center; margin-top: 41px; position: relative; transition: left 0.3s; width: 100%; }
.td-trustCompany .version_wrap .version_item { border: 1px solid transparent; border-radius: 20px; box-shadow: rgba(206, 219, 244, 0.3) 0px 15px 20px; box-sizing: border-box; cursor: pointer; flex-shrink: 0; height: 324px; margin-right: 28px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; width: 265px; }
.td-trustCompany .version_wrap .version_item:hover { border: 1px solid rgb(0, 112, 249); box-shadow: rgba(21, 18, 53, 0.18) 0px 10px 26px; transform: translateY(-6px); }
.td-trustCompany .version_wrap .version_item:last-of-type { margin-right: 0px; }
.td-trustCompany .version_wrap .version_item .top_wrap { background: linear-gradient(130.39deg, rgb(254, 254, 255) 2.43%, rgb(238, 244, 255) 93.78%); display: flex; flex-direction: column; height: 265px; padding: 37px 20px 30px; position: relative; width: 100%; }
.td-trustCompany .version_wrap .version_item .top_wrap .top_wrap_bg { height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }
.td-trustCompany .version_wrap .version_item .top_wrap .top_wrap_bg img { display: block; height: 265px; width: auto; }
.td-trustCompany .version_wrap .version_item .top_wrap .version_title { color: rgb(22, 22, 22); font-family: "PingFang SC"; font-size: 24px; font-weight: 600; line-height: 34px; }
.td-trustCompany .version_wrap .version_item .top_wrap .text_wrap { margin-top: 11px; }
.td-trustCompany .version_wrap .version_item .top_wrap .text_wrap .text_item { color: rgb(0, 0, 0); font-family: "PingFang SC"; font-size: 14px; font-weight: 400; opacity: 0.5; }
.td-trustCompany .version_wrap .version_item .top_wrap .text_wrap .text_item:last-of-type { margin-bottom: 0px; }
.td-trustCompany .version_wrap .version_item .top_wrap .user_type { background-color: rgba(0, 112, 249, 0.1); border-radius: 4px; color: rgb(0, 112, 249); font-family: "PingFang SC"; font-size: 14px; font-weight: 400; line-height: 20px; margin-top: auto; padding: 3px 0px; text-align: center; width: 70px; }
.td-trustCompany .version_wrap .version_item.enterprise { width: 326px; }
.td-trustCompany .version_wrap .version_item.enterprise .top_wrap { background: linear-gradient(125.78deg, rgb(17, 97, 255) 2.42%, rgb(66, 165, 251) 97.56%); }
.td-trustCompany .version_wrap .version_item.enterprise .top_wrap .version_title { color: rgb(255, 255, 255); }
.td-trustCompany .version_wrap .version_item.enterprise .top_wrap .text_wrap .text_item { color: rgb(255, 255, 255); opacity: 0.8; }
.td-trustCompany .version_wrap .version_item.enterprise .top_wrap .user_type { background-color: transparent; border: 1px solid rgba(255, 255, 255, 0.2); color: rgb(255, 255, 255); }
.td-trustCompany .version_wrap .version_item .btn { color: rgb(0, 112, 249); font-family: "PingFang SC"; font-size: 18px; font-weight: 500; height: 58px; line-height: 58px; text-align: center; width: 100%; }
.td-trustCompany .swipe_Wrap { box-sizing: border-box; display: flex; height: 350px; margin: 0px auto; overflow: hidden; padding: 40px 60px 0px; position: relative; user-select: none; width: 1340px; }
.td-trustCompany .swipe_Wrap .swipe_transition_user { display: flex; left: 0px; min-width: 1200px; position: relative; transition: left 0.3s; width: auto; }
.td-trustCompany .swipe_Wrap .swipe_transition_user .swipe_img_wrap { flex-shrink: 0; height: 100%; margin-right: 60px; width: 100%; }
.td-trustCompany .swipe_Wrap .swipe_transition_user .swipe_img_wrap.active .item { box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 11px 0px; }
.td-trustCompany .swipe_Wrap .swipe_transition_user .swipe_img_wrap img { display: block; height: 296px; width: 1220px; }
.td-trustCompany .swipe_Wrap .swipe_item { align-items: center; display: flex; flex-flow: wrap; flex-shrink: 0; justify-content: center; margin-right: 70px; width: 100%; }
.td-trustCompany .swipe_Wrap .swipe_item.active .item { box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 11px 0px; }
.td-trustCompany .swipe_Wrap .swipe_item .item { align-items: center; background: rgb(255, 255, 255); border-radius: 8px; display: flex; height: 80px; justify-content: center; margin-bottom: 19px; margin-right: 25px; width: 150px; }
.td-trustCompany .swipe_Wrap .swipe_item .item:nth-of-type(7n+7) { margin-right: 0px; }
.td-trustCompany .swipe_Wrap .swipe_item .item img { height: 40px; width: auto; }
.td-trustCompany .swipe_Wrap .next_btn, .td-trustCompany .swipe_Wrap .prev_btn { align-items: center; background-color: rgb(247, 248, 250); border: 1px solid rgb(229, 230, 235); border-radius: 50%; cursor: pointer; display: flex; height: 48px; justify-content: center; position: absolute; top: calc(50% - 22px); width: 48px; }
.td-trustCompany .swipe_Wrap .next_btn.disabled, .td-trustCompany .swipe_Wrap .prev_btn.disabled { background-color: rgb(240, 240, 240); cursor: default; }
.td-trustCompany .swipe_Wrap .next_btn:hover, .td-trustCompany .swipe_Wrap .prev_btn:hover { background-color: rgb(240, 240, 240); }
.td-trustCompany .swipe_Wrap .next_btn img, .td-trustCompany .swipe_Wrap .prev_btn img { display: block; margin-left: 2px; }
.td-trustCompany .swipe_Wrap .prev_btn { left: 0px; transform: rotate(180deg); }
.td-trustCompany .swipe_Wrap .next_btn { right: 0px; }
.td-trustCompany .swipe_Wrap .indicator_wrap { bottom: 0px; display: flex; left: 50%; position: absolute; transform: translateX(-50%); }
.td-trustCompany .swipe_Wrap .indicator_wrap .indicator_item { background-color: rgb(206, 208, 212); border-radius: 27px; cursor: pointer; height: 8px; margin-right: 8px; transition: 0.3s; width: 8px; }
.td-trustCompany .swipe_Wrap .indicator_wrap .indicator_item:last-of-type { margin-right: 0px; }
.td-trustCompany .swipe_Wrap .indicator_wrap .indicator_item.active { background-color: rgb(0, 112, 249); width: 36px; }
.regularFontCommon { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon:active { background: rgb(0, 75, 204); }
.linkBtnCommon2 { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2, .linkBtnCommon2:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon:active { background: rgb(29, 100, 192); }
.btnCommonPrimary { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary:active { opacity: 1; }
.bannerBtnCommon { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3 { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3:hover { color: rgb(91, 164, 252); }
.btnCommon2 { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2 { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo { height: 17px; width: auto; }
.articleInfo .itemTime { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks { display: flex; }
.articleInfo .itemMarks .mark { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active, .mask-leave-active { transition: opacity 0.3s; }
.mask-enter, .mask-leave-to { opacity: 0; }
.common-enter-active, .common-leave-active { transition: opacity 0.5s; }
.common-enter, .common-leave-to { opacity: 0; }
.todeskFlex { display: flex; flex-flow: wrap; }
.todeskFlexCol { flex-direction: column; }
.todeskFlexCenter { align-items: center; }
.todeskFlexColCenter { justify-content: center; }
.td-footer .v1footer { background-color: rgb(39, 47, 60); box-sizing: border-box; min-height: 350px; padding-top: 57px; position: relative; }
.td-footer .v1footer.game_version { background-color: rgb(33, 33, 33); }
.td-footer .v1footer.perform_version { background-color: rgb(36, 44, 59); }
.td-footer .ft_box { margin: auto; max-width: 1200px; position: relative; }
.td-footer .ft_box, .td-footer .ft_left { display: flex; justify-content: space-between; }
.td-footer .ft_left { width: 100%; }
.td-footer .ft_logos { width: 160px; }
.td-footer .ftl_top { display: flex; height: 45px; justify-content: space-between; width: 100%; }
.td-footer .ftl_icon { height: 45px; width: 52px; }
.td-footer .ftl_tricon { height: auto; margin-top: 3px; width: 99px; }
.td-footer .ftl_text { color: rgb(255, 255, 255); font-size: 12px; margin-top: 4px; text-align: justify; text-align-last: justify; text-justify: inter-character; }
.td-footer .ftl_text::after { content: ""; display: inline-block; width: 100%; }
.td-footer .ftl_boo { background-color: rgb(1, 117, 255); border-right: 6px solid rgb(0, 214, 225); box-sizing: border-box; color: rgb(255, 255, 255); font-size: 13px; line-height: 24px; margin-top: 8px; text-align: center; width: 100%; }
.td-footer .ftn_title { color: rgb(255, 255, 255); font-size: 14px; margin-bottom: 22px; opacity: 0.7; }
.td-footer .ftn_item { color: rgba(255, 255, 255, 0.4); display: block; font-size: 14px; margin-bottom: 8px; }
.td-footer .ftn_item:hover { color: rgb(255, 255, 255); }
.td-footer .ft_media { display: flex; }
.td-footer .ftm_items { margin-top: 16px; }
.td-footer .ftm_title { align-items: center; cursor: pointer; display: flex; margin-bottom: 24px; }
.td-footer .ftm_title img { height: 25px; margin-right: 8px; width: 25px; }
.td-footer .ftm_title img.ftmt_active, .td-footer .ftm_title.active .ftmt_default { display: none; }
.td-footer .ftm_title.active .ftmt_active { display: block; }
.td-footer .ftm_title span { color: rgba(255, 255, 255, 0.6); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 14px; font-weight: 400; }
.td-footer .ftm_title.active span { color: rgb(11, 128, 254); }
.td-footer .ft_qrcodes, .td-footer .ftq_default { height: 136px; width: 136px; }
.td-footer .ftq_default { margin-left: 7px; }
.td-footer .ft_info { bottom: 20px; left: 0px; position: absolute; width: 100%; }
.td-footer .fti_line { background-color: rgba(255, 255, 255, 0.05); height: 1px; margin: auto; max-width: 1440px; }
.td-footer .fti_box { margin-top: 17px; text-align: center; }
.td-footer .fti_box a, .td-footer .fti_box span { color: rgba(255, 255, 255, 0.5); display: inline; font-size: 12px; }
.regularFontCommon[data-v-7a0ef42b] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-7a0ef42b] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-7a0ef42b] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-7a0ef42b] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-7a0ef42b]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-7a0ef42b]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-7a0ef42b] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-7a0ef42b], .linkBtnCommon2[data-v-7a0ef42b]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-7a0ef42b]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-7a0ef42b]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-7a0ef42b] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-7a0ef42b]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-7a0ef42b]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-7a0ef42b] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-7a0ef42b]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-7a0ef42b]:active { opacity: 1; }
.bannerBtnCommon[data-v-7a0ef42b] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-7a0ef42b]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-7a0ef42b] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-7a0ef42b]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-7a0ef42b] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-7a0ef42b]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-7a0ef42b] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-7a0ef42b]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-7a0ef42b]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-7a0ef42b] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-7a0ef42b]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-7a0ef42b] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-7a0ef42b]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-7a0ef42b]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-7a0ef42b] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-7a0ef42b] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-7a0ef42b] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-7a0ef42b] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-7a0ef42b] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-7a0ef42b] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-7a0ef42b] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-7a0ef42b] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-7a0ef42b] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-7a0ef42b] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-7a0ef42b] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-7a0ef42b] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-7a0ef42b] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-7a0ef42b] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-7a0ef42b] { display: flex; }
.articleInfo .itemMarks .mark[data-v-7a0ef42b] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-7a0ef42b], .mask-leave-active[data-v-7a0ef42b] { transition: opacity 0.3s; }
.mask-enter[data-v-7a0ef42b], .mask-leave-to[data-v-7a0ef42b] { opacity: 0; }
.common-enter-active[data-v-7a0ef42b], .common-leave-active[data-v-7a0ef42b] { transition: opacity 0.5s; }
.common-enter[data-v-7a0ef42b], .common-leave-to[data-v-7a0ef42b] { opacity: 0; }
.todeskFlex[data-v-7a0ef42b] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-7a0ef42b] { flex-direction: column; }
.todeskFlexCenter[data-v-7a0ef42b] { align-items: center; }
.todeskFlexColCenter[data-v-7a0ef42b] { justify-content: center; }
.v1footer[data-v-7a0ef42b] { background-color: rgb(31, 33, 38); box-sizing: border-box; min-height: 350px; padding-top: 42px; position: relative; }
.v1footer.game_version[data-v-7a0ef42b] { background-color: rgb(33, 33, 33); }
.v1footer.perform_version[data-v-7a0ef42b] { background-color: rgb(36, 44, 59); }
.ft_box[data-v-7a0ef42b] { justify-content: space-between; margin: auto; max-width: 1200px; position: relative; }
.ft_box .ft_content.ft_todesk[data-v-7a0ef42b] { display: flex; }
.ft_box .ft_content.ft_todesk .logo[data-v-7a0ef42b] { align-items: center; display: flex; margin-right: 6px; }
.ft_box .ft_content.ft_todesk .logo img[data-v-7a0ef42b] { height: 32px; width: auto; }
.ft_box .ft_content .logo img[data-v-7a0ef42b] { height: 52px; width: auto; }
.ft_box .ft_content .ftitem[data-v-7a0ef42b] { align-items: center; display: flex; }
.ft_box .ft_content .ftitem .tt_title[data-v-7a0ef42b] { color: rgb(255, 255, 255); font-size: 28px; font-weight: 600; }
.ft_box .ft_content .ftitem .tt_title1[data-v-7a0ef42b] { color: rgb(255, 255, 255); font-size: 25px; font-weight: 600; }
.ft_box .ft_content .ftitem .item_icon[data-v-7a0ef42b] { position: relative; }
.ft_box .ft_content .ftitem .item_icon .qr[data-v-7a0ef42b] { display: none; height: 136px; left: -50px; position: absolute; top: -156px; width: 136px; }
.ft_box .ft_content .ftitem .item_icon:hover .qr[data-v-7a0ef42b] { display: block; }
.ft_box .ft_content .ftitem .item_icon.large .qr[data-v-7a0ef42b] { top: -147.5px; }
.ft_box .ft_content .ftitem .icon[data-v-7a0ef42b] { height: 23px; margin-right: 17px; width: 23px; }
.ft_box .ft_content .ftitem .icon.icon40[data-v-7a0ef42b] { height: 40px; width: 40px; }
.ft_box .ft_content .ftitem .icon.icon_hover[data-v-7a0ef42b] { cursor: pointer; }
.ft_box .ft_content .ftitem .ft_link[data-v-7a0ef42b] { background: rgb(53, 56, 64); height: 19px; margin: 0px 36px; width: 1px; }
.ft_box .ft_link[data-v-7a0ef42b] { background: rgb(53, 56, 64); height: 76px; margin: auto 4px; width: 1px; }
.ft_box .ft_bottom[data-v-7a0ef42b] { display: flex; justify-content: space-between; margin-top: 40px; width: 100%; }
.ft_box .ft_bottom .ft_navs[data-v-7a0ef42b] { min-width: 105px; }
.ft_box .ft_bottom .ftb_title[data-v-7a0ef42b] { color: rgb(255, 255, 255); font-size: 14px; margin-bottom: 22px; }
.ft_box .ft_bottom .ftb_title.follow[data-v-7a0ef42b] { margin-bottom: 12px; }
.ft_box .ft_bottom .ftb_item[data-v-7a0ef42b] { color: rgb(154, 158, 171); font-size: 14px; margin-bottom: 8px; }
.ft_box .ft_bottom .follow-wrap[data-v-7a0ef42b] { left: -10px; position: relative; }
.ft_box .ft_bottom .follow-wrap .icon-wrap[data-v-7a0ef42b] { display: grid; gap: 6px; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
.ft_box .ft_bottom .follow-wrap .icon-wrap .icon-item[data-v-7a0ef42b] { align-items: center; display: flex; height: 41px; justify-content: center; position: relative; width: 41px; }
.ft_box .ft_bottom .follow-wrap .icon-wrap .icon-item .icon[data-v-7a0ef42b] { height: 22px; width: 22px; }
.ft_box .ft_bottom .follow-wrap .icon-wrap .icon-item .icon.icon40[data-v-7a0ef42b] { height: 40px; width: 40px; }
.ft_box .ft_bottom .follow-wrap .icon-wrap .icon-item .icon.icon_hover[data-v-7a0ef42b] { cursor: pointer; }
.ft_box .ft_bottom .follow-wrap .icon-wrap .icon-item .qr-popup[data-v-7a0ef42b] { bottom: 100%; left: 50%; margin-bottom: 2px; opacity: 0; position: absolute; transform: translateX(-50%); transition: 0.3s; visibility: hidden; z-index: 10; }
.ft_box .ft_bottom .follow-wrap .icon-wrap .icon-item .qr-popup[data-v-7a0ef42b]::after { border-width: 6px; border-style: solid; border-color: rgb(255, 255, 255) transparent transparent; border-image: initial; content: ""; left: 50%; position: absolute; top: calc(100% - 4px); transform: translateX(-50%); }
.ft_box .ft_bottom .follow-wrap .icon-wrap .icon-item .qr-popup .qr[data-v-7a0ef42b] { display: block; height: auto; width: 198px; }
.ft_box .ft_bottom .follow-wrap .icon-wrap .icon-item:hover .qr-popup[data-v-7a0ef42b] { opacity: 1; visibility: visible; }
.ft_info[data-v-7a0ef42b] { margin-top: 50px; padding-bottom: 20px; width: 100%; }
.ft_info .fti_line[data-v-7a0ef42b] { background-color: rgb(53, 56, 64); height: 1px; margin: auto; max-width: 1200px; }
.ft_info .fti_box[data-v-7a0ef42b] { margin-top: 17px; text-align: center; }
.ft_info .fti_box a[data-v-7a0ef42b], .ft_info .fti_box span[data-v-7a0ef42b] { color: rgba(255, 255, 255, 0.5); display: inline; font-size: 12px; }
.el-message { align-items: center; background-color: rgb(237, 242, 252); border: 1px solid rgb(235, 238, 245); border-radius: 4px; box-sizing: border-box; display: flex; left: 50%; min-width: 380px; overflow: hidden; padding: 15px 15px 15px 20px; position: fixed; top: 20px; transform: translateX(-50%); transition: opacity 0.3s, transform 0.4s, top 0.4s; }
.el-message.is-center { justify-content: center; }
.el-message.is-closable .el-message__content { padding-right: 16px; }
.el-message p { margin: 0px; }
.el-message--info .el-message__content { color: rgb(144, 147, 153); }
.el-message--success { background-color: rgb(240, 249, 235); border-color: rgb(225, 243, 216); }
.el-message--success .el-message__content { color: rgb(103, 194, 58); }
.el-message--warning { background-color: rgb(253, 246, 236); border-color: rgb(250, 236, 216); }
.el-message--warning .el-message__content { color: rgb(230, 162, 60); }
.el-message--error { background-color: rgb(254, 240, 240); border-color: rgb(253, 226, 226); }
.el-message--error .el-message__content { color: rgb(245, 108, 108); }
.el-message__icon { margin-right: 10px; }
.el-message__content { font-size: 14px; line-height: 1; padding: 0px; }
.el-message__content:focus { outline-width: 0px; }
.el-message__closeBtn { color: rgb(192, 196, 204); cursor: pointer; font-size: 16px; position: absolute; right: 15px; top: 50%; transform: translateY(-50%); }
.el-message__closeBtn:focus { outline-width: 0px; }
.el-message__closeBtn:hover { color: rgb(144, 147, 153); }
.el-message .el-icon-success { color: rgb(103, 194, 58); }
.el-message .el-icon-error { color: rgb(245, 108, 108); }
.el-message .el-icon-info { color: rgb(144, 147, 153); }
.el-message .el-icon-warning { color: rgb(230, 162, 60); }
.el-message-fade-enter, .el-message-fade-leave-active { opacity: 0; transform: translate(-50%, -100%); }
.fade-in-linear-enter-active, .fade-in-linear-leave-active { transition: opacity 0.2s linear; }
.fade-in-linear-enter, .fade-in-linear-leave, .fade-in-linear-leave-active { opacity: 0; }
.el-fade-in-linear-enter-active, .el-fade-in-linear-leave-active { transition: opacity 0.2s linear; }
.el-fade-in-linear-enter, .el-fade-in-linear-leave, .el-fade-in-linear-leave-active { opacity: 0; }
.el-fade-in-enter-active, .el-fade-in-leave-active { transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1); }
.el-fade-in-enter, .el-fade-in-leave-active { opacity: 0; }
.el-zoom-in-center-enter-active, .el-zoom-in-center-leave-active { transition: 0.3s cubic-bezier(0.55, 0, 0.1, 1); }
.el-zoom-in-center-enter, .el-zoom-in-center-leave-active { opacity: 0; transform: scaleX(0); }
.el-zoom-in-top-enter-active, .el-zoom-in-top-leave-active { opacity: 1; transform: scaleY(1); transform-origin: center top; transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); }
.el-zoom-in-top-enter, .el-zoom-in-top-leave-active { opacity: 0; transform: scaleY(0); }
.el-zoom-in-bottom-enter-active, .el-zoom-in-bottom-leave-active { opacity: 1; transform: scaleY(1); transform-origin: center bottom; transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); }
.el-zoom-in-bottom-enter, .el-zoom-in-bottom-leave-active { opacity: 0; transform: scaleY(0); }
.el-zoom-in-left-enter-active, .el-zoom-in-left-leave-active { opacity: 1; transform: scale(1); transform-origin: left top; transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1); }
.el-zoom-in-left-enter, .el-zoom-in-left-leave-active { opacity: 0; transform: scale(0.45); }
.collapse-transition { transition: height 0.3s ease-in-out, padding-top 0.3s ease-in-out, padding-bottom 0.3s ease-in-out; }
.horizontal-collapse-transition { transition: width 0.3s ease-in-out, padding-left 0.3s ease-in-out, padding-right 0.3s ease-in-out; }
.el-list-enter-active, .el-list-leave-active { transition: 1s; }
.el-list-enter, .el-list-leave-active { opacity: 0; transform: translateY(-30px); }
.el-opacity-transition { transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1); }
@font-face { font-family: element-icons; font-style: normal; font-weight: 400; src: url('../img/element-icons.313f7da_3b6c9ffb.woff') format("woff"), url('../img/element-icons.4520188_883a5853.ttf') format("truetype"); }
[class*=" el-icon-"], [class^="el-icon-"] { speak: none; font-feature-settings: normal; -webkit-font-smoothing: antialiased; display: inline-block; font-style: normal; font-variant: normal; font-weight: 400; line-height: 1; text-transform: none; vertical-align: baseline; font-family: element-icons !important; }
.el-icon-ice-cream-round::before { content: ""; }
.el-icon-ice-cream-square::before { content: ""; }
.el-icon-lollipop::before { content: ""; }
.el-icon-potato-strips::before { content: ""; }
.el-icon-milk-tea::before { content: ""; }
.el-icon-ice-drink::before { content: ""; }
.el-icon-ice-tea::before { content: ""; }
.el-icon-coffee::before { content: ""; }
.el-icon-orange::before { content: ""; }
.el-icon-pear::before { content: ""; }
.el-icon-apple::before { content: ""; }
.el-icon-cherry::before { content: ""; }
.el-icon-watermelon::before { content: ""; }
.el-icon-grape::before { content: ""; }
.el-icon-refrigerator::before { content: ""; }
.el-icon-goblet-square-full::before { content: ""; }
.el-icon-goblet-square::before { content: ""; }
.el-icon-goblet-full::before { content: ""; }
.el-icon-goblet::before { content: ""; }
.el-icon-cold-drink::before { content: ""; }
.el-icon-coffee-cup::before { content: ""; }
.el-icon-water-cup::before { content: ""; }
.el-icon-hot-water::before { content: ""; }
.el-icon-ice-cream::before { content: ""; }
.el-icon-dessert::before { content: ""; }
.el-icon-sugar::before { content: ""; }
.el-icon-tableware::before { content: ""; }
.el-icon-burger::before { content: ""; }
.el-icon-knife-fork::before { content: ""; }
.el-icon-fork-spoon::before { content: ""; }
.el-icon-chicken::before { content: ""; }
.el-icon-food::before { content: ""; }
.el-icon-dish-1::before { content: ""; }
.el-icon-dish::before { content: ""; }
.el-icon-moon-night::before { content: ""; }
.el-icon-moon::before { content: ""; }
.el-icon-cloudy-and-sunny::before { content: ""; }
.el-icon-partly-cloudy::before { content: ""; }
.el-icon-cloudy::before { content: ""; }
.el-icon-sunny::before { content: ""; }
.el-icon-sunset::before { content: ""; }
.el-icon-sunrise-1::before { content: ""; }
.el-icon-sunrise::before { content: ""; }
.el-icon-heavy-rain::before { content: ""; }
.el-icon-lightning::before { content: ""; }
.el-icon-light-rain::before { content: ""; }
.el-icon-wind-power::before { content: ""; }
.el-icon-baseball::before { content: ""; }
.el-icon-soccer::before { content: ""; }
.el-icon-football::before { content: ""; }
.el-icon-basketball::before { content: ""; }
.el-icon-ship::before { content: ""; }
.el-icon-truck::before { content: ""; }
.el-icon-bicycle::before { content: ""; }
.el-icon-mobile-phone::before { content: ""; }
.el-icon-service::before { content: ""; }
.el-icon-key::before { content: ""; }
.el-icon-unlock::before { content: ""; }
.el-icon-lock::before { content: ""; }
.el-icon-watch::before { content: ""; }
.el-icon-watch-1::before { content: ""; }
.el-icon-timer::before { content: ""; }
.el-icon-alarm-clock::before { content: ""; }
.el-icon-map-location::before { content: ""; }
.el-icon-delete-location::before { content: ""; }
.el-icon-add-location::before { content: ""; }
.el-icon-location-information::before { content: ""; }
.el-icon-location-outline::before { content: ""; }
.el-icon-location::before { content: ""; }
.el-icon-place::before { content: ""; }
.el-icon-discover::before { content: ""; }
.el-icon-first-aid-kit::before { content: ""; }
.el-icon-trophy-1::before { content: ""; }
.el-icon-trophy::before { content: ""; }
.el-icon-medal::before { content: ""; }
.el-icon-medal-1::before { content: ""; }
.el-icon-stopwatch::before { content: ""; }
.el-icon-mic::before { content: ""; }
.el-icon-copy-document::before { content: ""; }
.el-icon-full-screen::before { content: ""; }
.el-icon-switch-button::before { content: ""; }
.el-icon-aim::before { content: ""; }
.el-icon-crop::before { content: ""; }
.el-icon-odometer::before { content: ""; }
.el-icon-time::before { content: ""; }
.el-icon-bangzhu::before { content: ""; }
.el-icon-close-notification::before { content: ""; }
.el-icon-microphone::before { content: ""; }
.el-icon-turn-off-microphone::before { content: ""; }
.el-icon-position::before { content: ""; }
.el-icon-postcard::before { content: ""; }
.el-icon-message::before { content: ""; }
.el-icon-chat-line-square::before { content: ""; }
.el-icon-chat-dot-square::before { content: ""; }
.el-icon-chat-dot-round::before { content: ""; }
.el-icon-chat-square::before { content: ""; }
.el-icon-chat-line-round::before { content: ""; }
.el-icon-chat-round::before { content: ""; }
.el-icon-set-up::before { content: ""; }
.el-icon-turn-off::before { content: ""; }
.el-icon-open::before { content: ""; }
.el-icon-connection::before { content: ""; }
.el-icon-link::before { content: ""; }
.el-icon-cpu::before { content: ""; }
.el-icon-thumb::before { content: ""; }
.el-icon-female::before { content: ""; }
.el-icon-male::before { content: ""; }
.el-icon-guide::before { content: ""; }
.el-icon-news::before { content: ""; }
.el-icon-price-tag::before { content: ""; }
.el-icon-discount::before { content: ""; }
.el-icon-wallet::before { content: ""; }
.el-icon-coin::before { content: ""; }
.el-icon-money::before { content: ""; }
.el-icon-bank-card::before { content: ""; }
.el-icon-box::before { content: ""; }
.el-icon-present::before { content: ""; }
.el-icon-sell::before { content: ""; }
.el-icon-sold-out::before { content: ""; }
.el-icon-shopping-bag-2::before { content: ""; }
.el-icon-shopping-bag-1::before { content: ""; }
.el-icon-shopping-cart-2::before { content: ""; }
.el-icon-shopping-cart-1::before { content: ""; }
.el-icon-shopping-cart-full::before { content: ""; }
.el-icon-smoking::before { content: ""; }
.el-icon-no-smoking::before { content: ""; }
.el-icon-house::before { content: ""; }
.el-icon-table-lamp::before { content: ""; }
.el-icon-school::before { content: ""; }
.el-icon-office-building::before { content: ""; }
.el-icon-toilet-paper::before { content: ""; }
.el-icon-notebook-2::before { content: ""; }
.el-icon-notebook-1::before { content: ""; }
.el-icon-files::before { content: ""; }
.el-icon-collection::before { content: ""; }
.el-icon-receiving::before { content: ""; }
.el-icon-suitcase-1::before { content: ""; }
.el-icon-suitcase::before { content: ""; }
.el-icon-film::before { content: ""; }
.el-icon-collection-tag::before { content: ""; }
.el-icon-data-analysis::before { content: ""; }
.el-icon-pie-chart::before { content: ""; }
.el-icon-data-board::before { content: ""; }
.el-icon-data-line::before { content: ""; }
.el-icon-reading::before { content: ""; }
.el-icon-magic-stick::before { content: ""; }
.el-icon-coordinate::before { content: ""; }
.el-icon-mouse::before { content: ""; }
.el-icon-brush::before { content: ""; }
.el-icon-headset::before { content: ""; }
.el-icon-umbrella::before { content: ""; }
.el-icon-scissors::before { content: ""; }
.el-icon-mobile::before { content: ""; }
.el-icon-attract::before { content: ""; }
.el-icon-monitor::before { content: ""; }
.el-icon-search::before { content: ""; }
.el-icon-takeaway-box::before { content: ""; }
.el-icon-paperclip::before { content: ""; }
.el-icon-printer::before { content: ""; }
.el-icon-document-add::before { content: ""; }
.el-icon-document::before { content: ""; }
.el-icon-document-checked::before { content: ""; }
.el-icon-document-copy::before { content: ""; }
.el-icon-document-delete::before { content: ""; }
.el-icon-document-remove::before { content: ""; }
.el-icon-tickets::before { content: ""; }
.el-icon-folder-checked::before { content: ""; }
.el-icon-folder-delete::before { content: ""; }
.el-icon-folder-remove::before { content: ""; }
.el-icon-folder-add::before { content: ""; }
.el-icon-folder-opened::before { content: ""; }
.el-icon-folder::before { content: ""; }
.el-icon-edit-outline::before { content: ""; }
.el-icon-edit::before { content: ""; }
.el-icon-date::before { content: ""; }
.el-icon-c-scale-to-original::before { content: ""; }
.el-icon-view::before { content: ""; }
.el-icon-loading::before { content: ""; }
.el-icon-rank::before { content: ""; }
.el-icon-sort-down::before { content: ""; }
.el-icon-sort-up::before { content: ""; }
.el-icon-sort::before { content: ""; }
.el-icon-finished::before { content: ""; }
.el-icon-refresh-left::before { content: ""; }
.el-icon-refresh-right::before { content: ""; }
.el-icon-refresh::before { content: ""; }
.el-icon-video-play::before { content: ""; }
.el-icon-video-pause::before { content: ""; }
.el-icon-d-arrow-right::before { content: ""; }
.el-icon-d-arrow-left::before { content: ""; }
.el-icon-arrow-up::before { content: ""; }
.el-icon-arrow-down::before { content: ""; }
.el-icon-arrow-right::before { content: ""; }
.el-icon-arrow-left::before { content: ""; }
.el-icon-top-right::before { content: ""; }
.el-icon-top-left::before { content: ""; }
.el-icon-top::before { content: ""; }
.el-icon-bottom::before { content: ""; }
.el-icon-right::before { content: ""; }
.el-icon-back::before { content: ""; }
.el-icon-bottom-right::before { content: ""; }
.el-icon-bottom-left::before { content: ""; }
.el-icon-caret-top::before { content: ""; }
.el-icon-caret-bottom::before { content: ""; }
.el-icon-caret-right::before { content: ""; }
.el-icon-caret-left::before { content: ""; }
.el-icon-d-caret::before { content: ""; }
.el-icon-share::before { content: ""; }
.el-icon-menu::before { content: ""; }
.el-icon-s-grid::before { content: ""; }
.el-icon-s-check::before { content: ""; }
.el-icon-s-data::before { content: ""; }
.el-icon-s-opportunity::before { content: ""; }
.el-icon-s-custom::before { content: ""; }
.el-icon-s-claim::before { content: ""; }
.el-icon-s-finance::before { content: ""; }
.el-icon-s-comment::before { content: ""; }
.el-icon-s-flag::before { content: ""; }
.el-icon-s-marketing::before { content: ""; }
.el-icon-s-shop::before { content: ""; }
.el-icon-s-open::before { content: ""; }
.el-icon-s-management::before { content: ""; }
.el-icon-s-ticket::before { content: ""; }
.el-icon-s-release::before { content: ""; }
.el-icon-s-home::before { content: ""; }
.el-icon-s-promotion::before { content: ""; }
.el-icon-s-operation::before { content: ""; }
.el-icon-s-unfold::before { content: ""; }
.el-icon-s-fold::before { content: ""; }
.el-icon-s-platform::before { content: ""; }
.el-icon-s-order::before { content: ""; }
.el-icon-s-cooperation::before { content: ""; }
.el-icon-bell::before { content: ""; }
.el-icon-message-solid::before { content: ""; }
.el-icon-video-camera::before { content: ""; }
.el-icon-video-camera-solid::before { content: ""; }
.el-icon-camera::before { content: ""; }
.el-icon-camera-solid::before { content: ""; }
.el-icon-download::before { content: ""; }
.el-icon-upload2::before { content: ""; }
.el-icon-upload::before { content: ""; }
.el-icon-picture-outline-round::before { content: ""; }
.el-icon-picture-outline::before { content: ""; }
.el-icon-picture::before { content: ""; }
.el-icon-close::before { content: ""; }
.el-icon-check::before { content: ""; }
.el-icon-plus::before { content: ""; }
.el-icon-minus::before { content: ""; }
.el-icon-help::before { content: ""; }
.el-icon-s-help::before { content: ""; }
.el-icon-circle-close::before { content: ""; }
.el-icon-circle-check::before { content: ""; }
.el-icon-circle-plus-outline::before { content: ""; }
.el-icon-remove-outline::before { content: ""; }
.el-icon-zoom-out::before { content: ""; }
.el-icon-zoom-in::before { content: ""; }
.el-icon-error::before { content: ""; }
.el-icon-success::before { content: ""; }
.el-icon-circle-plus::before { content: ""; }
.el-icon-remove::before { content: ""; }
.el-icon-info::before { content: ""; }
.el-icon-question::before { content: ""; }
.el-icon-warning-outline::before { content: ""; }
.el-icon-warning::before { content: ""; }
.el-icon-goods::before { content: ""; }
.el-icon-s-goods::before { content: ""; }
.el-icon-star-off::before { content: ""; }
.el-icon-star-on::before { content: ""; }
.el-icon-more-outline::before { content: ""; }
.el-icon-more::before { content: ""; }
.el-icon-phone-outline::before { content: ""; }
.el-icon-phone::before { content: ""; }
.el-icon-user::before { content: ""; }
.el-icon-user-solid::before { content: ""; }
.el-icon-setting::before { content: ""; }
.el-icon-s-tools::before { content: ""; }
.el-icon-delete::before { content: ""; }
.el-icon-delete-solid::before { content: ""; }
.el-icon-eleme::before { content: ""; }
.el-icon-platform-eleme::before { content: ""; }
.el-icon-loading { animation: 2s linear 0s infinite normal none running rotating; }
.el-icon--right { margin-left: 5px; }
.el-icon--left { margin-right: 5px; }
@keyframes rotating { 
  0% { transform: rotate(0deg); }
  100% { transform: rotate(1turn); }
}
.el-loading-parent--relative { position: relative !important; }
.el-loading-parent--hidden { overflow: hidden !important; }
.el-loading-mask { background-color: rgba(255, 255, 255, 0.9); inset: 0px; margin: 0px; position: absolute; transition: opacity 0.3s; z-index: 2000; }
.el-loading-mask.is-fullscreen { position: fixed; }
.el-loading-mask.is-fullscreen .el-loading-spinner { margin-top: -25px; }
.el-loading-mask.is-fullscreen .el-loading-spinner .circular { height: 50px; width: 50px; }
.el-loading-spinner { margin-top: -21px; position: absolute; text-align: center; top: 50%; width: 100%; }
.el-loading-spinner .el-loading-text { color: rgb(64, 158, 255); font-size: 14px; margin: 3px 0px; }
.el-loading-spinner .circular { animation: 2s linear 0s infinite normal none running loading-rotate; height: 42px; width: 42px; }
.el-loading-spinner .path { stroke-dasharray: 90, 150; stroke-dashoffset: 0; stroke-width: 2; stroke: rgb(64, 158, 255); stroke-linecap: round; animation: 1.5s ease-in-out 0s infinite normal none running loading-dash; }
.el-loading-spinner i { color: rgb(64, 158, 255); }
.el-loading-fade-enter, .el-loading-fade-leave-active { opacity: 0; }
@keyframes loading-rotate { 
  100% { transform: rotate(1turn); }
}
@keyframes loading-dash { 
  0% { stroke-dasharray: 1, 200; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 90, 150; stroke-dashoffset: -40px; }
  100% { stroke-dasharray: 90, 150; stroke-dashoffset: -120px; }
}
.el-tooltip:focus:hover, .el-tooltip:focus:not(.focusing) { outline-width: 0px; }
.el-tooltip__popper { overflow-wrap: break-word; border-radius: 4px; font-size: 12px; line-height: 1.2; min-width: 10px; padding: 10px; position: absolute; z-index: 2000; }
.el-tooltip__popper .popper__arrow, .el-tooltip__popper .popper__arrow::after { border-color: transparent; border-style: solid; display: block; height: 0px; position: absolute; width: 0px; }
.el-tooltip__popper .popper__arrow { border-width: 6px; }
.el-tooltip__popper .popper__arrow::after { border-width: 5px; content: " "; }
.el-tooltip__popper[x-placement^="top"] { margin-bottom: 12px; }
.el-tooltip__popper[x-placement^="top"] .popper__arrow { border-bottom-width: 0px; border-top-color: rgb(48, 49, 51); bottom: -6px; }
.el-tooltip__popper[x-placement^="top"] .popper__arrow::after { border-bottom-width: 0px; border-top-color: rgb(48, 49, 51); bottom: 1px; margin-left: -5px; }
.el-tooltip__popper[x-placement^="bottom"] { margin-top: 12px; }
.el-tooltip__popper[x-placement^="bottom"] .popper__arrow { border-bottom-color: rgb(48, 49, 51); border-top-width: 0px; top: -6px; }
.el-tooltip__popper[x-placement^="bottom"] .popper__arrow::after { border-bottom-color: rgb(48, 49, 51); border-top-width: 0px; margin-left: -5px; top: 1px; }
.el-tooltip__popper[x-placement^="right"] { margin-left: 12px; }
.el-tooltip__popper[x-placement^="right"] .popper__arrow { border-left-width: 0px; border-right-color: rgb(48, 49, 51); left: -6px; }
.el-tooltip__popper[x-placement^="right"] .popper__arrow::after { border-left-width: 0px; border-right-color: rgb(48, 49, 51); bottom: -5px; left: 1px; }
.el-tooltip__popper[x-placement^="left"] { margin-right: 12px; }
.el-tooltip__popper[x-placement^="left"] .popper__arrow { border-left-color: rgb(48, 49, 51); border-right-width: 0px; right: -6px; }
.el-tooltip__popper[x-placement^="left"] .popper__arrow::after { border-left-color: rgb(48, 49, 51); border-right-width: 0px; bottom: -5px; margin-left: -5px; right: 1px; }
.el-tooltip__popper.is-dark { background: rgb(48, 49, 51); color: rgb(255, 255, 255); }
.el-tooltip__popper.is-light { background: rgb(255, 255, 255); border: 1px solid rgb(48, 49, 51); }
.el-tooltip__popper.is-light[x-placement^="top"] .popper__arrow { border-top-color: rgb(48, 49, 51); }
.el-tooltip__popper.is-light[x-placement^="top"] .popper__arrow::after { border-top-color: rgb(255, 255, 255); }
.el-tooltip__popper.is-light[x-placement^="bottom"] .popper__arrow { border-bottom-color: rgb(48, 49, 51); }
.el-tooltip__popper.is-light[x-placement^="bottom"] .popper__arrow::after { border-bottom-color: rgb(255, 255, 255); }
.el-tooltip__popper.is-light[x-placement^="left"] .popper__arrow { border-left-color: rgb(48, 49, 51); }
.el-tooltip__popper.is-light[x-placement^="left"] .popper__arrow::after { border-left-color: rgb(255, 255, 255); }
.el-tooltip__popper.is-light[x-placement^="right"] .popper__arrow { border-right-color: rgb(48, 49, 51); }
.el-tooltip__popper.is-light[x-placement^="right"] .popper__arrow::after { border-right-color: rgb(255, 255, 255); }
.el-select-dropdown__item.is-disabled:hover { background-color: rgb(255, 255, 255); }
.el-input__inner, .el-textarea__inner { background-image: none; box-sizing: border-box; color: rgb(96, 98, 102); font-size: inherit; width: 100%; }
.el-input-group__append .el-button, .el-input-group__append .el-input, .el-input-group__prepend .el-button, .el-input-group__prepend .el-input, .el-input__inner { font-size: inherit; }
.el-input__inner { background-color: rgb(255, 255, 255); }
.el-input__inner:hover { border-color: rgb(192, 196, 204); }
.el-form--inline .el-form-item, .el-form--inline .el-form-item__content { display: inline-block; vertical-align: top; }
.el-form-item::after, .el-form-item__content::after { clear: both; }
.el-form--label-left .el-form-item__label { text-align: left; }
.el-form--label-top .el-form-item__label { display: inline-block; float: none; padding: 0px 0px 10px; text-align: left; }
.el-form--inline .el-form-item { margin-right: 10px; }
.el-form--inline .el-form-item__label { display: inline-block; float: none; }
.el-form--inline.el-form--label-top .el-form-item__content { display: block; }
.el-form-item::after, .el-form-item::before, .el-form-item__content::after, .el-form-item__content::before { content: ""; display: table; }
.el-form-item { margin-bottom: 22px; }
.el-form-item .el-form-item { margin-bottom: 0px; }
.el-form-item--mini.el-form-item, .el-form-item--small.el-form-item { margin-bottom: 18px; }
.el-form-item .el-input__validateIcon { display: none; }
.el-form-item--medium .el-form-item__content, .el-form-item--medium .el-form-item__label { line-height: 36px; }
.el-form-item--small .el-form-item__content, .el-form-item--small .el-form-item__label { line-height: 32px; }
.el-form-item--small .el-form-item__error { padding-top: 2px; }
.el-form-item--mini .el-form-item__content, .el-form-item--mini .el-form-item__label { line-height: 28px; }
.el-form-item--mini .el-form-item__error { padding-top: 1px; }
.el-form-item__label-wrap { float: left; }
.el-form-item__label-wrap .el-form-item__label { display: inline-block; float: none; }
.el-form-item__label { box-sizing: border-box; color: rgb(96, 98, 102); float: left; font-size: 14px; line-height: 40px; padding: 0px 12px 0px 0px; text-align: right; vertical-align: middle; }
.el-form-item__content { font-size: 14px; line-height: 40px; position: relative; }
.el-form-item__content .el-input-group { vertical-align: top; }
.el-form-item__error { color: rgb(245, 108, 108); font-size: 12px; left: 0px; line-height: 1; padding-top: 4px; position: absolute; top: 100%; }
.el-form-item__error--inline { display: inline-block; left: auto; margin-left: 10px; position: relative; top: auto; }
.el-form-item.is-required:not(.is-no-asterisk) .el-form-item__label-wrap > .el-form-item__label::before, .el-form-item.is-required:not(.is-no-asterisk) > .el-form-item__label::before { color: rgb(245, 108, 108); content: "*"; margin-right: 4px; }
.el-form-item.is-error .el-input__inner, .el-form-item.is-error .el-input__inner:focus, .el-form-item.is-error .el-textarea__inner, .el-form-item.is-error .el-textarea__inner:focus { border-color: rgb(245, 108, 108); }
.el-form-item.is-error .el-input-group__append .el-input__inner, .el-form-item.is-error .el-input-group__prepend .el-input__inner { border-color: transparent; }
.el-form-item.is-error .el-input__validateIcon { color: rgb(245, 108, 108); }
.el-form-item--feedback .el-input__validateIcon { display: inline-block; }
.el-checkbox, .el-checkbox-button__inner { color: rgb(96, 98, 102); font-size: 14px; font-weight: 500; user-select: none; }
.el-checkbox, .el-checkbox__input { display: inline-block; position: relative; }
.el-checkbox-button__inner, .el-checkbox__input { cursor: pointer; outline: 0px; vertical-align: middle; white-space: nowrap; }
.el-checkbox { cursor: pointer; margin-right: 30px; user-select: none; white-space: nowrap; }
.el-checkbox.is-bordered { border: 1px solid rgb(220, 223, 230); border-radius: 4px; box-sizing: border-box; height: 40px; line-height: normal; padding: 9px 20px 9px 10px; }
.el-checkbox.is-bordered.is-checked { border-color: rgb(64, 158, 255); }
.el-checkbox.is-bordered.is-disabled { border-color: rgb(235, 238, 245); cursor: not-allowed; }
.el-checkbox.is-bordered + .el-checkbox.is-bordered { margin-left: 10px; }
.el-checkbox.is-bordered.el-checkbox--medium { border-radius: 4px; height: 36px; padding: 7px 20px 7px 10px; }
.el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__inner, .el-checkbox__inner { height: 14px; width: 14px; }
.el-checkbox.is-bordered.el-checkbox--medium .el-checkbox__label { font-size: 14px; line-height: 17px; }
.el-checkbox.is-bordered.el-checkbox--small { border-radius: 3px; height: 32px; padding: 5px 15px 5px 10px; }
.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__label { font-size: 12px; line-height: 15px; }
.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner { height: 12px; width: 12px; }
.el-checkbox.is-bordered.el-checkbox--small .el-checkbox__inner::after { height: 6px; width: 2px; }
.el-checkbox.is-bordered.el-checkbox--mini { border-radius: 3px; height: 28px; padding: 3px 15px 3px 10px; }
.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__label { font-size: 12px; line-height: 12px; }
.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner { height: 12px; width: 12px; }
.el-checkbox.is-bordered.el-checkbox--mini .el-checkbox__inner::after { height: 6px; width: 2px; }
.el-checkbox__input { line-height: 1; }
.el-checkbox__input.is-disabled .el-checkbox__inner { background-color: rgb(237, 242, 252); border-color: rgb(220, 223, 230); cursor: not-allowed; }
.el-checkbox__input.is-disabled .el-checkbox__inner::after { border-color: rgb(192, 196, 204); cursor: not-allowed; }
.el-checkbox__input.is-disabled .el-checkbox__inner + .el-checkbox__label { cursor: not-allowed; }
.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner { background-color: rgb(242, 246, 252); border-color: rgb(220, 223, 230); }
.el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after { border-color: rgb(192, 196, 204); }
.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner { background-color: rgb(242, 246, 252); border-color: rgb(220, 223, 230); }
.el-checkbox__input.is-disabled.is-indeterminate .el-checkbox__inner::before { background-color: rgb(192, 196, 204); border-color: rgb(192, 196, 204); }
.el-checkbox__input.is-checked .el-checkbox__inner, .el-checkbox__input.is-indeterminate .el-checkbox__inner { background-color: rgb(64, 158, 255); border-color: rgb(64, 158, 255); }
.el-checkbox__input.is-disabled + span.el-checkbox__label { color: rgb(192, 196, 204); cursor: not-allowed; }
.el-checkbox__input.is-checked .el-checkbox__inner::after { transform: rotate(45deg) scaleY(1); }
.el-checkbox__input.is-checked + .el-checkbox__label { color: rgb(64, 158, 255); }
.el-checkbox__input.is-focus .el-checkbox__inner { border-color: rgb(64, 158, 255); }
.el-checkbox__input.is-indeterminate .el-checkbox__inner::before { background-color: rgb(255, 255, 255); content: ""; display: block; height: 2px; left: 0px; position: absolute; right: 0px; top: 5px; transform: scale(0.5); }
.el-checkbox__input.is-indeterminate .el-checkbox__inner::after { display: none; }
.el-checkbox__inner { background-color: rgb(255, 255, 255); border: 1px solid rgb(220, 223, 230); border-radius: 2px; box-sizing: border-box; display: inline-block; position: relative; transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46); z-index: 1; }
.el-checkbox__inner:hover { border-color: rgb(64, 158, 255); }
.el-checkbox__inner::after { border-width: 0px 1px 1px 0px; border-right-style: solid; border-bottom-style: solid; border-right-color: rgb(255, 255, 255); border-bottom-color: rgb(255, 255, 255); border-image: initial; border-left-style: initial; border-left-color: initial; border-top-style: initial; border-top-color: initial; box-sizing: content-box; content: ""; height: 7px; left: 4px; position: absolute; top: 1px; transform: rotate(45deg) scaleY(0); transform-origin: center center; transition: transform 0.15s ease-in 0.05s; width: 3px; }
.el-checkbox__original { height: 0px; margin: 0px; opacity: 0; outline: 0px; position: absolute; width: 0px; z-index: -1; }
.el-checkbox-button, .el-checkbox-button__inner { display: inline-block; position: relative; }
.el-checkbox__label { display: inline-block; font-size: 14px; line-height: 19px; padding-left: 10px; }
.el-checkbox:last-of-type { margin-right: 0px; }
.el-checkbox-button__inner { appearance: none; background: rgb(255, 255, 255); border-width: 1px 1px 1px 0px; border-top-style: solid; border-right-style: solid; border-bottom-style: solid; border-top-color: rgb(220, 223, 230); border-right-color: rgb(220, 223, 230); border-bottom-color: rgb(220, 223, 230); border-image: initial; border-left-style: initial; border-left-color: initial; border-radius: 0px; box-sizing: border-box; line-height: 1; margin: 0px; padding: 12px 20px; text-align: center; transition: 0.3s cubic-bezier(0.645, 0.045, 0.355, 1); }
.el-checkbox-button__inner.is-round { padding: 12px 20px; }
.el-checkbox-button__inner:hover { color: rgb(64, 158, 255); }
.el-checkbox-button__inner [class*="el-icon-"] { line-height: 0.9; }
.el-checkbox-button__inner [class*="el-icon-"] + span { margin-left: 5px; }
.el-checkbox-button__original { margin: 0px; opacity: 0; outline: 0px; position: absolute; z-index: -1; }
.el-checkbox-button.is-checked .el-checkbox-button__inner { background-color: rgb(64, 158, 255); border-color: rgb(64, 158, 255); box-shadow: rgb(140, 197, 255) -1px 0px 0px 0px; color: rgb(255, 255, 255); }
.el-checkbox-button.is-checked:first-child .el-checkbox-button__inner { border-left-color: rgb(64, 158, 255); }
.el-checkbox-button.is-disabled .el-checkbox-button__inner { background-color: rgb(255, 255, 255); background-image: none; border-color: rgb(235, 238, 245); box-shadow: none; color: rgb(192, 196, 204); cursor: not-allowed; }
.el-checkbox-button.is-disabled:first-child .el-checkbox-button__inner { border-left-color: rgb(235, 238, 245); }
.el-checkbox-button:first-child .el-checkbox-button__inner { border-left: 1px solid rgb(220, 223, 230); border-radius: 4px 0px 0px 4px; box-shadow: none !important; }
.el-checkbox-button.is-focus .el-checkbox-button__inner { border-color: rgb(64, 158, 255); }
.el-checkbox-button:last-child .el-checkbox-button__inner { border-radius: 0px 4px 4px 0px; }
.el-checkbox-button--medium .el-checkbox-button__inner { border-radius: 0px; font-size: 14px; padding: 10px 20px; }
.el-checkbox-button--medium .el-checkbox-button__inner.is-round { padding: 10px 20px; }
.el-checkbox-button--small .el-checkbox-button__inner { border-radius: 0px; font-size: 12px; padding: 9px 15px; }
.el-checkbox-button--small .el-checkbox-button__inner.is-round { padding: 9px 15px; }
.el-checkbox-button--mini .el-checkbox-button__inner { border-radius: 0px; font-size: 12px; padding: 7px 15px; }
.el-checkbox-button--mini .el-checkbox-button__inner.is-round { padding: 7px 15px; }
.el-checkbox-group { font-size: 0px; }
.el-input__inner, .el-textarea__inner { transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); }
.el-popper .popper__arrow, .el-popper .popper__arrow::after { border-color: transparent; border-style: solid; display: block; height: 0px; position: absolute; width: 0px; }
.el-popper .popper__arrow { border-width: 6px; filter: drop-shadow(rgba(0, 0, 0, 0.03) 0px 2px 12px); }
.el-popper .popper__arrow::after { border-width: 6px; content: " "; }
.el-popper[x-placement^="top"] { margin-bottom: 12px; }
.el-popper[x-placement^="top"] .popper__arrow { border-bottom-width: 0px; border-top-color: rgb(235, 238, 245); bottom: -6px; left: 50%; margin-right: 3px; }
.el-popper[x-placement^="top"] .popper__arrow::after { border-bottom-width: 0px; border-top-color: rgb(255, 255, 255); bottom: 1px; margin-left: -6px; }
.el-popper[x-placement^="bottom"] { margin-top: 12px; }
.el-popper[x-placement^="bottom"] .popper__arrow { border-bottom-color: rgb(235, 238, 245); border-top-width: 0px; left: 50%; margin-right: 3px; top: -6px; }
.el-popper[x-placement^="bottom"] .popper__arrow::after { border-bottom-color: rgb(255, 255, 255); border-top-width: 0px; margin-left: -6px; top: 1px; }
.el-popper[x-placement^="right"] { margin-left: 12px; }
.el-popper[x-placement^="right"] .popper__arrow { border-left-width: 0px; border-right-color: rgb(235, 238, 245); left: -6px; margin-bottom: 3px; top: 50%; }
.el-popper[x-placement^="right"] .popper__arrow::after { border-left-width: 0px; border-right-color: rgb(255, 255, 255); bottom: -6px; left: 1px; }
.el-popper[x-placement^="left"] { margin-right: 12px; }
.el-popper[x-placement^="left"] .popper__arrow { border-left-color: rgb(235, 238, 245); border-right-width: 0px; margin-bottom: 3px; right: -6px; top: 50%; }
.el-popper[x-placement^="left"] .popper__arrow::after { border-left-color: rgb(255, 255, 255); border-right-width: 0px; bottom: -6px; margin-left: -6px; right: 1px; }
.el-select-dropdown { background-color: rgb(255, 255, 255); border: 1px solid rgb(228, 231, 237); border-radius: 4px; box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 12px 0px; box-sizing: border-box; margin: 5px 0px; position: absolute; z-index: 1001; }
.el-input__inner, .el-select-dropdown__list, .el-tag, .el-textarea__inner { box-sizing: border-box; }
.el-select-dropdown.is-multiple .el-select-dropdown__item { padding-right: 40px; }
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected { background-color: rgb(255, 255, 255); color: rgb(64, 158, 255); }
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected.hover { background-color: rgb(245, 247, 250); }
.el-select-dropdown.is-multiple .el-select-dropdown__item.selected::after { -webkit-font-smoothing: antialiased; content: ""; font-family: element-icons; font-size: 12px; font-weight: 700; position: absolute; right: 20px; }
.el-select-dropdown .el-scrollbar.is-empty .el-select-dropdown__list { padding: 0px; }
.el-select-dropdown__empty { color: rgb(153, 153, 153); font-size: 14px; margin: 0px; padding: 10px 0px; text-align: center; }
.el-select-dropdown__wrap { max-height: 274px; }
.el-select-dropdown__list { box-sizing: border-box; list-style: none; margin: 0px; padding: 6px 0px; }
.el-textarea { display: inline-block; font-size: 14px; position: relative; vertical-align: bottom; width: 100%; }
.el-textarea__inner { background-color: rgb(255, 255, 255); background-image: none; border: 1px solid rgb(220, 223, 230); border-radius: 4px; box-sizing: border-box; color: rgb(96, 98, 102); display: block; font-size: inherit; line-height: 1.5; padding: 5px 15px; resize: vertical; transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); width: 100%; }
.el-textarea__inner::placeholder { color: rgb(192, 196, 204); }
.el-textarea__inner:hover { border-color: rgb(192, 196, 204); }
.el-textarea__inner:focus { border-color: rgb(64, 158, 255); outline: 0px; }
.el-textarea .el-input__count { background: rgb(255, 255, 255); bottom: 5px; color: rgb(144, 147, 153); font-size: 12px; position: absolute; right: 10px; }
.el-textarea.is-disabled .el-textarea__inner { background-color: rgb(245, 247, 250); border-color: rgb(228, 231, 237); color: rgb(192, 196, 204); cursor: not-allowed; }
.el-textarea.is-disabled .el-textarea__inner::placeholder { color: rgb(192, 196, 204); }
.el-textarea.is-exceed .el-textarea__inner { border-color: rgb(245, 108, 108); }
.el-textarea.is-exceed .el-input__count { color: rgb(245, 108, 108); }
.el-input { display: inline-block; font-size: 14px; position: relative; width: 100%; }
.el-input::-webkit-scrollbar { width: 6px; z-index: 11; }
.el-input::-webkit-scrollbar:horizontal { height: 6px; }
.el-input::-webkit-scrollbar-thumb { background: rgb(180, 188, 204); border-radius: 5px; width: 6px; }
.el-input::-webkit-scrollbar-corner, .el-input::-webkit-scrollbar-track { background: rgb(255, 255, 255); }
.el-input::-webkit-scrollbar-track-piece { background: rgb(255, 255, 255); width: 6px; }
.el-input__inner, .el-select-dropdown__item.is-disabled:hover { background-color: rgb(255, 255, 255); }
.el-input .el-input__clear { color: rgb(192, 196, 204); cursor: pointer; font-size: 14px; transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); }
.el-input .el-input__clear:hover { color: rgb(144, 147, 153); }
.el-input .el-input__count { align-items: center; color: rgb(144, 147, 153); display: inline-flex; font-size: 12px; height: 100%; }
.el-input .el-input__count .el-input__count-inner { background: rgb(255, 255, 255); display: inline-block; line-height: normal; padding: 0px 5px; }
.el-input__inner { appearance: none; background-image: none; border: 1px solid rgb(220, 223, 230); border-radius: 4px; box-sizing: border-box; color: rgb(96, 98, 102); display: inline-block; font-size: inherit; height: 40px; line-height: 40px; outline: 0px; padding: 0px 15px; transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); width: 100%; }
.el-input__inner:hover, .el-select:hover .el-input__inner { border-color: rgb(192, 196, 204); }
.el-input__prefix, .el-input__suffix { color: rgb(192, 196, 204); height: 100%; position: absolute; text-align: center; top: 0px; transition: 0.3s; }
.el-input__inner::placeholder { color: rgb(192, 196, 204); }
.el-input.is-active .el-input__inner, .el-input__inner:focus { border-color: rgb(64, 158, 255); outline: 0px; }
.el-input__suffix { pointer-events: none; right: 5px; transition: 0.3s; }
.el-input__suffix-inner { pointer-events: all; }
.el-input__prefix { left: 5px; transition: 0.3s; }
.el-input__icon { height: 100%; line-height: 40px; text-align: center; transition: 0.3s; width: 25px; }
.el-input__icon::after { content: ""; display: inline-block; height: 100%; vertical-align: middle; width: 0px; }
.el-input__validateIcon { pointer-events: none; }
.el-input.is-disabled .el-input__inner { background-color: rgb(245, 247, 250); border-color: rgb(228, 231, 237); color: rgb(192, 196, 204); cursor: not-allowed; }
.el-input.is-disabled .el-input__inner::placeholder { color: rgb(192, 196, 204); }
.el-input.is-disabled .el-input__icon { cursor: not-allowed; }
.el-input.is-exceed .el-input__inner { border-color: rgb(245, 108, 108); }
.el-input.is-exceed .el-input__suffix .el-input__count { color: rgb(245, 108, 108); }
.el-input--suffix .el-input__inner { padding-right: 30px; }
.el-input--prefix .el-input__inner { padding-left: 30px; }
.el-input--medium { font-size: 14px; }
.el-input--medium .el-input__inner { height: 36px; line-height: 36px; }
.el-input--medium .el-input__icon { line-height: 36px; }
.el-input--small { font-size: 13px; }
.el-input--small .el-input__inner { height: 32px; line-height: 32px; }
.el-input--small .el-input__icon { line-height: 32px; }
.el-input--mini { font-size: 12px; }
.el-input--mini .el-input__inner { height: 28px; line-height: 28px; }
.el-input--mini .el-input__icon { line-height: 28px; }
.el-input-group { border-collapse: separate; border-spacing: 0px; display: inline-table; line-height: normal; width: 100%; }
.el-input-group > .el-input__inner { display: table-cell; vertical-align: middle; }
.el-input-group__append, .el-input-group__prepend { background-color: rgb(245, 247, 250); border: 1px solid rgb(220, 223, 230); border-radius: 4px; color: rgb(144, 147, 153); display: table-cell; padding: 0px 20px; position: relative; vertical-align: middle; white-space: nowrap; width: 1px; }
.el-input-group--prepend .el-input__inner, .el-input-group__append { border-bottom-left-radius: 0px; border-top-left-radius: 0px; }
.el-input-group--append .el-input__inner, .el-input-group__prepend { border-bottom-right-radius: 0px; border-top-right-radius: 0px; }
.el-input-group__append:focus, .el-input-group__prepend:focus { outline: 0px; }
.el-input-group__append .el-button, .el-input-group__append .el-select, .el-input-group__prepend .el-button, .el-input-group__prepend .el-select { display: inline-block; margin: -10px -20px; }
.el-input-group__append button.el-button, .el-input-group__append div.el-select .el-input__inner, .el-input-group__append div.el-select:hover .el-input__inner, .el-input-group__prepend button.el-button, .el-input-group__prepend div.el-select .el-input__inner, .el-input-group__prepend div.el-select:hover .el-input__inner { background-color: transparent; border-right-color: transparent; border-left-color: transparent; border-bottom: 0px; border-top: 0px; color: inherit; }
.el-input-group__append .el-button, .el-input-group__append .el-input, .el-input-group__prepend .el-button, .el-input-group__prepend .el-input { font-size: inherit; }
.el-input-group__prepend { border-right: 0px; }
.el-input-group__append { border-left: 0px; }
.el-input-group--append .el-select .el-input.is-focus .el-input__inner, .el-input-group--prepend .el-select .el-input.is-focus .el-input__inner { border-color: transparent; }
.el-tag { background-color: rgb(236, 245, 255); border: 1px solid rgb(217, 236, 255); border-radius: 4px; box-sizing: border-box; color: rgb(64, 158, 255); display: inline-block; font-size: 12px; height: 32px; line-height: 30px; padding: 0px 10px; white-space: nowrap; }
.el-tag.is-hit { border-color: rgb(64, 158, 255); }
.el-tag .el-tag__close { color: rgb(64, 158, 255); }
.el-tag .el-tag__close:hover { background-color: rgb(64, 158, 255); color: rgb(255, 255, 255); }
.el-tag.el-tag--info { background-color: rgb(244, 244, 245); border-color: rgb(233, 233, 235); color: rgb(144, 147, 153); }
.el-tag.el-tag--info.is-hit { border-color: rgb(144, 147, 153); }
.el-tag.el-tag--info .el-tag__close { color: rgb(144, 147, 153); }
.el-tag.el-tag--info .el-tag__close:hover { background-color: rgb(144, 147, 153); color: rgb(255, 255, 255); }
.el-tag.el-tag--success { background-color: rgb(240, 249, 235); border-color: rgb(225, 243, 216); color: rgb(103, 194, 58); }
.el-tag.el-tag--success.is-hit { border-color: rgb(103, 194, 58); }
.el-tag.el-tag--success .el-tag__close { color: rgb(103, 194, 58); }
.el-tag.el-tag--success .el-tag__close:hover { background-color: rgb(103, 194, 58); color: rgb(255, 255, 255); }
.el-tag.el-tag--warning { background-color: rgb(253, 246, 236); border-color: rgb(250, 236, 216); color: rgb(230, 162, 60); }
.el-tag.el-tag--warning.is-hit { border-color: rgb(230, 162, 60); }
.el-tag.el-tag--warning .el-tag__close { color: rgb(230, 162, 60); }
.el-tag.el-tag--warning .el-tag__close:hover { background-color: rgb(230, 162, 60); color: rgb(255, 255, 255); }
.el-tag.el-tag--danger { background-color: rgb(254, 240, 240); border-color: rgb(253, 226, 226); color: rgb(245, 108, 108); }
.el-tag.el-tag--danger.is-hit { border-color: rgb(245, 108, 108); }
.el-tag.el-tag--danger .el-tag__close { color: rgb(245, 108, 108); }
.el-tag.el-tag--danger .el-tag__close:hover { background-color: rgb(245, 108, 108); color: rgb(255, 255, 255); }
.el-tag .el-icon-close { border-radius: 50%; cursor: pointer; font-size: 12px; height: 16px; line-height: 16px; position: relative; right: -5px; text-align: center; top: -1px; vertical-align: middle; width: 16px; }
.el-tag .el-icon-close::before { display: block; }
.el-tag--dark { background-color: rgb(64, 158, 255); color: rgb(255, 255, 255); }
.el-tag--dark, .el-tag--dark.is-hit { border-color: rgb(64, 158, 255); }
.el-tag--dark .el-tag__close { color: rgb(255, 255, 255); }
.el-tag--dark .el-tag__close:hover { background-color: rgb(102, 177, 255); color: rgb(255, 255, 255); }
.el-tag--dark.el-tag--info { background-color: rgb(144, 147, 153); border-color: rgb(144, 147, 153); color: rgb(255, 255, 255); }
.el-tag--dark.el-tag--info.is-hit { border-color: rgb(144, 147, 153); }
.el-tag--dark.el-tag--info .el-tag__close { color: rgb(255, 255, 255); }
.el-tag--dark.el-tag--info .el-tag__close:hover { background-color: rgb(166, 169, 173); color: rgb(255, 255, 255); }
.el-tag--dark.el-tag--success { background-color: rgb(103, 194, 58); border-color: rgb(103, 194, 58); color: rgb(255, 255, 255); }
.el-tag--dark.el-tag--success.is-hit { border-color: rgb(103, 194, 58); }
.el-tag--dark.el-tag--success .el-tag__close { color: rgb(255, 255, 255); }
.el-tag--dark.el-tag--success .el-tag__close:hover { background-color: rgb(133, 206, 97); color: rgb(255, 255, 255); }
.el-tag--dark.el-tag--warning { background-color: rgb(230, 162, 60); border-color: rgb(230, 162, 60); color: rgb(255, 255, 255); }
.el-tag--dark.el-tag--warning.is-hit { border-color: rgb(230, 162, 60); }
.el-tag--dark.el-tag--warning .el-tag__close { color: rgb(255, 255, 255); }
.el-tag--dark.el-tag--warning .el-tag__close:hover { background-color: rgb(235, 181, 99); color: rgb(255, 255, 255); }
.el-tag--dark.el-tag--danger { background-color: rgb(245, 108, 108); border-color: rgb(245, 108, 108); color: rgb(255, 255, 255); }
.el-tag--dark.el-tag--danger.is-hit { border-color: rgb(245, 108, 108); }
.el-tag--dark.el-tag--danger .el-tag__close { color: rgb(255, 255, 255); }
.el-tag--dark.el-tag--danger .el-tag__close:hover { background-color: rgb(247, 137, 137); color: rgb(255, 255, 255); }
.el-tag--plain { background-color: rgb(255, 255, 255); border-color: rgb(179, 216, 255); color: rgb(64, 158, 255); }
.el-tag--plain.is-hit { border-color: rgb(64, 158, 255); }
.el-tag--plain .el-tag__close { color: rgb(64, 158, 255); }
.el-tag--plain .el-tag__close:hover { background-color: rgb(64, 158, 255); color: rgb(255, 255, 255); }
.el-tag--plain.el-tag--info { background-color: rgb(255, 255, 255); border-color: rgb(211, 212, 214); color: rgb(144, 147, 153); }
.el-tag--plain.el-tag--info.is-hit { border-color: rgb(144, 147, 153); }
.el-tag--plain.el-tag--info .el-tag__close { color: rgb(144, 147, 153); }
.el-tag--plain.el-tag--info .el-tag__close:hover { background-color: rgb(144, 147, 153); color: rgb(255, 255, 255); }
.el-tag--plain.el-tag--success { background-color: rgb(255, 255, 255); border-color: rgb(194, 231, 176); color: rgb(103, 194, 58); }
.el-tag--plain.el-tag--success.is-hit { border-color: rgb(103, 194, 58); }
.el-tag--plain.el-tag--success .el-tag__close { color: rgb(103, 194, 58); }
.el-tag--plain.el-tag--success .el-tag__close:hover { background-color: rgb(103, 194, 58); color: rgb(255, 255, 255); }
.el-tag--plain.el-tag--warning { background-color: rgb(255, 255, 255); border-color: rgb(245, 218, 177); color: rgb(230, 162, 60); }
.el-tag--plain.el-tag--warning.is-hit { border-color: rgb(230, 162, 60); }
.el-tag--plain.el-tag--warning .el-tag__close { color: rgb(230, 162, 60); }
.el-tag--plain.el-tag--warning .el-tag__close:hover { background-color: rgb(230, 162, 60); color: rgb(255, 255, 255); }
.el-tag--plain.el-tag--danger { background-color: rgb(255, 255, 255); border-color: rgb(251, 196, 196); color: rgb(245, 108, 108); }
.el-tag--plain.el-tag--danger.is-hit { border-color: rgb(245, 108, 108); }
.el-tag--plain.el-tag--danger .el-tag__close { color: rgb(245, 108, 108); }
.el-tag--plain.el-tag--danger .el-tag__close:hover { background-color: rgb(245, 108, 108); color: rgb(255, 255, 255); }
.el-tag--medium { height: 28px; line-height: 26px; }
.el-tag--medium .el-icon-close { transform: scale(0.8); }
.el-tag--small { height: 24px; line-height: 22px; padding: 0px 8px; }
.el-tag--small .el-icon-close { transform: scale(0.8); }
.el-tag--mini { height: 20px; line-height: 19px; padding: 0px 5px; }
.el-tag--mini .el-icon-close { margin-left: -3px; transform: scale(0.7); }
.el-select-dropdown__item { box-sizing: border-box; color: rgb(96, 98, 102); cursor: pointer; font-size: 14px; height: 34px; line-height: 34px; overflow: hidden; padding: 0px 20px; position: relative; text-overflow: ellipsis; white-space: nowrap; }
.el-select-dropdown__item.is-disabled { color: rgb(192, 196, 204); cursor: not-allowed; }
.el-select-dropdown__item.hover, .el-select-dropdown__item:hover { background-color: rgb(245, 247, 250); }
.el-select-dropdown__item.selected { color: rgb(64, 158, 255); font-weight: 700; }
.el-select-group { margin: 0px; padding: 0px; }
.el-select-group__wrap { list-style: none; margin: 0px; padding: 0px; position: relative; }
.el-select-group__wrap:not(:last-of-type) { padding-bottom: 24px; }
.el-select-group__wrap:not(:last-of-type)::after { background: rgb(228, 231, 237); bottom: 12px; content: ""; display: block; height: 1px; left: 20px; position: absolute; right: 20px; }
.el-select-group__title { color: rgb(144, 147, 153); font-size: 12px; line-height: 30px; padding-left: 20px; }
.el-select-group .el-select-dropdown__item { padding-left: 20px; }
.el-scrollbar { overflow: hidden; position: relative; }
.el-scrollbar:active > .el-scrollbar__bar, .el-scrollbar:focus > .el-scrollbar__bar, .el-scrollbar:hover > .el-scrollbar__bar { opacity: 1; transition: opacity 0.34s ease-out; }
.el-scrollbar__wrap { height: 100%; overflow: scroll; }
.el-scrollbar__wrap--hidden-default { scrollbar-width: none; }
.el-scrollbar__wrap--hidden-default::-webkit-scrollbar { height: 0px; width: 0px; }
.el-scrollbar__thumb { background-color: rgba(144, 146, 152, 0.3); border-radius: inherit; cursor: pointer; display: block; height: 0px; position: relative; transition: background-color 0.3s; width: 0px; }
.el-scrollbar__thumb:hover { background-color: rgba(144, 146, 152, 0.5); }
.el-scrollbar__bar { border-radius: 4px; bottom: 2px; opacity: 0; position: absolute; right: 2px; transition: opacity 0.12s ease-out; z-index: 1; }
.el-scrollbar__bar.is-vertical { top: 2px; width: 6px; }
.el-scrollbar__bar.is-vertical > div { width: 100%; }
.el-scrollbar__bar.is-horizontal { height: 6px; left: 2px; }
.el-scrollbar__bar.is-horizontal > div { height: 100%; }
.el-select { display: inline-block; position: relative; }
.el-select .el-select__tags > span { display: contents; }
.el-select .el-input__inner { cursor: pointer; padding-right: 35px; }
.el-select .el-input__inner:focus { border-color: rgb(64, 158, 255); }
.el-select .el-input .el-select__caret { color: rgb(192, 196, 204); cursor: pointer; font-size: 14px; transform: rotate(180deg); transition: transform 0.3s; }
.el-select .el-input .el-select__caret.is-reverse { transform: rotate(0deg); }
.el-select .el-input .el-select__caret.is-show-close { border-radius: 100%; color: rgb(192, 196, 204); font-size: 14px; text-align: center; transform: rotate(180deg); transition: color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1); }
.el-select .el-input .el-select__caret.is-show-close:hover { color: rgb(144, 147, 153); }
.el-select .el-input.is-disabled .el-input__inner { cursor: not-allowed; }
.el-select .el-input.is-disabled .el-input__inner:hover { border-color: rgb(228, 231, 237); }
.el-select .el-input.is-focus .el-input__inner { border-color: rgb(64, 158, 255); }
.el-select > .el-input { display: block; }
.el-select__input { appearance: none; background-color: transparent; border: none; color: rgb(102, 102, 102); font-size: 14px; height: 28px; margin-left: 15px; outline: 0px; padding: 0px; }
.el-select__input.is-mini { height: 14px; }
.el-select__close { color: rgb(192, 196, 204); cursor: pointer; font-size: 14px; line-height: 18px; position: absolute; right: 25px; top: 8px; z-index: 1000; }
.el-select__close:hover { color: rgb(144, 147, 153); }
.el-select__tags { align-items: center; display: flex; flex-wrap: wrap; line-height: normal; position: absolute; top: 50%; transform: translateY(-50%); white-space: normal; z-index: 1; }
.el-select__tags-text { overflow: hidden; text-overflow: ellipsis; }
.el-select .el-tag { align-items: center; background-color: rgb(240, 242, 245); border-color: transparent; box-sizing: border-box; display: flex; margin: 2px 0px 2px 6px; max-width: 100%; }
.el-select .el-tag__close.el-icon-close { background-color: rgb(192, 196, 204); color: rgb(255, 255, 255); flex-shrink: 0; top: 0px; }
.el-select .el-tag__close.el-icon-close:hover { background-color: rgb(144, 147, 153); }
.el-select .el-tag__close.el-icon-close::before { display: block; transform: translateY(0.5px); }
.el-pagination { color: rgb(48, 49, 51); font-weight: 700; padding: 2px 5px; white-space: nowrap; }
.el-pagination::after, .el-pagination::before { content: ""; display: table; }
.el-pagination::after { clear: both; }
.el-pagination button, .el-pagination span:not([class*="suffix"]) { box-sizing: border-box; display: inline-block; font-size: 13px; height: 28px; line-height: 28px; min-width: 35.5px; vertical-align: top; }
.el-pagination .el-input__inner { line-height: normal; text-align: center; }
.el-pagination .el-input__suffix { right: 0px; transform: scale(0.8); }
.el-pagination .el-select .el-input { margin: 0px 5px; width: 100px; }
.el-pagination .el-select .el-input .el-input__inner { border-radius: 3px; padding-right: 25px; }
.el-pagination button { background: 0px 0px; border: none; padding: 0px 6px; }
.el-pagination button:focus { outline: 0px; }
.el-pagination button:hover { color: rgb(64, 158, 255); }
.el-pagination button:disabled { background-color: rgb(255, 255, 255); color: rgb(192, 196, 204); cursor: not-allowed; }
.el-pagination .btn-next, .el-pagination .btn-prev { background: 50% center / 16px no-repeat rgb(255, 255, 255); color: rgb(48, 49, 51); cursor: pointer; margin: 0px; }
.el-pagination .btn-next .el-icon, .el-pagination .btn-prev .el-icon { display: block; font-size: 12px; font-weight: 700; }
.el-pagination .btn-prev { padding-right: 12px; }
.el-pagination .btn-next { padding-left: 12px; }
.el-pagination .el-pager li.disabled { color: rgb(192, 196, 204); cursor: not-allowed; }
.el-pager li, .el-pager li.btn-quicknext:hover, .el-pager li.btn-quickprev:hover { cursor: pointer; }
.el-pagination--small .btn-next, .el-pagination--small .btn-prev, .el-pagination--small .el-pager li, .el-pagination--small .el-pager li.btn-quicknext, .el-pagination--small .el-pager li.btn-quickprev, .el-pagination--small .el-pager li:last-child { border-color: transparent; font-size: 12px; height: 22px; line-height: 22px; min-width: 22px; }
.el-pagination--small .arrow.disabled { visibility: hidden; }
.el-pagination--small .more::before, .el-pagination--small li.more::before { line-height: 24px; }
.el-pagination--small button, .el-pagination--small span:not([class*="suffix"]) { height: 22px; line-height: 22px; }
.el-pagination--small .el-pagination__editor, .el-pagination--small .el-pagination__editor.el-input .el-input__inner { height: 22px; }
.el-pagination__sizes { color: rgb(96, 98, 102); font-weight: 400; margin: 0px 10px 0px 0px; }
.el-pagination__sizes .el-input .el-input__inner { font-size: 13px; padding-left: 8px; }
.el-pagination__sizes .el-input .el-input__inner:hover { border-color: rgb(64, 158, 255); }
.el-pagination__total { color: rgb(96, 98, 102); font-weight: 400; margin-right: 10px; }
.el-pagination__jump { color: rgb(96, 98, 102); font-weight: 400; margin-left: 24px; }
.el-pagination__jump .el-input__inner { padding: 0px 3px; }
.el-pagination__rightwrapper { float: right; }
.el-pagination__editor { border-radius: 3px; box-sizing: border-box; height: 28px; line-height: 18px; margin: 0px 2px; padding: 0px 2px; text-align: center; }
.el-pager, .el-pagination.is-background .btn-next, .el-pagination.is-background .btn-prev { padding: 0px; }
.el-pagination__editor.el-input { width: 50px; }
.el-pagination__editor.el-input .el-input__inner { height: 28px; }
.el-pagination__editor .el-input__inner::-webkit-inner-spin-button, .el-pagination__editor .el-input__inner::-webkit-outer-spin-button { appearance: none; margin: 0px; }
.el-pagination.is-background .btn-next, .el-pagination.is-background .btn-prev, .el-pagination.is-background .el-pager li { background-color: rgb(244, 244, 245); border-radius: 2px; color: rgb(96, 98, 102); margin: 0px 5px; min-width: 30px; }
.el-pagination.is-background .btn-next.disabled, .el-pagination.is-background .btn-next:disabled, .el-pagination.is-background .btn-prev.disabled, .el-pagination.is-background .btn-prev:disabled, .el-pagination.is-background .el-pager li.disabled { color: rgb(192, 196, 204); }
.el-pagination.is-background .el-pager li:not(.disabled):hover { color: rgb(64, 158, 255); }
.el-pagination.is-background .el-pager li:not(.disabled).active { background-color: rgb(64, 158, 255); color: rgb(255, 255, 255); }
.el-pagination.is-background.el-pagination--small .btn-next, .el-pagination.is-background.el-pagination--small .btn-prev, .el-pagination.is-background.el-pagination--small .el-pager li { margin: 0px 3px; min-width: 22px; }
.el-pager, .el-pager li { display: inline-block; margin: 0px; vertical-align: top; }
.el-pager { font-size: 0px; list-style: none; user-select: none; }
.el-pager .more::before { line-height: 30px; }
.el-pager li { background: rgb(255, 255, 255); box-sizing: border-box; font-size: 13px; height: 28px; line-height: 28px; min-width: 35.5px; padding: 0px 4px; text-align: center; }
.el-pager li.btn-quicknext, .el-pager li.btn-quickprev { color: rgb(48, 49, 51); line-height: 28px; }
.el-pager li.btn-quicknext.disabled, .el-pager li.btn-quickprev.disabled { color: rgb(192, 196, 204); }
.el-pager li.active + li { border-left: 0px; }
.el-pager li:hover { color: rgb(64, 158, 255); }
.el-pager li.active { color: rgb(64, 158, 255); cursor: default; }
.el-button { appearance: none; background: rgb(255, 255, 255); border: 1px solid rgb(220, 223, 230); border-radius: 4px; box-sizing: border-box; color: rgb(96, 98, 102); cursor: pointer; display: inline-block; font-size: 14px; font-weight: 500; line-height: 1; margin: 0px; outline: 0px; padding: 12px 20px; text-align: center; transition: 0.1s; user-select: none; white-space: nowrap; }
.el-button + .el-button { margin-left: 10px; }
.el-button:focus, .el-button:hover { background-color: rgb(236, 245, 255); border-color: rgb(198, 226, 255); color: rgb(64, 158, 255); }
.el-button:active { border-color: rgb(58, 142, 230); color: rgb(58, 142, 230); outline: 0px; }
.el-button [class*="el-icon-"] + span { margin-left: 5px; }
.el-button.is-plain:focus, .el-button.is-plain:hover { background: rgb(255, 255, 255); border-color: rgb(64, 158, 255); color: rgb(64, 158, 255); }
.el-button.is-active, .el-button.is-plain:active { border-color: rgb(58, 142, 230); color: rgb(58, 142, 230); }
.el-button.is-plain:active { background: rgb(255, 255, 255); outline: 0px; }
.el-button.is-disabled, .el-button.is-disabled:focus, .el-button.is-disabled:hover { background-color: rgb(255, 255, 255); background-image: none; border-color: rgb(235, 238, 245); color: rgb(192, 196, 204); cursor: not-allowed; }
.el-button.is-disabled.el-button--text { background-color: transparent; }
.el-button.is-disabled.is-plain, .el-button.is-disabled.is-plain:focus, .el-button.is-disabled.is-plain:hover { background-color: rgb(255, 255, 255); border-color: rgb(235, 238, 245); color: rgb(192, 196, 204); }
.el-button.is-loading { pointer-events: none; position: relative; }
.el-button.is-loading::before { background-color: rgba(255, 255, 255, 0.35); border-radius: inherit; inset: -1px; content: ""; pointer-events: none; position: absolute; }
.el-button.is-round { border-radius: 20px; padding: 12px 23px; }
.el-button.is-circle { border-radius: 50%; padding: 12px; }
.el-button--primary { background-color: rgb(64, 158, 255); border-color: rgb(64, 158, 255); color: rgb(255, 255, 255); }
.el-button--primary:focus, .el-button--primary:hover { background: rgb(102, 177, 255); border-color: rgb(102, 177, 255); color: rgb(255, 255, 255); }
.el-button--primary:active { outline: 0px; }
.el-button--primary.is-active, .el-button--primary:active { background: rgb(58, 142, 230); border-color: rgb(58, 142, 230); color: rgb(255, 255, 255); }
.el-button--primary.is-disabled, .el-button--primary.is-disabled:active, .el-button--primary.is-disabled:focus, .el-button--primary.is-disabled:hover { background-color: rgb(160, 207, 255); border-color: rgb(160, 207, 255); color: rgb(255, 255, 255); }
.el-button--primary.is-plain { background: rgb(236, 245, 255); border-color: rgb(179, 216, 255); color: rgb(64, 158, 255); }
.el-button--primary.is-plain:focus, .el-button--primary.is-plain:hover { background: rgb(64, 158, 255); border-color: rgb(64, 158, 255); color: rgb(255, 255, 255); }
.el-button--primary.is-plain:active { background: rgb(58, 142, 230); border-color: rgb(58, 142, 230); color: rgb(255, 255, 255); outline: 0px; }
.el-button--primary.is-plain.is-disabled, .el-button--primary.is-plain.is-disabled:active, .el-button--primary.is-plain.is-disabled:focus, .el-button--primary.is-plain.is-disabled:hover { background-color: rgb(236, 245, 255); border-color: rgb(217, 236, 255); color: rgb(140, 197, 255); }
.el-button--success { background-color: rgb(103, 194, 58); border-color: rgb(103, 194, 58); color: rgb(255, 255, 255); }
.el-button--success:focus, .el-button--success:hover { background: rgb(133, 206, 97); border-color: rgb(133, 206, 97); color: rgb(255, 255, 255); }
.el-button--success.is-active, .el-button--success:active { background: rgb(93, 175, 52); border-color: rgb(93, 175, 52); color: rgb(255, 255, 255); }
.el-button--success:active { outline: 0px; }
.el-button--success.is-disabled, .el-button--success.is-disabled:active, .el-button--success.is-disabled:focus, .el-button--success.is-disabled:hover { background-color: rgb(179, 225, 157); border-color: rgb(179, 225, 157); color: rgb(255, 255, 255); }
.el-button--success.is-plain { background: rgb(240, 249, 235); border-color: rgb(194, 231, 176); color: rgb(103, 194, 58); }
.el-button--success.is-plain:focus, .el-button--success.is-plain:hover { background: rgb(103, 194, 58); border-color: rgb(103, 194, 58); color: rgb(255, 255, 255); }
.el-button--success.is-plain:active { background: rgb(93, 175, 52); border-color: rgb(93, 175, 52); color: rgb(255, 255, 255); outline: 0px; }
.el-button--success.is-plain.is-disabled, .el-button--success.is-plain.is-disabled:active, .el-button--success.is-plain.is-disabled:focus, .el-button--success.is-plain.is-disabled:hover { background-color: rgb(240, 249, 235); border-color: rgb(225, 243, 216); color: rgb(164, 218, 137); }
.el-button--warning { background-color: rgb(230, 162, 60); border-color: rgb(230, 162, 60); color: rgb(255, 255, 255); }
.el-button--warning:focus, .el-button--warning:hover { background: rgb(235, 181, 99); border-color: rgb(235, 181, 99); color: rgb(255, 255, 255); }
.el-button--warning.is-active, .el-button--warning:active { background: rgb(207, 146, 54); border-color: rgb(207, 146, 54); color: rgb(255, 255, 255); }
.el-button--warning:active { outline: 0px; }
.el-button--warning.is-disabled, .el-button--warning.is-disabled:active, .el-button--warning.is-disabled:focus, .el-button--warning.is-disabled:hover { background-color: rgb(243, 209, 158); border-color: rgb(243, 209, 158); color: rgb(255, 255, 255); }
.el-button--warning.is-plain { background: rgb(253, 246, 236); border-color: rgb(245, 218, 177); color: rgb(230, 162, 60); }
.el-button--warning.is-plain:focus, .el-button--warning.is-plain:hover { background: rgb(230, 162, 60); border-color: rgb(230, 162, 60); color: rgb(255, 255, 255); }
.el-button--warning.is-plain:active { background: rgb(207, 146, 54); border-color: rgb(207, 146, 54); color: rgb(255, 255, 255); outline: 0px; }
.el-button--warning.is-plain.is-disabled, .el-button--warning.is-plain.is-disabled:active, .el-button--warning.is-plain.is-disabled:focus, .el-button--warning.is-plain.is-disabled:hover { background-color: rgb(253, 246, 236); border-color: rgb(250, 236, 216); color: rgb(240, 199, 138); }
.el-button--danger { background-color: rgb(245, 108, 108); border-color: rgb(245, 108, 108); color: rgb(255, 255, 255); }
.el-button--danger:focus, .el-button--danger:hover { background: rgb(247, 137, 137); border-color: rgb(247, 137, 137); color: rgb(255, 255, 255); }
.el-button--danger.is-active, .el-button--danger:active { background: rgb(221, 97, 97); border-color: rgb(221, 97, 97); color: rgb(255, 255, 255); }
.el-button--danger:active { outline: 0px; }
.el-button--danger.is-disabled, .el-button--danger.is-disabled:active, .el-button--danger.is-disabled:focus, .el-button--danger.is-disabled:hover { background-color: rgb(250, 182, 182); border-color: rgb(250, 182, 182); color: rgb(255, 255, 255); }
.el-button--danger.is-plain { background: rgb(254, 240, 240); border-color: rgb(251, 196, 196); color: rgb(245, 108, 108); }
.el-button--danger.is-plain:focus, .el-button--danger.is-plain:hover { background: rgb(245, 108, 108); border-color: rgb(245, 108, 108); color: rgb(255, 255, 255); }
.el-button--danger.is-plain:active { background: rgb(221, 97, 97); border-color: rgb(221, 97, 97); color: rgb(255, 255, 255); outline: 0px; }
.el-button--danger.is-plain.is-disabled, .el-button--danger.is-plain.is-disabled:active, .el-button--danger.is-plain.is-disabled:focus, .el-button--danger.is-plain.is-disabled:hover { background-color: rgb(254, 240, 240); border-color: rgb(253, 226, 226); color: rgb(249, 167, 167); }
.el-button--info { background-color: rgb(144, 147, 153); border-color: rgb(144, 147, 153); color: rgb(255, 255, 255); }
.el-button--info:focus, .el-button--info:hover { background: rgb(166, 169, 173); border-color: rgb(166, 169, 173); color: rgb(255, 255, 255); }
.el-button--info.is-active, .el-button--info:active { background: rgb(130, 132, 138); border-color: rgb(130, 132, 138); color: rgb(255, 255, 255); }
.el-button--info:active { outline: 0px; }
.el-button--info.is-disabled, .el-button--info.is-disabled:active, .el-button--info.is-disabled:focus, .el-button--info.is-disabled:hover { background-color: rgb(200, 201, 204); border-color: rgb(200, 201, 204); color: rgb(255, 255, 255); }
.el-button--info.is-plain { background: rgb(244, 244, 245); border-color: rgb(211, 212, 214); color: rgb(144, 147, 153); }
.el-button--info.is-plain:focus, .el-button--info.is-plain:hover { background: rgb(144, 147, 153); border-color: rgb(144, 147, 153); color: rgb(255, 255, 255); }
.el-button--info.is-plain:active { background: rgb(130, 132, 138); border-color: rgb(130, 132, 138); color: rgb(255, 255, 255); outline: 0px; }
.el-button--info.is-plain.is-disabled, .el-button--info.is-plain.is-disabled:active, .el-button--info.is-plain.is-disabled:focus, .el-button--info.is-plain.is-disabled:hover { background-color: rgb(244, 244, 245); border-color: rgb(233, 233, 235); color: rgb(188, 190, 194); }
.el-button--medium { border-radius: 4px; font-size: 14px; padding: 10px 20px; }
.el-button--mini, .el-button--small { border-radius: 3px; font-size: 12px; }
.el-button--medium.is-round { padding: 10px 20px; }
.el-button--medium.is-circle { padding: 10px; }
.el-button--small, .el-button--small.is-round { padding: 9px 15px; }
.el-button--small.is-circle { padding: 9px; }
.el-button--mini, .el-button--mini.is-round { padding: 7px 15px; }
.el-button--mini.is-circle { padding: 7px; }
.el-button--text { background: 0px 0px; border-color: transparent; color: rgb(64, 158, 255); padding-left: 0px; padding-right: 0px; }
.el-button--text:focus, .el-button--text:hover { background-color: transparent; border-color: transparent; color: rgb(102, 177, 255); }
.el-button--text:active { background-color: transparent; color: rgb(58, 142, 230); }
.el-button--text.is-disabled, .el-button--text.is-disabled:focus, .el-button--text.is-disabled:hover, .el-button--text:active { border-color: transparent; }
.el-button-group .el-button--danger:last-child, .el-button-group .el-button--danger:not(:first-child):not(:last-child), .el-button-group .el-button--info:last-child, .el-button-group .el-button--info:not(:first-child):not(:last-child), .el-button-group .el-button--primary:last-child, .el-button-group .el-button--primary:not(:first-child):not(:last-child), .el-button-group .el-button--success:last-child, .el-button-group .el-button--success:not(:first-child):not(:last-child), .el-button-group .el-button--warning:last-child, .el-button-group .el-button--warning:not(:first-child):not(:last-child), .el-button-group > .el-dropdown > .el-button { border-left-color: rgba(255, 255, 255, 0.5); }
.el-button-group .el-button--danger:first-child, .el-button-group .el-button--danger:not(:first-child):not(:last-child), .el-button-group .el-button--info:first-child, .el-button-group .el-button--info:not(:first-child):not(:last-child), .el-button-group .el-button--primary:first-child, .el-button-group .el-button--primary:not(:first-child):not(:last-child), .el-button-group .el-button--success:first-child, .el-button-group .el-button--success:not(:first-child):not(:last-child), .el-button-group .el-button--warning:first-child, .el-button-group .el-button--warning:not(:first-child):not(:last-child) { border-right-color: rgba(255, 255, 255, 0.5); }
.el-button-group { display: inline-block; vertical-align: middle; }
.el-button-group::after, .el-button-group::before { content: ""; display: table; }
.el-button-group::after { clear: both; }
.el-button-group > .el-button { float: left; position: relative; }
.el-button-group > .el-button + .el-button { margin-left: 0px; }
.el-button-group > .el-button.is-disabled { z-index: 1; }
.el-button-group > .el-button:first-child { border-bottom-right-radius: 0px; border-top-right-radius: 0px; }
.el-button-group > .el-button:last-child { border-bottom-left-radius: 0px; border-top-left-radius: 0px; }
.el-button-group > .el-button:first-child:last-child { border-radius: 4px; }
.el-button-group > .el-button:first-child:last-child.is-round { border-radius: 20px; }
.el-button-group > .el-button:first-child:last-child.is-circle { border-radius: 50%; }
.el-button-group > .el-button:not(:first-child):not(:last-child) { border-radius: 0px; }
.el-button-group > .el-button:not(:last-child) { margin-right: -1px; }
.el-button-group > .el-button.is-active, .el-button-group > .el-button:not(.is-disabled):active, .el-button-group > .el-button:not(.is-disabled):focus, .el-button-group > .el-button:not(.is-disabled):hover { z-index: 1; }
.el-button-group > .el-dropdown > .el-button { border-bottom-left-radius: 0px; border-top-left-radius: 0px; }

.regularFontCommon[data-v-ca9a76ac] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-ca9a76ac] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-ca9a76ac] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-ca9a76ac] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-ca9a76ac]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-ca9a76ac]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-ca9a76ac] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-ca9a76ac], .linkBtnCommon2[data-v-ca9a76ac]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-ca9a76ac]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-ca9a76ac]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-ca9a76ac] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-ca9a76ac]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-ca9a76ac]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-ca9a76ac] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-ca9a76ac]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-ca9a76ac]:active { opacity: 1; }
.bannerBtnCommon[data-v-ca9a76ac] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-ca9a76ac]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-ca9a76ac] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-ca9a76ac]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-ca9a76ac] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-ca9a76ac]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-ca9a76ac] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-ca9a76ac]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-ca9a76ac]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-ca9a76ac] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-ca9a76ac]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-ca9a76ac] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-ca9a76ac]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-ca9a76ac]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-ca9a76ac] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-ca9a76ac] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-ca9a76ac] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-ca9a76ac] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-ca9a76ac] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-ca9a76ac] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-ca9a76ac] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-ca9a76ac] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-ca9a76ac] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-ca9a76ac] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-ca9a76ac] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-ca9a76ac] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-ca9a76ac] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-ca9a76ac] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-ca9a76ac] { display: flex; }
.articleInfo .itemMarks .mark[data-v-ca9a76ac] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-ca9a76ac], .mask-leave-active[data-v-ca9a76ac] { transition: opacity 0.3s; }
.mask-enter[data-v-ca9a76ac], .mask-leave-to[data-v-ca9a76ac] { opacity: 0; }
.common-enter-active[data-v-ca9a76ac], .common-leave-active[data-v-ca9a76ac] { transition: opacity 0.5s; }
.common-enter[data-v-ca9a76ac], .common-leave-to[data-v-ca9a76ac] { opacity: 0; }
.todeskFlex[data-v-ca9a76ac] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-ca9a76ac] { flex-direction: column; }
.todeskFlexCenter[data-v-ca9a76ac] { align-items: center; }
.todeskFlexColCenter[data-v-ca9a76ac] { justify-content: center; }
.error[data-v-ca9a76ac] { background: rgb(115, 149, 255); height: 100vh; text-align: center; width: 100vw; }
.error .errorBx[data-v-ca9a76ac] { inset: 0px; height: fit-content; margin: auto; position: absolute; width: fit-content; }
.error .errorBx .errorImg[data-v-ca9a76ac] { height: auto; width: 500px; }
.error .errorBx .title[data-v-ca9a76ac] { color: rgb(255, 255, 255); font-size: 36px; letter-spacing: 4px; line-height: 120px; text-align: center; }
html { text-size-adjust: 100%; -webkit-font-smoothing: antialiased; box-sizing: border-box; font-size: 16px; scroll-behavior: smooth; }
a, blockquote, body, button, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, hr, input, legend, li, ol, p, pre, td, textarea, th, ul { font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; margin: 0px; padding: 0px; }
h1, h2, h3, h4, h5, h6 { font-size: 100%; }
address, cite, dfn, var { font-style: normal; }
code, kbd, pre, samp { font-family: couriernew, courier, monospace; }
small { font-size: 12px; }
ol, ul { list-style: none; }
a { text-size-adjust: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); appearance: none; border-bottom: none; color: inherit; display: block; user-select: none; text-decoration: none !important; }
sup { vertical-align: text-top; }
sub { vertical-align: text-bottom; }
legend { color: rgb(0, 0, 0); }
fieldset, img { border: 0px; }
img { display: block; }
button, input, select, textarea { font-size: 100%; }
table { border-collapse: collapse; border-spacing: 0px; }
body, html { margin: 0px auto; min-width: 1200px; }
.ieDefault { display: block !important; min-height: auto !important; }
.ieDefault .wrap { flex: 0 0 auto; min-height: calc(-320px + 100vh); }
.ieDefault .helpcenter .bnr .bkg_box { justify-content: space-between; }
.ieDefault .mcompany .mtitle { height: 44px; }
.ieDefault .mcompany .mbold { height: auto; }
@font-face { font-family: consola; src: url('../img/consola-1.8480b7e_81c7c004.ttf'); }
@font-face { font-family: barlowFont; src: url('../img/Barlow-Medium.65affeb_6f926b01.ttf'); }
.hsch2 .hsc_bx { background: rgb(255, 255, 255); display: grid; grid-template-columns: minmax(360px, 2fr) minmax(1080px, 4fr); height: max-content; }
@media screen and (max-width: 1200px) {
  .hsch2 .hsc_bx { grid-template-columns: minmax(210px, 1fr) minmax(1080px, 4fr); }
}
@media screen and (min-width: 2560px) {
  .hsch2 .hsc_bx { grid-template-columns: minmax(480px, 38%) minmax(1080px, 4fr); }
}
.hsch2 .hsc_left { align-items: flex-end; border-right: 1px solid rgb(232, 233, 237); box-shadow: rgba(59, 59, 59, 0.1) 8px 0px 16px 0px; box-sizing: border-box; display: flex; flex-direction: column; height: 100%; overflow-y: auto; padding: 30px 10px; vertical-align: top; }
.hsch2 .hsc_left .hsc_left_item { overflow-wrap: break-word; -webkit-box-orient: vertical; -webkit-line-clamp: 1; background: rgb(255, 255, 255); border-radius: 8px; color: rgb(31, 33, 38); cursor: pointer; display: -webkit-box; font-size: 16px; font-weight: 500; height: 22px; margin-bottom: 21px; overflow: hidden; padding: 10px 10px 10px 24px; text-overflow: ellipsis; width: 156px; word-break: break-all; }
.hsch2 .hsc_left .hsc_left_item.active, .hsch2 .hsc_left .hsc_left_item:hover { background: rgba(33, 51, 95, 0.05); color: rgb(1, 117, 255); }
.hsch2 .hsc_right { box-sizing: border-box; display: inline-block; height: 100%; padding: 40px 0px 64px 60px; }
.hsch2 .hsc_right .hsc_item { background: rgb(255, 255, 255); border: 1px solid rgb(233, 235, 239); border-radius: 12px; display: inline-block; height: 310px; overflow: hidden; width: 236px; }
.hsch2 .hsc_right .hsc_item:hover { box-shadow: rgba(0, 0, 0, 0.12) 0px 4px 20px 0px; transition: 0.3s; }
.hsch2 .hsc_right .hsc_item .hsc_item_pic { height: 156px; width: 100%; }
.hsch2 .hsc_right .hsc_item .hsc_item_info { padding-left: 12px; padding-right: 12px; padding-top: 10px; text-align: left; }
.hsch2 .hsc_right .hsc_item .hsc_item_info .hsc_item_title { -webkit-line-clamp: 2; color: rgb(0, 0, 0); font-size: 14px; font-weight: 600; height: 40px; line-height: 20px; }
.hsch2 .hsc_right .hsc_item .hsc_item_info .hsc_item_desc, .hsch2 .hsc_right .hsc_item .hsc_item_info .hsc_item_title { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; font-family: "PingFang SC"; font-style: normal; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.hsch2 .hsc_right .hsc_item .hsc_item_info .hsc_item_desc { -webkit-line-clamp: 3; color: rgb(116, 117, 118); font-size: 12px; font-weight: 400; line-height: 17px; margin-top: 9px; min-height: 52px; }
.hsch2 .hsc_right .hsc_item .hsc_item_info .hsc_tags { margin-top: 9px; }
.hsch2 .hsc_right .hsc_item .hsc_item_info .hsc_tags p { background-color: rgba(116, 117, 118, 0.1); border-radius: 4px; color: rgb(116, 117, 118); display: inline-block; font-size: 12px; height: 19px; line-height: 19px; padding-left: 8px; padding-right: 8px; }
.hsch2 .hsc_right .hsc_item .hsc_item_info .hsc_tags p.p1 { background-color: rgba(33, 110, 216, 0.1); color: rgb(33, 110, 216); }
.hsch2 .hsc_right .hsc_item .hsc_item_info .hsc_tags p.p2 { background-color: rgba(16, 181, 99, 0.1); color: rgb(16, 181, 99); }
.hsch2 .hsc_right .hsc_item .hsc_item_info .hsc_tags p:nth-of-type(2) { margin-left: 6px; margin-right: 6px; }
.hsch2 .hsc_right .hsc_item:nth-of-type(2) { margin-left: 50px; margin-right: 50px; }
.regularFontCommon[data-v-de4c15fa] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-de4c15fa] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-de4c15fa] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-de4c15fa] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-de4c15fa]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-de4c15fa]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-de4c15fa] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-de4c15fa], .linkBtnCommon2[data-v-de4c15fa]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-de4c15fa]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-de4c15fa]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-de4c15fa] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-de4c15fa]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-de4c15fa]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-de4c15fa] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-de4c15fa]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-de4c15fa]:active { opacity: 1; }
.bannerBtnCommon[data-v-de4c15fa] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-de4c15fa]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-de4c15fa] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-de4c15fa]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-de4c15fa] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-de4c15fa]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-de4c15fa] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-de4c15fa]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-de4c15fa]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-de4c15fa] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-de4c15fa]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-de4c15fa] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-de4c15fa]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-de4c15fa]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-de4c15fa] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-de4c15fa] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-de4c15fa] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-de4c15fa] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-de4c15fa] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-de4c15fa] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-de4c15fa] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-de4c15fa] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-de4c15fa] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-de4c15fa] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-de4c15fa] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-de4c15fa] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-de4c15fa] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-de4c15fa] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-de4c15fa] { display: flex; }
.articleInfo .itemMarks .mark[data-v-de4c15fa] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-de4c15fa], .mask-leave-active[data-v-de4c15fa] { transition: opacity 0.3s; }
.mask-enter[data-v-de4c15fa], .mask-leave-to[data-v-de4c15fa] { opacity: 0; }
.common-enter-active[data-v-de4c15fa], .common-leave-active[data-v-de4c15fa] { transition: opacity 0.5s; }
.common-enter[data-v-de4c15fa], .common-leave-to[data-v-de4c15fa] { opacity: 0; }
.todeskFlex[data-v-de4c15fa] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-de4c15fa] { flex-direction: column; }
.todeskFlexCenter[data-v-de4c15fa] { align-items: center; }
.todeskFlexColCenter[data-v-de4c15fa] { justify-content: center; }
[data-v-de4c15fa] { font-family: "PingFang SC"; }
.product[data-v-de4c15fa] { position: relative; }
.product .product-content[data-v-de4c15fa] { display: grid; grid-template-columns: minmax(360px, 1fr) minmax(1080px, 4fr); margin: auto; }
@media screen and (max-width: 1200px) {
  .product .product-content[data-v-de4c15fa] { grid-template-columns: minmax(210px, 1fr) minmax(1080px, 4fr); }
}
@media screen and (min-width: 2560px) {
  .product .product-content[data-v-de4c15fa] { grid-template-columns: minmax(480px, 38%) minmax(1080px, 4fr); }
}
.product .product-content .left-tab[data-v-de4c15fa] { align-items: flex-end; border-right: 1px solid rgb(232, 233, 237); box-shadow: rgba(59, 59, 59, 0.1) 8px 0px 16px 0px; box-sizing: border-box; display: flex; flex-direction: column; padding: 30px 10px; }
.product .product-content .left-tab .tab[data-v-de4c15fa] { align-items: center; background: rgb(255, 255, 255); border-radius: 8px; color: rgb(31, 33, 38); display: flex; font-size: 16px; font-weight: 500; height: 22px; margin-bottom: 21px; padding: 10px 10px 10px 24px; width: 156px; }
.product .product-content .left-tab .tab[data-v-de4c15fa]:hover { background: rgba(33, 51, 95, 0.05); color: rgb(1, 117, 255); }
.product .product-content .left-tab .tab:hover.link[data-v-de4c15fa]::after { background-image: url('../img/d3ea824_abe3c636.svg'); background-repeat: no-repeat; background-size: cover; content: ""; height: 18px; margin-left: auto; width: 18px; }
.product .product-content .left-tab .tab.active[data-v-de4c15fa] { background: rgba(33, 51, 95, 0.05); color: rgb(1, 117, 255); }
.product .product-content .right-content .content[data-v-de4c15fa] { display: flex; padding-left: 62px; width: auto; }
@media screen and (max-width: 1400px) {
  .product .product-content .right-content .content[data-v-de4c15fa] { padding-left: 10px; }
}
@media screen and (max-width: 1240px) {
  .product .product-content .right-content .content[data-v-de4c15fa] { padding-left: 0px; }
}
.product .product-content .right-content .subject[data-v-de4c15fa] { display: flex; margin: 30px 0px 64px; }
.product .product-content .right-content .subject .title[data-v-de4c15fa] { color: rgb(31, 33, 38); display: flex; font-size: 16px; font-weight: 500; }
.product .product-content .right-content .subject .title span[data-v-de4c15fa] { flex: 1 1 0%; }
.product .product-content .right-content .subject .title a[data-v-de4c15fa] { color: rgb(1, 117, 255); font-size: 14px; font-weight: 400; }
.product .product-content .right-content .subject .title a[data-v-de4c15fa]:hover { opacity: 0.7; }
.product .product-content .right-content .subject .title a[data-v-de4c15fa]:active { opacity: 0.9; }
.product .product-content .right-content .subject .subject-content[data-v-de4c15fa] { margin-top: 18px; }
.product .product-content .right-content .subject .subject-item[data-v-de4c15fa] { align-items: center; border-radius: 8px; display: flex; margin-bottom: 8px; min-height: 66px; }
.product .product-content .right-content .subject .subject-item .item-content[data-v-de4c15fa] { align-items: center; display: flex; }
.product .product-content .right-content .subject .subject-item .item-advertising[data-v-de4c15fa] { border-radius: 16px; margin-top: 4px; }
.product .product-content .right-content .subject .subject-item .item-advertising img[data-v-de4c15fa] { height: auto; width: 276px; }
.product .product-content .right-content .subject .subject-item .subject-item-img[data-v-de4c15fa] { height: 28px; margin-left: 20px; margin-right: 10px; width: 28px; }
.product .product-content .right-content .subject .subject-item .subject-item-title .subject-item-title-text[data-v-de4c15fa] { color: rgb(31, 33, 38); font-size: 14px; font-weight: 400; }
.product .product-content .right-content .subject .subject-item .subject-item-title .subject-item-title-desc[data-v-de4c15fa] { color: rgb(154, 158, 171); font-size: 12px; font-weight: 400; line-height: 18px; }
.product .product-content .right-content .subject .subject-item[data-v-de4c15fa]:hover { background: rgba(33, 51, 95, 0.05); border-radius: 8px; }
.product .product-content .right-content .subject .subject-item:hover .subject-item-title-text[data-v-de4c15fa] { color: rgb(1, 117, 255); font-weight: 500; }
.product .product-content .right-content .subject .current[data-v-de4c15fa] { width: 276px; }
.product .product-content .right-content .subject .current.accretion[data-v-de4c15fa] { margin-top: 35px; }
.product .product-content .right-content .subject .current.current--children-disabled .subject-content[data-v-de4c15fa] { cursor: default; pointer-events: none; user-select: none; }
.product .product-content .right-content .subject .link[data-v-de4c15fa] { background: linear-gradient(rgb(232, 233, 237) 65.8%, rgba(232, 233, 237, 0) 103.48%); height: 100%; margin: 0px 50px; transform: scaleX(0.5); width: 1px; }
.product .product-content .right-content .subject .alone-img[data-v-de4c15fa] { border-radius: 16px; height: 324px; overflow: hidden; width: 260px; }
.product .product-content .right-content .subject .alone-img img[data-v-de4c15fa] { height: 324px; width: 260px; }
.ai-toolbox-section[data-v-de4c15fa] { background: rgb(255, 255, 255); display: flex; flex-direction: column; margin-bottom: 64px; margin-top: 30px; position: relative; width: 500px; }
.ai-toolbox-section .ai-toolbox-header[data-v-de4c15fa] { margin-bottom: 20px; }
.ai-toolbox-section .ai-toolbox-header .ai-toolbox-title[data-v-de4c15fa] { color: rgb(31, 33, 38); display: flex; font-size: 16px; font-weight: 500; }
.ai-toolbox-section .ai-toolbox-header .ai-toolbox-desc[data-v-de4c15fa] { color: rgb(154, 158, 171); font-size: 12px; }
.ai-toolbox-section .ai-toolbox-list[data-v-de4c15fa] { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; padding-bottom: 20px; width: 100%; }
.ai-toolbox-section .ai-toolbox-card[data-v-de4c15fa] { align-items: center; background: rgb(247, 248, 250); border: 1px solid transparent; border-radius: 12px; box-shadow: rgba(53, 58, 70, 0.08) 0px 0px 0.5px 0px; box-sizing: border-box; display: flex; flex-direction: row; height: 78px; justify-content: space-between; padding: 12px; width: 242px; }
.ai-toolbox-section .ai-toolbox-card[data-v-de4c15fa]:hover { background: rgb(252, 252, 252); border: 1px solid rgb(117, 147, 255); }
.ai-toolbox-section .ai-toolbox-card[data-v-de4c15fa]:active { background: rgb(247, 248, 250); border: 1px solid rgb(117, 147, 255); }
.ai-toolbox-section .ai-toolbox-card .ai-toolbox-card-info[data-v-de4c15fa] { font-family: "PingFang SC"; width: 147px; }
.ai-toolbox-section .ai-toolbox-card .ai-toolbox-card-info .ai-toolbox-card-title[data-v-de4c15fa] { color: rgba(0, 0, 0, 0.898); font-size: 14px; font-weight: 600; line-height: 1.5; margin-bottom: 4px; }
.ai-toolbox-section .ai-toolbox-card .ai-toolbox-card-info .ai-toolbox-card-desc[data-v-de4c15fa] { color: rgb(154, 158, 171); font-size: 12px; line-height: 1.4; }
.ai-toolbox-section .ai-toolbox-card .ai-toolbox-card-img[data-v-de4c15fa] { align-items: center; display: flex; height: 54px; justify-content: center; width: 54px; }
.ai-toolbox-section .ai-toolbox-card .ai-toolbox-card-img img[data-v-de4c15fa] { border-radius: 6.6px; height: 100%; object-fit: contain; width: 100%; }
@media screen and (max-width: 1440px) {
  .product .product-content .right-content .content[data-v-de4c15fa] { margin-left: 30px; }
  .product .product-content .right-content .subject .link[data-v-de4c15fa] { margin: 0px 20px; }
  .ai-toolbox-section[data-v-de4c15fa] { width: 245px; }
}
.regularFontCommon[data-v-15fe713c] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-15fe713c] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-15fe713c] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-15fe713c] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-15fe713c]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-15fe713c]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-15fe713c] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-15fe713c], .linkBtnCommon2[data-v-15fe713c]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-15fe713c]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-15fe713c]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-15fe713c] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-15fe713c]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-15fe713c]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-15fe713c] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-15fe713c]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-15fe713c]:active { opacity: 1; }
.bannerBtnCommon[data-v-15fe713c] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-15fe713c]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-15fe713c] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-15fe713c]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-15fe713c] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-15fe713c]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-15fe713c] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-15fe713c]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-15fe713c]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-15fe713c] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-15fe713c]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-15fe713c] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-15fe713c]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-15fe713c]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-15fe713c] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-15fe713c] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-15fe713c] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-15fe713c] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-15fe713c] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-15fe713c] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-15fe713c] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-15fe713c] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-15fe713c] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-15fe713c] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-15fe713c] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-15fe713c] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-15fe713c] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-15fe713c] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-15fe713c] { display: flex; }
.articleInfo .itemMarks .mark[data-v-15fe713c] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-15fe713c], .mask-leave-active[data-v-15fe713c] { transition: opacity 0.3s; }
.mask-enter[data-v-15fe713c], .mask-leave-to[data-v-15fe713c] { opacity: 0; }
.common-enter-active[data-v-15fe713c], .common-leave-active[data-v-15fe713c] { transition: opacity 0.5s; }
.common-enter[data-v-15fe713c], .common-leave-to[data-v-15fe713c] { opacity: 0; }
.todeskFlex[data-v-15fe713c] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-15fe713c] { flex-direction: column; }
.todeskFlexCenter[data-v-15fe713c] { align-items: center; }
.todeskFlexColCenter[data-v-15fe713c] { justify-content: center; }
[data-v-15fe713c] { font-family: "PingFang SC"; }
.head-item[data-v-15fe713c] { position: relative; }
.head-item .head-content[data-v-15fe713c] { display: flex; margin: auto; }
.head-item .item-list[data-v-15fe713c] { display: flex; justify-content: center; margin: 30px auto 64px; width: 100%; }
.head-item .item-list .item[data-v-15fe713c] { display: flex; }
.head-item .item-list .item .item-title-box[data-v-15fe713c] { min-height: 74px; width: max-content; }
.head-item .item-list .item .item-title[data-v-15fe713c] { overflow-wrap: break-word; color: rgb(31, 33, 38); display: flex; flex: 1 1 0%; font-size: 16px; font-weight: 600; padding-bottom: 10px; }
.head-item .item-list .item .subject-content[data-v-15fe713c] { align-items: center; display: flex; justify-content: center; }
.head-item .item-list .item .subject-item[data-v-15fe713c] { align-items: center; border-radius: 8px; display: flex; flex-shrink: 0; margin-bottom: 8px; min-height: 66px; }
.head-item .item-list .item .subject-item .item-content[data-v-15fe713c] { align-items: center; box-sizing: border-box; display: flex; padding: 12px 20px; }
.head-item .item-list .item .subject-item .item-advertising[data-v-15fe713c] { margin-top: 4px; }
.head-item .item-list .item .subject-item .item-advertising img[data-v-15fe713c] { height: auto; width: 276px; }
.head-item .item-list .item .subject-item .subject-item-img[data-v-15fe713c] { height: 28px; margin-right: 10px; width: 28px; }
.head-item .item-list .item .subject-item .subject-item-title[data-v-15fe713c] { min-width: 198px; }
.head-item .item-list .item .subject-item .subject-item-title .subject-item-title-text[data-v-15fe713c] { color: rgb(31, 33, 38); font-size: 14px; font-weight: 400; }
.head-item .item-list .item .subject-item .subject-item-title .subject-item-title-desc[data-v-15fe713c] { color: rgb(154, 158, 171); font-size: 12px; font-weight: 400; margin-top: 1px; }
.head-item .item-list .item .subject-item[data-v-15fe713c]:hover { background: rgba(33, 51, 95, 0.05); border-radius: 8px; }
.head-item .item-list .item .subject-item:hover .subject-item-title-text[data-v-15fe713c] { color: rgb(1, 117, 255); font-weight: 500; }
.head-item .item-list .item .link[data-v-15fe713c] { background: linear-gradient(rgb(232, 233, 237), rgba(232, 233, 237, 0) 107.69%); height: 66px; margin: 0px 50px; width: 1px; }
.regularFontCommon[data-v-16086fd2] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-16086fd2] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-16086fd2] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-16086fd2] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-16086fd2]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-16086fd2]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-16086fd2] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-16086fd2], .linkBtnCommon2[data-v-16086fd2]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-16086fd2]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-16086fd2]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-16086fd2] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-16086fd2]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-16086fd2]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-16086fd2] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-16086fd2]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-16086fd2]:active { opacity: 1; }
.bannerBtnCommon[data-v-16086fd2] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-16086fd2]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-16086fd2] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-16086fd2]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-16086fd2] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-16086fd2]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-16086fd2] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-16086fd2]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-16086fd2]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-16086fd2] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-16086fd2]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-16086fd2] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-16086fd2]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-16086fd2]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-16086fd2] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-16086fd2] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-16086fd2] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-16086fd2] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-16086fd2] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-16086fd2] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-16086fd2] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-16086fd2] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-16086fd2] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-16086fd2] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-16086fd2] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-16086fd2] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-16086fd2] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-16086fd2] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-16086fd2] { display: flex; }
.articleInfo .itemMarks .mark[data-v-16086fd2] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-16086fd2], .mask-leave-active[data-v-16086fd2] { transition: opacity 0.3s; }
.mask-enter[data-v-16086fd2], .mask-leave-to[data-v-16086fd2] { opacity: 0; }
.common-enter-active[data-v-16086fd2], .common-leave-active[data-v-16086fd2] { transition: opacity 0.5s; }
.common-enter[data-v-16086fd2], .common-leave-to[data-v-16086fd2] { opacity: 0; }
.todeskFlex[data-v-16086fd2] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-16086fd2] { flex-direction: column; }
.todeskFlexCenter[data-v-16086fd2] { align-items: center; }
.todeskFlexColCenter[data-v-16086fd2] { justify-content: center; }
[data-v-16086fd2] { font-family: "PingFang SC"; }
.head-item[data-v-16086fd2] { position: relative; }
.head-item .head-content[data-v-16086fd2] { display: flex; margin: auto; }
.head-item .item-list[data-v-16086fd2] { display: flex; flex-flow: wrap; justify-content: center; margin: 30px auto 64px; max-width: 956px; width: 100%; }
.head-item .item-list .item[data-v-16086fd2] { display: flex; width: 235px; }
.head-item .item-list .item .item-title-box[data-v-16086fd2] { width: 196px; }
.head-item .item-list .item .item-title[data-v-16086fd2] { overflow-wrap: break-word; color: rgb(31, 33, 38); display: flex; flex: 1 1 0%; font-size: 16px; font-weight: 600; padding-bottom: 10px; }
.head-item .item-list .item .subject-item[data-v-16086fd2] { align-items: center; border-radius: 8px; display: flex; margin-bottom: 24px; min-height: 66px; position: relative; }
.head-item .item-list .item .subject-item[data-v-16086fd2]::after { background: linear-gradient(rgba(232, 233, 237, 0), rgb(232, 233, 237) 50%, rgba(232, 233, 237, 0)); content: ""; height: 44px; position: absolute; right: -19px; top: 50%; transform: translateY(-50%); width: 1px; }
.head-item .item-list .item .subject-item.noBorder[data-v-16086fd2]::after { content: normal; }
.head-item .item-list .item .subject-item .item-content[data-v-16086fd2] { align-items: center; display: flex; }
.head-item .item-list .item .subject-item .item-advertising[data-v-16086fd2] { margin-top: 4px; }
.head-item .item-list .item .subject-item .item-advertising img[data-v-16086fd2] { height: auto; width: 276px; }
.head-item .item-list .item .subject-item .subject-item-img[data-v-16086fd2] { height: 28px; margin-left: 12px; margin-right: 10px; width: 28px; }
.head-item .item-list .item .subject-item .subject-item-title .subject-item-title-text[data-v-16086fd2] { color: rgb(31, 33, 38); font-size: 14px; font-weight: 400; }
.head-item .item-list .item .subject-item .subject-item-title .subject-item-title-desc[data-v-16086fd2] { color: rgb(154, 158, 171); font-size: 12px; font-weight: 400; margin-top: 1px; }
.head-item .item-list .item .subject-item.hactive[data-v-16086fd2], .head-item .item-list .item .subject-item[data-v-16086fd2]:hover { background: rgba(33, 51, 95, 0.05); border-radius: 8px; }
.head-item .item-list .item .subject-item.hactive .subject-item-title-text[data-v-16086fd2], .head-item .item-list .item .subject-item:hover .subject-item-title-text[data-v-16086fd2] { color: rgb(1, 117, 255); font-weight: 500; }
.head-item .item-list .item .link[data-v-16086fd2] { height: 100%; margin: 0px 19px; width: 1px; }
.regularFontCommon[data-v-47ec9216] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-47ec9216] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-47ec9216] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-47ec9216] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-47ec9216]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-47ec9216]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-47ec9216] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-47ec9216], .linkBtnCommon2[data-v-47ec9216]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-47ec9216]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-47ec9216]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-47ec9216] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-47ec9216]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-47ec9216]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-47ec9216] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-47ec9216]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-47ec9216]:active { opacity: 1; }
.bannerBtnCommon[data-v-47ec9216] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-47ec9216]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-47ec9216] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-47ec9216]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-47ec9216] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-47ec9216]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-47ec9216] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-47ec9216]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-47ec9216]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-47ec9216] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-47ec9216]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-47ec9216] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-47ec9216]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-47ec9216]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-47ec9216] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-47ec9216] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-47ec9216] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-47ec9216] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-47ec9216] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-47ec9216] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-47ec9216] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-47ec9216] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-47ec9216] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-47ec9216] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-47ec9216] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-47ec9216] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-47ec9216] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-47ec9216] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-47ec9216] { display: flex; }
.articleInfo .itemMarks .mark[data-v-47ec9216] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-47ec9216], .mask-leave-active[data-v-47ec9216] { transition: opacity 0.3s; }
.mask-enter[data-v-47ec9216], .mask-leave-to[data-v-47ec9216] { opacity: 0; }
.common-enter-active[data-v-47ec9216], .common-leave-active[data-v-47ec9216] { transition: opacity 0.5s; }
.common-enter[data-v-47ec9216], .common-leave-to[data-v-47ec9216] { opacity: 0; }
.todeskFlex[data-v-47ec9216] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-47ec9216] { flex-direction: column; }
.todeskFlexCenter[data-v-47ec9216] { align-items: center; }
.todeskFlexColCenter[data-v-47ec9216] { justify-content: center; }
[data-v-47ec9216] { font-family: "PingFang SC"; }
.head-item[data-v-47ec9216] { position: relative; }
.head-item .head-content[data-v-47ec9216] { display: flex; margin: auto; }
.head-item .item-list[data-v-47ec9216] { display: flex; justify-content: center; margin: 30px auto 64px; max-width: 956px; width: 100%; }
.head-item .item-list .item[data-v-47ec9216] { display: flex; }
.head-item .item-list .item .item-title-box[data-v-47ec9216] { width: 276px; }
.head-item .item-list .item .item-title[data-v-47ec9216] { overflow-wrap: break-word; color: rgb(31, 33, 38); display: flex; flex: 1 1 0%; font-size: 16px; font-weight: 600; padding-bottom: 10px; }
.head-item .item-list .item .subject-item[data-v-47ec9216] { align-items: center; border-radius: 8px; display: flex; margin-bottom: 8px; min-height: 66px; }
.head-item .item-list .item .subject-item .item-content[data-v-47ec9216] { align-items: center; display: flex; }
.head-item .item-list .item .subject-item .item-advertising[data-v-47ec9216] { margin-top: 4px; }
.head-item .item-list .item .subject-item .item-advertising img[data-v-47ec9216] { height: auto; width: 276px; }
.head-item .item-list .item .subject-item .subject-item-img[data-v-47ec9216] { height: 28px; margin-left: 20px; margin-right: 10px; width: 28px; }
.head-item .item-list .item .subject-item .subject-item-title .subject-item-title-text[data-v-47ec9216] { color: rgb(31, 33, 38); font-size: 14px; font-weight: 400; }
.head-item .item-list .item .subject-item .subject-item-title .subject-item-title-desc[data-v-47ec9216] { color: rgb(154, 158, 171); font-size: 12px; font-weight: 400; margin-top: 1px; }
.head-item .item-list .item .subject-item.hactive[data-v-47ec9216], .head-item .item-list .item .subject-item[data-v-47ec9216]:hover { background: rgba(33, 51, 95, 0.05); border-radius: 8px; }
.head-item .item-list .item .subject-item.hactive .subject-item-title-text[data-v-47ec9216], .head-item .item-list .item .subject-item:hover .subject-item-title-text[data-v-47ec9216] { color: rgb(1, 117, 255); font-weight: 500; }
.head-item .item-list .item .link[data-v-47ec9216] { background: linear-gradient(rgb(232, 233, 237), rgba(232, 233, 237, 0) 107.69%); height: 100%; margin: 0px 50px; width: 1px; }
.regularFontCommon[data-v-644fa88d] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-644fa88d] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-644fa88d] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-644fa88d] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-644fa88d]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-644fa88d]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-644fa88d] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-644fa88d], .linkBtnCommon2[data-v-644fa88d]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-644fa88d]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-644fa88d]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-644fa88d] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-644fa88d]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-644fa88d]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-644fa88d] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-644fa88d]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-644fa88d]:active { opacity: 1; }
.bannerBtnCommon[data-v-644fa88d] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-644fa88d]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-644fa88d] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-644fa88d]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-644fa88d] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-644fa88d]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-644fa88d] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-644fa88d]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-644fa88d]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-644fa88d] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-644fa88d]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-644fa88d] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-644fa88d]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-644fa88d]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-644fa88d] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-644fa88d] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-644fa88d] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-644fa88d] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-644fa88d] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-644fa88d] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-644fa88d] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-644fa88d] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-644fa88d] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-644fa88d] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-644fa88d] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-644fa88d] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-644fa88d] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-644fa88d] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-644fa88d] { display: flex; }
.articleInfo .itemMarks .mark[data-v-644fa88d] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-644fa88d], .mask-leave-active[data-v-644fa88d] { transition: opacity 0.3s; }
.mask-enter[data-v-644fa88d], .mask-leave-to[data-v-644fa88d] { opacity: 0; }
.common-enter-active[data-v-644fa88d], .common-leave-active[data-v-644fa88d] { transition: opacity 0.5s; }
.common-enter[data-v-644fa88d], .common-leave-to[data-v-644fa88d] { opacity: 0; }
.todeskFlex[data-v-644fa88d] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-644fa88d] { flex-direction: column; }
.todeskFlexCenter[data-v-644fa88d] { align-items: center; }
.todeskFlexColCenter[data-v-644fa88d] { justify-content: center; }
[data-v-644fa88d] { font-family: "PingFang SC"; }
.head-item[data-v-644fa88d] { position: relative; }
.head-item .head-content[data-v-644fa88d] { display: flex; margin: auto; }
.head-item .item-list[data-v-644fa88d] { display: flex; justify-content: center; margin: 30px auto 64px; max-width: 956px; width: 100%; }
.head-item .item-list .item[data-v-644fa88d] { display: flex; }
.head-item .item-list .item .item-title-box[data-v-644fa88d] { width: 276px; }
.head-item .item-list .item .item-title[data-v-644fa88d] { overflow-wrap: break-word; color: rgb(31, 33, 38); display: flex; flex: 1 1 0%; font-size: 16px; font-weight: 600; padding-bottom: 10px; }
.head-item .item-list .item .subject-item[data-v-644fa88d] { align-items: center; border-radius: 8px; display: flex; margin-bottom: 8px; min-height: 66px; }
.head-item .item-list .item .subject-item .item-content[data-v-644fa88d] { align-items: center; display: flex; }
.head-item .item-list .item .subject-item .item-advertising[data-v-644fa88d] { margin-top: 4px; }
.head-item .item-list .item .subject-item .item-advertising img[data-v-644fa88d] { height: auto; width: 276px; }
.head-item .item-list .item .subject-item .subject-item-img[data-v-644fa88d] { height: 28px; margin-left: 20px; margin-right: 10px; width: 28px; }
.head-item .item-list .item .subject-item .subject-item-title .subject-item-title-text[data-v-644fa88d] { color: rgb(31, 33, 38); font-size: 14px; font-weight: 400; }
.head-item .item-list .item .subject-item .subject-item-title .subject-item-title-desc[data-v-644fa88d] { color: rgb(154, 158, 171); font-size: 12px; font-weight: 400; margin-top: 1px; }
.head-item .item-list .item .subject-item.hactive[data-v-644fa88d], .head-item .item-list .item .subject-item[data-v-644fa88d]:hover { background: rgba(33, 51, 95, 0.05); border-radius: 8px; }
.head-item .item-list .item .subject-item.hactive .subject-item-title-text[data-v-644fa88d], .head-item .item-list .item .subject-item:hover .subject-item-title-text[data-v-644fa88d] { color: rgb(1, 117, 255); font-weight: 500; }
.head-item .item-list .item .link[data-v-644fa88d] { background: linear-gradient(rgb(232, 233, 237), rgba(232, 233, 237, 0) 107.69%); height: 100%; margin: 0px 50px; width: 1px; }
.regularFontCommon[data-v-9c3b7fec] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-9c3b7fec] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-9c3b7fec] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-9c3b7fec] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-9c3b7fec]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-9c3b7fec]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-9c3b7fec] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-9c3b7fec], .linkBtnCommon2[data-v-9c3b7fec]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-9c3b7fec]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-9c3b7fec]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-9c3b7fec] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-9c3b7fec]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-9c3b7fec]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-9c3b7fec] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-9c3b7fec]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-9c3b7fec]:active { opacity: 1; }
.bannerBtnCommon[data-v-9c3b7fec] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-9c3b7fec]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-9c3b7fec] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-9c3b7fec]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-9c3b7fec] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-9c3b7fec]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-9c3b7fec] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-9c3b7fec]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-9c3b7fec]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-9c3b7fec] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-9c3b7fec]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-9c3b7fec] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-9c3b7fec]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-9c3b7fec]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-9c3b7fec] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-9c3b7fec] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-9c3b7fec] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-9c3b7fec] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-9c3b7fec] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-9c3b7fec] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-9c3b7fec] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-9c3b7fec] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-9c3b7fec] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-9c3b7fec] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-9c3b7fec] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-9c3b7fec] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-9c3b7fec] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-9c3b7fec] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-9c3b7fec] { display: flex; }
.articleInfo .itemMarks .mark[data-v-9c3b7fec] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-9c3b7fec], .mask-leave-active[data-v-9c3b7fec] { transition: opacity 0.3s; }
.mask-enter[data-v-9c3b7fec], .mask-leave-to[data-v-9c3b7fec] { opacity: 0; }
.common-enter-active[data-v-9c3b7fec], .common-leave-active[data-v-9c3b7fec] { transition: opacity 0.5s; }
.common-enter[data-v-9c3b7fec], .common-leave-to[data-v-9c3b7fec] { opacity: 0; }
.todeskFlex[data-v-9c3b7fec] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-9c3b7fec] { flex-direction: column; }
.todeskFlexCenter[data-v-9c3b7fec] { align-items: center; }
.todeskFlexColCenter[data-v-9c3b7fec] { justify-content: center; }
[data-v-9c3b7fec] { font-family: "PingFang SC"; }
.head-item[data-v-9c3b7fec] { position: relative; }
.head-item .head-content[data-v-9c3b7fec] { align-items: center; display: flex; flex-direction: column; margin: auto; padding-bottom: 64px; }
.head-item .all-btn[data-v-9c3b7fec] { background: transparent; border: 1px solid rgb(0, 101, 221); border-radius: 4px; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; width: 200px; }
.head-item .all-btn[data-v-9c3b7fec]:hover { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 101, 221); border-radius: 4px; color: rgb(33, 110, 216); }
.head-item .all-btn[data-v-9c3b7fec]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.head-item .item-list[data-v-9c3b7fec] { gap: 20px 14px; display: grid; grid-template-columns: repeat(4, 276px); justify-content: center; margin: 30px auto; width: 100%; }
.head-item .item-list .subject-item[data-v-9c3b7fec] { align-items: center; border-radius: 8px; display: flex; min-height: 61px; position: relative; }
.head-item .item-list .subject-item[data-v-9c3b7fec]:not(:nth-child(4n)):not(:last-child)::after { background: linear-gradient(rgb(232, 233, 237) 61%, rgba(232, 233, 237, 0)); content: ""; height: 65px; position: absolute; right: -7px; top: 50%; transform: translateY(-50%); width: 1px; }
.head-item .item-list .subject-item .item-content[data-v-9c3b7fec] { align-items: center; display: flex; }
.head-item .item-list .subject-item .subject-item-img[data-v-9c3b7fec] { height: 28px; margin-left: 20px; margin-right: 10px; width: 28px; }
.head-item .item-list .subject-item .subject-item-title[data-v-9c3b7fec] { width: 198px; }
.head-item .item-list .subject-item .subject-item-title .subject-item-title-text[data-v-9c3b7fec] { color: rgb(31, 33, 38); font-size: 14px; font-weight: 400; }
.head-item .item-list .subject-item .subject-item-title .subject-item-title-desc[data-v-9c3b7fec] { color: rgb(154, 158, 171); font-size: 12px; font-weight: 400; line-height: 20px; margin-top: 1px; }
.head-item .item-list .subject-item.hactive[data-v-9c3b7fec], .head-item .item-list .subject-item[data-v-9c3b7fec]:hover { background: rgba(33, 51, 95, 0.05); border-radius: 8px; }
.head-item .item-list .subject-item.hactive .subject-item-title-text[data-v-9c3b7fec], .head-item .item-list .subject-item:hover .subject-item-title-text[data-v-9c3b7fec] { color: rgb(1, 117, 255); font-weight: 500; }
.regularFontCommon[data-v-09d10770] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-09d10770] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-09d10770] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-09d10770] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-09d10770]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-09d10770]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-09d10770] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-09d10770], .linkBtnCommon2[data-v-09d10770]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-09d10770]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-09d10770]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-09d10770] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-09d10770]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-09d10770]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-09d10770] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-09d10770]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-09d10770]:active { opacity: 1; }
.bannerBtnCommon[data-v-09d10770] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-09d10770]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-09d10770] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-09d10770]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-09d10770] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-09d10770]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-09d10770] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-09d10770]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-09d10770]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-09d10770] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-09d10770]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-09d10770] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-09d10770]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-09d10770]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-09d10770] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-09d10770] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-09d10770] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-09d10770] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-09d10770] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-09d10770] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-09d10770] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-09d10770] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-09d10770] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-09d10770] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-09d10770] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-09d10770] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-09d10770] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-09d10770] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-09d10770] { display: flex; }
.articleInfo .itemMarks .mark[data-v-09d10770] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-09d10770], .mask-leave-active[data-v-09d10770] { transition: opacity 0.3s; }
.mask-enter[data-v-09d10770], .mask-leave-to[data-v-09d10770] { opacity: 0; }
.common-enter-active[data-v-09d10770], .common-leave-active[data-v-09d10770] { transition: opacity 0.5s; }
.common-enter[data-v-09d10770], .common-leave-to[data-v-09d10770] { opacity: 0; }
.todeskFlex[data-v-09d10770] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-09d10770] { flex-direction: column; }
.todeskFlexCenter[data-v-09d10770] { align-items: center; }
.todeskFlexColCenter[data-v-09d10770] { justify-content: center; }
.header-v2[data-v-09d10770] { background-color: rgb(255, 255, 255); box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 10px 0px; left: 0px; position: sticky; top: 0px; width: 100%; z-index: 9; }
.header-v2.navcont_shown[data-v-09d10770] { box-shadow: none; }
.header-v2.game_version[data-v-09d10770] { background-color: rgb(29, 29, 29); transition: background-color 0.3s; }
.header-v2.game_version .hni_text[data-v-09d10770], .header-v2.game_version .hnitem.hnitem_link[data-v-09d10770], .header-v2.game_version .login_btn[data-v-09d10770] { color: rgb(255, 255, 255); }
.header-v2.design_version[data-v-09d10770] { background-color: rgb(29, 29, 29); transition: background-color 0.3s; }
.header-v2.design_version .hni_text[data-v-09d10770], .header-v2.design_version .hnitem.hnitem_link[data-v-09d10770], .header-v2.design_version .login_btn[data-v-09d10770] { color: rgb(255, 255, 255); }
.header-v2.perform_version[data-v-09d10770] { backdrop-filter: blur(8px); background-color: transparent; transition: background-color 0.3s; }
.header-v2.perform_version .hni_text[data-v-09d10770], .header-v2.perform_version .hnitem.hnitem_link[data-v-09d10770], .header-v2.perform_version .login_btn[data-v-09d10770] { color: rgb(255, 255, 255); }
.header-v2.perform_version.fix_bg[data-v-09d10770] { background-color: rgba(1, 13, 14, 0.5); }
.header-v2.perform_version.indexScrollTop[data-v-09d10770] { background-color: rgb(255, 255, 255); }
.header-v2.perform_version.indexScrollTop .hni_text[data-v-09d10770], .header-v2.perform_version.indexScrollTop .hnitem.hnitem_link[data-v-09d10770], .header-v2.perform_version.indexScrollTop .login_btn[data-v-09d10770] { color: rgb(68, 69, 70); }
.header-v2.perform_version.indexScrollTop .hni_text[data-v-09d10770]:hover { background-color: rgb(242, 243, 245); color: rgb(0, 112, 249); font-weight: 500; }
.header-v2.design_version.headerVersionActive[data-v-09d10770], .header-v2.game_version.headerVersionActive[data-v-09d10770], .header-v2.perform_version.headerVersionActive[data-v-09d10770] { background-color: rgb(255, 255, 255); }
.header-v2.design_version.headerVersionActive .hni_text[data-v-09d10770], .header-v2.design_version.headerVersionActive .hnitem.hnitem_link[data-v-09d10770], .header-v2.design_version.headerVersionActive .login_btn[data-v-09d10770], .header-v2.game_version.headerVersionActive .hni_text[data-v-09d10770], .header-v2.game_version.headerVersionActive .hnitem.hnitem_link[data-v-09d10770], .header-v2.game_version.headerVersionActive .login_btn[data-v-09d10770], .header-v2.perform_version.headerVersionActive .hni_text[data-v-09d10770], .header-v2.perform_version.headerVersionActive .hnitem.hnitem_link[data-v-09d10770], .header-v2.perform_version.headerVersionActive .login_btn[data-v-09d10770] { color: rgb(68, 69, 70); }
.header-v2.design_version.headerVersionActive .hni_text[data-v-09d10770]:hover, .header-v2.game_version.headerVersionActive .hni_text[data-v-09d10770]:hover, .header-v2.perform_version.headerVersionActive .hni_text[data-v-09d10770]:hover { background-color: rgb(242, 243, 245); color: rgb(0, 112, 249); font-weight: 500; }
.header-v2.transparent_version.scrollTop[data-v-09d10770] { background-color: transparent; box-shadow: none; }
.header-v2.transparent_version.scrollTop.currBanner_todesk .hni_text[data-v-09d10770], .header-v2.transparent_version.scrollTop.currBanner_todesk .hnitem.hnitem_link[data-v-09d10770], .header-v2.transparent_version.scrollTop.currBanner_todesk .login_btn[data-v-09d10770] { color: rgb(255, 255, 255); }
.header-v2.transparent_version.headerVersionActive[data-v-09d10770] { background-color: rgb(255, 255, 255); box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 10px 0px; }
.header-v2.transparent_version.headerVersionActive.currBanner_todesk .hni_text[data-v-09d10770], .header-v2.transparent_version.headerVersionActive.currBanner_todesk .hnitem.hnitem_link[data-v-09d10770], .header-v2.transparent_version.headerVersionActive.currBanner_todesk .login_btn[data-v-09d10770] { color: rgb(68, 69, 70); }
.header-v2 .hcont[data-v-09d10770] { align-items: center; box-sizing: border-box; display: flex; flex: 1 1 0%; height: 70px; justify-content: space-between; margin: auto; padding: 0px 60px; position: relative; }
.header-v2 .hnavs[data-v-09d10770] { display: flex; flex: 1 1 0%; height: 100%; }
.header-v2 .hnavs_info[data-v-09d10770] { display: flex; height: 100%; justify-content: center; min-width: 768px; width: 100%; }
.header-v2 .hnitem[data-v-09d10770] { align-items: center; color: rgb(68, 69, 70); cursor: pointer; display: flex; font-family: "PingFang SC"; font-size: 16px; font-weight: 400; height: 100%; line-height: normal; padding: 0px 2px; transition: color 0.3s; }
.header-v2 .hnitem .new-icon[data-v-09d10770] { display: block; height: 16px; position: absolute; right: -10px; top: 10px; width: 34px; z-index: 1; }
.header-v2 .hnitem .new-icon1[data-v-09d10770] { background: linear-gradient(270deg, rgb(255, 119, 28), rgb(255, 150, 28) 105.88%); border-radius: 10px 10px 10px 0px; color: rgb(255, 255, 255); font-size: 11px; font-weight: 400; line-height: 16px; padding: 1px 6px; position: absolute; right: -10px; top: 8px; z-index: 1; }
.header-v2 .hnitem_toclaw[data-v-09d10770] { position: relative; }
.header-v2 .hnitem_toclaw .toclaw_nav_link[data-v-09d10770] { height: 100%; outline: none; text-decoration: none; }
.header-v2 .hnitem_toclaw .toclaw_nav_inner[data-v-09d10770], .header-v2 .hnitem_toclaw .toclaw_nav_link[data-v-09d10770] { align-items: center; display: inline-flex; position: relative; }
.header-v2 .hnitem_toclaw .toclaw_nav_inner .hni_text[data-v-09d10770] { box-sizing: border-box; min-width: 101px; }
.header-v2 .hnitem_toclaw .toclaw_nav_badge[data-v-09d10770] { position: absolute; right: -17px; top: -6px; }
.header-v2 .hnitem_toclaw .toclaw_nav_tooltip[data-v-09d10770] { --radius-s: 4px; --overlay-tooltip: #f2f2f2; --shadow-spread: rgba(0,0,0,.1); --shadow-ambient: rgba(0,0,0,.12); --shadow-key: rgba(0,0,0,.16); background: var(--overlay-tooltip,#f2f2f2); border-radius: var(--radius-s,4px); box-shadow: 0 0 0 1px var(--shadow-spread,rgba(0,0,0,.1)),0 .6px 1.8px 0 var(--shadow-ambient,rgba(0,0,0,.12)),0 2px 7.2px 0 var(--shadow-key,rgba(0,0,0,.16)); color: rgb(0, 0, 0); font-size: 14px; font-weight: 400; left: 60%; opacity: 0; padding: 4px 8px; pointer-events: none; position: absolute; top: 51px; transition: opacity 0.15s, visibility 0.15s; visibility: hidden; white-space: nowrap; z-index: 30; }
.header-v2 .hnitem_toclaw .toclaw_nav_link:focus-visible .toclaw_nav_tooltip[data-v-09d10770], .header-v2 .hnitem_toclaw .toclaw_nav_link:hover .toclaw_nav_tooltip[data-v-09d10770] { opacity: 1; visibility: visible; }
.header-v2 .logo_link[data-v-09d10770] { align-items: center; display: flex; height: 100%; margin-right: 10px; }
.header-v2 .logo[data-v-09d10770] { height: auto; width: 130px; }
.header-v2 .hni_text[data-v-09d10770] { align-items: center; border-radius: 6px; box-sizing: border-box; color: rgb(68, 69, 70); cursor: pointer; display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; padding: 10px 16px; transition: color 0.3s; width: fit-content; }
.header-v2 .hni_text.about[data-v-09d10770] { min-width: 135px; }
.header-v2 .hni_text.hover_other[data-v-09d10770] { background-color: rgb(242, 243, 245); color: rgb(0, 112, 249); font-weight: 500; }
.header-v2 .hni_text .down_arrow_v2[data-v-09d10770] { margin-left: 3px; margin-top: 2px; }
.header-v2 .hni_text .down_arrow_v2.rotate2up[data-v-09d10770] { transform: rotate(180deg); }
.header-v2 .hni_text .downicon[data-v-09d10770], .header-v2 .hni_text .upicon[data-v-09d10770] { font-size: 14px; margin-left: 3px; margin-top: 1px; }
.header-v2 .hni_text[data-v-09d10770]:hover { background-color: rgb(242, 243, 245); color: rgb(0, 112, 249); font-weight: 500; }
.header-v2 .hnitem.hnitem_link.nuxt-link-exact-active[data-v-09d10770], .header-v2 .hnitem.hnitem_link[data-v-09d10770]:hover { font-weight: 500; }
.header-v2 .hnitem.last[data-v-09d10770] { justify-content: center; width: 95px; }
.header-v2 .hnitem.active[data-v-09d10770] { color: rgb(0, 112, 249); font-weight: 500; }
.header-v2 .hbtns[data-v-09d10770] { flex-shrink: 0; }
.header-v2 .hbtns[data-v-09d10770], .header-v2 .login_box[data-v-09d10770] { align-items: center; display: flex; height: 100%; }
.header-v2 .login_box[data-v-09d10770] { position: relative; }
.header-v2 .login_btn[data-v-09d10770] { color: rgb(68, 69, 70); cursor: pointer; padding-left: 15px; padding-right: 15px; position: relative; }
.header-v2 .login_btn .new-icon[data-v-09d10770] { display: block; height: 16px; position: absolute; right: -17px; top: -16px; width: 34px; z-index: 1; }
.header-v2 .login_box:hover .login_btn[data-v-09d10770] { font-weight: 500; }
.header-v2 .toenp_box[data-v-09d10770] { align-items: center; display: flex; margin-left: 22px; }
.header-v2 .toenp[data-v-09d10770] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 34px; text-align: center; width: 136px; }
.header-v2 .toenp[data-v-09d10770]:hover { background-color: rgb(11, 128, 254); }
.header-v2 .fold_icon[data-v-09d10770] { cursor: pointer; display: none; height: 30px; width: 30px; }
.header-v2 .solutions[data-v-09d10770] { height: 100%; position: relative; }
.header-v2 .loginbox[data-v-09d10770] { background: rgb(255, 255, 255); border-radius: 6px; box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 14px 2px, rgba(0, 0, 0, 0.06) 0px 8px 10px 1px, rgba(0, 0, 0, 0.1) 0px 5px 5px -3px; box-sizing: border-box; left: -6px; padding: 10px 16px; position: absolute; top: 69px; width: 190px; }
.header-v2 .loginbox .login_pop_item[data-v-09d10770] { align-items: center; color: rgb(68, 69, 70); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 14px; font-weight: 400; height: 40px; margin-bottom: 8px; }
.header-v2 .loginbox .login_pop_item[data-v-09d10770]:last-of-type { margin-bottom: 0px; }
.header-v2 .loginbox .login_pop_item[data-v-09d10770]:hover { color: rgb(1, 110, 253); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.header-v2 .loginbox .login_pop_item .lbicon[data-v-09d10770] { height: 24px; width: 24px; }
.header-v2 .loginbox .login_pop_item .lbtext[data-v-09d10770] { margin-left: 8px; }
.header-v2 .hactive[data-v-09d10770], .header-v2 .hnitem.hnitem_link.hactive[data-v-09d10770], .header-v2 .login_btn[data-v-09d10770]:hover { color: rgb(0, 0, 0); font-weight: 700; }
.header-v2 .hdr_hide[data-v-09d10770] { display: none !important; }
.header-v2 .todeskai_item[data-v-09d10770] { position: relative; }
.header-v2 .todeskai_item .todeskai[data-v-09d10770] { -webkit-text-fill-color: transparent; background-image: ; background-position-x: ; background-position-y: ; background-size: ; background-repeat: ; background-attachment: ; background-origin: ; background-color: ; background-clip: text; font-weight: 600; }
.header-v2 .anouc_bx[data-v-09d10770] { height: 100%; position: relative; }
.header-v2 .anouc_bx .notice_bx[data-v-09d10770] { align-items: center; display: flex; height: 100%; margin-right: 15px; }
.header-v2 .anouc_bx .notice_icon[data-v-09d10770] { margin-right: 4px; width: 20px; }
.header-v2 .anouc_bx .notice_bx .so_text[data-v-09d10770] { color: rgb(68, 69, 70); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; }
.header-v2 .anouc_bx .notice_bx .so_text[data-v-09d10770]:hover { color: rgb(0, 112, 249); font-weight: 500; }
@media screen and (max-width: 1646px) {
  .header-v2 .hcont[data-v-09d10770] { padding: 0px 20px; }
  .header-v2 .hnitem[data-v-09d10770] { padding: 0px; }
  .header-v2 .hnitem .hni_text[data-v-09d10770] { padding: 10px 0.8vw; }
  .header-v2 .hnavs_info[data-v-09d10770] { margin: 0px auto; min-width: 860px; }
}
@media screen and (max-width: 1460px) {
  .header-v2 .hcont[data-v-09d10770] { padding-left: 14px; padding-right: 14px; }
  .header-v2 .hnavs_info[data-v-09d10770] { margin: 0px auto; min-width: 860px; }
}
@media screen and (max-width: 1440px) {
  .header-v2 .hnitem[data-v-09d10770] { padding: 0px; }
  .header-v2 .hnitem .hni_text[data-v-09d10770] { padding: 10px; }
  .header-v2 .hnavs_info[data-v-09d10770] { margin: 0px auto; min-width: 600px; }
}
.header-v2 .pro_popopbox[data-v-09d10770] { background: rgb(255, 255, 255); border-radius: 6px; box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 14px 2px, rgba(0, 0, 0, 0.06) 0px 8px 10px 1px, rgba(0, 0, 0, 0.1) 0px 5px 5px -3px; display: flex; left: -77px; padding: 24px 24px 8px; position: absolute; top: 69px; }
.header-v2 .pro_popopbox .hni_pop_item[data-v-09d10770] { width: 280px; }
.header-v2 .pro_popopbox .hni_pop_item[data-v-09d10770]:first-child { margin-right: 40px; }
.header-v2 .pro_popopbox .hni_top[data-v-09d10770] { align-items: center; border-bottom: 1px solid rgb(230, 231, 235); display: flex; justify-content: space-between; padding-bottom: 13px; padding-left: 12px; padding-right: 12px; }
.header-v2 .pro_popopbox .hni_top_left[data-v-09d10770] { align-items: center; display: flex; width: 150px; }
.header-v2 .pro_popopbox .hni_top_left:hover .htext[data-v-09d10770] { color: rgb(1, 110, 253); }
.header-v2 .pro_popopbox .hlogo[data-v-09d10770] { height: 24px; width: 24px; }
.header-v2 .pro_popopbox .htext[data-v-09d10770] { color: rgb(144, 149, 156); margin-left: 8px; }
.header-v2 .pro_popopbox .hlink[data-v-09d10770], .header-v2 .pro_popopbox .htext[data-v-09d10770] { font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; }
.header-v2 .pro_popopbox .hlink[data-v-09d10770] { color: rgb(1, 110, 253); }
.header-v2 .pro_popopbox .hni_pop_cont[data-v-09d10770] { padding-left: 12px; padding-right: 12px; padding-top: 20px; }
.header-v2 .pro_popopbox .hni_popc_item[data-v-09d10770] { display: block; margin-bottom: 32px; }
.header-v2 .pro_popopbox .hni_popc_ititle[data-v-09d10770] { color: rgb(31, 35, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-size: 16px; font-weight: 600; }
.header-v2 .pro_popopbox .hni_popc_idesc[data-v-09d10770] { color: rgb(68, 69, 70); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 14px; font-weight: 400; margin-top: 4px; }
.header-v2 .pro_popopbox .hni_popc_item:hover .hni_popc_idesc[data-v-09d10770], .header-v2 .pro_popopbox .hni_popc_item:hover .hni_popc_ititle[data-v-09d10770] { color: rgb(1, 110, 253); }
.header-v2 .sol_popbox[data-v-09d10770] { background: rgb(255, 255, 255); border-radius: 6px; box-shadow: rgba(0, 0, 0, 0.05) 0px 3px 14px 2px, rgba(0, 0, 0, 0.06) 0px 8px 10px 1px, rgba(0, 0, 0, 0.1) 0px 5px 5px -3px; box-sizing: border-box; left: -20px; padding: 8px 16px; position: absolute; top: 69px; width: 160px; }
.header-v2 .sol_popbox .spop_item[data-v-09d10770] { align-items: center; color: rgb(68, 69, 70); cursor: pointer; display: flex; margin-bottom: 18px; }
.header-v2 .sol_popbox .spop_item[data-v-09d10770]:last-of-type { margin-bottom: 0px; }
.header-v2 .sol_popbox .spop_item.siactive[data-v-09d10770], .header-v2 .sol_popbox .spop_item[data-v-09d10770]:hover { color: rgb(1, 110, 253); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 500; }
.header-v2 .sol_popbox .so_icon[data-v-09d10770] { height: 24px; width: 24px; }
.header-v2 .sol_popbox .so_text[data-v-09d10770] { font-family: PingFangSC-Regular, "PingFang SC"; font-size: 14px; margin-left: 8px; }
.header-v2 .dnload_popbox[data-v-09d10770] { left: -40px; width: 175px; }
.header-v2 .rcs_popbox[data-v-09d10770] { left: -20px; width: 175px; }
.header-v2 .hpop[data-v-09d10770] { left: 50%; position: absolute; top: 70px; transform: translateX(-50%); }
.header-v2 .hpop .hpop_bx[data-v-09d10770] { background: rgb(255, 255, 255); border-radius: 12px; border-top: 1px solid rgb(232, 233, 237); box-shadow: rgba(31, 35, 41, 0.12) 0px 14px 24px -4px; margin-top: 0px; padding: 28px 18px; position: relative; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2[data-v-09d10770] { border-radius: 0px; overflow: hidden; padding: 0px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 [data-v-09d10770] { box-sizing: border-box; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .pop-body[data-v-09d10770] { cursor: default; padding: 8px 20px 20px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .pop-body .body-desc[data-v-09d10770] { font-family: "PingFang SC"; font-size: 12px; font-weight: 400; line-height: normal; margin-bottom: 16px; margin-top: 12px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .pop-bottom[data-v-09d10770] { align-items: center; background: rgba(229, 241, 254, 0.5); border-radius: 8px; display: flex; height: 48px; justify-content: center; margin: auto; width: 280px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .pop-bottom[data-v-09d10770]:hover { background: rgb(41, 144, 255); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .pop-bottom:hover .dl-img[data-v-09d10770] { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAASUExURUdwTP///////////////////4gZPH8AAAAFdFJOUwBgX9/vqLi+BgAAAIVJREFUKM/l0j0OwjAMhuE0cABLKHuGdkdI2enQA/Tnvf9VKqcMNukGTHzjo0+KbSWEX6Z/nGDZThD+E/VCiu5ShawYsZeaWBQHVoMJMkSYDXawwAASfFUzu+e7A8UPldriqyrvC6W2WKvS7n4bv/iz4oTJmitecHlWvHq8HxMWa5t8PM8OHfYwXDv4GaAAAAAASUVORK5CYII="); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .pop-bottom:hover .dl-text[data-v-09d10770] { color: rgb(255, 255, 255); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .pop-bottom[data-v-09d10770]:active { background: rgb(0, 112, 249); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .pop-bottom .dl-img[data-v-09d10770] { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoBAMAAAB+0KVeAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAAAeUExURQBw+fH3/pfF/JfE/JbE/B6B+g94+Q94+h6B+Q95+dySukQAAACQSURBVCjP5dKxDcIwEIXhX1GISIlPUMcVrcu03iBiAgoGYIQwAhvDOVF8ltyRjld+epLvTuZUCXvh9VbBqa8g/CfqhRTXSy044RUdvcE7jeLA0WAADw5agwINDBDt69+qpi1GkgVjOWcwxQ3FFPNGIRczSi6a3cfHjh/MPTE5+IRnirwTXkp8JZTZWhd/HukDMbsyX+jyF3YAAAAASUVORK5CYII="); background-repeat: no-repeat; background-size: 20px; flex-shrink: 0; height: 20px; margin-right: 6px; margin-top: 1px; width: 20px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .pop-bottom .dl-text[data-v-09d10770] { color: rgb(0, 112, 249); font-family: "PingFang SC"; font-size: 16px; font-weight: 400; letter-spacing: 0.5px; line-height: normal; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap[data-v-09d10770] { height: auto; overflow: hidden; width: 320px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-header[data-v-09d10770] { align-items: center; border-bottom: 1px solid rgb(235, 237, 240); display: flex; height: 91px; padding: 0px 25px; width: 100%; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-header[data-v-09d10770]:hover { background-color: rgb(247, 249, 252); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-header:hover .toc-img[data-v-09d10770] { background-image: url('../img/90fde7a_8b5ee939.png'); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-header .toc-img[data-v-09d10770] { background-image: url('../img/a24da35_ea4ebd1e.png'); background-repeat: no-repeat; background-size: 53px; flex-shrink: 0; height: 53px; margin-right: 20px; width: 53px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-header .toc-text[data-v-09d10770] { width: 100%; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-header .toc-text .header-title[data-v-09d10770] { color: rgb(68, 69, 70); font-family: "PingFang SC"; font-size: 16px; font-weight: 600; line-height: normal; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-header .toc-text .header-title .el-icon-arrow-right[data-v-09d10770] { font-weight: 700; margin-left: 3px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-header .toc-text .header-desc[data-v-09d10770] { color: rgb(158, 158, 159); font-family: "PingFang SC"; font-size: 12px; font-weight: 400; line-height: normal; margin-top: 3px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-body .body-desc[data-v-09d10770] { color: rgb(255, 102, 0); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-body .toc-product-item-td[data-v-09d10770] { display: flex; flex-flow: wrap; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-body .toc-product-item[data-v-09d10770] { align-items: center; border-radius: 8px; box-sizing: border-box; cursor: pointer; display: flex; height: 48px; padding: 0px 8px; width: 134px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-body .toc-product-item[data-v-09d10770]:last-of-type { margin-bottom: 0px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-body .toc-product-item[data-v-09d10770]:hover { background: rgb(242, 243, 245); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-body .toc-product-item .vserion-icon[data-v-09d10770] { height: 24px; margin-right: 8px; width: 24px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-body .toc-product-item .product-title[data-v-09d10770] { color: rgb(31, 35, 41); font-family: "PingFang SC"; font-size: 14px; font-weight: 500; line-height: normal; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .toc_wrap .pop-body .toc-product-item .product-desc[data-v-09d10770] { color: rgb(158, 158, 159); font-family: "PingFang SC"; font-size: 12px; font-weight: 400; letter-spacing: 0.5px; line-height: normal; margin-top: 3px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap[data-v-09d10770] { height: auto; overflow: hidden; width: 320px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap.toc_wrap[data-v-09d10770] { width: 333px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-header[data-v-09d10770] { align-items: center; border-bottom: 1px solid rgb(235, 237, 240); border-radius: 12px 12px 0px 0px; display: flex; height: 91px; padding: 0px 25px; width: 100%; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-header[data-v-09d10770]:hover { background-color: rgb(247, 249, 252); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-header:hover .tob-img[data-v-09d10770] { background-image: url('../img/2fc45f7_8bdf00bb.png'); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-header:hover .desktron-img[data-v-09d10770] { background-image: url('../img/a6d8dc9_461da094.png'); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-header:hover .education-img[data-v-09d10770] { background-image: url('../img/7004fd5_7cea6cf6.svg'); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-header .tob-img[data-v-09d10770] { background-image: url('../img/def01e2_0705ff77.png'); background-repeat: no-repeat; background-size: 53px; flex-shrink: 0; height: 53px; margin-right: 20px; width: 53px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-header .desktron-img[data-v-09d10770] { background-image: url('../img/39d2f77_31d111f5.png'); background-size: 53px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-header .education-img[data-v-09d10770] { background-image: url('../img/93969ad_2d654459.svg'); background-size: 53px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-header .tob-text[data-v-09d10770] { width: 100%; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-header .tob-text .header-title[data-v-09d10770] { color: rgb(68, 69, 70); font-family: "PingFang SC"; font-size: 16px; font-weight: 600; line-height: normal; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-header .tob-text .header-title .el-icon-arrow-right[data-v-09d10770] { font-weight: 700; margin-left: 3px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-header .tob-text .header-title .corner-mark[data-v-09d10770] { background: linear-gradient(101.93deg, rgb(248, 169, 35) 4.15%, rgb(241, 127, 73) 14.84%, rgb(240, 88, 54) 33.92%, rgb(239, 65, 43) 40.75%, rgb(111, 10, 54) 69.19%, rgb(33, 4, 17) 94.1%); border-radius: 8px 8px 8px 0px; color: rgb(255, 255, 255); display: inline-block; font-family: "PingFang SC"; font-size: 11px; font-weight: 500; line-height: 16px; margin-left: 5px; padding: 2px 6px; position: relative; top: -2px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-header .tob-text .header-title .corner-mark-web[data-v-09d10770] { background: linear-gradient(95.6deg, rgb(255, 88, 126) -0.55%, rgb(255, 123, 88) 114.37%); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-header .tob-text .header-desc[data-v-09d10770] { color: rgb(158, 158, 159); font-family: "PingFang SC"; font-size: 12px; font-weight: 400; line-height: normal; margin-top: 3px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .desktron-header[data-v-09d10770] { border-radius: 0px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-body .body-desc[data-v-09d10770] { color: rgb(116, 117, 118); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-body .tob-product-item[data-v-09d10770] { align-items: center; display: flex; height: 42px; justify-content: space-between; margin-top: 12px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-body .tob-product-item .left[data-v-09d10770], .header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-body .tob-product-item .right[data-v-09d10770] { border-radius: 8px; box-sizing: content-box; cursor: pointer; padding: 12px 10px 12px 8px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-body .tob-product-item .left[data-v-09d10770]:hover, .header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-body .tob-product-item .right[data-v-09d10770]:hover { background: rgb(242, 243, 245); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-body .tob-product-item .left[data-v-09d10770] { align-items: center; display: flex; margin-right: auto; width: 130px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-body .tob-product-item .right[data-v-09d10770] { align-items: center; display: flex; width: 130px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-body .tob-product-item .product-img[data-v-09d10770] { flex-shrink: 0; height: 24px; width: 24px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-body .tob-product-item .product-img.cloud[data-v-09d10770] { height: 19px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-body .tob-product-item .product-desc[data-v-09d10770] { color: rgb(31, 35, 41); font-size: 14px; font-weight: 500; line-height: normal; margin-left: 8px; }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-bottom:hover .dl-img[data-v-09d10770] { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAABIUExURUdwTP///////////////////////////////////////////////////////////////////////////////////////////wV68vgAAAAXdFJOUwAQgL9AMJ/v3yBgwODPcKBQf4+QsK/Qu+hBXgAAAPxJREFUOMvVU90agyAIzUSzrNa/7/+mCyunJm7ft5vtXIEcQeRQFH8IkMqYTg5vaDU3J1Sd44nKOFQik8/j7Uw6p8K4BlbAAy1O8QaMloddog0EEdPIy+G+E6HzkwB2ThCxmnNY4N2JLH0tRBuX7jLN8GRn8Zix2njYI9rkwO2gJRQMrKW+H+HHothzqounszJj/XrlWxuaCdwEkGkqm8wNKapwr2s33dILcfar+7NX0W/J3o8f7AKlgkr8pj2b4zJW5op5J6O3BDdmGX1zUiozFn+lbMiFZ/j23rnL7k3pIWDxJZA2IQERyC2zHmGsyog0iDWqaihiLvZreAK5Chwn9jO4NgAAAABJRU5ErkJggg=="); }
.header-v2 .hpop .hpop_bx.hpop_bx_v2 .tob_wrap .pop-bottom .dl-img[data-v-09d10770] { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAJcEhZcwAAFiUAABYlAUlSJPAAAACHUExURQBw+bXV/Q95+eLv/g94+R6B+TyS+vH3/tPm/h6B+lqj+tPm/Uua+rTV/A94+lqj+zyR+pfE/B6A+niz+y2J+sTe/cTd/niz/Gmr+7XV/MTd/Xm0+1qi+1qi+pbE/OLu/oe7/MPd/S2K+rTV/Xm0/C2K+abN/Gqr+4i7/OLv/Ye8/KXM/abM/EcCdDkAAAE0SURBVDjL1ZRbe4IwDIbTtUArMJCBOg9Tt+mO///3jYCtKTRsly4XPMmTF3rI9wHJHwNuCBQzA/BcnH8BdQyXMHoKXNyDi7uGBzXhWlKzoMF+mX8k+Q6zmAO/sbvs8wfMBQNu297MFjEtBmDd9l5s8YgnZ0BczRV7rxqDMvyaD1Z0/7h0zYA7eiXbicPgR+C1zzeYf3EX3g26EIkUXRaxk0kVHaFKeVGsCanWUzJLI8uV6ZTM5HtmpZPNNQuKGLwodBCUbzAKgjpwYWy3qstqbAjwTVAejn19PNS+IYCa4JTT7ecRNQQQE6yGFu1kbiQBN8QEI3J5BbUZSMXFCheXDpyjAtIQuMeZfjowC23wunjmQLy2Jgw21mMQsIc/40uve6iBSGnYXn+YSD1xoO3BP/iH/wAeFClsCRgytAAAAABJRU5ErkJggg=="); }
.header-v2 .hpop .hpop_bx .close[data-v-09d10770] { background-color: rgb(102, 107, 117); height: 20px; mask: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgY2xpcC1wYXRoPSJ1cmwoI2EpIj48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTQuMDUxIDE0LjcxMmEuNzk4Ljc5OCAwIDAgMC0uMDI3IDEuMDg3Yy4yNzcuMzA4Ljc0LjMyIDEuMDMyLjAyN2w1LjA1MS01LjA1IDQuOTQ1IDQuOTQ0YS43MDUuNzA1IDAgMCAwIDEuMDMyLS4wMjcuNzk4Ljc5OCAwIDAgMC0uMDI3LTEuMDg3bC00Ljg5LTQuODlMMTUuNzggNS4xYS43OTguNzk4IDAgMCAwIC4wMjgtMS4wODcuNzA1LjcwNSAwIDAgMC0xLjAzMy0uMDI2bC00LjY2OSA0LjY2OS00Ljc3NS00Ljc3NWEuNzA1LjcwNSAwIDAgMC0xLjAzMy4wMjYuNzk4Ljc5OCAwIDAgMCAuMDI4IDEuMDg3bDQuNzIgNC43Mi00Ljk5NiA0Ljk5N1oiIGZpbGw9IiM2NjZCNzUiLz48L2c+PGRlZnM+PGNsaXBQYXRoIGlkPSJhIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMCAwaDIwdjIwSDB6Ii8+PC9jbGlwUGF0aD48L2RlZnM+PC9zdmc+") center center no-repeat; position: absolute; right: 90px; top: 30px; width: 20px; }
@media screen and (max-width: 1920px) {
  .header-v2 .hpop .hpop_bx .close[data-v-09d10770] { right: 60px; top: 30px; }
}
@media screen and (max-width: 1440px) {
  .header-v2 .hpop .hpop_bx .close[data-v-09d10770] { right: 18px; top: 12px; }
}
.header-v2 .hpop .hpop_bx .close[data-v-09d10770]:hover { background-color: rgb(0, 112, 249); }
.header-v2 .hpop.hni_pop2[data-v-09d10770] { left: 0px; transform: none; width: 100%; }
.header-v2 .hpop.hni_pop2.hpop_bx_home[data-v-09d10770] { background: var(--Backgrounds-Primary,#fff); border-radius: 12px; border-top: 1px solid rgb(232, 233, 237); box-shadow: rgba(0, 0, 0, 0.12) 0px 3px 12px 0px; display: flex; margin: auto; }
.header-v2 .hpop.hni_pop2.hpop_bx_home .wrap_line[data-v-09d10770] { background: linear-gradient(rgb(255, 255, 255), rgb(230, 232, 234) 21%, rgb(214, 212, 212) 50%, rgb(255, 255, 255)); height: 340px; width: 1px; }
.header-v2 .hpop.hni_pop2.hpop_bx_home .toc_wrap .pop-header[data-v-09d10770] { border-bottom: none; border-radius: 12px 0px 0px; padding: 0px 20px; }
.header-v2 .hpop.hni_pop2.hpop_bx_home .tob_wrap .pop-header[data-v-09d10770] { border-bottom: none; border-radius: 0px 12px 0px 0px; }
.header-v2 .hpop .hni_pop_type1[data-v-09d10770] { box-sizing: border-box; display: flex; flex-flow: wrap; width: 468px; }
.header-v2 .hpop .hni_pop_type1 .pop_icon[data-v-09d10770] { height: auto; margin-right: 10px; width: 33px; }
.header-v2 .hpop .hpop_item[data-v-09d10770] { align-items: center; background: linear-gradient(0deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), rgb(233, 235, 239); border-radius: 6px; box-sizing: border-box; display: flex; padding-left: 25px; padding-right: 10px; }
.header-v2 .hpop .hpop_item .pop_title[data-v-09d10770] { color: rgb(31, 35, 41); font-size: 16px; font-weight: 500; line-height: 22px; }
.header-v2 .hpop .hpop_item .pop_desc[data-v-09d10770] { color: rgb(116, 117, 118); font-size: 12px; line-height: 17px; margin-top: 5px; }
.header-v2 .hpop .hpop_item.hactive[data-v-09d10770], .header-v2 .hpop .hpop_item[data-v-09d10770]:hover { transition: 0.3s; background: rgb(0, 112, 249) !important; }
.header-v2 .hpop .hpop_item.hactive .pop_desc[data-v-09d10770], .header-v2 .hpop .hpop_item.hactive .pop_title[data-v-09d10770], .header-v2 .hpop .hpop_item:hover .pop_desc[data-v-09d10770], .header-v2 .hpop .hpop_item:hover .pop_title[data-v-09d10770] { color: rgb(255, 255, 255); transition: 0.3s; }
.header-v2 .hpop .hpop_item0[data-v-09d10770] { height: 140px; margin-bottom: 14px; width: 272px; }
.header-v2 .hpop .hpop_game[data-v-09d10770] { height: 140px; margin-left: 25px; padding: 0px; position: relative; width: 272px; }
.header-v2 .hpop .hpop_game[data-v-09d10770], .header-v2 .hpop .hpop_game[data-v-09d10770]:hover { background-color: transparent; }
.header-v2 .hpop .hpop_game .game_bg_wrap[data-v-09d10770] { align-items: center; background-color: rgb(249, 250, 251); background-image: url('../img/202305051606135faedc342a7338_c2096b76.png'); background-position: center bottom; background-repeat: no-repeat; background-size: auto 240px; border-radius: 6px; box-sizing: border-box; display: flex; height: 100%; padding: 0px 20px 0px 25px; position: relative; transition: background-color 0.3s; width: 100%; }
.header-v2 .hpop .hpop_game .game_bg_wrap[data-v-09d10770]:hover { background-color: rgb(0, 112, 249); }
.header-v2 .hpop .hpop_game .game_bg_wrap:hover .game_text_wrap .game_desc[data-v-09d10770], .header-v2 .hpop .hpop_game .game_bg_wrap:hover .game_text_wrap .game_title[data-v-09d10770] { color: rgb(255, 255, 255); }
.header-v2 .hpop .hpop_game .game_bg_wrap .game_text_wrap[data-v-09d10770] { background-image: url('../img/202304271415455fa4b49793aa60_85248dd4.png'); background-position: 0px 0px; background-repeat: no-repeat; background-size: 53px 53px; box-sizing: border-box; display: flex; flex-direction: column; height: 53px; justify-content: center; margin: auto; padding-left: 63px; width: 227px; z-index: 2; }
.header-v2 .hpop .hpop_game .game_bg_wrap .game_text_wrap .game_title[data-v-09d10770] { color: rgb(31, 35, 41); font-family: "PingFang SC"; font-size: 16px; font-weight: 500; line-height: 22px; transition: color 0.3s; }
.header-v2 .hpop .hpop_game .game_bg_wrap .game_text_wrap .game_desc[data-v-09d10770] { color: rgb(97, 99, 105); font-family: "PingFang SC"; font-size: 12px; font-weight: 400; line-height: 17px; margin-top: 5px; transition: color 0.3s; }
.header-v2 .hpop .hpop_item2[data-v-09d10770] { height: 60px; margin-right: 20px; margin-top: 14px; width: 206px; }
.header-v2 .hpop .hpop_item2[data-v-09d10770]:first-of-type, .header-v2 .hpop .hpop_item2[data-v-09d10770]:nth-of-type(2) { margin-top: 0px; }
.header-v2 .hpop .hpop_item2[data-v-09d10770]:nth-child(2n) { margin-right: 0px; }
.header-v2 .hpop .pop_line[data-v-09d10770] { height: 225px; margin-right: 23px; }
.header-v2 .hpop .pop_line1[data-v-09d10770] { height: 76px; }
.regularFontCommon { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon:active { background: rgb(0, 75, 204); }
.linkBtnCommon2 { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2, .linkBtnCommon2:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon:active { background: rgb(29, 100, 192); }
.btnCommonPrimary { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary:active { opacity: 1; }
.bannerBtnCommon { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3 { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3:hover { color: rgb(91, 164, 252); }
.btnCommon2 { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2 { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo { height: 17px; width: auto; }
.articleInfo .itemTime { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks { display: flex; }
.articleInfo .itemMarks .mark { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active, .mask-leave-active { transition: opacity 0.3s; }
.mask-enter, .mask-leave-to { opacity: 0; }
.common-enter-active, .common-leave-active { transition: opacity 0.5s; }
.common-enter, .common-leave-to { opacity: 0; }
.todeskFlex { display: flex; flex-flow: wrap; }
.todeskFlexCol { flex-direction: column; }
.todeskFlexCenter { align-items: center; }
.todeskFlexColCenter { justify-content: center; }
.default.v7 { box-sizing: border-box; display: flex; flex-direction: column; min-height: 100vh; position: relative; }
.default.v7 .wrap { flex: 1 1 0%; margin-top: 70px; position: relative; top: -70px; }
.default.v7 .wrap.isIndexVersion, .default.v7 .wrap.isTransparentVersion { margin-top: 0px; }
.default.v7 .footer { margin-top: -70px; }
.default.v7.hasAdv .headV3 { top: 60px; }
.default.v7.hasAdv .wrap { margin-top: 0px; }
.lowerIeMention { background-color: rgb(255, 255, 0); color: red; font-size: 14px; left: 0px; line-height: 30px; position: fixed; text-align: center; top: 0px; width: 100%; z-index: 10; }

.regularFontCommon[data-v-1b1d5d7c] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-1b1d5d7c] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-1b1d5d7c] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-1b1d5d7c] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-1b1d5d7c]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-1b1d5d7c]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-1b1d5d7c] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-1b1d5d7c], .linkBtnCommon2[data-v-1b1d5d7c]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-1b1d5d7c]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-1b1d5d7c]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-1b1d5d7c] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-1b1d5d7c]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-1b1d5d7c]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-1b1d5d7c] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-1b1d5d7c]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-1b1d5d7c]:active { opacity: 1; }
.bannerBtnCommon[data-v-1b1d5d7c] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-1b1d5d7c]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-1b1d5d7c] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-1b1d5d7c]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-1b1d5d7c] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-1b1d5d7c]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-1b1d5d7c] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-1b1d5d7c]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-1b1d5d7c]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-1b1d5d7c] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-1b1d5d7c]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-1b1d5d7c] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-1b1d5d7c]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-1b1d5d7c]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-1b1d5d7c] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-1b1d5d7c] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-1b1d5d7c] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-1b1d5d7c] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-1b1d5d7c] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-1b1d5d7c] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-1b1d5d7c] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-1b1d5d7c] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-1b1d5d7c] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-1b1d5d7c] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-1b1d5d7c] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-1b1d5d7c] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-1b1d5d7c] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-1b1d5d7c] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-1b1d5d7c] { display: flex; }
.articleInfo .itemMarks .mark[data-v-1b1d5d7c] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-1b1d5d7c], .mask-leave-active[data-v-1b1d5d7c] { transition: opacity 0.3s; }
.mask-enter[data-v-1b1d5d7c], .mask-leave-to[data-v-1b1d5d7c] { opacity: 0; }
.common-enter-active[data-v-1b1d5d7c], .common-leave-active[data-v-1b1d5d7c] { transition: opacity 0.5s; }
.common-enter[data-v-1b1d5d7c], .common-leave-to[data-v-1b1d5d7c] { opacity: 0; }
.todeskFlex[data-v-1b1d5d7c] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-1b1d5d7c] { flex-direction: column; }
.todeskFlexCenter[data-v-1b1d5d7c] { align-items: center; }
.todeskFlexColCenter[data-v-1b1d5d7c] { justify-content: center; }
.customer_service[data-v-1b1d5d7c] { bottom: 24px; position: fixed; right: 24px; z-index: 100; }
.customer_service .cs_box[data-v-1b1d5d7c] { border-radius: 40px; flex-direction: column; gap: 19px; justify-content: flex-start; overflow: visible; padding: 5px; width: 53px; }
.customer_service .arrow_box[data-v-1b1d5d7c], .customer_service .cs_box[data-v-1b1d5d7c] { align-items: center; background-color: rgb(255, 255, 255); border: 1px solid rgb(220, 223, 227); box-shadow: rgba(68, 73, 77, 0.16) 2px 2px 12px 0px; box-sizing: border-box; display: flex; }
.customer_service .arrow_box[data-v-1b1d5d7c] { border-radius: 50%; cursor: pointer; height: 52px; justify-content: center; margin-top: 24px; width: 52px; }
.customer_service .arrow_box:hover .svg-icon[data-v-1b1d5d7c] { color: rgb(0, 112, 249); }
.customer_service .arrow_box .svg-icon[data-v-1b1d5d7c] { color: rgb(97, 99, 105); display: block; }
.cs_faq_box[data-v-1b1d5d7c] { align-items: center; border-radius: 50%; display: flex; flex-shrink: 0; height: 42px; justify-content: center; position: relative; width: 42px; }
.cs_faq_box[data-v-1b1d5d7c]:hover { background-color: rgb(242, 243, 245); }
.cs_faq_box:hover .icon-box .svg-icon[data-v-1b1d5d7c] { color: rgb(0, 112, 249); }
.cs_faq_box[data-v-1b1d5d7c]::after { background-color: rgb(238, 239, 240); border-radius: 9px; bottom: -10px; content: ""; display: block; height: 1px; left: 50%; pointer-events: none; position: absolute; transform: translateX(-50%); user-select: none; width: 29px; }
.cs_faq_box[data-v-1b1d5d7c]:last-of-type::after { display: none; }
.cs_faq_box .cs_tool_tip[data-v-1b1d5d7c] { left: -102px; position: absolute; top: 50%; transform: translateY(-50%); }
.cs_faq_box .cs_tool_tip .cs_tool_tip_box[data-v-1b1d5d7c], .cs_faq_box .cs_tool_tip[data-v-1b1d5d7c] { background-color: rgb(255, 255, 255); border: 1px solid rgb(235, 237, 240); border-radius: 4px; box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px 0px; padding: 4px 9px; }
.cs_faq_box .cs_tool_tip.cs_tool_tip2[data-v-1b1d5d7c] { left: -135px; }
.cs_faq_box .cs_tool_tip.cs_tool_tip2 .code_box[data-v-1b1d5d7c] { height: 100px; width: 100px; }
.cs_faq_box .cs_tool_tip.cs_tool_tip2 .code_box img[data-v-1b1d5d7c] { height: 100%; width: 100%; }
.cs_faq_box .cs_tool_tip.cs_tool_tip0[data-v-1b1d5d7c] { left: -201px; }
.cs_faq_box .cs_tool_tip.cs_tool_tip1[data-v-1b1d5d7c] { background-color: transparent; border: none; border-radius: 0px; box-shadow: none; left: -118px; padding: 0px 14px 0px 0px; }
.cs_faq_box .cs_tool_tip.cs_tool_tip1 .popper__arrow[data-v-1b1d5d7c] { right: 5px; }
.cs_faq_box .cs_tool_tip .tool_tip_text[data-v-1b1d5d7c] { font-family: "PingFang SC"; font-size: 16px; font-weight: 400; letter-spacing: 0px; line-height: 22px; }
.cs_faq_box .cs_tool_tip .cs_tool_tip_content[data-v-1b1d5d7c] { display: flex; flex-direction: column; gap: 4px; }
.cs_faq_box .cs_tool_tip .cs_tool_tip_content .cs_tool_tip_link[data-v-1b1d5d7c] { color: rgb(0, 112, 249); font-size: 14px; text-decoration: none; }
.cs_faq_box .cs_tool_tip .cs_tool_tip_content .cs_tool_tip_link[data-v-1b1d5d7c]:hover { text-decoration: underline !important; }
.cs_faq_box .cs_tool_tip .cs_tool_tip_content .cs_tool_tip_time[data-v-1b1d5d7c] { color: rgb(97, 99, 105); font-size: 12px; }
.cs_faq_box .cs_tool_tip .popper__arrow[data-v-1b1d5d7c] { border-width: 5px; border-style: solid; border-top-color: transparent; border-right-color: transparent; border-bottom-color: transparent; border-image: initial; border-radius: 2px; display: block; height: 0px; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); width: 0px; border-left-color: rgb(255, 255, 255) !important; }
.cs_faq_box .icon-box[data-v-1b1d5d7c] { align-items: center; display: flex; height: 26px; justify-content: center; width: 26px; }
.cs_faq_box .icon-box svg[data-v-1b1d5d7c] { display: block; flex-shrink: 0; }
.cs_faq_box .icon-box .svg-icon[data-v-1b1d5d7c] { color: rgb(97, 99, 105); }
.cs_faq_box .icon-box .gift-icon[data-v-1b1d5d7c] { color: rgb(255, 102, 0); }
.regularFontCommon[data-v-3bac603a] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-3bac603a] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-3bac603a] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-3bac603a] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-3bac603a]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-3bac603a]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-3bac603a] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-3bac603a], .linkBtnCommon2[data-v-3bac603a]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-3bac603a]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-3bac603a]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-3bac603a] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-3bac603a]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-3bac603a]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-3bac603a] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-3bac603a]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-3bac603a]:active { opacity: 1; }
.bannerBtnCommon[data-v-3bac603a] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-3bac603a]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-3bac603a] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-3bac603a]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-3bac603a] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-3bac603a]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-3bac603a] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-3bac603a]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-3bac603a]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-3bac603a] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-3bac603a]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-3bac603a] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-3bac603a]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-3bac603a]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-3bac603a] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-3bac603a] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-3bac603a] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-3bac603a] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-3bac603a] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-3bac603a] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-3bac603a] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-3bac603a] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-3bac603a] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-3bac603a] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-3bac603a] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-3bac603a] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-3bac603a] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-3bac603a] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-3bac603a] { display: flex; }
.articleInfo .itemMarks .mark[data-v-3bac603a] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-3bac603a], .mask-leave-active[data-v-3bac603a] { transition: opacity 0.3s; }
.mask-enter[data-v-3bac603a], .mask-leave-to[data-v-3bac603a] { opacity: 0; }
.common-enter-active[data-v-3bac603a], .common-leave-active[data-v-3bac603a] { transition: opacity 0.5s; }
.common-enter[data-v-3bac603a], .common-leave-to[data-v-3bac603a] { opacity: 0; }
.todeskFlex[data-v-3bac603a] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-3bac603a] { flex-direction: column; }
.todeskFlexCenter[data-v-3bac603a] { align-items: center; }
.todeskFlexColCenter[data-v-3bac603a] { justify-content: center; }
.scustomers[data-v-3bac603a] { overflow: hidden; width: 100%; }
.scustomers .scwrap[data-v-3bac603a] { height: 100px; margin: 0px auto; overflow: hidden; width: 100vw; }
.scustomers .scwrap ul[data-v-3bac603a] { list-style: none; margin: 0px auto; padding: 0px; }
.scustomers .scwrap ul.ul-item[data-v-3bac603a] { display: flex; }
.scustomers .scwrap ul.ul-item .li-item[data-v-3bac603a] { height: 100px; margin-right: 44px; }
.scustomers .scwrap ul.ul-item .li-item img[data-v-3bac603a] { height: auto; margin-right: 20px; margin-top: 23px; width: 100%; }
.regularFontCommon[data-v-186607f4] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-186607f4] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-186607f4] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-186607f4] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-186607f4]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-186607f4]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-186607f4] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-186607f4], .linkBtnCommon2[data-v-186607f4]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-186607f4]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-186607f4]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-186607f4] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-186607f4]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-186607f4]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-186607f4] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-186607f4]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-186607f4]:active { opacity: 1; }
.bannerBtnCommon[data-v-186607f4] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-186607f4]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-186607f4] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-186607f4]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-186607f4] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-186607f4]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-186607f4] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-186607f4]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-186607f4]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-186607f4] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-186607f4]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-186607f4] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-186607f4]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-186607f4]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-186607f4] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-186607f4] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-186607f4] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-186607f4] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-186607f4] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-186607f4] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-186607f4] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-186607f4] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-186607f4] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-186607f4] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-186607f4] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-186607f4] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-186607f4] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-186607f4] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-186607f4] { display: flex; }
.articleInfo .itemMarks .mark[data-v-186607f4] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-186607f4], .mask-leave-active[data-v-186607f4] { transition: opacity 0.3s; }
.mask-enter[data-v-186607f4], .mask-leave-to[data-v-186607f4] { opacity: 0; }
.common-enter-active[data-v-186607f4], .common-leave-active[data-v-186607f4] { transition: opacity 0.5s; }
.common-enter[data-v-186607f4], .common-leave-to[data-v-186607f4] { opacity: 0; }
.todeskFlex[data-v-186607f4] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-186607f4] { flex-direction: column; }
.todeskFlexCenter[data-v-186607f4] { align-items: center; }
.todeskFlexColCenter[data-v-186607f4] { justify-content: center; }
.btn-plain-primary[data-v-186607f4] { background: rgb(255, 255, 255); border: 1px solid rgb(17, 187, 242); border-radius: 8px; box-sizing: border-box; color: rgb(12, 133, 172); cursor: pointer; font-size: 18px; height: 48px; line-height: 46px; margin-left: 30px; text-align: center; width: 170px; }
.btn-plain-primary[data-v-186607f4]:hover { background-color: rgb(235, 245, 252); }
.dass1[data-v-186607f4] { align-items: center; display: flex; }
.dass1 .first-order[data-v-186607f4] { left: 135px !important; }
.enjoy-man[data-v-186607f4] { align-items: center; cursor: pointer; display: flex; margin-top: 16px; width: fit-content; }
.enjoy-man span[data-v-186607f4] { color: var(--light-DaaS-04,#00a4dd); font-size: 16px; }
.enjoy-man img[data-v-186607f4] { height: 24px; width: 24px; }
.enjoy-man[data-v-186607f4]:hover { opacity: 0.85; }
.enjoy-man[data-v-186607f4]:active { opacity: 0.9; }
.hbnr[data-v-186607f4] { background: linear-gradient(90deg, rgb(247, 251, 255), rgb(234, 239, 245)); min-height: 670px; overflow: hidden; position: relative; }
.hbnr .hbnr_bkg_bx[data-v-186607f4] { display: flex; height: 100%; justify-content: center; min-width: 1200px; opacity: 0; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }
.hbnr .hbnr_bkg_bx.active[data-v-186607f4] { opacity: 1; z-index: 1; }
.hbnr .hbnr_bkg[data-v-186607f4] { height: 100%; margin: auto; object-fit: cover; width: 100%; }
.hbnr .bnrTodesk[data-v-186607f4] { height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }
.hbnr .bnrtCont[data-v-186607f4] { box-sizing: border-box; display: flex; height: calc(100% - 45px); justify-content: space-between; margin: auto; max-width: 1200px; min-width: 1200px; position: relative; }
.hbnr .infoTip[data-v-186607f4] { bottom: 48px; color: rgb(154, 158, 171); font-size: 13px; position: absolute; z-index: 2; }
@media screen and (max-width: 1440px) {
  .hbnr .bnrtCont[data-v-186607f4] { max-width: 1200px; min-width: 1200px; }
}
.hbnr .bnrtInfo[data-v-186607f4] { box-sizing: border-box; display: flex; flex-shrink: 0; margin: auto 0px; padding-left: 8px; position: relative; width: 100%; z-index: 2; }
.hbnr .bnrtInfo .bnrtBtns[data-v-186607f4] { align-self: flex-end; display: flex; }
.hbnr .bnrtInfo .bnrtBtns.gray .bnrtBtn2[data-v-186607f4] { background: rgba(255, 255, 255, 0.1); border-color: rgb(247, 249, 252); color: rgb(255, 255, 255); }
.hbnr .bnrtInfo .bnrtBtns.gray .bnrtBtn2[data-v-186607f4]:hover { background: rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.8); }
.hbnr .bnrtInfo .bnrtDesc[data-v-186607f4] { height: auto; opacity: 0; position: absolute; top: 0px; width: 100%; z-index: 0; }
.hbnr .bnrtInfo .bnrtDesc .three-title[data-v-186607f4] { height: auto; margin-top: 20px; width: 611px; }
.hbnr .bnrtInfo .bnrtDesc .three-desc[data-v-186607f4] { font-size: 22px; }
.hbnr .bnrtInfo .bnrtDesc .three-desc .th1[data-v-186607f4] { color: rgb(97, 99, 105); font-weight: 400; }
.hbnr .bnrtInfo .bnrtDesc .three-desc .th2[data-v-186607f4] { color: rgb(240, 74, 62); font-weight: 500; margin-left: -5px; }
.hbnr .bnrtInfo .bnrtDesc .title_img[data-v-186607f4] { display: block; height: 120px; width: auto; }
.hbnr .bnrtInfo .bnrtDesc.toclaw .bnrtText[data-v-186607f4] { color: rgba(29, 33, 40, 0.85); margin-top: 16px; max-width: 556px; }
.hbnr .bnrtInfo .bnrtDesc.toclaw .title_img[data-v-186607f4] { height: 128px; }
.hbnr .bnrtInfo .bnrtDesc.toclaw .toclaw_features[data-v-186607f4] { align-items: center; display: flex; margin-top: 6px; }
.hbnr .bnrtInfo .bnrtDesc.toclaw .toclaw_features .toclaw_feature_item[data-v-186607f4] { align-items: center; display: flex; font-family: "PingFang SC"; font-size: 14px; line-height: 20px; white-space: nowrap; }
.hbnr .bnrtInfo .bnrtDesc.toclaw .toclaw_features .toclaw_feature_item .feature_gradient[data-v-186607f4] { -webkit-text-fill-color: transparent; background: linear-gradient(334.89deg, rgb(252, 94, 81) 25.74%, rgb(255, 144, 93) 88.5%) text; font-weight: 500; }
.hbnr .bnrtInfo .bnrtDesc.toclaw .toclaw_features .toclaw_feature_item .feature_dark[data-v-186607f4] { color: rgba(29, 33, 40, 0.85); font-weight: 500; }
.hbnr .bnrtInfo .bnrtDesc.toclaw .toclaw_features .toclaw_feature_divider[data-v-186607f4] { background: rgba(40, 32, 29, 0.2); flex-shrink: 0; height: 14px; margin: 0px 16px; width: 1px; }
.hbnr .bnrtInfo .bnrtDesc .bnrtText[data-v-186607f4] { color: rgb(233, 235, 239); font-family: "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 22px; margin-top: 21px; width: 120%; }
.hbnr .bnrtInfo .bnrtDesc.active[data-v-186607f4] { opacity: 1; z-index: inherit; }
.hbnr .bnrtInfo .bnrtDesc.todesk .bnrtText[data-v-186607f4] { color: rgba(255, 255, 255, 0.8); }
.hbnr .bnrtInfo .bnrtDesc.todeskAnniv[data-v-186607f4] { top: -40px; }
.hbnr .bnrtInfo .bnrtDesc.todeskAnniv .bnrtText[data-v-186607f4] { color: rgb(64, 32, 14); font-size: 38px; font-weight: 700; letter-spacing: 0px; line-height: 100%; margin-top: -16px; position: relative; }
.hbnr .bnrtInfo .bnrtDesc.todeskAnniv .bnrtText img[data-v-186607f4] { bottom: -20px; height: 29px; left: 100px; position: absolute; width: auto; z-index: -1; }
.hbnr .bnrtInfo .bnrtDesc.todeskAnniv .title_img[data-v-186607f4] { height: 176px; width: 540px; }
.hbnr .bnrtInfo .operations[data-v-186607f4] { margin-top: 227px; }
.hbnr .bnrtTitle[data-v-186607f4] { color: rgb(0, 0, 0); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 50px; font-style: italic; font-weight: 400; line-height: 130%; }
.hbnr .bnrtt1[data-v-186607f4] { color: rgb(1, 110, 253); font-weight: 700; margin-right: 10px; }
.hbnr .bnrtSubTitle[data-v-186607f4] { color: rgb(38, 39, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-size: 48px; font-weight: 600; margin-top: 4px; }
.hbnr .bnrtst2[data-v-186607f4] { margin-left: 15px; margin-right: 15px; }
.hbnr .bnrtBtn1[data-v-186607f4] { background: rgb(0, 112, 249); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 60px; line-height: 60px; text-align: center; width: 180px; }
.hbnr .bnrtBtn1[data-v-186607f4]:hover { background: rgb(28, 135, 253); }
.hbnr .bnrtBtn1.todesk-anniv[data-v-186607f4] { background: linear-gradient(97.95deg, rgb(255, 167, 66) 4.31%, rgb(249, 80, 1) 94.74%); box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px 0px; }
.hbnr .bnrtBtn1.todesk-anniv[data-v-186607f4]:hover { background: linear-gradient(97.95deg, rgb(255, 181, 95) 4.31%, rgb(251, 107, 40) 94.74%); }
.hbnr .bnrtBtn1.todesk-anniv[data-v-186607f4]:active { background: linear-gradient(97.95deg, rgb(217, 142, 56) 4.31%, rgb(213, 68, 1) 94.74%); }
.hbnr .todesk_download[data-v-186607f4] { box-sizing: border-box; color: rgb(255, 255, 255); font-family: "PingFang SC"; font-size: 18px; font-weight: 500; height: 60px; line-height: 60px; margin-left: auto; overflow: hidden; width: 180px; }
.hbnr .todesk_download span[data-v-186607f4], .hbnr .todesk_download[data-v-186607f4] { align-items: center; background: rgb(1, 117, 255); border-radius: 12px; display: flex; justify-content: center; }
.hbnr .todesk_download span[data-v-186607f4] { height: 58px; width: 178px; }
.hbnr .todesk_download:hover span[data-v-186607f4] { background: rgb(28, 135, 253); }
.hbnr .todesk_download:active span[data-v-186607f4] { opacity: 0.9; }
.hbnr .bnrtBtn2[data-v-186607f4] { background: rgba(255, 255, 255, 0.12); border: 1px solid rgb(255, 255, 255); border-radius: 12px; box-sizing: border-box; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 60px; line-height: 60px; margin-left: 24px; text-align: center; width: 180px; }
.hbnr .bnrtBtn2[data-v-186607f4]:hover { background: rgba(255, 255, 255, 0.18); }
.hbnr .bnrtBtn2[data-v-186607f4]:active { background: rgba(255, 255, 255, 0.08); }
.hbnr .bnrtBtn3[data-v-186607f4] { align-items: center; box-sizing: border-box; color: rgb(71, 154, 255); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 50px; justify-content: center; margin-left: 30px; position: relative; }
.hbnr .bnrtBtn3 .btn-text[data-v-186607f4] { align-items: flex-end; display: flex; flex-shrink: 0; height: 27px; }
.hbnr .bnrtBtn3 .btn-text .btn-text-num[data-v-186607f4] { display: block; font-size: 21px; line-height: 1.17; margin-left: 1px; }
.hbnr .bnrtBtn3 svg[data-v-186607f4] { margin-left: 6px; margin-top: 4px; }
.hbnr .bnrtBtn3 .corner_618[data-v-186607f4] { align-items: center; background: linear-gradient(270deg, rgb(255, 119, 28), rgb(255, 150, 28) 105.88%); border-radius: 8px 8px 8px 0px; color: rgb(255, 255, 255); display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 14px; font-weight: 500; height: 16px; justify-content: center; padding: 0px 1px; position: absolute; right: -9px; top: 0px; width: 34px; }
.hbnr .bnrtBtn3[data-v-186607f4]:hover { color: rgb(39, 138, 255); }
.hbnr .bnrtBtn3:hover .corner_618[data-v-186607f4] { background: linear-gradient(270deg, rgb(255, 140, 62), rgb(255, 164, 62) 105.88%); }
.hbnr .bnrtBtn3[data-v-186607f4]:active { color: rgb(1, 99, 217); }
.hbnr .bnrtBtn3:active .corner_618[data-v-186607f4] { background: linear-gradient(270deg, rgb(217, 103, 24), rgb(217, 125, 24) 105.88%); }
.hbnr .black_btn[data-v-186607f4] { box-sizing: border-box; color: rgb(255, 255, 255); font-family: "PingFang SC"; font-size: 18px; font-weight: 500; height: 60px; line-height: 60px; margin-left: 0px; overflow: hidden; width: 180px; }
.hbnr .black_btn span[data-v-186607f4], .hbnr .black_btn[data-v-186607f4] { align-items: center; background: rgb(20, 20, 20); border-radius: 12px; display: flex; justify-content: center; }
.hbnr .black_btn span[data-v-186607f4] { height: 58px; width: 178px; }
.hbnr .black_btn:hover span[data-v-186607f4] { background: rgb(20, 20, 20); }
.hbnr .black_btn:active span[data-v-186607f4] { opacity: 0.9; }
.hbnr .bn_swipe_indicator[data-v-186607f4] { display: flex; margin-top: 34px; user-select: none; z-index: 2; }
.hbnr .bn_swipe_indicator .indicator_item[data-v-186607f4] { align-items: center; border-radius: 6px; box-sizing: border-box; color: rgb(158, 158, 159); cursor: pointer; display: flex; flex-direction: column; flex-shrink: 0; font-size: 16px; justify-content: space-between; margin-right: 20px; width: 109px; }
.hbnr .bn_swipe_indicator .indicator_item.active[data-v-186607f4] { color: rgb(0, 112, 249); }
.hbnr .bn_swipe_indicator .indicator_item.active .plugin_icon[data-v-186607f4] { background-repeat: no-repeat; background-size: 100%; height: 20px; }
.hbnr .bn_swipe_indicator .indicator_item.active .plugin_icon_todesk[data-v-186607f4] { background-image: url('../img/990a4aa_54b47d4c.svg'); }
.hbnr .bn_swipe_indicator .indicator_item.active .plugin_icon_toclaw[data-v-186607f4] { background-image: url('../img/c9ae611_0868e081.svg'); }
.hbnr .bn_swipe_indicator .indicator_item[data-v-186607f4]:last-of-type { margin-right: 0px; }
.hbnr .bn_swipe_indicator .indicator_item .plugin_icon[data-v-186607f4] { background-repeat: no-repeat; background-size: 100%; height: 20px; margin: 0px auto; width: auto; }
.hbnr .bn_swipe_indicator .indicator_item .plugin_icon_todesk[data-v-186607f4] { background-image: url('../img/3c14e72_b080a8cd.svg'); width: 80px; }
.hbnr .bn_swipe_indicator .indicator_item .plugin_icon_toclaw[data-v-186607f4] { background-image: url('../img/4688a33_09c09700.svg'); width: 89px; }
.hbnr .bn_swipe_indicator .indicator_item .process_box[data-v-186607f4] { background: rgba(155, 159, 171, 0.2); border-radius: 15px; height: 2px; margin: 7px auto 0px; overflow: hidden; width: 109px; }
.hbnr .bn_swipe_indicator .indicator_item .process_box .process_ing[data-v-186607f4] { background: linear-gradient(90deg, rgb(1, 117, 255) 43.33%, rgba(1, 117, 255, 0)); height: 100%; transition: width 0.1s; width: 0px; }
.hbnr_bkg_max[data-v-186607f4] { display: none; }
@media screen and (min-width: 2560px) {
  .hbnr_bkg_bx.todeskAnniv .hbnr_bkg[data-v-186607f4] { display: none; }
  .hbnr_bkg_bx.todeskAnniv .hbnr_bkg_max[data-v-186607f4] { display: block; }
}
.regularFontCommon[data-v-2206d3c4] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-2206d3c4] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-2206d3c4] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-2206d3c4] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-2206d3c4]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-2206d3c4]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-2206d3c4] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-2206d3c4], .linkBtnCommon2[data-v-2206d3c4]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-2206d3c4]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-2206d3c4]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-2206d3c4] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-2206d3c4]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-2206d3c4]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-2206d3c4] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-2206d3c4]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-2206d3c4]:active { opacity: 1; }
.bannerBtnCommon[data-v-2206d3c4] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-2206d3c4]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-2206d3c4] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-2206d3c4]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-2206d3c4] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-2206d3c4]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-2206d3c4] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-2206d3c4]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-2206d3c4]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-2206d3c4] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-2206d3c4]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-2206d3c4] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-2206d3c4]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-2206d3c4]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-2206d3c4] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-2206d3c4] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-2206d3c4] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-2206d3c4] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-2206d3c4] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-2206d3c4] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-2206d3c4] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-2206d3c4] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-2206d3c4] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-2206d3c4] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-2206d3c4] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-2206d3c4] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-2206d3c4] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-2206d3c4] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-2206d3c4] { display: flex; }
.articleInfo .itemMarks .mark[data-v-2206d3c4] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-2206d3c4], .mask-leave-active[data-v-2206d3c4] { transition: opacity 0.3s; }
.mask-enter[data-v-2206d3c4], .mask-leave-to[data-v-2206d3c4] { opacity: 0; }
.common-enter-active[data-v-2206d3c4], .common-leave-active[data-v-2206d3c4] { transition: opacity 0.5s; }
.common-enter[data-v-2206d3c4], .common-leave-to[data-v-2206d3c4] { opacity: 0; }
.todeskFlex[data-v-2206d3c4] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-2206d3c4] { flex-direction: column; }
.todeskFlexCenter[data-v-2206d3c4] { align-items: center; }
.todeskFlexColCenter[data-v-2206d3c4] { justify-content: center; }
.desktron_banner[data-v-2206d3c4] { margin-top: -78px; padding-bottom: 30px; position: relative; width: 100%; z-index: 2; }
.desktron_banner .bn_inner_wrap[data-v-2206d3c4], .desktron_banner[data-v-2206d3c4] { align-items: center; display: flex; justify-content: center; }
.desktron_banner .bn_inner_wrap[data-v-2206d3c4] { gap: 18px; }
.desktron_banner .toclaw_card[data-v-2206d3c4] { backdrop-filter: blur(60px); background: rgb(255, 255, 255); border-radius: 12px; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 0.5px, rgba(0, 0, 0, 0.1) 0px 2px 10px 0px; box-sizing: border-box; flex-shrink: 0; min-height: 112px; position: relative; transition: box-shadow 0.2s; }
.desktron_banner .toclaw_card[data-v-2206d3c4]:hover { box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 0.5px, rgba(0, 0, 0, 0.15) 0px 4px 16px 0px; }
.desktron_banner .toclaw_card .toclaw_card_link[data-v-2206d3c4] { align-items: center; box-sizing: border-box; display: flex; height: 112px; padding: 0px 20px 0px 32px; text-decoration: none; }
.desktron_banner .toclaw_card .toclaw_card_info[data-v-2206d3c4] { display: flex; flex: 1 1 0%; flex-direction: column; gap: 4px; }
.desktron_banner .toclaw_card .toclaw_card_info .toclaw_card_title_row[data-v-2206d3c4] { align-items: center; display: flex; gap: 6px; }
.desktron_banner .toclaw_card .toclaw_card_info .toclaw_card_title_row .toclaw_card_name[data-v-2206d3c4] { color: rgb(0, 0, 0); font-family: "PingFang SC"; font-size: 18px; font-weight: 600; line-height: 1.44; }
.desktron_banner .toclaw_card .toclaw_card_info .toclaw_card_title_row .toclaw_card_label[data-v-2206d3c4] { background: linear-gradient(315deg, rgb(24, 121, 255), rgb(51, 168, 255)); border: 0.5px solid rgba(32, 37, 51, 0.2); border-radius: 4px; color: rgb(255, 255, 255); font-family: "PingFang SC"; font-size: 12px; font-weight: 500; line-height: 1.4; padding: 2px 6px; }
.desktron_banner .toclaw_card .toclaw_card_info .toclaw_card_desc[data-v-2206d3c4] { color: rgba(29, 33, 40, 0.4); font-family: "PingFang SC"; font-size: 14px; font-weight: 400; line-height: 20px; }
.desktron_banner .toclaw_card .toclaw_arrow_img[data-v-2206d3c4] { height: 12px; margin-left: 2px; transition: 0.3s; width: 12px; }
.desktron_banner .toclaw_card .toclaw_card_icon[data-v-2206d3c4] { flex-shrink: 0; height: 70px; object-fit: contain; width: 70px; }
.desktron_banner .toclaw_card:hover .toclaw_arrow_img[data-v-2206d3c4] { margin-left: 8px; }
.desktron_banner .toclaw_hover_popup[data-v-2206d3c4] { bottom: calc(100% + 4px); left: 0px; padding-bottom: 0px; position: absolute; z-index: 100; }
.desktron_banner .toclaw_hover_popup[data-v-2206d3c4]::before { background: linear-gradient(334.89deg, rgb(24, 121, 255) 25.74%, rgb(24, 121, 255) 88.5%); bottom: -9px; height: 10px; width: 18px; z-index: 3; }
.desktron_banner .toclaw_hover_popup[data-v-2206d3c4]::after, .desktron_banner .toclaw_hover_popup[data-v-2206d3c4]::before { clip-path: polygon(50% 100%, 0px 0px, 100% 0px); content: ""; left: 58%; pointer-events: none; position: absolute; transform: translateX(-50%); }
.desktron_banner .toclaw_hover_popup[data-v-2206d3c4]::after { background: rgb(255, 251, 245); bottom: -7px; height: 9px; width: 16px; z-index: 4; }
.desktron_banner .toclaw_hover_popup .popup_content[data-v-2206d3c4] { align-items: center; background: rgb(255, 251, 245); border-radius: 14px; box-shadow: rgba(29, 33, 40, 0.12) 0px 4px 40px, rgba(29, 33, 40, 0.1) 0px 0px 0px 1px; display: flex; gap: 30px; padding: 18px 20px; position: relative; z-index: 2; }
.desktron_banner .toclaw_hover_popup .popup_content[data-v-2206d3c4]::before { background: linear-gradient(-25deg, rgb(24, 121, 255) 17%, rgb(24, 121, 255) 92%); border-radius: 14px; inset: 0px; content: ""; mask: linear-gradient(rgb(255, 255, 255) 0px, rgb(255, 255, 255) 0px) content-box exclude, linear-gradient(rgb(255, 255, 255) 0px, rgb(255, 255, 255) 0px); padding: 1px; pointer-events: none; position: absolute; }
.desktron_banner .toclaw_hover_popup .popup_left[data-v-2206d3c4] { display: flex; flex-direction: column; gap: 10px; }
.desktron_banner .toclaw_hover_popup .popup_left .popup_title_row[data-v-2206d3c4] { align-items: center; display: flex; gap: 6px; }
.desktron_banner .toclaw_hover_popup .popup_left .popup_title_row .popup_scan_icon[data-v-2206d3c4] { flex-shrink: 0; height: 24px; width: 24px; }
.desktron_banner .toclaw_hover_popup .popup_left .popup_title_row .popup_title_text[data-v-2206d3c4] { color: rgb(0, 0, 0); font-family: "PingFang SC"; font-size: 24px; font-weight: 600; line-height: 1.5; white-space: nowrap; }
.desktron_banner .toclaw_hover_popup .popup_left .popup_features_list[data-v-2206d3c4] { display: flex; flex-direction: column; gap: 10px; }
.desktron_banner .toclaw_hover_popup .popup_left .popup_features_list .popup_feature_row[data-v-2206d3c4] { align-items: center; display: flex; gap: 4px; }
.desktron_banner .toclaw_hover_popup .popup_left .popup_features_list .popup_feature_row .popup_check_icon[data-v-2206d3c4] { flex-shrink: 0; height: 18px; width: 18px; }
.desktron_banner .toclaw_hover_popup .popup_left .popup_features_list .popup_feature_row .feature_gradient[data-v-2206d3c4] { -webkit-text-fill-color: transparent; background: linear-gradient(315deg, rgb(24, 121, 255), rgb(51, 168, 255)) text; font-family: "PingFang SC"; font-size: 16px; font-weight: 500; line-height: 1.5; white-space: nowrap; }
.desktron_banner .toclaw_hover_popup .popup_left .popup_features_list .popup_feature_row .feature_dark[data-v-2206d3c4] { color: rgba(29, 33, 40, 0.85); font-family: "PingFang SC"; font-size: 16px; font-weight: 500; line-height: 1.5; white-space: nowrap; }
.desktron_banner .toclaw_hover_popup .popup_right[data-v-2206d3c4] { flex-shrink: 0; }
.desktron_banner .toclaw_hover_popup .popup_right img[data-v-2206d3c4] { border: 1px solid rgb(217, 217, 217); border-radius: 6px; display: block; height: 154px; object-fit: cover; width: 155px; }
.desktron_banner .bn_inner[data-v-2206d3c4] { backdrop-filter: blur(60px); background: rgba(255, 255, 255, 0.98); border-radius: 12px; box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 0.5px, rgba(0, 0, 0, 0.1) 0px 2px 10px 0px; display: flex; min-height: 112px; overflow-x: auto; scrollbar-color: rgb(227, 228, 232) rgb(255, 255, 255); scrollbar-width: thin; width: max-content; }
.desktron_banner .bn_inner[data-v-2206d3c4]::-webkit-scrollbar { background: rgb(255, 255, 255); height: 10px; }
.desktron_banner .bn_inner[data-v-2206d3c4]::-webkit-scrollbar-thumb:hover { background: blue; }
.desktron_banner .bn_inner[data-v-2206d3c4]::-webkit-scrollbar-thumb:active { background: rgb(227, 228, 232); }
.desktron_banner .item-list[data-v-2206d3c4] { align-items: center; cursor: pointer; display: flex; }
.desktron_banner .item-list .item[data-v-2206d3c4] { border-right: 0.5px solid rgba(0, 0, 0, 0.1); padding: 0px 20px; }
.desktron_banner .item-list .item .item_top[data-v-2206d3c4] { align-items: center; box-sizing: border-box; display: flex; }
.desktron_banner .item-list .item .item_top .item_top_title[data-v-2206d3c4] { text-wrap: nowrap; align-items: center; color: rgb(0, 0, 0); display: flex; font-size: 18px; font-weight: 600; line-height: normal; min-width: fit-content; }
.desktron_banner .item-list .item .item_top .item_top_desc[data-v-2206d3c4] { text-wrap: nowrap; border: 1px solid rgba(32, 37, 51, 0.2); border-radius: 4px; box-sizing: border-box; color: rgb(0, 112, 249); font-size: 11px; font-weight: 500; margin-left: 4px; min-width: fit-content; padding: 2px 4px; }
.desktron_banner .item-list .item .item_top .team_desc[data-v-2206d3c4] { background: rgb(250, 62, 66); border: 1px solid rgb(250, 62, 66); border-radius: 4px; color: rgb(255, 255, 255); font-family: "PingFang SC"; font-size: 12px; font-weight: 500; line-height: 1.4; padding: 2px 6px; }
.desktron_banner .item-list .item .item_bottom[data-v-2206d3c4] { text-wrap: nowrap; color: rgba(29, 33, 40, 0.4); font-size: 14px; line-height: 20px; margin-top: 4px; }
.desktron_banner .item-list .item_up_img[data-v-2206d3c4] { height: 12px; margin-left: 6px; transition: 0.3s; width: 12px; }
.desktron_banner .item-list:last-child .item[data-v-2206d3c4] { border-right: none; }
.desktron_banner .item-list:hover .item_up_img[data-v-2206d3c4] { margin-left: 12px; }
.desktron_banner .item-list:hover .item .item_top .item_top_title[data-v-2206d3c4] { color: rgb(1, 117, 255); }
.desktron_banner .item-list .item_right_img[data-v-2206d3c4] { height: 70px; margin-right: 16px; width: 70px; }
@media screen and (max-width: 1350px) {
  .desktron_banner[data-v-2206d3c4] { box-sizing: border-box; padding-left: 20px; padding-right: 20px; }
}
.regularFontCommon[data-v-2e3c7de0] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-2e3c7de0] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-2e3c7de0] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-2e3c7de0] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-2e3c7de0]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-2e3c7de0]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-2e3c7de0] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-2e3c7de0], .linkBtnCommon2[data-v-2e3c7de0]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-2e3c7de0]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-2e3c7de0]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-2e3c7de0] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-2e3c7de0]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-2e3c7de0]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-2e3c7de0] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-2e3c7de0]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-2e3c7de0]:active { opacity: 1; }
.bannerBtnCommon[data-v-2e3c7de0] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-2e3c7de0]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-2e3c7de0] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-2e3c7de0]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-2e3c7de0] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-2e3c7de0]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-2e3c7de0] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-2e3c7de0]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-2e3c7de0]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-2e3c7de0] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-2e3c7de0]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-2e3c7de0] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-2e3c7de0]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-2e3c7de0]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-2e3c7de0] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-2e3c7de0] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-2e3c7de0] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-2e3c7de0] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-2e3c7de0] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-2e3c7de0] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-2e3c7de0] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-2e3c7de0] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-2e3c7de0] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-2e3c7de0] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-2e3c7de0] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-2e3c7de0] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-2e3c7de0] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-2e3c7de0] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-2e3c7de0] { display: flex; }
.articleInfo .itemMarks .mark[data-v-2e3c7de0] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-2e3c7de0], .mask-leave-active[data-v-2e3c7de0] { transition: opacity 0.3s; }
.mask-enter[data-v-2e3c7de0], .mask-leave-to[data-v-2e3c7de0] { opacity: 0; }
.common-enter-active[data-v-2e3c7de0], .common-leave-active[data-v-2e3c7de0] { transition: opacity 0.5s; }
.common-enter[data-v-2e3c7de0], .common-leave-to[data-v-2e3c7de0] { opacity: 0; }
.todeskFlex[data-v-2e3c7de0] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-2e3c7de0] { flex-direction: column; }
.todeskFlexCenter[data-v-2e3c7de0] { align-items: center; }
.business_data[data-v-2e3c7de0], .todeskFlexColCenter[data-v-2e3c7de0] { justify-content: center; }
.business_data[data-v-2e3c7de0] { box-sizing: border-box; display: flex; height: 117px; overflow: hidden; padding: 20px 0px 18px; width: 100%; }
.business_data .data_item[data-v-2e3c7de0] { display: flex; flex-direction: column; height: 100%; justify-content: space-between; margin-right: 150px; text-align: center; }
.business_data .data_item[data-v-2e3c7de0]:last-of-type { margin-right: 0px; }
.business_data .data_item p[data-v-2e3c7de0] { color: rgb(0, 0, 0); font-family: "PingFang SC"; font-size: 36px; font-weight: 400; line-height: 50px; white-space: nowrap; }
.business_data .data_item p + p[data-v-2e3c7de0] { color: rgb(116, 117, 118); font-family: "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 22px; }
.regularFontCommon[data-v-2027f435] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-2027f435] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-2027f435] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-2027f435] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-2027f435]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-2027f435]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-2027f435] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-2027f435], .linkBtnCommon2[data-v-2027f435]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-2027f435]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-2027f435]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-2027f435] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-2027f435]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-2027f435]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-2027f435] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-2027f435]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-2027f435]:active { opacity: 1; }
.bannerBtnCommon[data-v-2027f435] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-2027f435]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-2027f435] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-2027f435]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-2027f435] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-2027f435]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-2027f435] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-2027f435]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-2027f435]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-2027f435] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-2027f435]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-2027f435] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-2027f435]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-2027f435]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-2027f435] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-2027f435] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-2027f435] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-2027f435] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-2027f435] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-2027f435] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-2027f435] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-2027f435] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-2027f435] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-2027f435] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-2027f435] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-2027f435] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-2027f435] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-2027f435] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-2027f435] { display: flex; }
.articleInfo .itemMarks .mark[data-v-2027f435] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-2027f435], .mask-leave-active[data-v-2027f435] { transition: opacity 0.3s; }
.mask-enter[data-v-2027f435], .mask-leave-to[data-v-2027f435] { opacity: 0; }
.common-enter-active[data-v-2027f435], .common-leave-active[data-v-2027f435] { transition: opacity 0.5s; }
.common-enter[data-v-2027f435], .common-leave-to[data-v-2027f435] { opacity: 0; }
.todeskFlex[data-v-2027f435] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-2027f435] { flex-direction: column; }
.todeskFlexCenter[data-v-2027f435] { align-items: center; }
.todeskFlexColCenter[data-v-2027f435] { justify-content: center; }
.enterprise_re[data-v-2027f435] { background: rgb(255, 255, 255); height: 789px; overflow: hidden; position: relative; width: 100%; }
.enterprise_re .title[data-v-2027f435] { color: rgb(31, 33, 38); font-family: "PingFang SC"; font-size: 42px; font-weight: 500; line-height: 59px; padding-top: 100px; position: relative; text-align: center; }
.enterprise_re .title span[data-v-2027f435] { -webkit-text-fill-color: transparent; background: linear-gradient(90.54deg, rgb(1, 117, 255) 0.47%, rgb(0, 34, 202) 41.46%) text; }
.enterprise_re .re_desc[data-v-2027f435] { color: rgb(53, 56, 64); font-size: 20px; margin-top: 10px; text-align: center; }
.enterprise_re .tabs_box[data-v-2027f435] { height: 100%; position: relative; user-select: none; width: 190px; }
.enterprise_re .tabs_box_1[data-v-2027f435], .enterprise_re .tabs_box_2[data-v-2027f435], .enterprise_re .tabs_box_3[data-v-2027f435], .enterprise_re .tabs_box_4[data-v-2027f435] { align-items: center; background: rgb(249, 250, 252); border-bottom: 1px solid rgba(0, 0, 0, 0.05); color: rgb(53, 56, 64); cursor: pointer; flex-wrap: nowrap; font-family: "PingFang SC"; font-size: 18px; font-weight: 400; height: 68px; justify-content: center; line-height: 1; padding: 22px 0px; width: 100%; z-index: 1; }
.enterprise_re .tabs_box_1.active[data-v-2027f435], .enterprise_re .tabs_box_1[data-v-2027f435]:hover, .enterprise_re .tabs_box_2.active[data-v-2027f435], .enterprise_re .tabs_box_2[data-v-2027f435]:hover, .enterprise_re .tabs_box_3.active[data-v-2027f435], .enterprise_re .tabs_box_3[data-v-2027f435]:hover, .enterprise_re .tabs_box_4.active[data-v-2027f435], .enterprise_re .tabs_box_4[data-v-2027f435]:hover { background: rgb(255, 255, 255); color: rgb(1, 117, 255); }
.enterprise_re .tabs_box p[data-v-2027f435] { margin: 2px auto 0px; text-align: center; }
.enterprise_re .tabs_back[data-v-2027f435] { background-repeat: no-repeat; background-size: cover; height: 38px; margin: 0px auto; width: 38px; }
.enterprise_re .tabs_box_1 .tabs_back[data-v-2027f435] { background-image: url('../img/3868700_c5b06566.svg'); }
.enterprise_re .tabs_box_1.active .tabs_back[data-v-2027f435], .enterprise_re .tabs_box_1:hover .tabs_back[data-v-2027f435] { background-image: url('../img/cd051e6_385711c4.svg'); }
.enterprise_re .tabs_box_2 .tabs_back[data-v-2027f435] { background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iMzgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE2LjAyNCAyMS4wNDhoLTQuNjNhLjg2My44NjMgMCAwIDEtLjgwNy0xLjE3TDE1LjE4OCA3LjhhLjg2Mi44NjIgMCAwIDEgLjgwNi0uNTU2aDcuNzY2Yy42MTIgMCAxLjAzLjYyLjc5OSAxLjE4OGwtMi42OCA2LjU3N2g1LjA0NGEuODYzLjg2MyAwIDAgMSAuNjQ5IDEuNDMyTDE1LjIwNSAzMC41MzJjLS42MDEuNjg1LTEuNzE2LjA5Mi0xLjQ4Mi0uNzlsMi4zMDEtOC42OTRaIiBmaWxsPSIjMzUzODQwIi8+PC9zdmc+"); }
.enterprise_re .tabs_box_2.active .tabs_back[data-v-2027f435], .enterprise_re .tabs_box_2:hover .tabs_back[data-v-2027f435] { background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iMzgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE2LjAyNCAyMS4wNDhoLTQuNjNhLjg2My44NjMgMCAwIDEtLjgwNy0xLjE3TDE1LjE4OCA3LjhhLjg2Mi44NjIgMCAwIDEgLjgwNi0uNTU2aDcuNzY2Yy42MTIgMCAxLjAzLjYyLjc5OSAxLjE4OGwtMi42OCA2LjU3N2g1LjA0NGEuODYzLjg2MyAwIDAgMSAuNjQ5IDEuNDMyTDE1LjIwNSAzMC41MzJjLS42MDEuNjg1LTEuNzE2LjA5Mi0xLjQ4Mi0uNzlsMi4zMDEtOC42OTRaIiBmaWxsPSIjMDE3NUZGIi8+PC9zdmc+"); }
.enterprise_re .tabs_box_3 .tabs_back[data-v-2027f435] { background-image: url('../img/a8fbf08_c0c35eee.svg'); }
.enterprise_re .tabs_box_3.active .tabs_back[data-v-2027f435], .enterprise_re .tabs_box_3:hover .tabs_back[data-v-2027f435] { background-image: url('../img/6a3839d_3b69aaf2.svg'); }
.enterprise_re .tabs_box_4 .tabs_back[data-v-2027f435] { background-image: url('../img/96b318f_540eef23.svg'); }
.enterprise_re .tabs_box_4.active .tabs_back[data-v-2027f435], .enterprise_re .tabs_box_4:hover .tabs_back[data-v-2027f435] { background-image: url('../img/d3c9797_f54bc3a2.svg'); }
.enterprise_re .content-wrap[data-v-2027f435] { background: rgb(255, 255, 255); border-radius: 20px; box-shadow: rgba(82, 97, 156, 0.04) 0px 20px 30px 0px, rgba(0, 0, 0, 0.1) 0px 0px 0px 1px; display: flex; height: 450px; margin: 50px auto 0px; max-width: 1200px; overflow: hidden; position: relative; }
.enterprise_re .content-wrap .item_box[data-v-2027f435] { box-sizing: border-box; display: flex; height: 450px; left: 190px; opacity: 0; padding-right: 20px; position: absolute; top: 0px; width: 1010px; z-index: 0; }
.enterprise_re .content-wrap .item_box_1 .text_box .detail_item .step[data-v-2027f435]::after, .enterprise_re .content-wrap .item_box_2 .text_box .detail_item .step[data-v-2027f435]::after { height: 113px !important; }
.enterprise_re .content-wrap .item_box.active[data-v-2027f435] { opacity: 1; z-index: 1; }
.enterprise_re .content-wrap .item_box .item_title[data-v-2027f435] { color: rgb(0, 0, 0); font-family: "PingFang SC"; font-size: 28px; font-style: normal; font-weight: 600; letter-spacing: 1px; line-height: 38px; }
.enterprise_re .content-wrap .item_box .video_box[data-v-2027f435] { border: 6px solid transparent; height: 343px; margin: auto 0px; width: auto; }
.enterprise_re .content-wrap .item_box .video_box.has_border[data-v-2027f435] { border: 6px solid rgb(68, 69, 70); border-radius: 14px; }
.enterprise_re .content-wrap .item_box .video_box.has_border .media_item img[data-v-2027f435], .enterprise_re .content-wrap .item_box .video_box.has_border .media_item video[data-v-2027f435] { border-radius: 10px; }
.enterprise_re .content-wrap .item_box .video_box .media_item[data-v-2027f435] { align-items: center; display: flex; height: 343px; justify-content: center; overflow: hidden; width: auto; }
.enterprise_re .content-wrap .item_box .video_box .media_item video[data-v-2027f435] { height: 343px; object-fit: cover; width: 500px; }
.enterprise_re .content-wrap .item_box .video_box .media_item img[data-v-2027f435] { height: 343px; width: 500px; }
.enterprise_re .content-wrap .item_box .text_box[data-v-2027f435] { box-sizing: border-box; flex: 1 1 450px; padding: 48px 62px 0px 48px; position: relative; }
.enterprise_re .content-wrap .item_box .text_box .dl_btn[data-v-2027f435] { align-items: center; background-color: rgb(0, 112, 249); border-radius: 6px; color: rgb(255, 255, 255); cursor: pointer; display: flex; font-family: "PingFang SC"; font-size: 16px; font-weight: 400; height: 44px; justify-content: center; margin: 30px 0px 10px; transition: background-color 0.3s; user-select: none; width: 128px; }
.enterprise_re .content-wrap .item_box .text_box .dl_btn[data-v-2027f435]:hover { background-color: rgba(0, 112, 255, 0.8); }
.enterprise_re .content-wrap .item_box .text_box .detail_box[data-v-2027f435] { margin-top: 26px; }
.enterprise_re .content-wrap .item_box .text_box .detail_box .detail_item[data-v-2027f435] { cursor: pointer; margin-bottom: 19px; padding-left: 22px; position: relative; }
.enterprise_re .content-wrap .item_box .text_box .detail_box .detail_item.active .dt-title[data-v-2027f435], .enterprise_re .content-wrap .item_box .text_box .detail_box .detail_item:hover .dt-title[data-v-2027f435] { color: rgb(1, 117, 255); font-weight: 500; }
.enterprise_re .content-wrap .item_box .text_box .detail_box .detail_item.active .dt-text[data-v-2027f435], .enterprise_re .content-wrap .item_box .text_box .detail_box .detail_item:hover .dt-text[data-v-2027f435] { color: rgb(68, 69, 70); }
.enterprise_re .content-wrap .item_box .text_box .detail_box .detail_item.active .step[data-v-2027f435], .enterprise_re .content-wrap .item_box .text_box .detail_box .detail_item:hover .step[data-v-2027f435] { background-color: rgb(1, 117, 255); }
.enterprise_re .content-wrap .item_box .text_box .detail_box .detail_item[data-v-2027f435]:last-of-type { margin-bottom: 0px; }
.enterprise_re .content-wrap .item_box .text_box .detail_box .detail_item:last-of-type .step[data-v-2027f435]::after { display: none; }
.enterprise_re .content-wrap .item_box .text_box .detail_box .detail_item .dt-title[data-v-2027f435] { color: rgba(116, 117, 118, 0.6); font-family: "PingFang SC"; font-size: 18px; font-weight: 400; line-height: normal; margin-bottom: 4px; }
.enterprise_re .content-wrap .item_box .text_box .detail_box .detail_item .dt-text[data-v-2027f435] { color: rgba(116, 117, 118, 0.6); font-family: "PingFang SC"; font-size: 14px; font-weight: 400; line-height: normal; margin-top: 8px; }
.enterprise_re .content-wrap .item_box .text_box .detail_box .detail_item .dt-text[data-v-2027f435]:first-of-type { margin-top: 0px; }
.enterprise_re .content-wrap .item_box .text_box .detail_box .detail_item .step[data-v-2027f435] { background-color: rgb(206, 208, 212); border-radius: 50%; height: 6px; left: 3px; position: absolute; top: 10px; width: 6px; }
.enterprise_re .content-wrap .item_box .text_box .detail_box .detail_item .step[data-v-2027f435]::after { border: 1px solid rgb(233, 235, 239); content: ""; height: 59px; left: 2px; position: absolute; top: 7px; transform: scaleX(0.5); }
.enterprise_re .content-wrap .item_box_3 .text_box[data-v-2027f435] { padding: 48px 62px 0px 48px; }
.enterprise_re .bg_box[data-v-2027f435] { position: absolute; top: 0px; }
.enterprise_re .bg_box img[data-v-2027f435] { height: 789px; width: auto; }
.regularFontCommon[data-v-73ff5b43] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-73ff5b43] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-73ff5b43] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-73ff5b43] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-73ff5b43]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-73ff5b43]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-73ff5b43] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-73ff5b43], .linkBtnCommon2[data-v-73ff5b43]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-73ff5b43]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-73ff5b43]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-73ff5b43] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-73ff5b43]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-73ff5b43]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-73ff5b43] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-73ff5b43]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-73ff5b43]:active { opacity: 1; }
.bannerBtnCommon[data-v-73ff5b43] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-73ff5b43]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-73ff5b43] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-73ff5b43]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-73ff5b43] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-73ff5b43]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-73ff5b43] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-73ff5b43]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-73ff5b43]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-73ff5b43] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-73ff5b43]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-73ff5b43] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-73ff5b43]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-73ff5b43]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-73ff5b43] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-73ff5b43] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-73ff5b43] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-73ff5b43] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-73ff5b43] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-73ff5b43] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-73ff5b43] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-73ff5b43] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-73ff5b43] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-73ff5b43] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-73ff5b43] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-73ff5b43] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-73ff5b43] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-73ff5b43] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-73ff5b43] { display: flex; }
.articleInfo .itemMarks .mark[data-v-73ff5b43] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-73ff5b43], .mask-leave-active[data-v-73ff5b43] { transition: opacity 0.3s; }
.mask-enter[data-v-73ff5b43], .mask-leave-to[data-v-73ff5b43] { opacity: 0; }
.common-enter-active[data-v-73ff5b43], .common-leave-active[data-v-73ff5b43] { transition: opacity 0.5s; }
.common-enter[data-v-73ff5b43], .common-leave-to[data-v-73ff5b43] { opacity: 0; }
.todeskFlex[data-v-73ff5b43] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-73ff5b43] { flex-direction: column; }
.todeskFlexCenter[data-v-73ff5b43] { align-items: center; }
.todeskFlexColCenter[data-v-73ff5b43] { justify-content: center; }
[data-v-73ff5b43] { box-sizing: border-box; }
.exhibition_re[data-v-73ff5b43] { background: rgb(248, 249, 250); overflow: hidden; position: relative; width: 100%; }
.exhibition_re .title[data-v-73ff5b43] { color: rgb(31, 33, 38); font-family: "PingFang SC"; font-size: 42px; font-weight: 500; padding-top: 100px; position: relative; text-align: center; }
.exhibition_re .title_2 span[data-v-73ff5b43] { -webkit-text-fill-color: transparent; background: linear-gradient(90.54deg, rgb(1, 117, 255) 0.47%, rgb(0, 34, 202) 41.46%) text; }
.exhibition_re .ex_next_btn[data-v-73ff5b43], .exhibition_re .ex_prev_btn[data-v-73ff5b43] { align-items: center; display: flex; justify-content: center; }
.exhibition_re .ex_next_btn img[data-v-73ff5b43], .exhibition_re .ex_prev_btn img[data-v-73ff5b43] { display: block; margin-left: 2px; }
.exhibition_re .ex_prev_btn[data-v-73ff5b43] { background-color: rgba(0, 0, 0, 0.2); border-radius: 50%; cursor: pointer; height: 48px; left: 20px; position: absolute; top: 292px; width: 48px; }
.exhibition_re .ex_prev_btn[data-v-73ff5b43]:hover { background-color: rgba(0, 0, 0, 0.35); }
.exhibition_re .ex_next_btn[data-v-73ff5b43] { background-color: rgba(0, 0, 0, 0.2); border-radius: 50%; cursor: pointer; height: 48px; position: absolute; right: 20px; top: 292px; transform: rotate(180deg); width: 48px; }
.exhibition_re .ex_next_btn[data-v-73ff5b43]:hover { background-color: rgba(0, 0, 0, 0.35); }
.exhibition_re .version_wrap[data-v-73ff5b43] { background-repeat: no-repeat; background-size: 206px; display: flex; justify-content: center; margin: 41px auto 0px; max-width: 1200px; width: 100%; }
.exhibition_re .version_wrap .version_info[data-v-73ff5b43] { display: flex; }
.exhibition_re .version_wrap .version_info .version_logo[data-v-73ff5b43] { height: 40px; margin-right: 8px; width: 40px; }
.exhibition_re .version_wrap .version_desc .desc_title[data-v-73ff5b43] { color: rgb(0, 0, 0); font-family: "PingFang SC"; font-size: 26px; font-weight: 500; line-height: normal; }
.exhibition_re .version_wrap .version_desc .desc_subTitle[data-v-73ff5b43] { color: rgb(97, 99, 105); font-family: "PingFang SC"; font-size: 16px; font-weight: 400; letter-spacing: 0.16px; line-height: normal; margin-top: 4px; width: 216px; }
.exhibition_re .version_wrap .version_item[data-v-73ff5b43] { border: 1px solid transparent; border-radius: 20px; box-shadow: rgba(206, 219, 244, 0.4) 0px 15px 20px 0px; box-sizing: border-box; cursor: pointer; flex-shrink: 0; height: 324px; position: relative; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; width: 265px; }
.exhibition_re .version_wrap .version_item[data-v-73ff5b43]:hover { box-shadow: rgba(21, 18, 53, 0.18) 0px 10px 26px; transform: translateY(-6px); }
.exhibition_re .version_wrap .version_item:hover .transition-wrap[data-v-73ff5b43] { transform: skewY(6deg) translateY(4px); }
.exhibition_re .version_wrap .version_item:hover.version_item-0[data-v-73ff5b43] { border: 1px solid rgb(203, 178, 255); }
.exhibition_re .version_wrap .version_item:hover.version_item-1[data-v-73ff5b43] { border: 1px solid rgb(60, 199, 244); }
.exhibition_re .version_wrap .version_item:hover.version_item-2[data-v-73ff5b43] { border: 1px solid rgb(252, 171, 118); }
.exhibition_re .version_wrap .version_item[data-v-73ff5b43]:last-of-type { margin-right: 0px; }
.exhibition_re .version_wrap .version_item .content_wrap[data-v-73ff5b43] { backdrop-filter: blur(15px); background-color: rgba(255, 255, 255, 0.95); border-radius: 20px; box-sizing: border-box; display: flex; flex-direction: column; height: 240px; overflow: hidden; padding: 19px 10px 30px 28px; position: relative; width: 100%; z-index: 1; }
.exhibition_re .version_wrap .version_item .content_wrap.daas_item[data-v-73ff5b43] { height: 238px; }
.exhibition_re .version_wrap .version_item .content_wrap[data-v-73ff5b43]::after { border-radius: 20px; content: ""; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }
.exhibition_re .version_wrap .version_item .content_wrap.daas_item-0[data-v-73ff5b43] { background-color: rgb(255, 255, 255); }
.exhibition_re .version_wrap .version_item .content_wrap.daas_item-0[data-v-73ff5b43]::after { background: rgba(38, 23, 209, 0.07); }
.exhibition_re .version_wrap .version_item .content_wrap.daas_item-1[data-v-73ff5b43] { background-color: rgb(255, 255, 255); }
.exhibition_re .version_wrap .version_item .content_wrap.daas_item-1[data-v-73ff5b43]::after { background: rgba(26, 163, 242, 0.07); }
.exhibition_re .version_wrap .version_item .content_wrap.daas_item-2[data-v-73ff5b43] { background-color: rgb(255, 255, 255); }
.exhibition_re .version_wrap .version_item .content_wrap.daas_item-2[data-v-73ff5b43]::after { background: rgba(255, 184, 133, 0.07); }
.exhibition_re .version_wrap .version_item .content_wrap .content_wrap_bg[data-v-73ff5b43] { bottom: 0px; position: absolute; right: 0px; }
.exhibition_re .version_wrap .version_item .content_wrap .content_wrap_bg img[data-v-73ff5b43] { display: block; height: auto; width: 124px; }
.exhibition_re .version_wrap .version_item .content_wrap .version_title[data-v-73ff5b43] { align-items: center; color: rgb(0, 0, 0); display: flex; font-family: "PingFang SC"; font-size: 24px; font-weight: 500; line-height: normal; }
.exhibition_re .version_wrap .version_item .content_wrap .text_wrap[data-v-73ff5b43] { margin-top: 10px; }
.exhibition_re .version_wrap .version_item .content_wrap .text_wrap .text_item[data-v-73ff5b43] { color: rgb(116, 117, 118); font-family: "PingFang SC"; font-size: 14px; font-weight: 400; line-height: 24px; }
.exhibition_re .version_wrap .version_item .content_wrap .empty-dom[data-v-73ff5b43] { flex: 1 1 0%; }
.exhibition_re .version_wrap .version_item .content_wrap .empty-dom .card[data-v-73ff5b43] { height: auto; width: 130px; }
.exhibition_re .version_wrap .version_item .content_wrap .btn[data-v-73ff5b43] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 24px; }
.exhibition_re .version_wrap .version_item .content_wrap .btn .el-icon-arrow-right[data-v-73ff5b43] { font-size: 10px; margin-left: 3px; padding-top: 2px; }
.exhibition_re .version_wrap .version_item .transition-wrap[data-v-73ff5b43] { background: rgb(23, 101, 209); border: 1px solid transparent; border-radius: 20px; box-sizing: border-box; height: calc(100% - 4px); left: 6px; overflow: hidden; position: absolute; top: 2px; transform: skewY(0deg) translateY(0px); transform-origin: left top; transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); width: calc(100% - 20px); will-change: auto; z-index: 0; }
.exhibition_re .version_wrap.tob_wrap[data-v-73ff5b43] { background-image: url('../img/5852f5b_0a3f4c61.png'); background-position: 112px 36px; margin-top: 96px; }
.exhibition_re .version_wrap.tob_wrap .version_desc[data-v-73ff5b43] { margin-right: 53px; }
.exhibition_re .version_wrap.tob_wrap .version_item[data-v-73ff5b43] { height: 240px; margin-right: 44px; width: 266px; }
.exhibition_re .version_wrap.tob_wrap .version_item[data-v-73ff5b43]:last-of-type { margin-right: auto; }
.exhibition_re .version_wrap.tob_wrap .version_item .version-icon[data-v-73ff5b43] { height: auto; margin-right: 10px; width: 24px; }
.exhibition_re .version_wrap.tob_wrap .version_item .content_wrap_bg img[data-v-73ff5b43] { display: block; height: auto; width: 124px; }
.exhibition_re .version_wrap.tob_wrap.daas[data-v-73ff5b43] { background-image: url('../img/9c913ef_47187c35.png'); }
.exhibition_re .version_wrap.tob_wrap.daas .text_wrap[data-v-73ff5b43] { height: 58px; }
.exhibition_re .version_wrap.tob_wrap.daas .transition-wrap-0[data-v-73ff5b43] { background: rgb(137, 81, 254); }
.exhibition_re .version_wrap.tob_wrap.daas .transition-wrap-1[data-v-73ff5b43] { background: rgb(60, 199, 244); }
.exhibition_re .version_wrap.tob_wrap.daas .transition-wrap-2[data-v-73ff5b43] { background: rgb(8, 21, 61); }
.exhibition_re .version_wrap.toc_wrap[data-v-73ff5b43] { background-image: url('../img/44bcab8_ee7ec6ce.png'); background-position: 112px 33px; margin-top: 88px; padding-bottom: 28px; }
.exhibition_re .version_wrap.toc_wrap .version_desc[data-v-73ff5b43] { margin-right: 15px; }
.exhibition_re .version_wrap.toc_wrap .version_item[data-v-73ff5b43] { height: 240px; margin-right: 16px; width: 230px; }
.exhibition_re .version_wrap.toc_wrap .version_item[data-v-73ff5b43]:last-of-type { margin-right: 0px; }
.exhibition_re .version_wrap.toc_wrap .version_item_1 .transition-wrap[data-v-73ff5b43] { background-color: rgb(0, 112, 249); }
.exhibition_re .version_wrap.toc_wrap .version_item_2 .transition-wrap[data-v-73ff5b43] { background-color: rgb(5, 97, 200); }
.exhibition_re .version_wrap.toc_wrap .version_item_3 .transition-wrap[data-v-73ff5b43] { background-color: rgb(86, 29, 157); }
.exhibition_re .version_wrap.toc_wrap .version_item_4 .transition-wrap[data-v-73ff5b43] { background-color: rgb(239, 169, 117); }
.exhibition_re .version_wrap.toc_wrap .version_item .version-icon[data-v-73ff5b43] { height: auto; margin-right: 10px; width: 24px; }
.exhibition_re .version_wrap.toc_wrap .version_item .content_wrap[data-v-73ff5b43] { padding-left: 20px; }
.exhibition_re .version_wrap.toc_wrap .version_item .content_wrap .content_wrap_bg img[data-v-73ff5b43] { display: block; height: auto; width: 111px; }
.exhibition_re .swipe_Wrap[data-v-73ff5b43] { display: flex; height: 350px; margin: 0px auto; overflow: hidden; padding: 40px 60px 0px; position: relative; user-select: none; width: 1340px; }
.exhibition_re .swipe_Wrap .swipe_transition_user[data-v-73ff5b43] { display: flex; left: 0px; min-width: 1200px; position: relative; transition: left 0.3s; width: auto; }
.exhibition_re .swipe_Wrap .swipe_transition_user .swipe_img_wrap[data-v-73ff5b43] { flex-shrink: 0; height: 100%; margin-right: 60px; width: 100%; }
.exhibition_re .swipe_Wrap .swipe_transition_user .swipe_img_wrap.active .item[data-v-73ff5b43] { box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 11px 0px; }
.exhibition_re .swipe_Wrap .swipe_transition_user .swipe_img_wrap img[data-v-73ff5b43] { display: block; height: 296px; width: 1220px; }
.exhibition_re .swipe_Wrap .swipe_item[data-v-73ff5b43] { align-items: center; display: flex; flex-flow: wrap; flex-shrink: 0; justify-content: center; margin-right: 70px; width: 100%; }
.exhibition_re .swipe_Wrap .swipe_item.active .item[data-v-73ff5b43] { box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 11px 0px; }
.exhibition_re .swipe_Wrap .swipe_item .item[data-v-73ff5b43] { align-items: center; background: rgb(255, 255, 255); border-radius: 8px; display: flex; height: 80px; justify-content: center; margin-bottom: 19px; margin-right: 25px; width: 150px; }
.exhibition_re .swipe_Wrap .swipe_item .item[data-v-73ff5b43]:nth-of-type(7n+7) { margin-right: 0px; }
.exhibition_re .swipe_Wrap .swipe_item .item img[data-v-73ff5b43] { height: 40px; width: auto; }
.exhibition_re .swipe_Wrap .next_btn[data-v-73ff5b43], .exhibition_re .swipe_Wrap .prev_btn[data-v-73ff5b43] { align-items: center; background-color: rgb(247, 248, 250); border: 1px solid rgb(229, 230, 235); border-radius: 50%; cursor: pointer; display: flex; height: 48px; justify-content: center; position: absolute; top: calc(50% - 22px); width: 48px; }
.exhibition_re .swipe_Wrap .next_btn.disabled[data-v-73ff5b43], .exhibition_re .swipe_Wrap .prev_btn.disabled[data-v-73ff5b43] { background-color: rgb(240, 240, 240); cursor: default; }
.exhibition_re .swipe_Wrap .next_btn[data-v-73ff5b43]:hover, .exhibition_re .swipe_Wrap .prev_btn[data-v-73ff5b43]:hover { background-color: rgb(240, 240, 240); }
.exhibition_re .swipe_Wrap .next_btn img[data-v-73ff5b43], .exhibition_re .swipe_Wrap .prev_btn img[data-v-73ff5b43] { display: block; margin-left: 2px; }
.exhibition_re .swipe_Wrap .prev_btn[data-v-73ff5b43] { left: 0px; transform: rotate(180deg); }
.exhibition_re .swipe_Wrap .next_btn[data-v-73ff5b43] { right: 0px; }
.exhibition_re .swipe_Wrap .indicator_wrap[data-v-73ff5b43] { bottom: 0px; display: flex; left: 50%; position: absolute; transform: translateX(-50%); }
.exhibition_re .swipe_Wrap .indicator_wrap .indicator_item[data-v-73ff5b43] { background-color: rgb(206, 208, 212); border-radius: 27px; cursor: pointer; height: 8px; margin-right: 8px; transition: 0.3s; width: 8px; }
.exhibition_re .swipe_Wrap .indicator_wrap .indicator_item[data-v-73ff5b43]:last-of-type { margin-right: 0px; }
.exhibition_re .swipe_Wrap .indicator_wrap .indicator_item.active[data-v-73ff5b43] { background-color: rgb(0, 112, 249); width: 36px; }
.exhibition_re .certificate_main_wrap[data-v-73ff5b43] { background: linear-gradient(rgb(248, 249, 250), rgb(221, 231, 239)) center bottom / 100% 100% no-repeat; height: auto; position: relative; width: 100%; }
.exhibition_re .certificate_main_wrap .bg_color_wrap[data-v-73ff5b43] { background-image: url('../img/202304231614135f9fc79c5ff1e4_be864142.png'); background-position: center bottom; background-repeat: no-repeat; background-size: auto 100%; content: ""; display: block; height: 100%; position: absolute; top: 0px; width: 100%; z-index: 0; }
.exhibition_re .certificate_wrap[data-v-73ff5b43] { box-sizing: border-box; height: 390px; position: relative; z-index: 1; }
.exhibition_re .certificate_wrap .qa_cont[data-v-73ff5b43] { overflow: hidden; position: relative; }
.exhibition_re .certificate_wrap .qa_bx[data-v-73ff5b43] { box-sizing: border-box; display: flex; justify-content: center; margin: auto; min-width: 1200px; padding-bottom: 25px; padding-top: 32px; position: relative; width: 100%; z-index: 1; }
.exhibition_re .certificate_wrap .qa_bx.list2[data-v-73ff5b43] { padding: 0px 0px 25px; }
.exhibition_re .certificate_wrap .qa_item[data-v-73ff5b43] { align-items: center; background: rgb(255, 255, 255); border-radius: 12px; box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 10px; box-sizing: border-box; cursor: pointer; display: flex; flex-direction: column; height: 126px; justify-content: center; margin-left: 9px; margin-right: 9px; transition: transform 0.3s; width: 184px; }
.exhibition_re .certificate_wrap .qa_item[data-v-73ff5b43]:hover { box-shadow: rgba(21, 18, 53, 0.18) 0px 10px 26px; transform: translateY(-6px); }
.exhibition_re .certificate_wrap .qa_item:hover .qa_text[data-v-73ff5b43] { color: rgb(11, 128, 254); }
.exhibition_re .certificate_wrap .qa_icon[data-v-73ff5b43] { cursor: pointer; height: 59px; width: auto; }
.exhibition_re .certificate_wrap .qa_text[data-v-73ff5b43] { box-sizing: border-box; color: rgb(116, 117, 118); font-family: PingFangSC-Semibold, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 20px; margin-top: 8px; padding: 0px 12px; text-align: center; }
.exhibition_re .certificate_wrap .showCertificate[data-v-73ff5b43] { background: rgba(0, 9, 23, 0.69); height: 100vh; left: 0px; position: fixed; top: 0px; width: 100vw; z-index: 10; }
.exhibition_re .certificate_wrap .showCertificate .bx[data-v-73ff5b43] { align-items: center; display: flex; height: 100%; justify-content: center; }
.exhibition_re .certificate_wrap .showCertificate .bx .imgCertificate[data-v-73ff5b43] { height: 680px; width: auto; }
.exhibition_re .certificate_wrap .showCertificate .bx .closeCertificate[data-v-73ff5b43] { cursor: pointer; height: auto; left: 20px; position: relative; top: -250px; width: 20px; }
@media screen and (max-width: 1440px) {
  .exhibition_re .certificate_wrap .certificate_wrap .qa_text[data-v-73ff5b43] { height: 44px; }
}
.regularFontCommon[data-v-69aaaf4e] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-69aaaf4e] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-69aaaf4e] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-69aaaf4e] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-69aaaf4e]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-69aaaf4e]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-69aaaf4e] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-69aaaf4e], .linkBtnCommon2[data-v-69aaaf4e]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-69aaaf4e]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-69aaaf4e]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-69aaaf4e] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-69aaaf4e]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-69aaaf4e]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-69aaaf4e] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-69aaaf4e]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-69aaaf4e]:active { opacity: 1; }
.bannerBtnCommon[data-v-69aaaf4e] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-69aaaf4e]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-69aaaf4e] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-69aaaf4e]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-69aaaf4e] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-69aaaf4e]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-69aaaf4e] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-69aaaf4e]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-69aaaf4e]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-69aaaf4e] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-69aaaf4e]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-69aaaf4e] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-69aaaf4e]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-69aaaf4e]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-69aaaf4e] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-69aaaf4e] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-69aaaf4e] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-69aaaf4e] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-69aaaf4e] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-69aaaf4e] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-69aaaf4e] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-69aaaf4e] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-69aaaf4e] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-69aaaf4e] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-69aaaf4e] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-69aaaf4e] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-69aaaf4e] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-69aaaf4e] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-69aaaf4e] { display: flex; }
.articleInfo .itemMarks .mark[data-v-69aaaf4e] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-69aaaf4e], .mask-leave-active[data-v-69aaaf4e] { transition: opacity 0.3s; }
.mask-enter[data-v-69aaaf4e], .mask-leave-to[data-v-69aaaf4e] { opacity: 0; }
.common-enter-active[data-v-69aaaf4e], .common-leave-active[data-v-69aaaf4e] { transition: opacity 0.5s; }
.common-enter[data-v-69aaaf4e], .common-leave-to[data-v-69aaaf4e] { opacity: 0; }
.todeskFlex[data-v-69aaaf4e] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-69aaaf4e] { flex-direction: column; }
.todeskFlexCenter[data-v-69aaaf4e] { align-items: center; }
.todeskFlexColCenter[data-v-69aaaf4e] { justify-content: center; }
.enterprise_brand[data-v-69aaaf4e] { background: rgb(242, 246, 255); height: 364px; position: relative; width: 100%; }
.enterprise_brand .brand_bg[data-v-69aaaf4e] { align-items: center; display: flex; justify-content: center; left: 650px; overflow: hidden; position: absolute; top: 36px; z-index: 0; }
.enterprise_brand .brand_bg img[data-v-69aaaf4e] { display: block; height: 327px; width: 612px; }
.enterprise_brand .brand_content[data-v-69aaaf4e] { box-sizing: border-box; height: 100%; margin: 0px auto; max-width: 1200px; overflow: hidden; padding: 68px 0px 40px; position: relative; width: 100%; }
.enterprise_brand .brand_content .title[data-v-69aaaf4e] { color: rgb(68, 69, 70); font-family: "PingFang SC"; font-size: 38px; font-weight: 600; line-height: 53px; }
.enterprise_brand .brand_content .title span[data-v-69aaaf4e] { color: rgb(0, 112, 249); }
.enterprise_brand .brand_content .subtitle[data-v-69aaaf4e] { color: rgb(116, 117, 118); font-family: "PingFang SC"; font-size: 24px; font-weight: 400; line-height: 34px; margin-top: 20px; }
.enterprise_brand .brand_content .btn_wrap[data-v-69aaaf4e] { display: flex; margin-top: 39px; user-select: none; }
.enterprise_brand .brand_content .btn_wrap .btn[data-v-69aaaf4e] { align-items: center; border-radius: 10px; cursor: pointer; display: flex; font-family: "PingFang SC"; font-size: 20px; font-weight: 500; height: 60px; justify-content: center; letter-spacing: 0.5px; margin-right: 30px; transition: background-color 0.2s; width: 200px; }
.enterprise_brand .brand_content .btn_wrap .btn.learn-more[data-v-69aaaf4e] { background-color: rgb(0, 112, 249); color: rgb(255, 255, 255); }
.enterprise_brand .brand_content .btn_wrap .btn.learn-more[data-v-69aaaf4e]:hover { background-color: rgba(0, 112, 249, 0.8); }
.enterprise_brand .brand_content .btn_wrap .btn.contact-us[data-v-69aaaf4e] { background-color: transparent; border: 1px solid rgb(0, 112, 249); color: rgb(0, 112, 249); }
.enterprise_brand .brand_content .btn_wrap .btn.contact-us[data-v-69aaaf4e]:hover { background-color: rgba(255, 255, 255, 0.5); }
.regularFontCommon[data-v-503c820a] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-503c820a] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-503c820a] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-503c820a] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-503c820a]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-503c820a]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-503c820a] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-503c820a], .linkBtnCommon2[data-v-503c820a]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-503c820a]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-503c820a]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-503c820a] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-503c820a]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-503c820a]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-503c820a] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-503c820a]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-503c820a]:active { opacity: 1; }
.bannerBtnCommon[data-v-503c820a] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-503c820a]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-503c820a] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-503c820a]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-503c820a] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-503c820a]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-503c820a] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-503c820a]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-503c820a]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-503c820a] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-503c820a]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-503c820a] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-503c820a]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-503c820a]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-503c820a] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-503c820a] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-503c820a] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-503c820a] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-503c820a] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-503c820a] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-503c820a] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-503c820a] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-503c820a] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-503c820a] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-503c820a] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-503c820a] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-503c820a] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-503c820a] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-503c820a] { display: flex; }
.articleInfo .itemMarks .mark[data-v-503c820a] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-503c820a], .mask-leave-active[data-v-503c820a] { transition: opacity 0.3s; }
.mask-enter[data-v-503c820a], .mask-leave-to[data-v-503c820a] { opacity: 0; }
.common-enter-active[data-v-503c820a], .common-leave-active[data-v-503c820a] { transition: opacity 0.5s; }
.common-enter[data-v-503c820a], .common-leave-to[data-v-503c820a] { opacity: 0; }
.todeskFlex[data-v-503c820a] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-503c820a] { flex-direction: column; }
.todeskFlexCenter[data-v-503c820a] { align-items: center; }
.todeskFlexColCenter[data-v-503c820a] { justify-content: center; }
.hdcmpr_v2[data-v-503c820a] { background-color: rgb(251, 252, 255); box-sizing: border-box; overflow: hidden; padding-bottom: 100px; }
.hdcmpr_v2 .hdcmpr_title[data-v-503c820a] { color: rgb(58, 58, 58); font-family: "PingFang SC"; font-size: 42px; font-weight: 500; line-height: 54px; margin: 0px auto; text-align: center; }
.hdcmpr_v2 .hdcmpr_title .protext[data-v-503c820a] { -webkit-text-fill-color: transparent; background: linear-gradient(90.54deg, rgb(1, 117, 255) 0.47%, rgb(0, 34, 202) 41.46%) text; font-weight: 500; }
.hdcmpr_v2 .hdcmpr_subtitle[data-v-503c820a] { color: rgb(58, 58, 60); font-family: "PingFang SC"; font-size: 30px; font-weight: 600; line-height: normal; margin-bottom: 26px; margin-top: 12px; text-align: left; }
.hdcmpr_v2 .tabs_box[data-v-503c820a] { border-radius: 20px; box-sizing: border-box; cursor: pointer; display: flex; height: 40px; justify-content: space-between; margin: 20px auto 0px; position: relative; user-select: none; width: 534px; }
.hdcmpr_v2 .tabs_box_1[data-v-503c820a] { width: 180px; }
.hdcmpr_v2 .tabs_box_2[data-v-503c820a] { width: 150px; }
.hdcmpr_v2 .tabs_box_3[data-v-503c820a] { width: 164px; }
.hdcmpr_v2 .tabs_box_4[data-v-503c820a] { width: 109px; }
.hdcmpr_v2 .tabs_box_1[data-v-503c820a], .hdcmpr_v2 .tabs_box_2[data-v-503c820a], .hdcmpr_v2 .tabs_box_3[data-v-503c820a], .hdcmpr_v2 .tabs_box_4[data-v-503c820a] { align-items: center; color: rgb(97, 99, 105); display: flex; font-family: "PingFang SC"; font-size: 16px; font-weight: 400; height: 100%; justify-content: center; line-height: 1; transition: color 0.3s; z-index: 1; }
.hdcmpr_v2 .tabs_box_1[data-v-503c820a]:hover, .hdcmpr_v2 .tabs_box_2[data-v-503c820a]:hover, .hdcmpr_v2 .tabs_box_3[data-v-503c820a]:hover, .hdcmpr_v2 .tabs_box_4[data-v-503c820a]:hover { color: rgb(0, 112, 249); }
.hdcmpr_v2 .tabs_box_1.active[data-v-503c820a], .hdcmpr_v2 .tabs_box_2.active[data-v-503c820a], .hdcmpr_v2 .tabs_box_3.active[data-v-503c820a], .hdcmpr_v2 .tabs_box_4.active[data-v-503c820a] { color: rgb(255, 255, 255); }
.hdcmpr_v2 .tabs_box_bg[data-v-503c820a] { background: rgb(0, 0, 0); border-radius: 20px; height: 100%; left: 0px; position: absolute; transition: left 0.3s, width 0.3s; width: 102px; z-index: 0; }
.hdcmpr_v2 .security_wrap[data-v-503c820a] { display: flex; justify-content: space-between; margin: 47px auto 0px; max-width: 1048px; position: relative; }
.hdcmpr_v2 .security_wrap .item_left_wrap[data-v-503c820a] { flex-shrink: 0; width: 393px; }
.hdcmpr_v2 .security_wrap .item_left_wrap .btn_wrap[data-v-503c820a] { align-items: center; display: flex; height: 44px; margin-top: 30px; width: 100%; }
.hdcmpr_v2 .security_wrap .item_left_wrap .btn_wrap .toc_dl[data-v-503c820a] { align-items: center; background: rgb(0, 112, 249); border-radius: 6px; color: rgb(255, 255, 255); display: flex; font-family: "PingFang SC"; font-size: 16px; font-weight: 400; height: 44px; justify-content: center; line-height: 1; margin-right: 27px; transition: background-color 0.2s; width: 154px; }
.hdcmpr_v2 .security_wrap .item_left_wrap .btn_wrap .toc_dl[data-v-503c820a]:hover { background: rgb(28, 135, 253); }
.hdcmpr_v2 .security_wrap .item_left_wrap .btn_wrap .tob_register[data-v-503c820a] { align-items: center; background: transparent; border: 1px solid rgb(0, 112, 249); border-radius: 6px; color: rgb(0, 112, 249); display: flex; font-family: "PingFang SC"; font-size: 16px; font-style: normal; font-weight: 400; height: 44px; justify-content: center; line-height: 1; transition: 0.2s; width: 154px; }
.hdcmpr_v2 .security_wrap .item_left_wrap .btn_wrap .tob_register[data-v-503c820a]:hover { background-color: rgba(255, 255, 255, 0.8); border: 1px solid rgb(28, 135, 253); color: rgb(28, 135, 253); }
.hdcmpr_v2 .security_wrap .security_item[data-v-503c820a] { border-bottom: 1px solid rgb(229, 230, 235); cursor: pointer; display: flex; flex-direction: column; height: 54px; justify-content: center; position: relative; width: 100%; }
.hdcmpr_v2 .security_wrap .security_item[data-v-503c820a]::before { background-color: transparent; content: ""; height: 0px; left: -17px; position: absolute; top: 50%; transform: translateY(-50%); width: 4px; }
.hdcmpr_v2 .security_wrap .security_item.active[data-v-503c820a] { height: 91px; }
.hdcmpr_v2 .security_wrap .security_item.active .item_title[data-v-503c820a] { color: rgb(0, 112, 249); }
.hdcmpr_v2 .security_wrap .security_item.active .item_desc[data-v-503c820a] { height: auto; opacity: 1; }
.hdcmpr_v2 .security_wrap .security_item.active[data-v-503c820a]::before { background-color: rgb(0, 112, 249); content: ""; height: 83px; }
.hdcmpr_v2 .security_wrap .security_item .item_title[data-v-503c820a] { align-items: center; color: rgb(58, 58, 58); display: flex; font-family: "PingFang SC"; font-size: 16px; font-weight: 500; letter-spacing: 0.5px; line-height: normal; }
.hdcmpr_v2 .security_wrap .security_item .item_title[data-v-503c820a]:hover { color: rgb(0, 112, 249); }
.hdcmpr_v2 .security_wrap .security_item .item_title .item_subTitle[data-v-503c820a] { display: block; font-weight: 500; margin-left: 10px; }
.hdcmpr_v2 .security_wrap .security_item .item_desc[data-v-503c820a] { color: rgb(97, 99, 105); font-family: "PingFang SC"; font-size: 14px; font-weight: 400; height: 0px; line-height: normal; margin-top: 4px; opacity: 0; }
.hdcmpr_v2 .security_wrap .item_bg_wrap[data-v-503c820a] { align-items: flex-start; box-sizing: border-box; display: flex; height: 100%; padding-left: 123px; position: relative; width: 100%; }
.hdcmpr_v2 .security_wrap .item_bg_wrap .bg_Img[data-v-503c820a] { display: block; height: auto; opacity: 0; position: absolute; top: 0px; width: 280px; }
.hdcmpr_v2 .security_wrap .item_bg_wrap .bg_Img.active[data-v-503c820a] { opacity: 1; }
.hdcmpr_v2 .hdc_content[data-v-503c820a] { display: flex; justify-content: space-between; margin: 80px auto 0px; max-width: 1200px; position: relative; }
.hdcmpr_v2 .hdc_content .hdc_list[data-v-503c820a] { display: flex; min-height: 530px; }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left[data-v-503c820a] { margin: 48px 0px auto; min-width: 470px; }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .desc[data-v-503c820a] { color: rgb(102, 107, 117); font-size: 20px; margin-left: 24px; }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .title[data-v-503c820a] { color: rgb(31, 33, 38); font-size: 32px; font-weight: 600; margin-bottom: 28px; margin-left: 24px; margin-top: 5px; width: max-content; }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list[data-v-503c820a] { border-radius: 12px; cursor: pointer; display: flex; margin: 0px 6px 10px 0px; padding: 18px 0px; width: 432px; }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_text[data-v-503c820a] { width: 365px; }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_text .item_p1[data-v-503c820a] { color: rgb(53, 56, 64); font-size: 18px; }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_text .item_p2[data-v-503c820a] { color: rgb(102, 107, 117); display: none; font-size: 14px; line-height: 20px; margin-top: 8px; }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_icon[data-v-503c820a] { background-repeat: no-repeat; background-size: cover; height: 24px; margin-left: 24px; margin-right: 8px; width: 24px; }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_icon.item_icon_1_1[data-v-503c820a] { background-image: url('../img/d299875_bb9395f0.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_icon.item_icon_1_2[data-v-503c820a] { background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIyIDEySDNNMTYuNSAxMi40M2MwIDUuNTIyLTEuNzkgMTAtNCAxMHMtNC00LjQ3OC00LTEwYzAtNS41MjMgMS43OS0xMCA0LTEwczQgNC40NzcgNCAxMFoiIHN0cm9rZT0iIzFGMjEyNiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48cGF0aCBkPSJNMTIuNSAyMi40M2M1LjUyMyAwIDEwLTQuNDc4IDEwLTEwIDAtNS41MjMtNC40NzctMTAtMTAtMTBzLTEwIDQuNDc3LTEwIDEwYzAgNS41MjIgNC40NzcgMTAgMTAgMTBaIiBzdHJva2U9IiMxRjIxMjYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg=="); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_icon.item_icon_1_3[data-v-503c820a] { background-image: url('../img/f9dd180_8356ba3e.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_icon.item_icon_2_1[data-v-503c820a] { background-image: url('../img/f59beff_afbc3d55.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_icon.item_icon_2_2[data-v-503c820a] { background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIuMzEzIDkuOTgzYy4yOTQtLjI4LjU5Ny0uNTQ0LjkwOC0uNzkzIDUuNjEtNC41MDMgMTMuNzgzLTQuMjM5IDE5LjA5MS43OTMiIHN0cm9rZT0iIzMzMyIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48cGF0aCBkPSJNMTkuMzEzIDEzLjRjLTMuODY2LTMuODY3LTEwLjEzNC0zLjg2Ny0xNCAwTTE2LjMxMyAxNi42NTdhNS42NTcgNS42NTcgMCAwIDAtOCAwIiBzdHJva2U9IiMzMzMiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4zMTMgMjAuNWExLjI1IDEuMjUgMCAxIDAgMC0yLjUgMS4yNSAxLjI1IDAgMCAwIDAgMi41WiIgZmlsbD0iIzMzMyIvPjwvc3ZnPg=="); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_icon.item_icon_2_3[data-v-503c820a] { background-image: url('../img/c8b2228_03ee7f0d.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_icon.item_icon_3_1[data-v-503c820a] { background-image: url('../img/f25a23f_b6426197.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_icon.item_icon_3_2[data-v-503c820a] { background-image: url('../img/158e51a_9ec29c2b.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_icon.item_icon_3_3[data-v-503c820a] { background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTIyLjMxMyA3LTEwLTUtMTAgNXYxMGwxMCA1IDEwLTVWN1oiIHN0cm9rZT0iIzFGMjEyNiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0ibTIuMzEzIDcgMTAgNU0xMi4zMTMgMjJWMTJNMjIuMzEzIDdsLTEwIDVNMTcuMzEzIDQuNWwtMTAgNSIgc3Ryb2tlPSIjMUYyMTI2IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg=="); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_icon.item_icon_4_1[data-v-503c820a] { background-image: url('../img/40a2a4d_6347bf48.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_icon.item_icon_4_2[data-v-503c820a] { background-image: url('../img/926956a_c278f064.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list .item_icon.item_icon_4_3[data-v-503c820a] { background-image: url('../img/96a814f_4ab765cf.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active[data-v-503c820a] { background: linear-gradient(159.75deg, rgb(255, 255, 255) 20.04%, rgb(243, 244, 251) 97.38%); box-shadow: rgba(15, 83, 208, 0.15) 3px 3px 14px 0px, rgb(255, 255, 255) -0.64px 1.28px 0.44px 0px inset, rgb(218, 218, 218) -1.28px 0.64px 0.69px 0px inset; }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active .item_icon_1_1[data-v-503c820a] { background-image: url('../img/9c4a7ba_903891ef.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active .item_icon_1_2[data-v-503c820a] { background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIyLjM3IDEyaC0xOU0xNi44NyAxMmMwIDUuNTIzLTEuNzkgMTAtNCAxMC0yLjIwOSAwLTQtNC40NzctNC0xMHMxLjc5MS0xMCA0LTEwYzIuMjEgMCA0IDQuNDc3IDQgMTBaIiBzdHJva2U9IiMwMTc1RkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0iTTEyLjg3IDIyYzUuNTIzIDAgMTAtNC40NzcgMTAtMTBzLTQuNDc3LTEwLTEwLTEwLTEwIDQuNDc3LTEwIDEwIDQuNDc3IDEwIDEwIDEwWiIgc3Ryb2tlPSIjMDE3NUZGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4="); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active .item_icon_1_3[data-v-503c820a] { background-image: url('../img/7d221e1_3d66e6ba.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active .item_icon_2_1[data-v-503c820a] { background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE4LjgxMyA2YTIgMiAwIDEgMCAwLTQgMiAyIDAgMCAwIDAgNFpNNS44MTMgNmEyIDIgMCAxIDAgMC00IDIgMiAwIDAgMCAwIDRaTTEyLjMxMyAyMmEyIDIgMCAxIDAgMC00IDIgMiAwIDAgMCAwIDRaIiBzdHJva2U9IiMwMTc1RkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjxwYXRoIGQ9Ik01LjgxMyA2djEuNWMwIDMuNSA2LjUgNSA2LjUgOC41bTAgMHYybTAtMmMwLTMuNSA2LjUtNSA2LjUtOC41VjYiIHN0cm9rZT0iIzAxNzVGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4="); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active .item_icon_2_2[data-v-503c820a] { background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIuMzEzIDkuNDgzYy4yOTQtLjI4LjU5Ny0uNTQ0LjkwOC0uNzkzIDUuNjEtNC41MDMgMTMuNzgzLTQuMjM5IDE5LjA5MS43OTMiIHN0cm9rZT0iIzAxNzVGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48cGF0aCBkPSJNMTkuMzEzIDEyLjljLTMuODY2LTMuODY3LTEwLjEzNC0zLjg2Ny0xNCAwTTE2LjMxMyAxNi4xNTdhNS42NTcgNS42NTcgMCAwIDAtOCAwIiBzdHJva2U9IiMwMTc1RkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMi4zMTMgMjBhMS4yNSAxLjI1IDAgMSAwIDAtMi41IDEuMjUgMS4yNSAwIDAgMCAwIDIuNVoiIGZpbGw9IiMwMTc1RkYiLz48L3N2Zz4="); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active .item_icon_2_3[data-v-503c820a] { background-image: url('../img/327fff0_038d4d5f.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active .item_icon_3_1[data-v-503c820a] { background-image: url('../img/dfb3a4f_f2d0ff27.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active .item_icon_3_2[data-v-503c820a] { background-image: url('../img/bfd226c_ec59dc85.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active .item_icon_3_3[data-v-503c820a] { background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTIyLjMxMyA3LTEwLTUtMTAgNXYxMGwxMCA1IDEwLTVWN1oiIHN0cm9rZT0iIzAxNzVGRiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PHBhdGggZD0ibTIuMzEzIDcgMTAgNU0xMi4zMTMgMjJWMTJNMjIuMzEzIDdsLTEwIDVNMTcuMzEzIDQuNWwtMTAgNSIgc3Ryb2tlPSIjMDE3NUZGIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPjwvc3ZnPg=="); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active .item_icon_4_1[data-v-503c820a] { background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUuNTIgNC4yOTNBMSAxIDAgMCAxIDYuMjI3IDRoMTUuMDg1YTEgMSAwIDAgMSAxIDF2MTJhMSAxIDAgMCAxLTEgMWgtMWExIDEgMCAwIDAtMSAxIDEgMSAwIDAgMS0xIDFoLTNhMSAxIDAgMCAxLTEtMSAxIDEgMCAwIDAtMS0xaC0yYTEgMSAwIDAgMC0xIDEgMSAxIDAgMCAxLTEgMWgtM2ExIDEgMCAwIDEtMS0xIDEgMSAwIDAgMC0xLTFoLTFhMSAxIDAgMCAxLTEtMVY3LjkxNGExIDEgMCAwIDEgLjI5My0uNzA3TDUuNTIgNC4yOTNaIiBzdHJva2U9IiMwMTc1RkYiIHN0cm9rZS13aWR0aD0iMiIvPjxjaXJjbGUgY3g9IjE1LjgxMyIgY3k9IjExLjUiIHI9IjIuNSIgc3Ryb2tlPSIjMDE3NUZGIiBzdHJva2Utd2lkdGg9IjIiLz48cGF0aCBkPSJNNi4zMTMgMTBoMk02LjMxMyAxM2g0IiBzdHJva2U9IiMwMTc1RkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PC9zdmc+"); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active .item_icon_4_2[data-v-503c820a] { background-image: url('../img/665dbe7_02ed7cc6.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active .item_icon_4_3[data-v-503c820a] { background-image: url('../img/186352b_1eb426e5.svg'); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active .item_p2[data-v-503c820a] { display: block; }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .item_list.active .item_p1[data-v-503c820a] { color: rgb(1, 117, 255); }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .btn[data-v-503c820a] { align-items: center; background-color: rgb(0, 112, 249); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; display: flex; font-family: "PingFang SC"; font-size: 18px; font-weight: 600; height: 60px; justify-content: center; margin: 28px 0px 10px 24px; transition: background-color 0.3s; user-select: none; width: 180px; }
.hdcmpr_v2 .hdc_content .hdc_list .hdc_list_left .btn[data-v-503c820a]:hover { background-color: rgba(0, 112, 255, 0.8); }
.hdcmpr_v2 .hdc_content .hdc_list_right img[data-v-503c820a] { height: auto; opacity: 0; position: absolute; width: 730px; }
.hdcmpr_v2 .hdc_content .hdc_list_right.active img[data-v-503c820a] { opacity: 1; }
.regularFontCommon[data-v-6148ea9a] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-6148ea9a] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-6148ea9a] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-6148ea9a] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-6148ea9a]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-6148ea9a]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-6148ea9a] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-6148ea9a], .linkBtnCommon2[data-v-6148ea9a]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-6148ea9a]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-6148ea9a]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-6148ea9a] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-6148ea9a]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-6148ea9a]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-6148ea9a] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-6148ea9a]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-6148ea9a]:active { opacity: 1; }
.bannerBtnCommon[data-v-6148ea9a] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-6148ea9a]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-6148ea9a] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-6148ea9a]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-6148ea9a] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-6148ea9a]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-6148ea9a] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-6148ea9a]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-6148ea9a]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-6148ea9a] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-6148ea9a]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-6148ea9a] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-6148ea9a]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-6148ea9a]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-6148ea9a] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-6148ea9a] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-6148ea9a] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-6148ea9a] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-6148ea9a] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-6148ea9a] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-6148ea9a] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-6148ea9a] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-6148ea9a] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-6148ea9a] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-6148ea9a] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-6148ea9a] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-6148ea9a] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-6148ea9a] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-6148ea9a] { display: flex; }
.articleInfo .itemMarks .mark[data-v-6148ea9a] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-6148ea9a], .mask-leave-active[data-v-6148ea9a] { transition: opacity 0.3s; }
.mask-enter[data-v-6148ea9a], .mask-leave-to[data-v-6148ea9a] { opacity: 0; }
.common-enter-active[data-v-6148ea9a], .common-leave-active[data-v-6148ea9a] { transition: opacity 0.5s; }
.common-enter[data-v-6148ea9a], .common-leave-to[data-v-6148ea9a] { opacity: 0; }
.todeskFlex[data-v-6148ea9a] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-6148ea9a] { flex-direction: column; }
.todeskFlexCenter[data-v-6148ea9a] { align-items: center; }
.todeskFlexColCenter[data-v-6148ea9a] { justify-content: center; }
.td_brand[data-v-6148ea9a] { background: url('../img/2025062311173563834a73a1a9a4_edd3bf15.png') 50% center / cover no-repeat, rgb(1, 117, 255); display: flex; height: 410px; overflow: hidden; position: relative; width: 100%; }
.td_brand .content[data-v-6148ea9a] { align-items: center; display: flex; flex: 1 1 0%; }
.td_brand .content.todesk_content[data-v-6148ea9a] { justify-content: center; }
.td_brand .content .logo[data-v-6148ea9a] { align-items: center; display: flex; justify-content: center; }
.td_brand .content .logo span[data-v-6148ea9a] { align-items: center; color: rgb(255, 255, 255); display: flex; font-size: 50px; font-weight: 600; }
.td_brand .content .logo span.todesk[data-v-6148ea9a] { font-size: 55px; margin-right: 4px; margin-top: 4px; }
.td_brand .content .logo span.num[data-v-6148ea9a] { font-size: 62px; }
.td_brand .content .todesk-desc[data-v-6148ea9a] { color: rgb(255, 255, 255); font-size: 16px; margin-top: 10px; text-align: center; }
.td_brand .content .btns[data-v-6148ea9a] { align-items: center; display: flex; justify-content: center; margin-top: 46px; }
.td_brand .content .btns .btn[data-v-6148ea9a] { align-items: center; background-color: rgb(255, 255, 255); border: 1px solid transparent; border-radius: 14px; box-sizing: border-box; color: rgb(1, 117, 255); display: flex; height: 70px; justify-content: center; position: relative; text-decoration: none; }
.td_brand .content .btns .btn img[data-v-6148ea9a] { height: 30px; margin-right: 8px; width: auto; }
.td_brand .content .btns .btn img.web_tip[data-v-6148ea9a] { height: 21px; position: absolute; right: -20px; top: -10px; }
.td_brand .content .btns .btn.buy_btn[data-v-6148ea9a] { border: 1px solid rgb(0, 90, 217); font-size: 20px; font-weight: 600; width: 226px; }
.td_brand .content .btns .btn.buy_btn[data-v-6148ea9a]:hover { background: rgba(255, 255, 255, 0.898); }
.td_brand .content .btns .btn.buy_btn[data-v-6148ea9a]:active { background: rgba(255, 255, 255, 0.7); }
.td_brand .content .btns .btn.download_btn[data-v-6148ea9a] { background: rgba(0, 6, 38, 0.1); border: 1px solid rgb(122, 195, 255); color: rgb(255, 255, 255); font-size: 20px; font-weight: 600; margin-left: 32px; width: 226px; }
.td_brand .content .btns .btn.download_btn[data-v-6148ea9a]:hover { background: rgba(0, 6, 38, 0.18); }
.td_brand .content .btns .btn.download_btn[data-v-6148ea9a]:active { background: rgba(0, 6, 38, 0.08); }
.regularFontCommon[data-v-d10a0444] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-d10a0444] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-d10a0444] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-d10a0444] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-d10a0444]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-d10a0444]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-d10a0444] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-d10a0444], .linkBtnCommon2[data-v-d10a0444]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-d10a0444]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-d10a0444]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-d10a0444] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-d10a0444]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-d10a0444]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-d10a0444] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-d10a0444]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-d10a0444]:active { opacity: 1; }
.bannerBtnCommon[data-v-d10a0444] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-d10a0444]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-d10a0444] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-d10a0444]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-d10a0444] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-d10a0444]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-d10a0444] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-d10a0444]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-d10a0444]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-d10a0444] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-d10a0444]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-d10a0444] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-d10a0444]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-d10a0444]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-d10a0444] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-d10a0444] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-d10a0444] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-d10a0444] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-d10a0444] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-d10a0444] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-d10a0444] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-d10a0444] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-d10a0444] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-d10a0444] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-d10a0444] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-d10a0444] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-d10a0444] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-d10a0444] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-d10a0444] { display: flex; }
.articleInfo .itemMarks .mark[data-v-d10a0444] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-d10a0444], .mask-leave-active[data-v-d10a0444] { transition: opacity 0.3s; }
.mask-enter[data-v-d10a0444], .mask-leave-to[data-v-d10a0444] { opacity: 0; }
.common-enter-active[data-v-d10a0444], .common-leave-active[data-v-d10a0444] { transition: opacity 0.5s; }
.common-enter[data-v-d10a0444], .common-leave-to[data-v-d10a0444] { opacity: 0; }
.todeskFlex[data-v-d10a0444] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-d10a0444] { flex-direction: column; }
.todeskFlexCenter[data-v-d10a0444] { align-items: center; }
.todeskFlexColCenter[data-v-d10a0444] { justify-content: center; }
.solution_content[data-v-d10a0444] { height: 100%; padding-bottom: 90px; position: relative; width: 100%; z-index: 1; }
.solution_content .title[data-v-d10a0444] { color: rgb(31, 33, 38); font-size: 42px; font-weight: 500; padding-top: 90px; text-align: center; }
.solution_content .content_wrap[data-v-d10a0444] { display: flex; justify-content: center; margin: 40px auto 0px; max-width: 1200px; }
.solution_content .content_wrap.scenarios[data-v-d10a0444] { flex-flow: wrap; justify-content: center; }
.solution_content .content_wrap .left1[data-v-d10a0444] { border: 1px solid rgb(232, 233, 237); border-radius: 30px; box-sizing: border-box; height: 415px; padding: 34px 34px 40px; width: 100%; }
.solution_content .content_wrap .left1 .left_content[data-v-d10a0444] { min-height: 264px; }
.solution_content .content_wrap .left1 .left1_title[data-v-d10a0444] { align-items: center; display: flex; }
.solution_content .content_wrap .left1 .left1_title span[data-v-d10a0444] { color: rgb(31, 33, 38); font-size: 24px; font-weight: 600; }
.solution_content .content_wrap .left1 .left1_title img[data-v-d10a0444] { height: 23px; margin-left: 6px; width: auto; }
.solution_content .content_wrap .left1 .left1_p[data-v-d10a0444] { color: rgb(102, 107, 117); font-size: 14px; line-height: 20px; }
.solution_content .content_wrap .left1 .left1_list[data-v-d10a0444] { margin-top: 26px; }
.solution_content .content_wrap .left1 .left1_list .left1_list_item[data-v-d10a0444] { display: flex; margin-bottom: 12px; }
.solution_content .content_wrap .left1 .left1_list .left1_list_item img[data-v-d10a0444] { height: 9px; margin-right: 6px; margin-top: 6px; width: auto; }
.solution_content .content_wrap .left1 .left1_list .left1_list_item p[data-v-d10a0444] { color: rgb(53, 56, 64); font-size: 16px; }
.solution_content .content_wrap .left1 .btn_content[data-v-d10a0444] { display: flex; margin-top: 24px; }
.solution_content .content_wrap .left1 .btn_content .btn[data-v-d10a0444] { border-radius: 12px; cursor: pointer; font-size: 18px; font-weight: 600; height: 48px; line-height: 48px; text-align: center; width: 200px; }
.solution_content .content_wrap .left1 .btn_content .btn[data-v-d10a0444]:hover { opacity: 0.8; }
.solution_content .content_wrap .left1 .btn_content .btn[data-v-d10a0444]:active { opacity: 0.9; }
.solution_content .content_wrap .left1 .btn_content .trial[data-v-d10a0444] { background: rgb(31, 33, 38); border: 1px solid rgb(31, 33, 38); color: rgb(255, 255, 255); margin-right: 20px; }
.solution_content .content_wrap .left1 .btn_content .more[data-v-d10a0444] { background: rgb(255, 255, 255); border: 1px solid rgb(198, 200, 207); color: rgb(31, 33, 38); }
.solution_content .content_wrap .left1.left_back_0[data-v-d10a0444] { background: linear-gradient(rgb(243, 255, 246), rgb(254, 255, 254) 22.17%); }
.solution_content .content_wrap .left1.left_back_1[data-v-d10a0444] { background: linear-gradient(rgb(255, 242, 231), rgb(254, 255, 254) 22.17%); }
.solution_content .content_wrap .left1.left_back_2[data-v-d10a0444] { background: linear-gradient(rgb(242, 249, 255), rgb(254, 255, 254) 22.17%); }
.solution_content .content_wrap .left1.left_back_3[data-v-d10a0444] { background: linear-gradient(rgb(242, 235, 255), rgb(254, 255, 254) 22.17%); }
.solution_content .content_wrap .item_lists[data-v-d10a0444] { display: flex; margin-right: 16px; margin-top: 24px; }
.solution_content .content_wrap .item_lists[data-v-d10a0444]:last-child { margin-right: 0px; }
.solution_content .content_wrap .item_lists .item_current[data-v-d10a0444] { background-repeat: no-repeat; background-size: cover; border-radius: 30px; box-sizing: border-box; cursor: pointer; height: 415px; overflow: hidden; padding: 28px; position: relative; width: 100%; }
.solution_content .content_wrap .item_lists .item_current .item_current_p[data-v-d10a0444] { color: rgb(255, 255, 255); font-size: 24px; font-weight: 600; }
.solution_content .content_wrap .item_lists .item_current .item_current_p1[data-v-d10a0444] { color: rgb(255, 255, 255); font-size: 16px; margin-top: 17px; }
.solution_content .content_wrap .content_item[data-v-d10a0444] { align-items: center; display: flex; overflow: hidden; transition: 0.3s; width: 220px; }
.solution_content .content_wrap .content_item.active[data-v-d10a0444] { transition: 0.3s; width: 486px; }
.td_brand[data-v-d10a0444] { background: linear-gradient(319.06deg, rgba(255, 255, 255, 0) 26.23%, rgb(255, 255, 255) 79.69%); min-height: 1038px; position: relative; width: 100%; }
.td_brand .ace_bg[data-v-d10a0444] { bottom: 0px; display: flex; height: 100%; justify-content: center; overflow: hidden; position: absolute; width: 100%; }
.td_brand .ace_bg img[data-v-d10a0444] { display: block; height: 100%; width: 100%; }
.td_brand .ace_content[data-v-d10a0444] { height: 100%; padding-bottom: 80px; position: relative; width: 100%; z-index: 1; }
.td_brand .ace_content .title[data-v-d10a0444] { color: rgb(31, 33, 38); font-size: 42px; font-weight: 500; padding-top: 80px; text-align: center; }
.td_brand .ace_content .content_wrap[data-v-d10a0444] { display: flex; flex-flow: wrap; justify-content: center; margin: auto; max-width: 1200px; }
.td_brand .ace_content .content_wrap .pd_item[data-v-d10a0444] { background: rgb(255, 255, 255); border: 0.5px solid rgba(0, 4, 5, 0.15); border-radius: 18px; box-shadow: rgba(118, 134, 165, 0.1) 10px 15px 20px 0px; box-sizing: border-box; height: 609px; margin-top: 80px; overflow: hidden; width: 383px; }
.td_brand .ace_content .content_wrap .pd_item .pd_top[data-v-d10a0444] { box-sizing: border-box; height: 143px; overflow: hidden; padding-left: 24px; padding-top: 20px; position: relative; }
.td_brand .ace_content .content_wrap .pd_item .pd_top .pd_btn[data-v-d10a0444] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); cursor: pointer; display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; position: absolute; right: 24px; text-align: center; top: 30px; width: 100px; }
.td_brand .ace_content .content_wrap .pd_item .pd_top .pd_btn[data-v-d10a0444]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.td_brand .ace_content .content_wrap .pd_item .pd_top .pd_logo[data-v-d10a0444] { height: 60px; width: 60px; }
.td_brand .ace_content .content_wrap .pd_item .pd_top .pd_item_title[data-v-d10a0444] { color: rgb(255, 255, 255); font-size: 16px; font-weight: 600; line-height: 28px; margin-top: 5px; }
.td_brand .ace_content .content_wrap .pd_item .pd_top .pd_item_title .tip_desc[data-v-d10a0444] { border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 4px; color: rgb(255, 255, 255); font-size: 12px; font-weight: 400; margin-left: 8px; padding: 4px 8px; }
.td_brand .ace_content .content_wrap .pd_item .pd_top .pd_item_desc[data-v-d10a0444] { color: rgba(255, 255, 255, 0.6); font-size: 12px; font-weight: 400; padding-top: 3px; }
.td_brand .ace_content .content_wrap .pd_item[data-v-d10a0444]:nth-of-type(2) { margin-left: 22px; margin-right: 22px; }
.td_brand .ace_content .content_wrap .pd_list[data-v-d10a0444] { background: rgb(255, 255, 255); border-top-left-radius: 14px; border-top-right-radius: 14px; height: auto; margin-top: -14px; overflow: hidden; position: relative; width: 100%; }
.td_brand .ace_content .content_wrap .pd_content[data-v-d10a0444] { border-bottom: 1px solid rgb(255, 255, 255); box-sizing: border-box; cursor: pointer; height: auto; width: 100%; }
.td_brand .ace_content .content_wrap .pd_content .list_item[data-v-d10a0444] { display: flex; justify-self: auto; padding: 30px 16px; transition: 0.3s; }
.td_brand .ace_content .content_wrap .pd_content .list_item.list_item_0[data-v-d10a0444] { padding: 30px 16px; }
.td_brand .ace_content .content_wrap .pd_content .list_item .pd_icon[data-v-d10a0444] { height: 28px; margin-right: 12px; width: 28px; }
.td_brand .ace_content .content_wrap .pd_content .list_item .pd_text[data-v-d10a0444] { width: 280px; }
.td_brand .ace_content .content_wrap .pd_content .list_item .pd_text .pd_item_title[data-v-d10a0444] { align-items: center; display: flex; height: 28px; width: auto; }
.td_brand .ace_content .content_wrap .pd_content .list_item .pd_text .pd_item_title .item_title[data-v-d10a0444] { color: rgb(0, 4, 5); font-size: 20px; font-weight: 600; line-height: 28px; }
.td_brand .ace_content .content_wrap .pd_content .list_item .pd_text .pd_item_title .tip[data-v-d10a0444] { background: rgb(235, 247, 255); color: rgb(1, 117, 255); font-size: 14px; margin-left: 10px; min-height: 16px; min-width: 44px; padding: 1px 4px; }
.td_brand .ace_content .content_wrap .pd_content .list_item .pd_text .pd_item_desc_list[data-v-d10a0444] { display: flex; flex-flow: wrap; }
.td_brand .ace_content .content_wrap .pd_content .list_item .pd_text .pd_item_desc_list .desc[data-v-d10a0444] { border: 1px solid rgba(0, 4, 5, 0.08); border-radius: 4px; box-sizing: border-box; color: rgb(84, 88, 97); font-size: 12px; margin-right: 6px; margin-top: 5px; padding: 2px 6px; }
.td_brand .ace_content .content_wrap .pd_content .list_item .arrow[data-v-d10a0444] { display: none; height: auto; transition: opacity 0.3s; width: 20px; }
.td_brand .ace_content .content_wrap .pd_content[data-v-d10a0444]:hover { background: linear-gradient(270deg, rgb(255, 255, 255), rgb(240, 251, 255) 100%); border-bottom: 1px solid rgba(0, 4, 5, 0.08); }
.td_brand .ace_content .content_wrap .pd_content:hover .arrow[data-v-d10a0444] { display: block; opacity: 1; }
.td_brand .ace_content .content_wrap .pd_content:hover .list_item[data-v-d10a0444] { padding: 38px 16px; transition: 0.3s; }
.td_brand .ace_content .content_wrap .pd_content:hover .list_item.list_item_0[data-v-d10a0444] { padding: 38px 16px; }
.regularFontCommon[data-v-9070fb98] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-9070fb98] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-9070fb98] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-9070fb98] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-9070fb98]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-9070fb98]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-9070fb98] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-9070fb98], .linkBtnCommon2[data-v-9070fb98]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-9070fb98]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-9070fb98]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-9070fb98] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-9070fb98]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-9070fb98]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-9070fb98] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-9070fb98]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-9070fb98]:active { opacity: 1; }
.bannerBtnCommon[data-v-9070fb98] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-9070fb98]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-9070fb98] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-9070fb98]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-9070fb98] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-9070fb98]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-9070fb98] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-9070fb98]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-9070fb98]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-9070fb98] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-9070fb98]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-9070fb98] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-9070fb98]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-9070fb98]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-9070fb98] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-9070fb98] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-9070fb98] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-9070fb98] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-9070fb98] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-9070fb98] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-9070fb98] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-9070fb98] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-9070fb98] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-9070fb98] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-9070fb98] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-9070fb98] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-9070fb98] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-9070fb98] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-9070fb98] { display: flex; }
.articleInfo .itemMarks .mark[data-v-9070fb98] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-9070fb98], .mask-leave-active[data-v-9070fb98] { transition: opacity 0.3s; }
.mask-enter[data-v-9070fb98], .mask-leave-to[data-v-9070fb98] { opacity: 0; }
.common-enter-active[data-v-9070fb98], .common-leave-active[data-v-9070fb98] { transition: opacity 0.5s; }
.common-enter[data-v-9070fb98], .common-leave-to[data-v-9070fb98] { opacity: 0; }
.todeskFlex[data-v-9070fb98] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-9070fb98] { flex-direction: column; }
.todeskFlexCenter[data-v-9070fb98] { align-items: center; }
.todeskFlexColCenter[data-v-9070fb98] { justify-content: center; }
.brand[data-v-9070fb98] { background: linear-gradient(rgb(255, 255, 255), rgb(252, 254, 255)); box-sizing: border-box; min-height: 744px; overflow: hidden; padding: 120px 0px; position: relative; width: 100%; }
.brand .container[data-v-9070fb98] { margin: 0px auto; max-width: 1200px; }
.brand .title[data-v-9070fb98] { color: rgb(32, 32, 32); font-family: "PingFang SC"; font-size: 42px; font-weight: 600; margin: 0px auto; text-align: center; }
.brand .content[data-v-9070fb98] { display: flex; justify-content: space-between; margin: 36px auto 0px; max-width: 1200px; position: relative; }
.brand .content img[data-v-9070fb98] { display: block; height: auto; width: 1200px; }
.brand .description[data-v-9070fb98] { margin: 2px auto 36px; text-align: center; }
.brand .description .protext[data-v-9070fb98] { color: rgb(58, 58, 58); font-size: 30px; font-weight: 600; }
.brand .description .protext span[data-v-9070fb98] { opacity: 0.5; }
.brand .description .protext .text[data-v-9070fb98] { opacity: 1; }
.brand .dataList[data-v-9070fb98] { align-items: center; display: flex; justify-content: space-between; margin: 0px auto; max-width: 933px; }
.brand .dataList .dataItem[data-v-9070fb98] { align-items: center; display: flex; flex-direction: column; }
.brand .dataList .dataItem .dataName[data-v-9070fb98] { color: rgb(84, 88, 97); font-size: 18px; text-align: center; }
.brand .dataList .dataItem .dataContent[data-v-9070fb98] { align-items: center; display: flex; gap: 8px; }
.brand .dataList .dataItem .dataValue[data-v-9070fb98] { -webkit-text-fill-color: transparent; background: linear-gradient(0deg, rgb(33, 201, 61) 21.62%, rgb(0, 173, 164) 92.57%) text; font-weight: 600; }
.brand .dataList .dataItem .dataValue .value[data-v-9070fb98] { font-size: 66px; }
.brand .dataList .dataItem .dataValue .value1[data-v-9070fb98] { font-size: 40px; }
.brand .dataList .dataItem .icon[data-v-9070fb98] { height: 27px; position: relative; width: 27px; }
.regularFontCommon[data-v-9938ad3e] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-9938ad3e] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-9938ad3e] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-9938ad3e] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-9938ad3e]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-9938ad3e]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-9938ad3e] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-9938ad3e], .linkBtnCommon2[data-v-9938ad3e]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-9938ad3e]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-9938ad3e]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-9938ad3e] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-9938ad3e]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-9938ad3e]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-9938ad3e] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-9938ad3e]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-9938ad3e]:active { opacity: 1; }
.bannerBtnCommon[data-v-9938ad3e] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-9938ad3e]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-9938ad3e] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-9938ad3e]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-9938ad3e] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-9938ad3e]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-9938ad3e] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-9938ad3e]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-9938ad3e]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-9938ad3e] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-9938ad3e]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-9938ad3e] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-9938ad3e]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-9938ad3e]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-9938ad3e] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-9938ad3e] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-9938ad3e] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-9938ad3e] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-9938ad3e] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-9938ad3e] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-9938ad3e] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-9938ad3e] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-9938ad3e] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-9938ad3e] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-9938ad3e] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-9938ad3e] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-9938ad3e] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-9938ad3e] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-9938ad3e] { display: flex; }
.articleInfo .itemMarks .mark[data-v-9938ad3e] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-9938ad3e], .mask-leave-active[data-v-9938ad3e] { transition: opacity 0.3s; }
.mask-enter[data-v-9938ad3e], .mask-leave-to[data-v-9938ad3e] { opacity: 0; }
.common-enter-active[data-v-9938ad3e], .common-leave-active[data-v-9938ad3e] { transition: opacity 0.5s; }
.common-enter[data-v-9938ad3e], .common-leave-to[data-v-9938ad3e] { opacity: 0; }
.todeskFlex[data-v-9938ad3e] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-9938ad3e] { flex-direction: column; }
.todeskFlexCenter[data-v-9938ad3e] { align-items: center; }
.todeskFlexColCenter[data-v-9938ad3e] { justify-content: center; }
.compatible-wrap[data-v-9938ad3e] { background: rgb(255, 255, 255); overflow: hidden; position: relative; width: 100%; }
.compatible-wrap .compatible-title[data-v-9938ad3e] { overflow-x: auto; width: 100%; }
.compatible-wrap .title[data-v-9938ad3e] { color: rgb(31, 33, 38); display: flex; font-family: "PingFang SC"; font-size: 60px; font-weight: 600; justify-content: center; line-height: 84px; padding-top: 80px; }
.compatible-wrap .title .title1[data-v-9938ad3e] { -webkit-text-fill-color: transparent; background: linear-gradient(90.51deg, rgb(1, 117, 255) 17.79%, rgb(22, 1, 255) 34.82%) text; }
.compatible-wrap .terminal-list[data-v-9938ad3e] { align-items: center; display: flex; justify-content: center; margin: 36px auto 0px; overflow-x: auto; padding: 0px 24px; width: max-content; }
.compatible-wrap .terminal-list .terminal-item[data-v-9938ad3e] { margin-right: 34px; }
.compatible-wrap .terminal-list .terminal-item[data-v-9938ad3e]:last-of-type { margin-right: 0px; }
.compatible-wrap .terminal-list .terminal-item .img-wrap[data-v-9938ad3e] { align-items: center; display: flex; height: 239px; justify-content: center; }
@media screen and (max-width: 1600px) {
  .compatible-wrap .terminal-list .terminal-item .img-wrap[data-v-9938ad3e] { height: 160px; }
}
.compatible-wrap .terminal-list .terminal-item .img-wrap img[data-v-9938ad3e] { display: block; height: 100%; width: auto; }
.compatible-wrap .terminal-list .terminal-item .terminal-name[data-v-9938ad3e] { color: rgb(0, 0, 0); font-size: 18px; font-weight: 400; letter-spacing: 0px; line-height: 28.03px; text-align: center; }
.container_section[data-v-9938ad3e] { background: linear-gradient(rgb(0, 27, 50) 16.25%, rgb(12, 12, 12) 70.39%); margin-top: 113px; min-height: 764px; position: relative; width: 100%; }
.container_section .compatible-back[data-v-9938ad3e] { height: 60px; position: absolute; width: 100%; }
.container_section .compatible-back svg[data-v-9938ad3e] { width: 100%; }
.container_section .content-wrap-text[data-v-9938ad3e] { padding-top: 80px; position: relative; z-index: 2; }
.container_section .content-wrap-text h3[data-v-9938ad3e] { -webkit-text-fill-color: transparent; background: linear-gradient(270deg, rgb(229, 230, 235) 61.56%, rgb(40, 53, 64) 134.82%) text; font-size: 50px; font-style: normal; font-weight: 600; line-height: normal; text-align: center; }
.container_section .content-wrap-text .compatible_txt[data-v-9938ad3e] { cursor: pointer; margin: 20px auto 6px; text-align: center; }
.container_section .content-wrap-text .compatible_txt span[data-v-9938ad3e] { color: rgb(64, 84, 103); font-size: 24px; font-style: normal; font-weight: 500; letter-spacing: 1px; line-height: normal; max-width: 840px; }
.container_section .content-wrap-text .compatible_txt span.active[data-v-9938ad3e] { color: rgb(242, 244, 247); }
.container_section .container[data-v-9938ad3e] { margin: 40px 0px 0px; overflow: hidden; position: relative; }
.container_section .carousel[data-v-9938ad3e], .container_section .container[data-v-9938ad3e] { align-items: center; display: flex; justify-content: center; min-height: 445px; width: 100vw; }
.container_section .carousel[data-v-9938ad3e] { position: absolute; }
.container_section .cbcn-fullfocusportrait-image[data-v-9938ad3e] { left: 50%; opacity: 0; position: absolute; top: 50%; transform: translate(-50%, -50%) scale(0.7); transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1; }
.container_section .cbcn-fullfocusportrait-image.center[data-v-9938ad3e] { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1) rotateY(0deg); z-index: 5; }
.container_section .cbcn-fullfocusportrait-image.left1[data-v-9938ad3e] { opacity: 0.3; transform: translate(-134%, -50%) scale(0.8) rotateY(30deg); z-index: 4; }
.container_section .cbcn-fullfocusportrait-image.left2[data-v-9938ad3e] { opacity: 0.3; transform: translate(-190%, -50%) scale(0.6) rotateY(45deg); z-index: 3; }
.container_section .cbcn-fullfocusportrait-image.right1[data-v-9938ad3e] { opacity: 0.3; transform: translate(34%, -50%) scale(0.8) rotateY(-30deg); z-index: 4; }
.container_section .cbcn-fullfocusportrait-image.right2[data-v-9938ad3e] { opacity: 0.3; transform: translate(94%, -50%) scale(0.6) rotateY(-45deg); z-index: 3; }
.container_section .cbcn-fullfocusportrait-image.hidden[data-v-9938ad3e] { opacity: 0; z-index: 1; }
.container_section .cbcn-fullfocusportrait-image .mask[data-v-9938ad3e] { background: rgba(0, 0, 0, 0.2); border-radius: 16px; inset: 0px; height: 100%; position: absolute; width: 100%; z-index: 10; }
.container_section .cover[data-v-9938ad3e] { border-radius: 16px; box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 32px; height: 445px; object-fit: cover; width: auto; }
.regularFontCommon[data-v-170d42bc] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-170d42bc] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-170d42bc] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-170d42bc] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-170d42bc]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-170d42bc]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-170d42bc] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-170d42bc], .linkBtnCommon2[data-v-170d42bc]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-170d42bc]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-170d42bc]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-170d42bc] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-170d42bc]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-170d42bc]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-170d42bc] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-170d42bc]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-170d42bc]:active { opacity: 1; }
.bannerBtnCommon[data-v-170d42bc] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-170d42bc]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-170d42bc] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-170d42bc]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-170d42bc] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-170d42bc]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-170d42bc] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-170d42bc]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-170d42bc]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-170d42bc] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-170d42bc]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-170d42bc] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-170d42bc]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-170d42bc]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-170d42bc] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-170d42bc] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-170d42bc] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-170d42bc] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-170d42bc] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-170d42bc] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-170d42bc] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-170d42bc] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-170d42bc] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-170d42bc] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-170d42bc] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-170d42bc] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-170d42bc] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-170d42bc] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-170d42bc] { display: flex; }
.articleInfo .itemMarks .mark[data-v-170d42bc] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-170d42bc], .mask-leave-active[data-v-170d42bc] { transition: opacity 0.3s; }
.mask-enter[data-v-170d42bc], .mask-leave-to[data-v-170d42bc] { opacity: 0; }
.common-enter-active[data-v-170d42bc], .common-leave-active[data-v-170d42bc] { transition: opacity 0.5s; }
.common-enter[data-v-170d42bc], .common-leave-to[data-v-170d42bc] { opacity: 0; }
.todeskFlex[data-v-170d42bc] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-170d42bc] { flex-direction: column; }
.todeskFlexCenter[data-v-170d42bc] { align-items: center; }
.todeskFlexColCenter[data-v-170d42bc] { justify-content: center; }
.brand[data-v-170d42bc] { background: rgb(255, 255, 255); position: relative; width: 100%; }
.brand .content[data-v-170d42bc] { margin: 0px auto; width: 100%; }
.brand .content img[data-v-170d42bc] { cursor: pointer; display: block; margin: 0px auto; }
.regularFontCommon[data-v-530378a2] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-530378a2] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-530378a2] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-530378a2] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-530378a2]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-530378a2]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-530378a2] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-530378a2], .linkBtnCommon2[data-v-530378a2]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-530378a2]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-530378a2]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-530378a2] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-530378a2]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-530378a2]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-530378a2] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-530378a2]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-530378a2]:active { opacity: 1; }
.bannerBtnCommon[data-v-530378a2] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-530378a2]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-530378a2] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-530378a2]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-530378a2] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-530378a2]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-530378a2] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-530378a2]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-530378a2]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-530378a2] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-530378a2]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-530378a2] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-530378a2]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-530378a2]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-530378a2] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-530378a2] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-530378a2] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-530378a2] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-530378a2] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-530378a2] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-530378a2] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-530378a2] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-530378a2] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-530378a2] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-530378a2] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-530378a2] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-530378a2] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-530378a2] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-530378a2] { display: flex; }
.articleInfo .itemMarks .mark[data-v-530378a2] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-530378a2], .mask-leave-active[data-v-530378a2] { transition: opacity 0.3s; }
.mask-enter[data-v-530378a2], .mask-leave-to[data-v-530378a2] { opacity: 0; }
.common-enter-active[data-v-530378a2], .common-leave-active[data-v-530378a2] { transition: opacity 0.5s; }
.common-enter[data-v-530378a2], .common-leave-to[data-v-530378a2] { opacity: 0; }
.todeskFlex[data-v-530378a2] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-530378a2] { flex-direction: column; }
.todeskFlexCenter[data-v-530378a2] { align-items: center; }
.todeskFlexColCenter[data-v-530378a2] { justify-content: center; }
.hdcmpr[data-v-530378a2] { background-color: rgb(41, 48, 58); padding-bottom: 80px; padding-top: 60px; }
.hdcmpr .hc_title[data-v-530378a2] { color: rgb(255, 255, 255); font-family: PingFangSC-Semibold, "PingFang SC"; font-size: 34px; font-weight: 600; text-align: center; }
.hdcmpr .hc_subtitle[data-v-530378a2] { color: rgb(255, 255, 255); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; margin-top: 8px; text-align: center; }
.hdcmpr .vdio_bx[data-v-530378a2] { cursor: pointer; height: 100%; margin: 30px auto auto; max-width: 1200px; overflow: hidden; position: relative; width: 100%; }
.hdcmpr .vdio_bx .hc_bdr[data-v-530378a2] { box-sizing: border-box; }
.hdcmpr .vdio_bx .drag_bdr[data-v-530378a2] { left: 0px; overflow: hidden; position: absolute; top: 0px; width: 0px; }
.hdcmpr .vdio_bx .bdr[data-v-530378a2] { border: 4px solid rgb(1, 110, 253); box-sizing: border-box; height: 100%; left: 0px; position: absolute; top: 0px; width: 0px; }
.hdcmpr .vdio_bx .bdr .bdr_video[data-v-530378a2] { display: block; height: 100%; width: auto; }
.hdcmpr .vdio_bx .bdr .drag_unit[data-v-530378a2] { cursor: pointer; height: 64px; position: absolute; right: -34px; top: calc(50% - 32px); width: 64px; }
.hdcmpr .vdio_bx .bdr .drag_icon[data-v-530378a2] { height: 100%; width: 100%; }
.hdcmpr .vdio_bx .bdr .drag_icon_bx[data-v-530378a2] { border-radius: 50%; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }
.hdcmpr .vdio_bx .bdr.change[data-v-530378a2], .hdcmpr .vdio_bx .drag_bdr.change[data-v-530378a2] { transition: width 2s; width: 50%; }
.hdcmpr .hc_video[data-v-530378a2] { display: block; height: auto; width: 100%; }
.v_desc[data-v-530378a2] { background-color: rgb(255, 255, 255); padding-bottom: 80px; padding-top: 80px; }
.v_desc .vd_tabs[data-v-530378a2] { border-bottom: 2px solid rgb(235, 237, 240); display: flex; justify-content: center; margin: auto; max-width: 1144px; width: 100%; }
.v_desc .vd_tabs .vd_tab_item[data-v-530378a2] { border-bottom: 4px solid transparent; cursor: pointer; display: flex; justify-content: center; margin-bottom: -3px; margin-left: 25px; margin-right: 25px; padding-bottom: 27px; padding-top: 13px; width: 152px; }
.v_desc .vd_tabs .vd_tab_item img[data-v-530378a2] { height: 34px; margin-right: 8px; width: 34px; }
.v_desc .vd_tabs .vd_tab_item span[data-v-530378a2] { color: rgb(38, 39, 41); font-size: 24px; }
.v_desc .vd_tabs .vd_tab_item.active[data-v-530378a2] { border-color: rgb(11, 128, 254); }
.v_desc .vd_tabs .vd_tab_item.active span[data-v-530378a2] { color: rgb(11, 128, 254); }
.v_desc .vd_video_bx[data-v-530378a2] { align-items: center; display: flex; flex-flow: wrap; justify-content: center; margin: 20px auto auto; max-width: 1144px; width: 100%; }
.v_desc .vd_video_bx .vd_video[data-v-530378a2] { flex: 1 1 0%; height: auto; }
.v_desc .vd_video_bx .vd_video video[data-v-530378a2] { min-width: 600px; width: 100%; }
.v_desc .vd_video_bx .hc_desc[data-v-530378a2] { padding-left: 30px; text-align: left; width: 350px; }
.v_desc .vd_video_bx .hc_desc .hc_desc_title[data-v-530378a2] { color: rgb(39, 39, 39); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 43px; }
.v_desc .vd_video_bx .hc_desc .hc_desc_info[data-v-530378a2] { color: rgb(39, 39, 39); font-family: PingFangSC-Semibold, "PingFang SC"; font-size: 38px; font-weight: 600; line-height: 60px; }
.v_desc .vd_video_bx .hc_desc .hc_desc_info .t1[data-v-530378a2] { color: rgb(39, 39, 39); }
.v_desc .vd_video_bx .hc_desc .hc_desc_info .t2[data-v-530378a2] { color: rgb(11, 128, 254); }
.points[data-v-530378a2] { background-color: rgb(255, 255, 255); overflow: hidden; position: relative; z-index: 1; }
.points .pns_bkg1[data-v-530378a2] { max-width: 620px; right: 0px; top: -62px; }
.points .pns_bkg1[data-v-530378a2], .points .pns_bkg2[data-v-530378a2] { height: auto; position: absolute; z-index: -1; }
.points .pns_bkg2[data-v-530378a2] { bottom: 228px; left: 0px; max-width: 612px; }
@media screen and (max-width: 2000px) {
  .points .pns_bkg1[data-v-530378a2], .points .pns_bkg2[data-v-530378a2] { width: calc(-600px + 50vw); }
}
.points .ftr_bx[data-v-530378a2] { align-items: center; display: flex; flex-flow: wrap; justify-content: center; margin: auto; width: 100%; }
.points .ftr_info[data-v-530378a2] { width: 582px; }
.points .ftr_title[data-v-530378a2] { color: rgb(19, 19, 20); font-family: PingFangSC-Semibold, "PingFang SC"; font-size: 38px; font-weight: 600; line-height: 56px; }
.points .ftr_title .ftr_t1[data-v-530378a2] { color: rgb(1, 110, 253); }
.points .ftr_desc[data-v-530378a2]:first-of-type { margin-bottom: 20px; margin-top: 44px; }
.points .ftr_desc[data-v-530378a2] { color: rgb(116, 119, 122); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; letter-spacing: 1.2px; line-height: 34px; }
.points .feature1 .ftr_info[data-v-530378a2] { margin-right: 107px; }
.points .feature1 .ftr_pic[data-v-530378a2] { height: auto; width: 458px; }
.points .feature1[data-v-530378a2] { padding-top: 62px; }
.points .feature2[data-v-530378a2] { margin-top: 160px; }
.points .feature2 .ftr_pic[data-v-530378a2] { height: auto; margin-right: 120px; width: 456px; }
.points .neting[data-v-530378a2] { background: none; padding-bottom: 100px; padding-top: 160px; }
.points .net_title[data-v-530378a2] { color: rgb(19, 19, 20); font-family: PingFangSC-Semibold, "PingFang SC"; font-size: 34px; font-weight: 600; text-align: center; }
.points .net_cpr[data-v-530378a2] { display: flex; flex-flow: wrap; justify-content: center; margin-top: 34px; }
.points .net_bx[data-v-530378a2] { border-radius: 12px; box-sizing: border-box; margin-left: 25px; margin-right: 25px; max-width: 574px; padding: 53px 30px 20px; text-align: center; }
.points .cpr_title[data-v-530378a2] { color: rgb(27, 35, 44); font-family: PingFangSC-Medium, "PingFang SC"; font-size: 24px; font-weight: 500; text-align: center; }
.points .cpr_title .cpr_t1[data-v-530378a2] { color: rgb(1, 110, 253); }
.points .cpr_desc[data-v-530378a2] { color: rgb(27, 35, 44); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; margin-top: 10px; text-align: center; }
.points .cpr_img[data-v-530378a2] { height: auto; margin-top: 30px; min-height: 460px; width: 500px; }
.points .net_bx1[data-v-530378a2] { border: 2px solid rgb(64, 196, 130); }
.points .net_bx2[data-v-530378a2] { background-color: rgb(237, 240, 242); }
.g1st[data-v-530378a2] { background-color: rgb(41, 48, 58); padding-bottom: 114px; padding-top: 72px; }
.g1st .g1_title[data-v-530378a2] { color: rgb(255, 255, 255); font-family: PingFangSC-Semibold, "PingFang SC"; font-size: 34px; font-weight: 600; text-align: center; }
.g1st .g1_cmpbx[data-v-530378a2] { margin: 34px auto auto; max-width: 1200px; width: 100%; }
.g1st .g1_cmpbx video[data-v-530378a2] { height: auto; width: 100%; }
.g1st .g1_cmp_desc[data-v-530378a2] { box-sizing: border-box; color: rgb(255, 255, 255); display: flex; flex-flow: wrap; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; justify-content: space-between; margin: auto; max-width: 1200px; padding-left: 38px; padding-right: 38px; padding-top: 26px; width: 100%; }
.movearea .fixd_bkg[data-v-530378a2] { height: auto; left: 0px; overflow: hidden; position: fixed; top: 0px; width: 100%; z-index: -9; }
.comments[data-v-530378a2] { background-color: rgb(255, 255, 255); padding-top: 84px; width: 100%; }
.comments .cmts_title[data-v-530378a2] { color: rgb(19, 19, 20); font-family: PingFangSC-Semibold, "PingFang SC"; font-size: 34px; font-weight: 600; line-height: 48px; text-align: center; }
.comments .cmtx_cont[data-v-530378a2] { height: 480px; margin: 0px auto; overflow: hidden; width: 100%; }
.comments .cmtx_cont ul[data-v-530378a2] { display: flex; list-style: none; margin: 0px auto; padding: 0px; }
.comments .cmtx_cont_item[data-v-530378a2] { padding-top: 34px; width: 363px; }
.comments .sub_item[data-v-530378a2] { border: 1px solid rgba(150, 150, 150, 0.17); border-radius: 12px; box-sizing: border-box; display: inline-block; margin-bottom: 40px; margin-right: 40px; padding: 24px; width: 323px; }
.comments .item-content[data-v-530378a2] { align-items: center; display: flex; }
.comments .item-content > img[data-v-530378a2] { height: 40px; margin-right: 12px; width: 40px; }
.comments .item-content .title p[data-v-530378a2] { color: rgb(39, 39, 39); font-family: SourceHanSansCN-Medium, SourceHanSansCN; font-size: 14px; font-weight: 500; }
.comments .item-content .cicon[data-v-530378a2] { display: inline-block; height: auto; margin-right: 1px; width: 14px; }
.comments .sub_item > p[data-v-530378a2] { color: rgb(94, 94, 94); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 14px; font-weight: 400; line-height: 24px; margin-top: 22px; }
@media screen and (max-width: 1440px) {
  .hbnr .bnrtCont[data-v-530378a2], .hdcmpr .vdio_bx video[data-v-530378a2], .hdcmpr .vdio_bx[data-v-530378a2] { max-width: 1000px; }
  .points .net_bx[data-v-530378a2] { max-width: 475px; }
  .points .net_bx1[data-v-530378a2] { margin-left: 0px; }
  .points .net_bx2[data-v-530378a2] { margin-right: 0px; }
  .points .cpr_img[data-v-530378a2] { min-height: 360px; width: 100%; }
  .points .ftr_info[data-v-530378a2] { width: 500px; }
  .points .feature1 .ftr_info[data-v-530378a2] { margin-right: 50px; }
  .points .feature1 .ftr_pic[data-v-530378a2] { width: 450px; }
  .points .feature2 .ftr_pic[data-v-530378a2] { margin-right: 50px; width: 450px; }
  .g1st .g1_cmpbx[data-v-530378a2] { max-width: 1000px; }
  .g1st .g1_cmp_desc[data-v-530378a2] { font-size: 18px; max-width: 1000px; }
  .movearea .vsr1[data-v-530378a2], .movearea .vsr2[data-v-530378a2] { width: 500px; }
  .movearea .vsr3[data-v-530378a2] { max-width: 1055px; }
}
.regularFontCommon[data-v-b7846848] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-b7846848] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-b7846848] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-b7846848] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-b7846848]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-b7846848]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-b7846848] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-b7846848], .linkBtnCommon2[data-v-b7846848]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-b7846848]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-b7846848]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-b7846848] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-b7846848]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-b7846848]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-b7846848] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-b7846848]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-b7846848]:active { opacity: 1; }
.bannerBtnCommon[data-v-b7846848] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-b7846848]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-b7846848] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-b7846848]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-b7846848] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-b7846848]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-b7846848] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-b7846848]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-b7846848]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-b7846848] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-b7846848]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-b7846848] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-b7846848]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-b7846848]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-b7846848] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-b7846848] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-b7846848] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-b7846848] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-b7846848] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-b7846848] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-b7846848] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-b7846848] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-b7846848] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-b7846848] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-b7846848] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-b7846848] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-b7846848] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-b7846848] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-b7846848] { display: flex; }
.articleInfo .itemMarks .mark[data-v-b7846848] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-b7846848], .mask-leave-active[data-v-b7846848] { transition: opacity 0.3s; }
.mask-enter[data-v-b7846848], .mask-leave-to[data-v-b7846848] { opacity: 0; }
.common-enter-active[data-v-b7846848], .common-leave-active[data-v-b7846848] { transition: opacity 0.5s; }
.common-enter[data-v-b7846848], .common-leave-to[data-v-b7846848] { opacity: 0; }
.todeskFlex[data-v-b7846848] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-b7846848] { flex-direction: column; }
.todeskFlexCenter[data-v-b7846848] { align-items: center; }
.desktron_banner[data-v-b7846848], .todeskFlexColCenter[data-v-b7846848] { justify-content: center; }
.desktron_banner[data-v-b7846848] { align-items: center; display: flex; margin-top: -45px; overflow-x: auto; padding-bottom: 30px; position: relative; width: 100%; z-index: 2; }
.desktron_banner .bn_inner[data-v-b7846848] { display: flex; }
.desktron_banner .bn_inner .daas_inner[data-v-b7846848] { box-sizing: border-box; width: 886px; }
.desktron_banner .bn_inner .daas_inner[data-v-b7846848], .desktron_banner .bn_inner .todesk_inner[data-v-b7846848] { background: linear-gradient(rgb(255, 255, 255), rgb(250, 253, 255)); border-width: 1px; border-style: solid; border-color: initial; border-image-slice: initial; border-image-width: initial; border-image-outset: initial; border-image-repeat: initial; border-image-source: linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255)); border-radius: 16px; box-shadow: rgba(0, 19, 86, 0.1) 0px 14px 20px 0px, rgba(0, 5, 48, 0.05) 0px 3px 10px 0px; height: 175px; overflow: hidden; }
.desktron_banner .bn_inner .todesk_inner[data-v-b7846848] { margin-left: 30px; width: 424px; }
.desktron_banner .bn_inner .top_content[data-v-b7846848] { align-items: center; box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 3px 0px; display: flex; justify-content: center; padding: 13px 25px 9px 28px; position: relative; z-index: 2; }
.desktron_banner .bn_inner .top_content .img0[data-v-b7846848] { height: 30px; margin-right: 6px; width: 30px; }
.desktron_banner .bn_inner .top_content .title[data-v-b7846848] { color: rgb(0, 0, 0); font-size: 18px; font-weight: 500; line-height: 25px; }
.desktron_banner .bn_inner .top_content .flex-grow[data-v-b7846848] { flex-grow: 1; }
.desktron_banner .bn_inner .top_content .a0[data-v-b7846848] { align-items: center; color: rgb(154, 158, 171); cursor: pointer; display: flex; font-size: 14px; font-weight: 400; line-height: 20px; text-align: right; }
.desktron_banner .bn_inner .top_content .a0 .img1[data-v-b7846848] { background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIuNjk4Ljc2M2EuNTcuNTcgMCAwIDAtLjA4NS43NzNsLjA1NS4wNjQgMy40IDMuNC0zLjQgMy40MDFhLjU3LjU3IDAgMCAwLS4wNTUuNzQzbC4wNTUuMDY0Yy4yLjIuNTE2LjIyMy43NDMuMDU1bC4wNjQtLjA1NUw3LjI4IDUuNDA0YS41Ny41NyAwIDAgMCAuMDU1LS43NDNsLS4wNTUtLjA2NEwzLjQ3NS43OTNhLjU3LjU3IDAgMCAwLS43NzctLjAzWiIgZmlsbD0iIzlBOUVBQiIvPjwvc3ZnPg=="); background-size: cover; display: inline; height: 10px; margin-left: 4px; width: 10px; }
.desktron_banner .bn_inner .top_content .a0[data-v-b7846848]:hover { color: rgb(1, 117, 255); }
.desktron_banner .bn_inner .top_content .a0:hover .img1[data-v-b7846848] { background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIuNjk4Ljc2M2EuNTcuNTcgMCAwIDAtLjA4NS43NzNsLjA1NS4wNjQgMy40IDMuNC0zLjQgMy40MDFhLjU3LjU3IDAgMCAwLS4wNTUuNzQzbC4wNTUuMDY0Yy4yLjIuNTE2LjIyMy43NDMuMDU1bC4wNjQtLjA1NUw3LjI4IDUuNDA0YS41Ny41NyAwIDAgMCAuMDU1LS43NDNsLS4wNTUtLjA2NEwzLjQ3NS43OTNhLjU3LjU3IDAgMCAwLS43NzctLjAzWiIgZmlsbD0iIzAxNzVGRiIvPjwvc3ZnPg=="); }
.desktron_banner .bn_inner .exhibit[data-v-b7846848] { align-items: center; display: flex; justify-content: center; overflow: hidden; }
.desktron_banner .bn_inner .exhibit .details[data-v-b7846848] { border-left: 0px; border-right: 0px; cursor: pointer; flex: 1 1 0%; position: relative; transition: 0.2s cubic-bezier(0.4, 0, 1, 1); width: 0px; }
.desktron_banner .bn_inner .exhibit .de_back[data-v-b7846848] { height: 60px; left: 12px; top: 4px; width: 60px; }
.desktron_banner .bn_inner .exhibit .de_back[data-v-b7846848], .desktron_banner .bn_inner .exhibit .de_back_right[data-v-b7846848] { background-repeat: no-repeat; background-size: cover; position: absolute; transition: 0.2s cubic-bezier(0.4, 0, 1, 1); }
.desktron_banner .bn_inner .exhibit .de_back_right[data-v-b7846848] { background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTYuNDc2IDIuMzMxYTEuMzcgMS4zNyAwIDAgMC0uMjA2IDEuODU1bC4xMzQuMTU0IDguMTYxIDguMTYxLTguMTYxIDguMTYyYTEuMzcgMS4zNyAwIDAgMC0uMTM0IDEuNzgybC4xMzQuMTUzYTEuMzcgMS4zNyAwIDAgMCAxLjc4NC4xMzNsLjE1My0uMTMzIDkuMTMtOS4xM2ExLjM3IDEuMzcgMCAwIDAgLjEzLTEuNzgxbC0uMTMtLjE1My05LjEzLTkuMTNhMS4zNyAxLjM3IDAgMCAwLTEuODY1LS4wNzNaIiBmaWxsPSIjMDAwIiBmaWxsLW9wYWNpdHk9Ii42Ii8+PC9zdmc+"); height: 24px; opacity: 0; right: -24px; top: 50px; visibility: hidden; width: 24px; }
.desktron_banner .bn_inner .exhibit .module-nav-item-inner[data-v-b7846848] { background: linear-gradient(270deg, rgb(240, 245, 246), rgb(248, 250, 251)); box-sizing: border-box; height: 123px; overflow: hidden; padding: 24px 6px 12px 74px; pointer-events: none; position: relative; transition: 0.2s cubic-bezier(0.4, 0, 1, 1); width: 100%; }
.desktron_banner .bn_inner .exhibit .module-nav-item-inner.gaming .de_back[data-v-b7846848] { background-image: url('../img/9d26354_3400ab5d.svg'); }
.desktron_banner .bn_inner .exhibit .module-nav-item-inner.graphics .de_back[data-v-b7846848] { background-image: url('../img/caba669_4371c45f.svg'); }
.desktron_banner .bn_inner .exhibit .module-nav-item-inner.aigc .de_back[data-v-b7846848] { background-image: url('../img/a648aef_d26ea43e.svg'); }
.desktron_banner .bn_inner .exhibit .module-nav-item-inner.cloudGame .de_back[data-v-b7846848] { background-image: url('../img/6f1ad65_395fa2b1.svg'); }
.desktron_banner .bn_inner .exhibit .module-nav-item-inner.game .de_back[data-v-b7846848] { background-image: url('../img/9278596_21ca9eb5.svg'); }
.desktron_banner .bn_inner .exhibit .module-nav-item-inner.high .de_back[data-v-b7846848] { background-image: url('../img/9905d86_33a77fb8.svg'); }
.desktron_banner .bn_inner .exhibit .module-nav-item-inner.hover_box_shadow[data-v-b7846848] { box-shadow: rgba(0, 84, 145, 0.12) -3.24px 0px 6.59px 0px; }
.desktron_banner .bn_inner .exhibit .details[data-v-b7846848]:hover { flex: 0 0 260px; }
.desktron_banner .bn_inner .exhibit .details:hover .de_back_right[data-v-b7846848] { opacity: 1; right: 12px; top: 50px; visibility: visible; }
.desktron_banner .bn_inner .exhibit .details:hover .de_back[data-v-b7846848] { height: 92px; left: -24px; top: -34px; width: 92px; }
.desktron_banner .bn_inner .exhibit .details:hover .module-nav-item-inner[data-v-b7846848] { background: linear-gradient(270deg, rgb(246, 249, 249) -33.07%, rgb(255, 255, 255)); }
.desktron_banner .bn_inner .exhibit .details:hover .hover_box_shadow[data-v-b7846848] { box-shadow: rgba(59, 91, 108, 0.09) -28px 0px 23.6px 0px, rgba(59, 91, 108, 0.06) -12px 0px 16px 0px; }
.desktron_banner .bn_inner .exhibit .details:active .module-nav-item-inner[data-v-b7846848] { background: linear-gradient(270deg, rgb(240, 245, 246), rgb(248, 250, 251) 95.5%), linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)); }
.desktron_banner .bn_inner .exhibit .todesk_details[data-v-b7846848]:hover { flex: 0 0 245px; }
.desktron_banner .bn_inner .exhibit .details:hover ~ .details[data-v-b7846848] { flex: 1 1 0%; }
.desktron_banner .bn_inner .exhibit .details_text[data-v-b7846848] { align-items: center; display: flex; padding-bottom: 6px; }
.desktron_banner .bn_inner .exhibit .details_text span[data-v-b7846848] { color: rgb(0, 0, 0); font-family: "PingFang SC"; font-size: 18px; font-weight: 500; line-height: 25.2px; }
.desktron_banner .bn_inner .exhibit .deco[data-v-b7846848] { align-items: center; display: flex; height: 22px; margin-top: 2px; }
.desktron_banner .bn_inner .exhibit .deco .span1[data-v-b7846848] { color: rgba(0, 0, 0, 0.698); font-family: "PingFang SC"; font-size: 13px; font-weight: 400; line-height: 18.2px; text-align: left; text-decoration-skip-ink: none; text-underline-position: from-font; white-space: nowrap; word-break: keep-all; }
.desktron_banner .bn_inner .exhibit .deco img[data-v-b7846848] { height: 16px; margin-right: 6px; width: 16px; }
.desktron_banner .db_item[data-v-b7846848] { background: linear-gradient(rgb(255, 255, 255) 29.17%, rgb(243, 249, 255)); border: 1px solid rgba(0, 0, 0, 0.05); border-radius: 8px; box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px 0px, rgba(255, 255, 255, 0.4) 2px 3px 3px 0px inset; box-sizing: border-box; cursor: pointer; display: flex; flex-direction: column; height: 96px; justify-content: center; margin-left: 8px; margin-right: 8px; min-width: 242px; padding: 20px 12px 20px 20px; width: 242px; }
.desktron_banner .db_item .db_item_icon[data-v-b7846848] { height: 32px; margin-right: 8px; width: 32px; }
.desktron_banner .db_item .title[data-v-b7846848] { align-items: center; color: rgb(0, 0, 0); display: flex; font-family: "PingFang SC"; font-size: 16px; font-weight: 500; }
.desktron_banner .db_item .info[data-v-b7846848] { display: flex; flex-direction: column; justify-content: space-between; }
.desktron_banner .db_item .info .desc[data-v-b7846848] { color: rgb(97, 99, 105); font-family: "PingFang SC"; font-size: 14px; font-weight: 400; margin-top: 6px; }
.desktron_banner .db_item[data-v-b7846848]:hover { background: linear-gradient(rgb(243, 249, 255), rgb(255, 255, 255)); border: 1px solid rgb(51, 141, 250); box-shadow: rgba(22, 45, 74, 0.2) 0px 10px 14px 0px; }
.desktron_banner .db_item[data-v-b7846848]:active { background: linear-gradient(rgb(243, 249, 255), rgb(255, 255, 255)), rgba(17, 136, 255, 0.05); border: 1px solid rgb(0, 112, 249); }
.desktron_banner .db_item1[data-v-b7846848] { background: rgb(255, 255, 255); border: 1px solid rgba(0, 0, 0, 0.05); border-radius: 8px; box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 20px 0px, rgba(255, 255, 255, 0.4) 2px 3px 3px 0px inset; box-sizing: border-box; cursor: pointer; display: flex; height: 96px; justify-content: space-between; margin-left: 8px; margin-right: 8px; min-width: 360px; overflow: hidden; width: 402px; }
.desktron_banner .db_item1 .db1-info[data-v-b7846848] { display: flex; flex-direction: column; justify-content: center; margin-right: 0px; padding-left: 20px; }
.desktron_banner .db_item1 .db1-info .title[data-v-b7846848] { color: rgb(0, 0, 0); font-family: "PingFang SC"; font-size: 20px; font-weight: 600; }
.desktron_banner .db_item1 .db1-info .desc[data-v-b7846848] { color: rgb(97, 99, 105); font-family: "PingFang SC"; font-size: 14px; font-weight: 400; margin-top: 6px; }
.desktron_banner .db_item1 .db1_icon[data-v-b7846848] { height: 96px; width: auto; }
.desktron_banner .db_item1[data-v-b7846848]:hover { background: linear-gradient(rgb(243, 249, 255), rgb(255, 255, 255)); border: 1px solid rgb(51, 141, 250); box-shadow: rgba(22, 45, 74, 0.2) 0px 10px 14px 0px; }
.desktron_banner .db_item1[data-v-b7846848]:active { background: linear-gradient(rgb(243, 249, 255), rgb(255, 255, 255)), rgba(17, 136, 255, 0.05); border: 1px solid rgb(0, 112, 249); }
@media screen and (max-width: 1350px) {
  .desktron_banner[data-v-b7846848] { box-sizing: border-box; justify-content: flex-start; padding-right: 20px; }
}

.regularFontCommon[data-v-2784b728] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-2784b728] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-2784b728] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-2784b728] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-2784b728]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-2784b728]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-2784b728] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-2784b728], .linkBtnCommon2[data-v-2784b728]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-2784b728]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-2784b728]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-2784b728] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-2784b728]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-2784b728]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-2784b728] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-2784b728]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-2784b728]:active { opacity: 1; }
.bannerBtnCommon[data-v-2784b728] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-2784b728]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-2784b728] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-2784b728]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-2784b728] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-2784b728]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-2784b728] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-2784b728]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-2784b728]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-2784b728] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-2784b728]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-2784b728] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-2784b728]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-2784b728]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-2784b728] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-2784b728] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-2784b728] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-2784b728] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-2784b728] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-2784b728] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-2784b728] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-2784b728] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-2784b728] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-2784b728] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-2784b728] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-2784b728] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-2784b728] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-2784b728] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-2784b728] { display: flex; }
.articleInfo .itemMarks .mark[data-v-2784b728] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-2784b728], .mask-leave-active[data-v-2784b728] { transition: opacity 0.3s; }
.mask-enter[data-v-2784b728], .mask-leave-to[data-v-2784b728] { opacity: 0; }
.common-enter-active[data-v-2784b728], .common-leave-active[data-v-2784b728] { transition: opacity 0.5s; }
.common-enter[data-v-2784b728], .common-leave-to[data-v-2784b728] { opacity: 0; }
.todeskFlex[data-v-2784b728] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-2784b728] { flex-direction: column; }
.todeskFlexCenter[data-v-2784b728] { align-items: center; }
.todeskFlexColCenter[data-v-2784b728] { justify-content: center; }
[data-v-2784b728] { box-sizing: border-box; }
.swipe_img_wrap .item[data-v-2784b728] { background: rgb(255, 255, 255); border: 1px solid rgba(150, 150, 150, 0.17); border-radius: 11px; box-sizing: border-box; margin-bottom: 12px; margin-right: 12px; padding: 28px 21px; break-inside: avoid; width: 283px; }
.swipe_img_wrap .item-content[data-v-2784b728] { align-items: center; display: flex; position: relative; }
.swipe_img_wrap .item-content > img[data-v-2784b728] { margin-right: 12px; width: 35px; }
.swipe_img_wrap .item-content .item-title[data-v-2784b728] { display: inline-table; }
.swipe_img_wrap .item-content .item-title > .cicon[data-v-2784b728] { display: inline; height: 14px; margin-right: 2px; width: 14px; }
.swipe_img_wrap .item-content .item-title .img[data-v-2784b728] { align-items: center; display: flex; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); }
.swipe_img_wrap .item-content p[data-v-2784b728] { color: rgb(159, 161, 166); font-family: PingFangSC-Semibold, "PingFang SC"; font-size: 12px; font-weight: 400; height: 18px; line-height: 18px; margin-top: 2px; }
.swipe_img_wrap .item > p[data-v-2784b728] { color: rgb(39, 39, 39); font-family: PingFangSC-Regular, "Microsoft YaHei"; font-size: 14px; font-weight: 400; line-height: 21px; margin-top: 7px; width: 241px; }
.recommend_content[data-v-2784b728] { background: rgb(248, 249, 250); overflow: hidden; position: relative; width: 100%; }
.recommend_content .title[data-v-2784b728] { color: rgb(31, 33, 38); font-family: "PingFang SC"; font-size: 42px; font-weight: 500; padding-top: 100px; position: relative; text-align: center; }
.recommend_content .swipe_Wrap[data-v-2784b728] { display: flex; margin: 0px auto; overflow: hidden; padding: 40px 60px 24px; position: relative; user-select: none; width: 1340px; }
.recommend_content .swipe_Wrap .swipe_transition_user[data-v-2784b728] { display: flex; left: 0px; min-width: 1200px; position: relative; transition: left 0.3s; width: auto; }
.recommend_content .swipe_Wrap .swipe_transition_user .swipe_img_wrap[data-v-2784b728] { display: flex; flex-flow: wrap; flex-shrink: 0; height: 100%; justify-content: center; margin-right: 60px; width: 100%; }
.recommend_content .swipe_Wrap .swipe_item[data-v-2784b728] { align-items: center; display: flex; flex-flow: wrap; flex-shrink: 0; justify-content: center; margin-right: 70px; width: 100%; }
.recommend_content .swipe_Wrap .swipe_item.active .item[data-v-2784b728] { box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 11px 0px; }
.recommend_content .swipe_Wrap .swipe_item .item[data-v-2784b728] { align-items: center; background: rgb(255, 255, 255); border-radius: 8px; display: flex; height: 80px; justify-content: center; margin-bottom: 19px; margin-right: 25px; width: 150px; }
.recommend_content .swipe_Wrap .swipe_item .item[data-v-2784b728]:nth-of-type(7n+7) { margin-right: 0px; }
.recommend_content .swipe_Wrap .swipe_item .item img[data-v-2784b728] { height: 40px; width: auto; }
.recommend_content .swipe_Wrap .next_btn[data-v-2784b728], .recommend_content .swipe_Wrap .prev_btn[data-v-2784b728] { align-items: center; background-color: rgb(247, 248, 250); border: 1px solid rgb(229, 230, 235); border-radius: 50%; cursor: pointer; display: flex; height: 48px; justify-content: center; position: absolute; top: calc(50% - 22px); width: 48px; }
.recommend_content .swipe_Wrap .next_btn.disabled[data-v-2784b728], .recommend_content .swipe_Wrap .prev_btn.disabled[data-v-2784b728] { background-color: rgb(240, 240, 240); cursor: default; }
.recommend_content .swipe_Wrap .next_btn[data-v-2784b728]:hover, .recommend_content .swipe_Wrap .prev_btn[data-v-2784b728]:hover { background-color: rgb(240, 240, 240); }
.recommend_content .swipe_Wrap .next_btn img[data-v-2784b728], .recommend_content .swipe_Wrap .prev_btn img[data-v-2784b728] { display: block; margin-left: 2px; }
.recommend_content .swipe_Wrap .prev_btn[data-v-2784b728] { left: 0px; transform: rotate(180deg); }
.recommend_content .swipe_Wrap .next_btn[data-v-2784b728] { right: 0px; }
.recommend_content .swipe_Wrap .indicator_wrap[data-v-2784b728] { bottom: 0px; display: flex; left: 50%; position: absolute; transform: translateX(-50%); }
.recommend_content .swipe_Wrap .indicator_wrap .indicator_item[data-v-2784b728] { background-color: rgb(206, 208, 212); border-radius: 27px; cursor: pointer; height: 8px; margin-right: 8px; transition: 0.3s; width: 8px; }
.recommend_content .swipe_Wrap .indicator_wrap .indicator_item[data-v-2784b728]:last-of-type { margin-right: 0px; }
.recommend_content .swipe_Wrap .indicator_wrap .indicator_item.active[data-v-2784b728] { background-color: rgb(0, 112, 249); width: 36px; }

.regularFontCommon[data-v-7f126365] { color: rgb(34, 36, 41); font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.mediumFontCommon[data-v-7f126365] { color: rgb(34, 36, 41); font-family: PingFangSC-Medium, "PingFang SC"; font-weight: 500; }
.boldFontCommon[data-v-7f126365] { color: rgb(34, 36, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-weight: 600; }
.linkBtnCommon[data-v-7f126365] { background: rgb(0, 101, 221); border-radius: 4px; color: rgb(255, 255, 255); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 54px; text-align: center; }
.linkBtnCommon[data-v-7f126365]:hover { background: rgb(0, 119, 230); transition: background 0.5s; }
.linkBtnCommon[data-v-7f126365]:active { background: rgb(0, 75, 204); }
.linkBtnCommon2[data-v-7f126365] { background: transparent; box-sizing: border-box; color: rgb(0, 101, 221); display: inline-block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 52px; text-align: center; }
.linkBtnCommon2[data-v-7f126365], .linkBtnCommon2[data-v-7f126365]:hover { border: 1px solid rgb(0, 101, 221); border-radius: 4px; }
.linkBtnCommon2[data-v-7f126365]:hover { background: rgba(0, 101, 221, 0.08); color: rgb(33, 110, 216); }
.linkBtnCommon2[data-v-7f126365]:active { background: rgba(0, 101, 221, 0.08); border: 1px solid rgb(0, 75, 204); border-radius: 4px; color: rgb(0, 75, 204); }
.btnCommon[data-v-7f126365] { background: rgb(33, 110, 216); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommon[data-v-7f126365]:hover { background: rgba(33, 110, 216, 0.8); transition: background 0.5s; }
.btnCommon[data-v-7f126365]:active { background: rgb(29, 100, 192); }
.btnCommonPrimary[data-v-7f126365] { background: rgb(11, 128, 254); border-radius: 10px; box-shadow: rgba(0, 123, 255, 0.3) 0px 4px 14px 0px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 20px; font-weight: 400; line-height: 56px; text-align: center; user-select: none; }
.btnCommonPrimary[data-v-7f126365]:hover { box-shadow: rgba(0, 123, 255, 0) 0px 0px 0px 0px; opacity: 0.8; transition: background 0.5s; }
.btnCommonPrimary[data-v-7f126365]:active { opacity: 1; }
.bannerBtnCommon[data-v-7f126365] { background: rgb(11, 128, 254); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 56px; line-height: 56px; text-align: center; width: 200px; }
.bannerBtnCommon[data-v-7f126365]:hover { background: rgb(28, 135, 253); transition: background 0.5s; }
.btnLinkCommon[data-v-7f126365] { background: rgb(0, 112, 249); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnLinkCommon[data-v-7f126365]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommon3[data-v-7f126365] { align-items: center; background: rgb(255, 255, 255); border-radius: 11px; color: rgb(11, 128, 254); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 57.59px; justify-content: center; width: 180px; }
.btnCommon3[data-v-7f126365]:hover { color: rgb(91, 164, 252); }
.btnCommon2[data-v-7f126365] { background: rgb(255, 255, 255); border: 1px solid rgb(33, 110, 216); border-radius: 4px; box-sizing: border-box; color: rgb(33, 110, 216); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommon2[data-v-7f126365]:hover { background: rgb(33, 110, 216); border-color: rgb(33, 110, 216); color: rgb(255, 255, 255); }
.btnCommon2[data-v-7f126365]:active { background: rgb(29, 100, 192); border-color: rgb(29, 100, 192); color: rgb(255, 255, 255); }
.btnCommonTd[data-v-7f126365] { background: rgb(0, 112, 255); border-radius: 4px; color: rgb(255, 255, 255); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 40px; text-align: center; }
.btnCommonTd[data-v-7f126365]:hover { background: rgba(0, 112, 255, 0.8); transition: background 0.5s; }
.btnCommonTd2[data-v-7f126365] { background: rgb(255, 255, 255); border: 1px solid rgb(16, 123, 245); border-radius: 4px; box-sizing: border-box; color: rgb(16, 123, 245); display: block; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 15px; font-weight: 400; line-height: 38px; text-align: center; }
.btnCommonTd2[data-v-7f126365]:hover { background: rgb(16, 123, 245); border-color: rgb(16, 123, 245); color: rgb(255, 255, 255); }
.btnCommonTd2[data-v-7f126365]:active { background: rgb(10, 112, 228); border-color: rgb(10, 112, 228); color: rgb(255, 255, 255); }
.sectionTitleFont[data-v-7f126365] { font-size: 42px; line-height: 59px; }
.sectionDownTitleFont[data-v-7f126365] { font-size: 32px; line-height: 45px; }
.sectionActiveTitleCommon[data-v-7f126365] { color: rgb(34, 90, 156); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 30px; }
.sectionContCommon[data-v-7f126365] { box-sizing: border-box; margin: auto; max-width: 1440px; overflow: hidden; position: relative; }
@media screen and (max-width: 1200px) {
  .sectionContMinCommon[data-v-7f126365] { padding-left: 100px; padding-right: 100px; }
}
.sectionContBxCommon[data-v-7f126365] { box-sizing: border-box; display: flex; flex-flow: row; height: 548px; position: relative; }
.sectionImgCommon[data-v-7f126365] { height: 100%; position: absolute; top: 0px; width: auto; }
.boxContent[data-v-7f126365] { box-sizing: border-box; margin: auto; max-width: 1440px; padding-left: 160px; padding-right: 160px; }
.overAutoDot[data-v-7f126365] { overflow-wrap: break-word; -webkit-box-orient: vertical; display: -webkit-box; overflow: hidden; text-overflow: ellipsis; word-break: break-all; }
.breads[data-v-7f126365] { align-items: center; color: rgb(0, 112, 249); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-size: 18px; font-weight: 400; padding-bottom: 45px; padding-top: 40px; }
.breads .angle[data-v-7f126365] { color: rgb(34, 36, 41); margin-left: 10px; margin-right: 10px; }
.articleInfo[data-v-7f126365] { align-items: center; color: rgb(34, 36, 41); display: flex; font-family: PingFangSC-Regular, "PingFang SC"; font-weight: 400; }
.articleInfo .itemLogo[data-v-7f126365] { height: 17px; width: auto; }
.articleInfo .itemTime[data-v-7f126365] { color: rgb(153, 153, 153); font-size: 14px; margin-left: 30px; }
.articleInfo .itemMarks[data-v-7f126365] { display: flex; }
.articleInfo .itemMarks .mark[data-v-7f126365] { background-color: rgba(0, 112, 249, 0.05); border-radius: 12px; color: rgb(0, 112, 249); margin-left: 25px; padding: 2px 12px; }
.mask-enter-active[data-v-7f126365], .mask-leave-active[data-v-7f126365] { transition: opacity 0.3s; }
.mask-enter[data-v-7f126365], .mask-leave-to[data-v-7f126365] { opacity: 0; }
.common-enter-active[data-v-7f126365], .common-leave-active[data-v-7f126365] { transition: opacity 0.5s; }
.common-enter[data-v-7f126365], .common-leave-to[data-v-7f126365] { opacity: 0; }
.todeskFlex[data-v-7f126365] { display: flex; flex-flow: wrap; }
.todeskFlexCol[data-v-7f126365] { flex-direction: column; }
.todeskFlexCenter[data-v-7f126365] { align-items: center; }
.todeskFlexColCenter[data-v-7f126365] { justify-content: center; }
.btn-plain-primary[data-v-7f126365] { background: rgb(255, 255, 255); border: 1px solid rgb(17, 187, 242); border-radius: 8px; box-sizing: border-box; color: rgb(12, 133, 172); cursor: pointer; font-size: 18px; height: 48px; line-height: 46px; margin-left: 30px; text-align: center; width: 170px; }
.btn-plain-primary[data-v-7f126365]:hover { background-color: rgb(235, 245, 252); }
.dass1[data-v-7f126365] { align-items: center; display: flex; }
.dass1 .first-order[data-v-7f126365] { left: 135px !important; }
.enjoy-man[data-v-7f126365] { align-items: center; cursor: pointer; display: flex; margin-top: 16px; width: fit-content; }
.enjoy-man span[data-v-7f126365] { color: var(--light-DaaS-04,#00a4dd); font-size: 16px; }
.enjoy-man img[data-v-7f126365] { height: 24px; width: 24px; }
.enjoy-man[data-v-7f126365]:hover { opacity: 0.85; }
.enjoy-man[data-v-7f126365]:active { opacity: 0.9; }
.hbnr[data-v-7f126365] { background: linear-gradient(90deg, rgb(247, 251, 255), rgb(234, 239, 245)); min-height: 670px; overflow: hidden; position: relative; }
.hbnr .hbnr_bkg_bx[data-v-7f126365] { display: flex; height: 100%; justify-content: center; min-width: 1200px; opacity: 0; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }
.hbnr .hbnr_bkg_bx.active[data-v-7f126365] { opacity: 1; z-index: 1; }
.hbnr .hbnr_bkg_bx.eleven[data-v-7f126365]::before { background: rgb(255, 252, 172); left: 0px; }
.hbnr .hbnr_bkg_bx.eleven[data-v-7f126365]::after, .hbnr .hbnr_bkg_bx.eleven[data-v-7f126365]::before { content: ""; height: 100%; position: absolute; top: 0px; width: 50%; z-index: -1; }
.hbnr .hbnr_bkg_bx.eleven[data-v-7f126365]::after { background: rgb(255, 229, 81); right: 0px; }
.hbnr .hbnr_bkg_bx.eleven .hbnr_bkg[data-v-7f126365] { height: 100%; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: auto; }
.hbnr .hbnr_bkg[data-v-7f126365] { height: 100%; margin: auto; object-fit: cover; width: 100%; }
.hbnr .bnrTodesk[data-v-7f126365] { height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }
.hbnr .bnrtCont[data-v-7f126365] { box-sizing: border-box; display: flex; height: calc(100% - 45px); justify-content: space-between; margin: auto; max-width: 1200px; min-width: 1200px; position: relative; }
.hbnr .infoTip[data-v-7f126365] { bottom: 48px; color: rgb(154, 158, 171); font-size: 13px; position: absolute; z-index: 2; }
@media screen and (max-width: 1440px) {
  .hbnr .bnrtCont[data-v-7f126365] { max-width: 1200px; min-width: 1200px; }
}
.hbnr .bnrtInfo[data-v-7f126365] { box-sizing: border-box; display: flex; flex-shrink: 0; margin: auto 0px; padding-left: 8px; position: relative; width: 100%; z-index: 2; }
.hbnr .bnrtInfo .bnrtBtns[data-v-7f126365] { align-self: flex-end; display: flex; }
.hbnr .bnrtInfo .bnrtBtns.gray .bnrtBtn2[data-v-7f126365] { background: rgba(255, 255, 255, 0.1); border-color: rgb(247, 249, 252); color: rgb(255, 255, 255); }
.hbnr .bnrtInfo .bnrtBtns.gray .bnrtBtn2[data-v-7f126365]:hover { background: rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.8); }
.hbnr .bnrtInfo .bnrtDesc[data-v-7f126365] { height: auto; opacity: 0; position: absolute; top: 0px; width: 100%; z-index: 0; }
.hbnr .bnrtInfo .bnrtDesc .three-title[data-v-7f126365] { height: auto; margin-top: 20px; width: 611px; }
.hbnr .bnrtInfo .bnrtDesc .three-desc[data-v-7f126365] { font-size: 22px; }
.hbnr .bnrtInfo .bnrtDesc .three-desc .th1[data-v-7f126365] { color: rgb(97, 99, 105); font-weight: 400; }
.hbnr .bnrtInfo .bnrtDesc .three-desc .th2[data-v-7f126365] { color: rgb(240, 74, 62); font-weight: 500; margin-left: -5px; }
.hbnr .bnrtInfo .bnrtDesc .title_img[data-v-7f126365] { display: block; height: 120px; width: auto; }
.hbnr .bnrtInfo .bnrtDesc.eleven .title_img[data-v-7f126365] { height: auto; width: 454px; }
.hbnr .bnrtInfo .bnrtDesc.team .bnrtText[data-v-7f126365] { color: rgba(29, 33, 40, 0.5); font-size: 14px; line-height: 32px; margin-top: 12px; max-width: 570px; }
.hbnr .bnrtInfo .bnrtDesc.audit .bnrtText[data-v-7f126365] { color: rgba(29, 33, 40, 0.698); font-size: 16px; line-height: 32px; margin-top: 12px; max-width: 570px; }
.hbnr .bnrtInfo .bnrtDesc.audit .title_img[data-v-7f126365] { height: 150px; }
.hbnr .bnrtInfo .bnrtDesc .bnrtText[data-v-7f126365] { color: rgb(233, 235, 239); font-family: "PingFang SC"; font-size: 16px; font-weight: 400; line-height: 22px; margin-top: 21px; width: 120%; }
.hbnr .bnrtInfo .bnrtDesc.active[data-v-7f126365] { opacity: 1; z-index: inherit; }
.hbnr .bnrtInfo .bnrtDesc.todesk .bnrtText[data-v-7f126365] { color: rgba(255, 255, 255, 0.8); }
.hbnr .bnrtInfo .bnrtDesc.todeskAnniv[data-v-7f126365] { top: -40px; }
.hbnr .bnrtInfo .bnrtDesc.todeskAnniv .bnrtText[data-v-7f126365] { color: rgb(64, 32, 14); font-size: 38px; font-weight: 700; letter-spacing: 0px; line-height: 100%; margin-top: -16px; position: relative; }
.hbnr .bnrtInfo .bnrtDesc.todeskAnniv .bnrtText img[data-v-7f126365] { bottom: -20px; height: 29px; left: 100px; position: absolute; width: auto; z-index: -1; }
.hbnr .bnrtInfo .bnrtDesc.todeskAnniv .title_img[data-v-7f126365] { height: 176px; width: 540px; }
.hbnr .bnrtInfo .operations[data-v-7f126365] { margin-top: 227px; }
.hbnr .bnrtTitle[data-v-7f126365] { color: rgb(0, 0, 0); font-family: PingFangSC-Regular, "PingFang SC"; font-size: 50px; font-style: italic; font-weight: 400; line-height: 130%; }
.hbnr .bnrtt1[data-v-7f126365] { color: rgb(1, 110, 253); font-weight: 700; margin-right: 10px; }
.hbnr .bnrtSubTitle[data-v-7f126365] { color: rgb(38, 39, 41); font-family: PingFangSC-Semibold, "PingFang SC"; font-size: 48px; font-weight: 600; margin-top: 4px; }
.hbnr .bnrtst2[data-v-7f126365] { margin-left: 15px; margin-right: 15px; }
.hbnr .bnrtBtn1[data-v-7f126365] { background: rgb(0, 112, 249); border-radius: 12px; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 60px; line-height: 60px; text-align: center; width: 180px; }
.hbnr .bnrtBtn1[data-v-7f126365]:hover { background: rgb(28, 135, 253); }
.hbnr .bnrtBtn1.todesk-anniv[data-v-7f126365] { background: linear-gradient(97.95deg, rgb(255, 167, 66) 4.31%, rgb(249, 80, 1) 94.74%); box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px 0px; }
.hbnr .bnrtBtn1.todesk-anniv[data-v-7f126365]:hover { background: linear-gradient(97.95deg, rgb(255, 181, 95) 4.31%, rgb(251, 107, 40) 94.74%); }
.hbnr .bnrtBtn1.todesk-anniv[data-v-7f126365]:active { background: linear-gradient(97.95deg, rgb(217, 142, 56) 4.31%, rgb(213, 68, 1) 94.74%); }
.hbnr .todesk_download[data-v-7f126365] { align-items: center; background: rgb(1, 117, 255); border-radius: 12px; box-sizing: border-box; color: rgb(255, 255, 255); display: flex; font-family: "PingFang SC"; font-size: 18px; font-weight: 500; height: 60px; justify-content: center; line-height: 60px; overflow: hidden; width: 180px; }
.hbnr .todesk_download.team_download span[data-v-7f126365], .hbnr .todesk_download.team_download[data-v-7f126365] { background: linear-gradient(270deg, rgb(0, 79, 238), rgb(111, 159, 255)); }
.hbnr .todesk_download.todesk_download_eleven[data-v-7f126365] { background: rgba(255, 255, 255, 0.2); border: 1px solid rgb(36, 9, 0); border-radius: 11px; color: rgb(36, 9, 0); font-size: 20px; font-weight: 600; margin-left: 20px; opacity: 0.9; }
.hbnr .todesk_download.todesk_download_eleven span[data-v-7f126365] { background: transparent; border-radius: 11px; }
.hbnr .todesk_download.todesk_download_eleven[data-v-7f126365]:hover { background: rgba(255, 255, 255, 0.3); }
.hbnr .todesk_download.todesk_download_eleven:hover span[data-v-7f126365] { background: transparent; }
.hbnr .todesk_download.todesk_download_eleven[data-v-7f126365]:active { background: rgba(255, 255, 255, 0.2); }
.hbnr .todesk_download.todesk_download_eleven:active span[data-v-7f126365] { background: transparent; }
.hbnr .todesk_download span[data-v-7f126365] { align-items: center; background: rgb(1, 117, 255); border-radius: 12px; display: flex; height: 58px; justify-content: center; width: 178px; }
.hbnr .todesk_download.todesk_download_smart[data-v-7f126365] { line-height: normal; }
.hbnr .todesk_download.todesk_download_smart span[data-v-7f126365] { align-items: center; flex-direction: column; height: 100%; justify-content: center; line-height: normal; }
.hbnr .todesk_download.todesk_download_smart .dl_main_text[data-v-7f126365] { font-size: 18px; font-weight: 500; height: auto; line-height: 24px; }
.hbnr .todesk_download.todesk_download_smart .dl_os_sub[data-v-7f126365] { color: rgba(255, 255, 255, 0.85); font-size: 12px; font-weight: 400; height: auto; line-height: 12px; margin-top: 2px; }
.hbnr .todesk_download:hover span[data-v-7f126365] { background: rgb(28, 135, 253); }
.hbnr .todesk_download:active span[data-v-7f126365] { opacity: 0.9; }
.hbnr .btn11[data-v-7f126365] { align-items: center; background: rgb(36, 9, 0); border-radius: 11px; box-sizing: border-box; color: rgb(255, 255, 255); display: flex; font-family: "PingFang SC"; font-size: 20px; font-weight: 500; height: 60px; justify-content: center; line-height: 60px; margin-left: auto; opacity: 0.9; overflow: hidden; width: 180px; }
.hbnr .btn11[data-v-7f126365]:hover { background: rgb(61, 26, 29); }
.hbnr .btn11[data-v-7f126365]:active { background: rgb(13, 2, 0); }
.hbnr .black_btn[data-v-7f126365] { box-sizing: border-box; color: rgb(255, 255, 255); font-family: "PingFang SC"; font-size: 18px; font-weight: 500; height: 60px; line-height: 60px; margin-left: 0px; overflow: hidden; width: 180px; }
.hbnr .black_btn span[data-v-7f126365], .hbnr .black_btn[data-v-7f126365] { align-items: center; background: rgb(20, 20, 20); border-radius: 12px; display: flex; justify-content: center; }
.hbnr .black_btn span[data-v-7f126365] { height: 58px; width: 178px; }
.hbnr .black_btn:hover span[data-v-7f126365] { background: rgb(20, 20, 20); }
.hbnr .black_btn:active span[data-v-7f126365] { opacity: 0.9; }
.hbnr .bnrtBtn_1_1[data-v-7f126365] { background: rgba(255, 255, 255, 0.2); border: 1px solid rgb(1, 117, 255); border-radius: 12px; box-sizing: border-box; color: rgb(0, 90, 217); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 700; height: 60px; line-height: 60px; margin-left: 24px; text-align: center; width: 180px; }
.hbnr .bnrtBtn_1_1[data-v-7f126365]:hover { background: rgb(242, 249, 255); }
.hbnr .bnrtBtn_1_1[data-v-7f126365]:active { background: rgb(214, 239, 255); border: 1px solid rgb(0, 90, 217); }
.hbnr .team-bnrtBtn2[data-v-7f126365] { background: rgb(255, 255, 255); border: 1px solid rgb(1, 117, 255); border-radius: 12px; box-sizing: border-box; color: rgb(0, 90, 217); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 700; height: 60px; line-height: 60px; margin-left: 24px; text-align: center; width: 180px; }
.hbnr .team-bnrtBtn2[data-v-7f126365]:hover { background: rgb(242, 249, 255); }
.hbnr .team-bnrtBtn2[data-v-7f126365]:active { background: rgb(214, 239, 255); border: 1px solid rgb(0, 90, 217); }
.hbnr .audit_download[data-v-7f126365] { box-sizing: border-box; color: rgb(255, 255, 255); font-family: "PingFang SC"; font-size: 18px; font-weight: 500; height: 60px; line-height: 60px; overflow: hidden; width: 160px; }
.hbnr .audit_download span[data-v-7f126365], .hbnr .audit_download[data-v-7f126365] { align-items: center; background: rgb(1, 117, 255); border-radius: 12px; display: flex; justify-content: center; }
.hbnr .audit_download span[data-v-7f126365] { height: 54px; width: 158px; }
.hbnr .audit_download:hover span[data-v-7f126365] { background: rgb(28, 135, 253); }
.hbnr .audit_download:active span[data-v-7f126365] { opacity: 0.9; }
.hbnr .audit-bnrtBtn2[data-v-7f126365] { background: rgb(255, 255, 255); border: 1px solid rgb(1, 117, 255); border-radius: 12px; box-sizing: border-box; color: rgb(20, 96, 203); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 16px; font-weight: 500; height: 56px; line-height: 56px; margin-left: 20px; position: relative; text-align: center; width: 160px; }
.hbnr .audit-bnrtBtn2[data-v-7f126365]:hover { background: rgb(242, 249, 255); }
.hbnr .audit-bnrtBtn2[data-v-7f126365]:active { background: rgb(214, 239, 255); border: 1px solid rgb(0, 90, 217); }
.hbnr .audit-bnrtBtn2 .audit_btn_badge[data-v-7f126365] { align-items: center; background: rgb(255, 102, 0); border-radius: 6px; color: rgb(255, 255, 255); display: inline-flex; font-size: 14px; font-weight: 400; gap: 2px; line-height: 1; padding: 2px 6px; position: absolute; right: -8px; top: -10px; white-space: nowrap; }
.hbnr .audit-bnrtBtn2 .audit_btn_badge img[data-v-7f126365] { display: block; height: 16px; width: 16px; }
.hbnr .bnrtBtn2[data-v-7f126365] { background: rgba(255, 255, 255, 0.12); border: 1px solid rgb(255, 255, 255); border-radius: 12px; box-sizing: border-box; color: rgb(255, 255, 255); cursor: pointer; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 60px; line-height: 60px; margin-left: 24px; text-align: center; width: 180px; }
.hbnr .bnrtBtn2[data-v-7f126365]:hover { background: rgba(255, 255, 255, 0.18); }
.hbnr .bnrtBtn2[data-v-7f126365]:active { background: rgba(255, 255, 255, 0.08); }
.hbnr .bnrtBtn3[data-v-7f126365] { align-items: center; box-sizing: border-box; color: rgb(71, 154, 255); cursor: pointer; display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 18px; font-weight: 500; height: 50px; justify-content: center; margin-left: 30px; position: relative; }
.hbnr .bnrtBtn3 .btn-text[data-v-7f126365] { align-items: flex-end; display: flex; flex-shrink: 0; height: 27px; }
.hbnr .bnrtBtn3 .btn-text .btn-text-num[data-v-7f126365] { display: block; font-size: 21px; line-height: 1.17; margin-left: 1px; }
.hbnr .bnrtBtn3 svg[data-v-7f126365] { margin-left: 6px; margin-top: 4px; }
.hbnr .bnrtBtn3 .corner_618[data-v-7f126365] { align-items: center; background: linear-gradient(270deg, rgb(255, 119, 28), rgb(255, 150, 28) 105.88%); border-radius: 8px 8px 8px 0px; color: rgb(255, 255, 255); display: flex; font-family: PingFangSC-Medium, "PingFang SC"; font-size: 14px; font-weight: 500; height: 16px; justify-content: center; padding: 0px 1px; position: absolute; right: -9px; top: 0px; width: 34px; }
.hbnr .bnrtBtn3[data-v-7f126365]:hover { color: rgb(39, 138, 255); }
.hbnr .bnrtBtn3:hover .corner_618[data-v-7f126365] { background: linear-gradient(270deg, rgb(255, 140, 62), rgb(255, 164, 62) 105.88%); }
.hbnr .bnrtBtn3[data-v-7f126365]:active { color: rgb(1, 99, 217); }
.hbnr .bnrtBtn3:active .corner_618[data-v-7f126365] { background: linear-gradient(270deg, rgb(217, 103, 24), rgb(217, 125, 24) 105.88%); }
.hbnr .team_info_tip[data-v-7f126365] { color: rgba(29, 33, 40, 0.698); font-size: 14px; height: 20px; padding-top: 20px; }
.hbnr .team_info_tip .team_info_tip_text[data-v-7f126365] { display: flex; gap: 4px; }
.hbnr .team_info_tip .team_info_tip_text a[data-v-7f126365] { color: rgb(0, 112, 249); text-decoration-color: rgb(0, 102, 238); text-decoration-thickness: 1px; text-underline-offset: 2px; text-decoration-line: underline !important; }
.hbnr .team_info_tip .team_info_tip_text a[data-v-7f126365]:hover { opacity: 0.8; }
.hbnr .bn_swipe_indicator[data-v-7f126365] { display: flex; margin-top: 34px; user-select: none; z-index: 2; }
.hbnr .bn_swipe_indicator .indicator_item[data-v-7f126365] { align-items: center; border-radius: 6px; box-sizing: border-box; color: rgb(158, 158, 159); cursor: pointer; display: flex; flex-direction: column; flex-shrink: 0; font-size: 16px; justify-content: space-between; margin-right: 20px; width: 109px; }
.hbnr .bn_swipe_indicator .indicator_item.active[data-v-7f126365] { color: rgb(0, 112, 249); }
.hbnr .bn_swipe_indicator .indicator_item.active .plugin_icon[data-v-7f126365] { background-repeat: no-repeat; background-size: 100%; height: 20px; }
.hbnr .bn_swipe_indicator .indicator_item.active .plugin_icon_todesk[data-v-7f126365] { background-image: url('../img/990a4aa_54b47d4c.svg'); }
.hbnr .bn_swipe_indicator .indicator_item.active .plugin_icon_eleven[data-v-7f126365] { background-image: url('../img/b085ec0_823d0bea.svg'); }
.hbnr .bn_swipe_indicator .indicator_item.active .plugin_icon_team[data-v-7f126365] { background-image: url('../img/004c5a0_ac40172b.svg'); }
.hbnr .bn_swipe_indicator .indicator_item[data-v-7f126365]:last-of-type { margin-right: 0px; }
.hbnr .bn_swipe_indicator .indicator_item .plugin_icon[data-v-7f126365] { background-repeat: no-repeat; background-size: 100%; height: 20px; margin: 0px auto; width: auto; }
.hbnr .bn_swipe_indicator .indicator_item .plugin_icon_todesk[data-v-7f126365] { background-image: url('../img/ac355a1_0676bf1c.svg'); width: 80px; }
.hbnr .bn_swipe_indicator .indicator_item .plugin_icon_eleven[data-v-7f126365] { background-image: url('../img/cb90548_719dc647.svg'); width: 59px; }
.hbnr .bn_swipe_indicator .indicator_item .plugin_icon_team[data-v-7f126365] { background-image: url('../img/14f9d02_3eba48df.svg'); width: 68px; }
.hbnr .bn_swipe_indicator .indicator_item .plugin_icon_audit[data-v-7f126365] { background-image: url('../img/9052fff_e62d5e3c.svg'); width: 65px; }
.hbnr .bn_swipe_indicator .indicator_item .process_box[data-v-7f126365] { background: rgba(155, 159, 171, 0.2); border-radius: 15px; height: 2px; margin: 7px auto 0px; overflow: hidden; width: 109px; }
.hbnr .bn_swipe_indicator .indicator_item .process_box .process_ing[data-v-7f126365] { background: linear-gradient(90deg, rgb(1, 117, 255) 43.33%, rgba(1, 117, 255, 0)); height: 100%; transition: width 0.1s; width: 0px; }
.hbnr .bn_swipe_indicator.todesk .indicator_item .plugin_icon_team[data-v-7f126365] { background-image: url('../img/6b4f64e_552fd6f8.svg'); }
.hbnr .bn_swipe_indicator.todesk .indicator_item .plugin_icon_audit[data-v-7f126365] { background-image: url('../img/88a066f_34952025.svg'); }
.hbnr .bn_swipe_indicator.team .indicator_item .plugin_icon_todesk[data-v-7f126365] { background-image: url('../img/3c14e72_b080a8cd.svg'); }
.hbnr .bn_swipe_indicator.team .indicator_item .plugin_icon_audit[data-v-7f126365] { background-image: url('../img/9052fff_e62d5e3c.svg'); }
.hbnr .bn_swipe_indicator.audit .indicator_item .plugin_icon_todesk[data-v-7f126365] { background-image: url('../img/3c14e72_b080a8cd.svg'); }
.hbnr .bn_swipe_indicator.audit .indicator_item .plugin_icon_team[data-v-7f126365] { background-image: url('../img/14f9d02_3eba48df.svg'); }
.hbnr .bn_swipe_indicator.audit .indicator_item .plugin_icon_audit[data-v-7f126365] { background-image: url('../img/5355cee_2a2d36cd.svg'); }
.hbnr_bkg_max[data-v-7f126365] { display: none; }
.team_download[data-v-7f126365] { position: relative; overflow: initial !important; }
.team_download .team_discount_icon[data-v-7f126365] { height: 22px; object-fit: contain; position: absolute; right: -6px; top: -14px; width: auto; }
@media screen and (min-width: 2560px) {
  .hbnr_bkg_bx.todeskAnniv .hbnr_bkg[data-v-7f126365] { display: none; }
  .hbnr_bkg_bx.todeskAnniv .hbnr_bkg_max[data-v-7f126365] { display: block; }
}

*{animation:none !important;}
html,body{overflow-x:hidden;}