
@keyframes progress {
    0% {
        background-position: 0 0
    }

    to {
        background-position: 32px 0
    }
}


@keyframes rotate {
    to {
        transform: rotate(1turn)
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35
    }

    to {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124
    }
}

.el-avatar {
    background: #c0c4cc;
    box-sizing: border-box;
    color: #fff;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    text-align: center;
    width: 40px
}

.el-drawer,
.el-drawer__body>* {
    -webkit-box-sizing: border-box
}


@keyframes el-drawer-fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes rtl-drawer-in {
    0% {
        transform: translate(100%)
    }

    to {
        transform: translate(0)
    }
}

@keyframes rtl-drawer-out {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(100%)
    }
}

@keyframes ltr-drawer-in {
    0% {
        transform: translate(-100%)
    }

    to {
        transform: translate(0)
    }
}

@keyframes ltr-drawer-out {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-100%)
    }
}

@keyframes ttb-drawer-in {
    0% {
        transform: translateY(-100%)
    }

    to {
        transform: translate(0)
    }
}

@keyframes ttb-drawer-out {
    0% {
        transform: translate(0)
    }

    to {
        transform: translateY(-100%)
    }
}

@keyframes btt-drawer-in {
    0% {
        transform: translateY(100%)
    }

    to {
        transform: translate(0)
    }
}

@keyframes btt-drawer-out {
    0% {
        transform: translate(0)
    }

    to {
        transform: translateY(100%)
    }
}


.el-popconfirm__main,
.el-skeleton__image {
    -webkit-box-align: center;
    display: -ms-flexbox;
    display: -webkit-box
}

.el-popconfirm__main {
    align-items: center;
    display: flex
}

.el-popconfirm__icon {
    margin-right: 5px
}

.el-popconfirm__action {
    margin: 0;
    text-align: right
}

@keyframes el-skeleton-loading {
    0% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}

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

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

.animated.hinge {
    animation-duration: 2s
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    to {
        transform: translateZ(0);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    40%,
    43% {
        transform: translate3d(0, -30px, 0);
        transition-timing-function: cubic-bezier(.755, .05, .855, .06)
    }

    70% {
        transform: translate3d(0, -15px, 0);
        transition-timing-function: cubic-bezier(.755, .05, .855, .06)
    }

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

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

@keyframes flash {

    0%,
    50%,
    to {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }

    to {
        transform: scaleX(1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    0% {
        transform: scaleX(1)
    }

    30% {
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        transform: scale3d(.75, 1.25, 1)
    }

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

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

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

    to {
        transform: scaleX(1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {

    0%,
    to {
        transform: translateZ(0)
    }

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

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

.shake {
    animation-name: shake
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    60% {
        transform: rotate(5deg)
    }

    80% {
        transform: rotate(-5deg)
    }

    to {
        transform: rotate(0)
    }
}

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

@keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%,
    20% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        transform: scaleX(1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: none
    }

    15% {
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }

    30% {
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }

    45% {
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }

    60% {
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }

    75% {
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }

    to {
        transform: none
    }
}

.wobble {
    animation-name: wobble
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

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

    20% {
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        transform: scale3d(.9, .9, .9)
    }

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

    80% {
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

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

@keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    to {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

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

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

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

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

    to {
        transform: none
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    to {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

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

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

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

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

    to {
        transform: none
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    to {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

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

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

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

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

    to {
        transform: none
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    to {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

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

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

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

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

    to {
        transform: translateZ(0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9, .9, .9)
    }

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

    to {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    animation-duration: .75s;
    animation-name: bounceOut
}

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

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

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

.bounceOutDown {
    animation-name: bounceOutDown
}

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

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

.bounceOutLeft {
    animation-name: bounceOutLeft
}

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

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

.bounceOutRight {
    animation-name: bounceOutRight
}

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

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

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

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

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

    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

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

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

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

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

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

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

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

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

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

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

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

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

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

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

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

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    0% {
        animation-timing-function: ease-out;
        transform: perspective(400px) rotateY(-1turn)
    }

    40% {
        animation-timing-function: ease-out;
        transform: perspective(400px) translateZ(150px) rotateY(-190deg)
    }

    50% {
        animation-timing-function: ease-in;
        transform: perspective(400px) translateZ(150px) rotateY(-170deg)
    }

    80% {
        animation-timing-function: ease-in;
        transform: perspective(400px) scale3d(.95, .95, .95)
    }

    to {
        animation-timing-function: ease-in;
        transform: perspective(400px)
    }
}

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

@keyframes flipInX {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
        transition-timing-function: ease-in
    }

    40% {
        transform: perspective(400px) rotateX(-20deg);
        transition-timing-function: ease-in
    }

    60% {
        opacity: 1;
        transform: perspective(400px) rotateX(10deg)
    }

    80% {
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

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

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
        transition-timing-function: ease-in
    }

    40% {
        transform: perspective(400px) rotateY(-20deg);
        transition-timing-function: ease-in
    }

    60% {
        opacity: 1;
        transform: perspective(400px) rotateY(10deg)
    }

    80% {
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        transform: perspective(400px)
    }
}

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

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }

    30% {
        opacity: 1;
        transform: perspective(400px) rotateX(-20deg)
    }

    to {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg)
    }
}

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

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }

    30% {
        opacity: 1;
        transform: perspective(400px) rotateY(-15deg)
    }

    to {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg)
    }
}

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

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

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

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

    to {
        opacity: 1;
        transform: none
    }
}

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

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

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

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

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-200deg);
        transform-origin: center
    }

    to {
        opacity: 1;
        transform: none;
        transform-origin: center
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    0% {
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: left bottom
    }

    to {
        opacity: 1;
        transform: none;
        transform-origin: left bottom
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    0% {
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: right bottom
    }

    to {
        opacity: 1;
        transform: none;
        transform-origin: right bottom
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    0% {
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: left bottom
    }

    to {
        opacity: 1;
        transform: none;
        transform-origin: left bottom
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    0% {
        opacity: 0;
        transform: rotate(-90deg);
        transform-origin: right bottom
    }

    to {
        opacity: 1;
        transform: none;
        transform-origin: right bottom
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    0% {
        opacity: 1;
        transform-origin: center
    }

    to {
        opacity: 0;
        transform: rotate(200deg);
        transform-origin: center
    }
}

.rotateOut {
    animation-name: rotateOut
}

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

    to {
        opacity: 0;
        transform: rotate(45deg);
        transform-origin: left bottom
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    0% {
        opacity: 1;
        transform-origin: right bottom
    }

    to {
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: right bottom
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    0% {
        opacity: 1;
        transform-origin: left bottom
    }

    to {
        opacity: 0;
        transform: rotate(-45deg);
        transform-origin: left bottom
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    0% {
        opacity: 1;
        transform-origin: right bottom
    }

    to {
        opacity: 0;
        transform: rotate(90deg);
        transform-origin: right bottom
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

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

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

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

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

.hinge {
    animation-name: hinge
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-120deg)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate(120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

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

    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

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

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

.zoomInDown {
    animation-name: zoomInDown
}

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

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

.zoomInLeft {
    animation-name: zoomInLeft
}

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

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

.zoomInRight {
    animation-name: zoomInRight
}

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

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

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

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

    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

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

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

.zoomOutDown {
    animation-name: zoomOutDown
}

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

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

.zoomOutLeft {
    animation-name: zoomOutLeft
}

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

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

.zoomOutRight {
    animation-name: zoomOutRight
}

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

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

.zoomOutUp {
    animation-name: zoomOutUp
}

@keyframes slideInDown {
    0% {
        transform: translateY(-100%);
        visibility: visible
    }

    to {
        transform: translateY(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        visibility: visible
    }

    to {
        transform: translateX(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        visibility: visible
    }

    to {
        transform: translateX(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100%);
        visibility: visible
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(100%);
        visibility: hidden
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(-100%);
        visibility: hidden
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateX(0)
    }

    to {
        transform: translateX(100%);
        visibility: hidden
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-100%);
        visibility: hidden
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

.swiper-container,
.swiperthree {
    list-style: none;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    box-sizing: content-box;
    display: flex;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%;
    z-index: 1
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0)
}

.swiper-container-multirow>.swiper-wrapper {
    flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
    margin: 0 auto;
    transition-timing-function: ease-out
}

.swiper-slide {
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-container-3d {
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal>.swiper-wrapper {
    touch-action: pan-y
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical>.swiper-wrapper {
    touch-action: pan-x
}

.swiper-button-next,
.swiper-button-prev {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 27px 44px;
    cursor: pointer;
    height: 44px;
    margin-top: -22px;
    position: absolute;
    top: 50%;
    width: 27px;
    z-index: 10
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    cursor: auto;
    opacity: .35;
    pointer-events: none
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22 22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%230074ac'/%3E%3C/svg%3E");
    left: 10px;
    right: auto
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22 5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%230074ac'/%3E%3C/svg%3E");
    left: auto;
    right: 10px
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22 22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22 5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22 22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22 5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    left: calc(50% - 100px);
    transform: translateZ(0);
    transition: opacity .3s;
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    font-size: 0;
    overflow: hidden
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    position: relative;
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    background: #000 !important;
    border-radius: 100% !important;
    display: inline-block !important;
    height: 8px !important;
    opacity: .2 !important;
    width: 8px !important;
}

button.swiper-pagination-bullet {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer !important;
}

.swiper-pagination-bullet-active {
    background: #007aff !important;
    opacity: 1 !important;
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    display: block !important;
    margin: 6px 0 !important;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: top .2s, -webkit-transform .2s;
    transition: transform .2s, top .2s;
    transition: transform .2s, top .2s, -webkit-transform .2s
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: left .2s, -webkit-transform .2s;
    transition: transform .2s, left .2s;
    transition: transform .2s, left .2s, -webkit-transform .2s
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: right .2s, -webkit-transform .2s;
    transition: transform .2s, right .2s;
    transition: transform .2s, right .2s, -webkit-transform .2s
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    height: 4px;
    left: 0;
    top: 0;
    width: 100%
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical>.swiper-pagination-progressbar {
    height: 100%;
    left: 0;
    top: 0;
    width: 4px
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: hsla(0, 0%, 100%, .25)
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, .25)
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    background: rgba(0, 0, 0, .1);
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none
}

.swiper-container-horizontal>.swiper-scrollbar {
    bottom: 3px;
    height: 5px;
    left: 1%;
    position: absolute;
    width: 98%;
    z-index: 50
}

.swiper-container-vertical>.swiper-scrollbar {
    height: 98%;
    position: absolute;
    right: 3px;
    top: 1%;
    width: 5px;
    z-index: 50
}

.swiper-scrollbar-drag {
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    height: 100%;
    left: 0;
    position: relative;
    top: 0;
    width: 100%
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    text-align: center;
    width: 100%
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s steps(12) infinite;
    height: 42px;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    transform-origin: 50%;
    width: 42px;
    z-index: 10
}

.swiper-lazy-preloader:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    content: "";
    display: block;
    height: 100%;
    width: 100%
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")
}

@keyframes swiper-preloader-spin {
    to {
        transform: rotate(1turn)
    }
}

.swiper-container .swiper-notification {
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

.swiper-container-cube .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 0
}

.swiper-container-cube .swiper-cube-shadow {
    background: #000;
    bottom: 0;
    filter: blur(50px);
    height: 100%;
    left: 0;
    opacity: .6;
    position: absolute;
    width: 100%;
    z-index: 0
}

.swiper-container-flip {
    overflow: visible
}

.swiper-container-flip .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 0
}

.swiper-container-coverflow .swiper-wrapper {
    -ms-perspective: 1200px
}

blockquote,
body,
dd,
div,
dl,
dt,
fieldset,
figcaption,
figure,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
ol,
p,
pre,
span,
td,
textarea,
th,
ul {
    margin: 0;
    outline: 0;
    padding: 0
}

a:link,
a:visited {
    color: inherit
}

a:-moz-any-link {
    color: inherit
}

a:any-link {
    color: inherit
}

a>div,
a>h4,
a>h5,
a>img,
a>p {
    cursor: pointer
}

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

fieldset,
img {
    border: 0;
    vertical-align: middle
}

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

ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0
}

caption,
th {
    text-align: left
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%
}

a,
button,
input,
select,
textarea {
    outline: 0
}

abbr,
acronym {
    border: 0
}

a {
    cursor: pointer
}

body,
html {
    scroll-behavior: smooth
}

body {
    font-family: Helvetica, Tahoma, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    font-size: 16px
}

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

.fl {
    float: left
}

.fr {
    float: right
}

ul {
    list-style: none
}

a {
    -webkit-text-decoration: none;
    text-decoration: none
}

.flexBetween {
    justify-content: space-between
}

.flexBetween,
.flexStart {
    display: flex;
    flex-wrap: wrap
}

.flexStart {
    display: -webkit-flex;
    justify-content: flex-start
}

.flexCenter {
    justify-content: center
}

.flexCenter,
.flexEnd {
    display: flex;
    flex-wrap: wrap
}

.flexEnd {
    justify-content: flex-end
}




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

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

.layerVideo .box video {
    width: 100%
}

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

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

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

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

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

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

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

@keyframes bounce-up {
    10% {
        transform: rotate(20deg)
    }

    20% {
        transform: rotate(-10deg)
    }

    30% {
        transform: rotate(5deg)
    }

    40% {
        transform: rotate(-5deg)
    }

    50%,
    to {
        transform: rotate(0)
    }
}

.lpk_ipad,
.lpk_phone {
    display: none
}

@media screen and (max-width:992px) {
    .lpk_pc {
        display: none
    }

    .lpk_phone {
        display: block
    }
}

section div {
    max-width: 100%
}

body {
    overflow-x: hidden
}


.index_banner{
    position: relative;
}
.index_banner .banner {
    height: 500px
}

.index_banner .banner .swiper-slide {
    transition: .4s
}

.index_banner .banner .swiper-slide img {
    width: 100%
}

.index_banner .banner .swiper-pagination {
    bottom: 25px
}

.index_banner .banner .swiper-pagination p,
.index_banner .banner .swiper-pagination span {
    border-radius: 1px !important;
    cursor: pointer !important;
    height: 4px !important;
    margin: 5px !important;
    opacity: .6 !important;
    opacity: 1 !important;
    position: relative !important;
    width: 25px !important;
}

.index_banner .banner .swiper-pagination p svg,
.index_banner .banner .swiper-pagination span svg {
    left: 0;
    position: absolute;
    top: 0
}

.index_banner .banner .swiper-pagination .path {
    stroke: rgba(41, 113, 222, .1)
}

.index_banner .banner .swiper-pagination p {
    border-radius: 4px;
    margin: 0 10px;
    overflow: hidden
}

.index_banner .banner .swiper-pagination p svg {
    opacity: 0
}

.index_banner .banner .swiper-pagination .swiper-pagination-bullet-active svg {
    opacity: 1
} 

.perceptiob {
    background: linear-gradient(0deg, #fefefe, #d9e7f9);
    height: 512px;
    position: relative
}

.perceptiob .img1 img {
    height: 470px;
    -o-object-fit: cover;
    object-fit: cover;
    opacity: 0;
    width: 100%
}

.perceptiob .box {
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 1200px
}

.perceptiob .box .img img {
    width: 100%
}

.perceptiob .box .list .icon {
    left: 0;
    position: absolute;
    top: 0
}

.perceptiob .box .list .icon img {
    width: 62px
}

.perceptiob .box .list {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.perceptiob .box .list .icon1 {
    left: 16.5%;
    position: absolute;
    top: 20%
}

.perceptiob .box .list .icon2 {
    left: 12.5%;
    top: 82%
}

.perceptiob .box .list .icon3 {
    left: 63%;
    top: 34%
}

.perceptiob .box .list .icon4 {
    left: 74%;
    top: 12%
}

.perceptiob .box .list .icon5 {
    left: 81.5%;
    top: 76%
}

.perceptiob .box .list .icon6 {
    left: 96%;
    top: 85%
}

.perceptiob .box .main {
    left: -50px;
    max-width: none;
    position: absolute;
    top: 96px;
    width: calc(100% + 100px)
}

.perceptiob .box .main .title {
    text-align: center
}

.perceptiob .box .main .title h5 {
    color: #333;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 2px
}

.perceptiob .box .main .title h6 {
    color: #2971de;
    font-size: 16px;
    margin-top: 4px
}

.perceptiob .box .main .main_ {
    margin-top: 28px
}

.perceptiob .box .main .main_ .item {
    border-radius: 12px;
    padding: 42px 0;
    position: relative;
    text-align: center;
    transition: .4s;
    width: 33.333%
}

.perceptiob .box .main .main_ .item a {
    display: block
}

.perceptiob .box .main .main_ .item .con1 {
    color: #333;
    font-size: 18px;
    font-weight: 500
}

.perceptiob .box .main .main_ .item .con2 {
    color: #2971de;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 5px 0
}

.perceptiob .box .main .main_ .item .con3 {
    color: #000;
    font-size: 14px
}

.perceptiob .box .main .main_ .item .con3 img {
    height: 12px;
    margin-left: 5px;
    opacity: 0;
    transition: .4s
}

.perceptiob .box .main .main_ .item:after {
    background: #2971de;
    border-radius: 16px 16px 0 0;
    bottom: 0;
    content: "";
    height: 4px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: .4s;
    width: 0
}

.perceptiob .box .main .main_ .item:hover {
    background: rgba(247, 247, 253, .7);
    box-shadow: 0 12px 36px rgba(41, 113, 222, .2)
}

.perceptiob .box .main .main_ .item:hover:after {
    width: 200px
}

.perceptiob .box .main .main_ .item:hover .con3 {
    color: #2971de
}

.perceptiob .box .main .main_ .item:hover .con3 img {
    opacity: 1
}

.w1200 {
    margin: auto;
    width: 1100px
}

.indexOnlineBusiness {
    padding: 92px 0 83px
}

.indexOnlineBusiness>h5 {
    color: #333;
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 60px;
    text-align: center
}

.indexOnlineBusiness .box {
    box-sizing: border-box;
    flex-wrap: nowrap;
    justify-content: flex-start;
    position: relative
}

.indexOnlineBusiness .box .boxLeft {
    margin-top: 10px;
    width: 290px
}

.indexOnlineBusiness .box .boxLeft .item {
    border-bottom: 1px solid #e0e0e0
}

.indexOnlineBusiness .box .boxLeft .item a {
    display: block;
    padding: 0 20px;
    position: relative
}

.indexOnlineBusiness .box .boxLeft .item a .top {
    line-height: 72px;
    position: relative;
    z-index: 1
}
.indexOnlineBusiness .top>p{
    height: 167px;
}
.indexOnlineBusiness .box .boxLeft .item a .top .title {
    color: #444;
    font-size: 18px;
    font-weight: 500
}

.indexOnlineBusiness .box .boxLeft .item a .top .img img {
    filter: invert(.2);
    height: 14px
}

.indexOnlineBusiness .box .boxLeft .item a .bot {
    background-color: #2971de;
    border-radius: 12px;
    box-shadow: 3px 4px 18px 0 rgba(41, 113, 222, .5);
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%
}

.indexOnlineBusiness .box .boxLeft .item a .bot img {
    border-radius: 12px;
    height: 90px;
    -o-object-fit: cover;
    object-fit: cover;
    overflow: hidden
}

.indexOnlineBusiness .box .boxLeft .item a:hover .top .title {
    color: #2971de
}

.indexOnlineBusiness .box .boxLeft .active {
    border-bottom: 2px solid #fff
}

.indexOnlineBusiness .box .boxLeft .active a .top .title {
    color: #fff !important;
    font-size: 20px;
    font-weight: 500
}

.indexOnlineBusiness .box .boxLeft .active a .top .img img {
    animation: right_c 1s linear infinite;
    filter: invert(0);
    margin-right: 2px
}

@keyframes right_c {
    0% {
        margin-right: 2px
    }

    50% {
        margin-right: 6px
    }

    to {
        margin-right: 2px
    }
}

.indexOnlineBusiness .box .boxLeft .active a .bot {
    opacity: 1
}

.indexOnlineBusiness .box .boxRight {
    margin-left: 32px;
    margin-top: -20px;
    width: calc(100% - 322px)
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ {
    height: 0;
    margin-left: 12px;
    overflow: hidden
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-container,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-container {
    padding: 20px 0
}
.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide{
 width: 520px !important;
 margin-right: 45px;
}
.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide {
    background: linear-gradient(45deg, hsla(0, 0%, 100%, .4), rgba(237, 240, 245, .4));
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    box-sizing: border-box;
    padding: 54px;
    transition: .4s;
    width: 520px;
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide {
    width: 810px;
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item {
    width: 910px
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content1,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content1 {
    margin-top: 0;
    position: relative
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content1:after,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content1:after {
    background: #2971de;
    border-radius: 0 4px 4px 0;
    content: "";
    height: 80%;
    left: -54px;
    position: absolute;
    top: 0;
    width: 4px
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content1 .icon,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content1 .icon {
    filter: drop-shadow(5px 5px 10px rgba(41, 113, 222, .4))
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content1 .icon img,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content1 .icon img {
    /*height: 78px;*/
    margin-top: 8px;
    /*width: 78px*/
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content1 .text,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content1 .text {
    align-items: center;
    display: flex;
    margin-left: 12px;
    max-width: 76%
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content1 .text p,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content1 .text p {
    color: #333;
    font-size: 22px;
    font-weight: 500
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content2,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content2 {
    color: #4b5a79;
    font-size: 14px;
    height: 242px;
    line-height: 24px;
    margin-bottom: 24px;
    margin-top: 38px;
    overflow-y: auto;
    padding-right: 10px;
    text-align: justify;
    width: 101%
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content2 .bot,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content2 .bot {
    color: #2971de;
    font-size: 16px;
    font-weight: 500;
    margin-top: 32px
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content2::-webkit-scrollbar,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content2::-webkit-scrollbar {
    height: 2px;
    width: 2px
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content2::-webkit-scrollbar-thumb,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content2::-webkit-scrollbar-thumb {
    background: rgba(41, 113, 222, .7);
    border-radius: 2px
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content2::-webkit-scrollbar-track,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content2::-webkit-scrollbar-track {
    background: rgba(41, 113, 222, .3);
    border-radius: 2px
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content3,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content3 {
    margin-top: 36px
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content3 p,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content3 p {
    margin-right: 16px
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content3 p a,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content3 p a {
    border: 1px solid #dfdfe1;
    border-radius: 4px;
    color: #4b5a79;
    display: block;
    font-size: 16px;
    line-height: 46px;
    text-align: center;
    transition: .4s;
    transition: .3s;
    width: 152px
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide .item .content3 p a:hover,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide .item .content3 p a:hover {
    background: #2971de;
    box-shadow: 0 10px 12px rgba(41, 113, 222, .3);
    color: #fff !important;
    transform: translateY(-3px)
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide:hover,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide:hover {
    background: linear-gradient(0deg, rgba(237, 240, 245, .6), #fff);
    box-shadow: 3.483px 4.43px 18px 0 rgba(41, 113, 222, .2);
    cursor: pointer
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide:hover .content3 p a,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide:hover .content3 p a {
    border: 1px solid #2971de;
    color: #2971de
}

.indexOnlineBusiness .box .boxRight .list_box .list .banner .swiper-slide:hover .content3 p:first-child a,
.indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide:hover .content3 p:first-child a {
    background: #2971de;
    color: #fff
}

.indexOnlineBusiness .box .boxRight .list_box .list .active {
    height: auto;
    margin-left: 0
}

.WhyYundun {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNS4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA1MTIwIDIzMTAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMjAgMjMxMDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCgkuc3Qwe2ZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO2ZpbGw6dXJsKCNpbmRleF93eV9iZ18xXyk7fQ0KPC9zdHlsZT4NCjxsaW5lYXJHcmFkaWVudCBpZD0iaW5kZXhfd3lfYmdfMV8iIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCIgeTE9IjExNTUiIHgyPSI1MTIwIiB5Mj0iMTE1NSIgZ3JhZGllbnRUcmFuc2Zvcm09Im1hdHJpeCgxIDAgMCAtMSAwIDIzMTApIj4NCgk8c3RvcCAgb2Zmc2V0PSIwIiBzdHlsZT0ic3RvcC1jb2xvcjojMDM2QUVDIi8+DQoJPHN0b3AgIG9mZnNldD0iMSIgc3R5bGU9InN0b3AtY29sb3I6IzAwOTFFMSIvPg0KPC9saW5lYXJHcmFkaWVudD4NCjxwYXRoIGlkPSJpbmRleF93eV9iZyIgY2xhc3M9InN0MCIgZD0iTTAsMGg1MTIwdjEwMDRMMCwyMzEwVjB6Ii8+DQo8L3N2Zz4NCg==) no-repeat 0 0;
    background-size: 100% auto;
    padding: 64px 0 92px
}

.WhyYundun>h5 {
    text-align: center;
    color: #fff;
    font-size: 32px;
    
}

.WhyYundun>h5 img {
    height: 35px
}

.WhyYundun .box1 {
    background: #fff;
    border-radius: 12px;
    margin: 64px auto auto;
    min-width: 1280px;
    width: 70%
}

.WhyYundun .box {
    min-height: 100px;
    padding-top: 64px
}

.WhyYundun .box .h5 {
    color: #444;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center
}

.WhyYundun .box .togg {
    border-radius: 8px;
    box-shadow: 0 0 16px rgba(41, 113, 222, .2);
    margin-bottom: 68px;
    margin-top: 52px;
    padding: 12px 16px
}

.WhyYundun .box .togg p a {
    border-radius: 4px;
    color: #4b5a79;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 42px;
    text-align: center;
    transition: .4s;
    width: 148px
}

.WhyYundun .box .togg .active a {
    background: #2971de;
    box-shadow: 0 5px 10px rgba(41, 113, 222, .4);
    color: #fff;
    font-weight: 500
}

.WhyYundun .box .banner .swiperthree {
    height: 880px;
    position: relative
}

.WhyYundun .box .banner .swiperthree.on:after {
    opacity: 0
}

.WhyYundun .box .banner .swiperthree .swiper-slide {
    height: 300px
}

.WhyYundun .box .banner .swiperthree .swiper-slide .item {
    display: flex;
    justify-content: space-between;
    padding: 20px 0
}

.WhyYundun .box .banner .swiperthree .swiper-slide .item .left {
    box-sizing: border-box;
    padding: 0 35px;
    text-align: center;
    width: 50%
}

.WhyYundun .box .banner .swiperthree .swiper-slide .item .left img {
    height: 300px;
    max-width: 100%;
    width: 500px
}

.WhyYundun .box .banner .swiperthree .swiper-slide .item .right {
    box-sizing: border-box;
    padding: 64px;
    text-align: justify;
    width: 50%
}

.WhyYundun .box .banner .swiperthree .swiper-slide .item .right .content1 {
    color: #3a426b;
    font-size: 22px;
    font-weight: 500
}

.WhyYundun .box .banner .swiperthree .swiper-slide .item .right .content1 span {
    color: #2971de;
    font-size: 28px;
    font-weight: 500;
    vertical-align: baseline
}

.WhyYundun .box .banner .swiperthree .swiper-slide .item .right .content1 span font {
    font-size: 42px
}

.WhyYundun .box .banner .swiperthree .swiper-slide .item .right .content2 {
    color: #4b5a79;
    font-size: 14px;
    line-height: 24px;
    margin-top: 12px
}

.WhyYundun .box .banner .swiperthree .swiper-slide:nth-child(2n) .item {
    flex-flow: row-reverse
}

.WhyYundun .box .banner .swiper-scrollbar {
    right: 50%;
    transform: translateX(50%);
    width: 16px
}

.WhyYundun .box .banner .swiper-scrollbar:after {
    background-color: #e9f1fc;
    content: "";
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 2px
}

.WhyYundun .box .banner .swiper-scrollbar .swiper-scrollbar-drag {
    
    background-size: 100% auto;
    cursor: pointer;
    filter: drop-shadow(0 5px 10px rgba(41, 113, 222, .4));
    margin-top: 0;
    position: relative;
    z-index: 2
}

.swiper-scrollbar-drag img {
    height: 50px;
    margin-left: -15px;
    width: 47px
}

.WhyYundun .box .banner .slide {
    display: none
}




.TechnologyArchitecture {
    background: url(static/image/index_str_bg.6607ba8.png) no-repeat bottom;
    background-size: 100% 70%;
    min-width: 1200px;
    padding-bottom: 110px
}

.TechnologyArchitecture .title {
    margin-bottom: 64px;
    text-align: center
}

.TechnologyArchitecture .title h5 {
    color: #444;
    font-size: 36px;
    font-weight: 500
}

.TechnologyArchitecture #scrollDiv {
    height: 30px;
    left: 40%;
    line-height: 30px;
    margin-left: -300px;
    overflow: hidden;
    position: relative;
    width: 900px
}

.TechnologyArchitecture #scrollDiv li {
    height: 30px
}

.TechnologyArchitecture .title h6 {
    color: #444;
    font-size: 16px;
    margin-top: 8px
}

.TechnologyArchitecture .title h6 span {
    color: #2971de
}

.TechnologyArchitecture .box .main {
    position: relative
}

.TechnologyArchitecture .box .main .fang1 {
    animation: eUpDown1 6s linear infinite;
    left: 15%;
    position: absolute;
    top: 1%;
    z-index: 1
}

.TechnologyArchitecture .box .main .fang1 img {
    width: 65px
}

.TechnologyArchitecture .box .main .fang2 {
    animation: eDownUp1 6s linear infinite;
    left: -13%;
    position: absolute;
    top: 57%;
    z-index: 1
}

.TechnologyArchitecture .box .main .fang2 img {
    width: 132px
}

.TechnologyArchitecture .box .main .fang3 {
    animation: eUpDown1 5s linear infinite;
    position: absolute;
    right: -5%;
    top: 40%;
    z-index: 1
}

.TechnologyArchitecture .box .main .fang3 img {
    width: 65px
}

@keyframes eUpDown1 {
    0% {
        top: 1%
    }

    50% {
        top: 3%
    }

    to {
        top: 1%
    }
}

@keyframes eDownUp1 {
    0% {
        top: 57%
    }

    50% {
        top: 52%
    }

    to {
        top: 57%
    }
}

.TechnologyArchitecture .box .main .boxTop {
    margin-bottom: 86px
}

.TechnologyArchitecture .box .main .boxTop .left {
    position: relative
}

.TechnologyArchitecture .box .main .boxTop .left p {
    margin-left: 350px;
    position: relative;
    z-index: 1
}

.TechnologyArchitecture .box .main .boxTop .left p img {
    width: 100px
}

.TechnologyArchitecture .box .main .boxTop .left p:hover~.svg_left .svg1 .move {
    animation: move 3s linear infinite normal
}

.TechnologyArchitecture .box .main .boxTop .left p:hover~.svg_left .svg2 {
    opacity: 1
}

.TechnologyArchitecture .box .main .boxTop .left p:hover~.svg_right .svg1 .move1 {
    animation: move1 3s linear infinite normal
}

.TechnologyArchitecture .box .main .boxTop .left p:hover~.svg_right .svg2 {
    opacity: 1
}

.TechnologyArchitecture .box .main .boxTop .left .svg_left {
    left: 161px;
    position: absolute;
    top: 74px
}

.TechnologyArchitecture .box .main .boxTop .left .svg_left .svg1 {
    height: 264px;
    overflow: hidden
}

.TechnologyArchitecture .box .main .boxTop .left .svg_left .svg1 .move {
    stroke-dasharray: 30 530;
    stroke-dashoffset: 30
}

.TechnologyArchitecture .box .main .boxTop .left .svg_left .svg2 {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: -1
}

.TechnologyArchitecture .box .main .boxTop .left .svg_left .svg2 svg {
    left: 0;
    position: absolute;
    top: 0
}

.TechnologyArchitecture .box .main .boxTop .left .svg_left .svg2 svg path {
    stroke-dasharray: 530, 530
}

.TechnologyArchitecture .box .main .boxTop .left .svg_right {
    left: 366px;
    position: absolute;
    right: 0;
    top: 69px
}

.TechnologyArchitecture .box .main .boxTop .left .svg_right .svg1 .move1 {
    stroke-dasharray: 30 1830;
    stroke-dashoffset: 30
}

.TechnologyArchitecture .box .main .boxTop .left .svg_right .svg2 {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: -1
}

.TechnologyArchitecture .box .main .boxTop .left .svg_right .svg2 svg {
    left: 0;
    position: absolute;
    top: 0
}

.TechnologyArchitecture .box .main .boxTop .left .svg_right .svg2 svg path {
    stroke-dasharray: 1830, 1830
}

.TechnologyArchitecture .box .main .boxTop .right {
    position: relative
}

.TechnologyArchitecture .box .main .boxTop .right p {
    margin-right: 118px;
    position: relative;
    z-index: 1
}

.TechnologyArchitecture .box .main .boxTop .right p img {
    width: 402px
}

.TechnologyArchitecture .box .main .boxTop .right p:hover~.svg_left .svg1 .xian1 {
    animation: xian1 1.5s linear infinite normal;
    opacity: 1
}

.TechnologyArchitecture .box .main .boxTop .right p:hover~.svg_left .svg2 {
    opacity: 1
}

.TechnologyArchitecture .box .main .boxTop .right .svg_left {
    left: 46px;
    position: absolute;
    top: 40px
}

.TechnologyArchitecture .box .main .boxTop .right .svg_left .svg1 svg .xian1 {
    opacity: 0
}

.TechnologyArchitecture .box .main .boxTop .right .svg_left .svg2 {
    left: -13.5px;
    opacity: 0;
    position: absolute;
    top: 0;
    z-index: -1
}

.TechnologyArchitecture .box .main .boxTop .right .svg_center {
    left: 200px
}

.TechnologyArchitecture .box .main .boxTop .right .svg_right {
    left: 350px
}

.TechnologyArchitecture .box .main .boxBot {
    position: relative;
    z-index: 1
}

.TechnologyArchitecture .box .main .boxBot img {
    margin-left: 3%;
    width: 94%
}

@keyframes move {
    0% {
        stroke-dashoffset: 0
    }

    to {
        stroke-dashoffset: -530
    }
}

@keyframes move1 {
    0% {
        stroke-dashoffset: 0
    }

    to {
        stroke-dashoffset: -1830
    }
}

@keyframes xian1 {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(100%)
    }
}




.relative {
    position: relative;
    z-index: 1
}


.wide {
    width: 1680px
}


.p72 {
    padding-top: 64px
}

.p72_ {
    padding-bottom: 64px
}

.m45 {
    margin-top: 42px
}

.index_h5 {
    color: #444;
    font-size: 22px;
    font-weight: 500
}

.maodian {
    position: relative;
    top: -134px
}
.sp_l {
    background: linear-gradient(90deg, #f6f8fb, #fff) !important
}


.yunBanner {
    position: relative
}

.yunBanner .img img {
    max-height: 500px;
    min-height: 360px;
    height: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.yunBanner .posi {
    align-items: center;
    display: flex;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.yunBanner .posi .main {
    color: #fff
}

.yunBanner .posi .main p {
    font-size: 28px;
    letter-spacing: 2px;
    padding: 0 36px
}

.yunBanner .posi .main h5 {
    font-size: 46px;
    font-weight: 700;
    margin-top: 4px;
    padding: 0 36px
}

.whyYun .box .list {
    padding: 52px
}

.whyYun .box .list .item .left {
    box-sizing: border-box;
    padding: 0 36px;
    text-align: center;
    width: 50%;
    line-height: 429px;
}

.whyYun .box .list .item .left img {
    height: auto;
    min-width: 500px;
    width: 500px
}

.whyYun .box .list .item .right {
    box-sizing: border-box;
    padding: 64px 36px;
    width: 50%
}

.whyYun .box .list .item .right h5 {
    color: #3a426b;
    font-size: 24px;
    font-weight: 500
}

.whyYun .box .list .item .right h5 span {
    color: #2971de;
    display: inline-block;
    font-size: 28px;
    font-weight: 500;
    margin-right: 6px;
    vertical-align: baseline
}

.whyYun .box .list .item .right .text {
    color: #4b5a79;
    font-size: 14px;
    line-height: 22px;
    margin-top: 18px;
    text-align: justify
}

.whyYun .box .list:nth-child(2n) {
    background: linear-gradient(90deg, #fff, #d9e7f9)
}

.whyYun .box .list:nth-child(2n) .item {
    flex-flow: row-reverse
}

.whyYun .box .list:nth-child(4n) {
    background: linear-gradient(90deg, #d9e7f9, #fff)
}



.about_yundun {
    height: 820px;
    position: relative
}

.about_yundun .img img {
    display: block;
    height: 814px;
    left: 50%;
    margin-left: -837px;
    position: fixed;
    width: 1675px;
    z-index: -1;
}

.about_yundun .img.dis {
    opacity: 0
}

.about_yundun .posi {
    left: 0;
    position: absolute;
    text-align: center;
    top: 181px;
    width: 100%
}

.about_yundun .posi h5 {
    color: #2971de;
    font-size: 56px;
    font-weight: 700;
    text-transform: uppercase
}

.about_yundun .posi h6 {
    color: #444;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 8px
}

.about_yundun .posi1 {
    bottom: 100px;
    left: 0;
    position: absolute;
    top: 432px;
    width: 100%
}

.about_yundun .posi1 .box {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background: linear-gradient(90deg, rgba(0, 144, 226, .89), rgba(0, 106, 237, .89));
    border-radius: 12px;
    box-shadow: 4px 5px 16px 0 rgba(41, 113, 222, .2);
    color: #fff;
    padding: 40px 52px
}

.about_yundun .posi1 .box .item:first-child {
    margin-left: 128px
}

.about_yundun .posi1 .box .item .content1 {
    font-size: 18px
}

.about_yundun .posi1 .box .item .coonten2 {
    font-size: 34px;
    font-weight: 700;
    height: 46px
}

.about_yundun .posi1 .box .item .content3 {
    font-size: 14px;
    opacity: .6
}

.about_yundun .posi1 .box .item .counter {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    position: relative;
    top: 1px
}

.about_yundun1 {
    margin-top: -136px;
    position: relative;
    z-index: 2
}

.about_yundun1 h5 {
    color: #444;
    font-size: 26px;
    line-height: 36px;
    text-align: center
}

.about_yundun1 h5 span {
    color: #2971de;
    font-size: 30px;
    vertical-align: bottom
}

.about_yundun1 .box {
    margin-top: 50px
}

.about_yundun1 .box .left {
    width: 40%
}

.about_yundun1 .box .left img {
    width: 100%
}

.about_yundun1 .box .right {
    box-sizing: border-box;
    padding-left: 45px;
    width: 60%
}

.about_yundun1 .box .right p {
    color: #4b5a79;
    font-size: 14px;
    line-height: 24px
}

.about_yundun2 {
    padding: 97px 0 125px;
    position: relative;
    z-index: 2
}

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

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

.about_yundun2 .box {
    position: relative;
    z-index: 1
}

.about_yundun2 .box .item h5 {
    color: #333;
    font-size: 26px;
    font-weight: 500;
    padding-bottom: 10px
}

.about_yundun2 .box .item div {
    margin-top: 25px
}

.about_yundun2 .box .item div h6 {
    color: #2971de;
    font-size: 20px;
    font-weight: 500
}

.about_yundun2 .box .item div p {
    color: #333;
    font-size: 16px;
    margin-top: 6px
}

.about_yundun3 {
    background: linear-gradient(90deg, #fff, #d9e7f9);
    margin-top: -19px;
    padding-bottom: 60px;
    position: relative
}

.about_yundun3 .img img {
    margin-top: -506px;
    position: relative;
    width: 100%;
    z-index: 1
}

.about_yundun3 .posi {
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 1200px;
    z-index: 2
}

.about_yundun3 .posi>h5 {
    color: #333;
    font-size: 26px;
    font-weight: 500;
    left: 18.5%;
    position: absolute;
    top: 8%
}

.about_yundun3 .posi .box .item {
    left: 0;
    position: absolute;
    top: 0;
    z-index: 2
}

.about_yundun3 .posi .box .item .text .title {
    color: #2971de;
    font-size: 20px;
    margin-bottom: 6px
}

.about_yundun3 .posi .box .item .text .main p {
    color: #4b5a79;
    font-size: 14px;
    line-height: 24px;
    position: relative;
    white-space: nowrap
}

.about_yundun3 .posi .box .item .text .main p font {
    display: inline-block;
    font-size: 10px;
    margin-right: 4px
}

.about_yundun3 .posi .box .item .text .main p:after {
    background: #4b5a79;
    border-radius: 50%;
    height: 5px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 5px
}

.about_yundun3 .posi .box .item .text .main p span {
    font-size: 12px
}

.about_yundun3 .posi .box .item .text .button {
    left: -24px;
    position: absolute;
    top: -25px;
    transform: translateX(-100%) scale(.4);
    transition: .4s
}

.about_yundun3 .posi .box .item .text .button .svg1 {
    opacity: 0;
    transition: .4s
}

.about_yundun3 .posi .box .item .text .button .svg2 {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateX(-50%) translateY(-50%)
}

.about_yundun3 .posi .box .item:hover .text .button {
    transform: translateX(-100%) scale(.6)
}

.about_yundun3 .posi .box .item:hover .text .button .svg1 {
    opacity: 1
}

.about_yundun3 .posi .box .i2022 {
    left: 26.2%;
    top: 12%
}

.about_yundun3 .posi .box .i2021 {
    left: 26.2%;
    top: 21.8%
}

.about_yundun3 .posi .box .i2020 {
    left: 50%;
    top: 32.7%
}

.about_yundun3 .posi .box .i2020 .text .title {
    color: #0cf
}

.about_yundun3 .posi .box .i2020 .text .svg2 path {
    fill: #0cf
}

.about_yundun3 .posi .box .i2020 .text .button {
    left: 30px;
    top: -72px
}

.about_yundun3 .posi .box .i2019 {
    right: 8.3%;
    text-align: right;
    top: 39.4%
}

.about_yundun3 .posi .box .i2019 .text .title {
    color: #b2d642
}

.about_yundun3 .posi .box .i2019 .text .svg2 path {
    fill: #b2d642
}

.about_yundun3 .posi .box .i2019 .text .button {
    left: auto;
    right: -18px;
    top: -28px;
    transform: translateX(100%) scale(.4)
}

.about_yundun3 .posi .box .i2019:hover .text .button {
    transform: translateX(100%) scale(.6)
}

.about_yundun3 .posi .box .i2019:hover .text .button .svg1 {
    opacity: 1
}

.about_yundun3 .posi .box .i2018 {
    left: 20.2%;
    top: 41.1%
}

.about_yundun3 .posi .box .i2018 .text .title {
    color: #ffb400
}

.about_yundun3 .posi .box .i2018 .text .svg2 path {
    fill: #ffb400
}

.about_yundun3 .posi .box .i2018 .text .button {
    bottom: -78px;
    left: 30px;
    top: auto
}

.about_yundun3 .posi .box .i2017 {
    left: 8.8%;
    top: 52.9%
}

.about_yundun3 .posi .box .i2017 .text .title {
    color: #d66542
}

.about_yundun3 .posi .box .i2017 .text .svg2 path {
    fill: #d66542
}

.about_yundun3 .posi .box .i2017 .text .button {
    left: -24px;
    top: -25px
}

.about_yundun3 .posi .box .i2016 {
    left: 44%;
    top: 53.4%
}

.about_yundun3 .posi .box .i2016 .text .title {
    color: #ffb400
}

.about_yundun3 .posi .box .i2016 .text .svg2 path {
    fill: #ffb400
}

.about_yundun3 .posi .box .i2016 .text .button {
    bottom: -78px;
    left: 36px;
    top: auto
}

.about_yundun3 .posi .box .i2015 {
    left: 63%;
    top: 67.1%
}

.about_yundun3 .posi .box .i2015 .text .title {
    color: #34d991
}

.about_yundun3 .posi .box .i2015 .text .svg2 path {
    fill: #34d991
}

.about_yundun3 .posi .box .i2015 .text .button {
    left: -24px;
    top: -25px
}

.about_yundun3 .posi .box .i2014 {
    left: 39.8%;
    top: 71.6%
}

.about_yundun3 .posi .box .i2014 .text .title {
    color: #002aff
}

.about_yundun3 .posi .box .i2014 .text .svg2 path {
    fill: #002aff
}

.about_yundun3 .posi .box .i2014 .text .button {
    bottom: -78px;
    left: 36px;
    top: auto
}

.about_yundun3 .posi .box .i2013 {
    left: 12.2%;
    top: 71.6%
}

.about_yundun3 .posi .box .i2013 .text .title {
    color: #00b4ff
}

.about_yundun3 .posi .box .i2013 .text .svg2 path {
    fill: #00b4ff
}

.about_yundun3 .posi .box .i2013 .text .button {
    bottom: -78px;
    left: 36px;
    top: auto
}

.about_yundun3 .posi .box .i2012 {
    left: 8.8%;
    top: 80.6%
}

.about_yundun3 .posi .box .i2012 .text .title {
    color: #b2d642
}

.about_yundun3 .posi .box .i2012 .text .svg2 path {
    fill: #b2d642
}

.about_yundun3 .posi .box .i2012 .text .button {
    left: -24px;
    top: -25px
}

.about_yundun3 .posi .box .i2011 {
    left: 15.8%;
    top: 84.3%
}

.about_yundun3 .posi .box .i2011 .text .title {
    color: #2971de
}

.about_yundun3 .posi .box .i2011 .text .svg2 path {
    fill: #2971de
}

.about_yundun3 .posi .box .i2011 .text .button {
    bottom: -78px;
    left: 36px;
    top: auto
}

.about_yundun3 .posi .box .itemFirst {
    background: #fff;
    background: linear-gradient(-125deg, #edf0f5, #fff);
    border: 1px solid #fff;
    border-radius: 12px;
    bottom: -62px;
    box-shadow: 0 0 16px rgba(41, 113, 222, .2);
    box-sizing: border-box;
    height: 148px;
    left: 50%;
    padding: 0;
    position: absolute;
    text-align: center;
    transform: translateX(-50%);
    width: 450px;
    z-index: 2
}

.about_yundun3 .posi .box .itemFirst .content1 {
    text-align: center
}

.about_yundun3 .posi .box .itemFirst .content1 img {
    margin-top: -30px;
    width: 59px
}

.about_yundun3 .posi .box .itemFirst .content2 {
    color: #2971de;
    font-size: 20px;
    margin: 10px 0;
    text-align: center
}

.about_yundun3 .posi .box .itemFirst .content3 {
    color: #4b5a79;
    font-size: 14px;
    line-height: 24px;
    position: relative;
    white-space: nowrap
}

.about_yundun3 .posi .box .itemFirst .content3 p font {
    display: inline-block;
    font-size: 10px;
    margin-right: 4px;
    position: relative;
    top: -2px
}

.about_yundun3 .posi .dian img {
    width: 240px
}

.about_yundun3 .posi .dian>div {
    z-index: -1
}

.about_yundun3 .posi .dian .dian1 {
    left: 9%;
    position: absolute;
    top: 8%
}

.about_yundun3 .posi .dian .dian2 {
    position: absolute;
    right: -7%;
    top: 30%
}

.about_yundun3 .posi .dian .dian3 {
    left: -16%;
    position: absolute;
    top: 52%
}

.about_yundun3 .posi .dian .dian4 {
    left: 49%;
    position: absolute;
    top: 74%
}

.about_yundun3 .posi .dian .dian5 {
    bottom: -4%;
    left: 19%;
    position: absolute
}

.about_yundun3 .posi .fang div img {
    position: relative
}

.about_yundun3 .posi .fang .fang1 {
    left: 10%;
    position: absolute;
    top: 16.5%
}

.about_yundun3 .posi .fang .fang1 img {
    animation: eUpDown 4s linear infinite;
    width: 64px
}

.about_yundun3 .posi .fang .fang2 {
    position: absolute;
    right: 3%;
    top: 28%
}

.about_yundun3 .posi .fang .fang2 img {
    animation: eDownUp 3s linear infinite;
    width: 64px
}

.about_yundun3 .posi .fang .fang3 {
    left: -5.5%;
    position: absolute;
    top: 40%
}

.about_yundun3 .posi .fang .fang3 img {
    animation: eUpDown 5s linear infinite;
    width: 128px
}

.about_yundun3 .posi .fang .fang4 {
    position: absolute;
    right: 46%;
    top: 69%
}

.about_yundun3 .posi .fang .fang4 img {
    animation: eDownUp 3s linear infinite;
    width: 64px
}

.about_yundun3 .posi .fang .fang5 {
    bottom: 3%;
    position: absolute;
    right: 16%
}

.about_yundun3 .posi .fang .fang5 img {
    animation: eUpDown 2s linear infinite;
    width: 92px
}

@keyframes eUpDown {
    0% {
        top: 0
    }

    50% {
        top: -12px
    }

    to {
        top: 0
    }
}

@keyframes eDownUp {
    0% {
        top: 0
    }

    50% {
        top: -8px
    }

    to {
        top: 0
    }
}

.honor {
    padding-top: 176px
}

.honor .index_h5 {
    font-weight: 700;
    text-align: center
}

.honor .box {
    margin-top: 24px;
    padding-left: 36px
}

.honor .box .banner .swiper-container {
    padding: 20px
}

.honor .box .banner .swiper-container .swiper-slide {
    width: 304px
}

.honor .box .banner .swiper-container .swiper-slide .item {
    background: linear-gradient(#f8f9fb, #fff);
    border: 1px solid #ddd;
    border-radius: 10px;
    padding-bottom: 45px;
    position: relative;
    text-align: center;
    transition: .4s
}

.honor .box .banner .swiper-container .swiper-slide .item:after {
    background: #2971de;
    border-radius: 4px 4px 0 0;
    bottom: 0;
    content: "";
    height: 4px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    transition: .4s;
    width: 0
}

.honor .box .banner .swiper-container .swiper-slide .item .content1 {
    font-size: 16px;
    padding: 38px 0 25px
}

.honor .box .banner .swiper-container .swiper-slide .item .content2 img {
    width: 172px
}

.honor .box .banner .swiper-container .swiper-slide .item:hover {
    background: #fff;
    border: 1px solid #f2f7fd;
    box-shadow: 0 0 16px rgba(41, 113, 222, .2)
}

.honor .box .banner .swiper-container .swiper-slide .item:hover:after {
    width: 120px
}


.GettingStarted {
    margin-top: 70px
}

.GettingStarted .box .item {
    cursor: pointer;
    margin-bottom: 100px;
    perspective: 1000px;
    position: relative;
    transform-style: preserve-3d
}

.GettingStarted .box .item:last-child,
.GettingStarted .box .item:nth-last-child(2),
.GettingStarted .box .item:nth-last-child(3) {
    margin-bottom: 0
}

.GettingStarted .box .item .content1 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 50px;
    position: absolute;
    top: -50px
}

.GettingStarted .box .item .content1 span {
    border-left: 3px solid #2971de;
    display: inline-block;
    line-height: 28px;
    padding-left: 15px
}

.GettingStarted .box .item .content2 {
    position: relative
}

.GettingStarted .box .item .content2 .img img {
    filter: drop-shadow(0 16px 16px rgba(41, 113, 222, .2));
    height: 458px;
    width: 316px
}

.GettingStarted .box .item .content2 .posi {
    box-sizing: border-box;
    left: 0;
    padding: 0 28px;
    position: absolute;
    top: 68px;
    width: 100%
}



@media screen and (min-width:2000px) {
    .indexOnlineBusiness .box {
        padding-left: 456px
    }
}

@media screen and (min-width:2300px) {
    .indexOnlineBusiness .box {
        padding-left: 584px
    }
}

@media screen and (min-width:2500px) {
    .indexOnlineBusiness .box {
        padding-left: 670px
    }
}

@media screen and (max-width:2000px) {
    .indexOnlineBusiness .box {
        padding-left: 265px
    }
}

@media screen and (max-width:1800px) {
    .index_header .box .boxLeft .nav .item .selectProduct {
        box-sizing: border-box;
        left: -4px
    }

    .indexOnlineBusiness .box {
        padding-left: 265px
    }
}

@media screen and (max-width:1600px) {
    .index_header .box .boxLeft .nav .item .selectProduct {
        left: -4px
    }

    .indexOnlineBusiness .box {
        padding-left: 165px
    }
}

@media screen and (max-width:1500px) {
    .index_header .box .boxLeft .nav .item .selectProduct {
        left: -4px
    }
}

@media screen and (max-width:1366px) {
    .index_header .box .boxLeft .nav .item .selectProduct {
        left: -4px
    }

    .ServiceContenr .box,
    .honor .box {
        padding-left: 22px
    }

    .index_header .box {
        padding: 0 24px 0 36px
    }

    .index_header .box .boxRight .button .active {
        margin-right: 0
    }

    .index_header .box .boxLeft .nav {
        margin-left: 18px
    }

    .index_header .box .boxRight .button a {
        margin-left: 0
    }

    .index_header .box .boxLeft .nav .item {
        padding: 0 12px
    }

    .whyYun .box .list .item .left {
        padding: 0
    }

    .Exclusive_solution .box .list .item .right .title {
        top: 26px
    }

    .WhyYundun .box .w1200 {
        width: 1100px
    }

    .indexOnlineBusiness .box .boxRight .list_box .list .banner_ .swiper-slide {
        width: 824px
    }

    .indexOnlineBusiness .box {
        margin-left: 0
    }

    .RelatedDocumentation .box .boxRight {
        width: 840px
    }
}
.index_help{
    width: 1120px;
    margin:0 auto;
    overflow: hidden;
    margin-bottom:86px
}
.index_help h2{
    text-align: center;
    font-size: 30px;
    line-height: 75px;
    font-weight: normal;
}
.index_help>p {
     text-align: center;
    font-size: 16px;
    line-height: 30px;
    max-width: 1380px;
    width: 96%;
    margin:10px auto 45px;
}
.index_help .swiper-slide{
    width: 180px !important;
    /* margin: 0 15px; */
}
.index_help .item1{
    width: 160px !important;
    margin: 15px;
}
.index_help .item1 img{
    width: 160px !important;
    border: 1px solid #e5e5e5;
}
.InnerTitle {
    color: #333;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-left: -6px;
    padding-top: 39px;
    height: 30px;
}

.InnerTitle a {
    color: #333;
    padding: 0 6px
}

.InnerTitle a:hover {
    color: #2971de
}

.InnerTitle span {
    color: #2971de;
    padding-left: 6px
}

.Innerh5 {
    margin-top: 33px
}

.Innerh5 h5 {
    color: #333;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    min-height: 36px;
    word-wrap: break-word;
}
.mao {
    position: relative;
    top: -100px
}


.KeyWords {
    margin-top: 24px
}

.KeyWords .box {
    background: #fff
}

.KeyWords .box ul {
    padding: 12px
}

.KeyWords .box ul li {
    margin: 0
}

.KeyWords .box ul li a {
    color: #333;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 38px;
    text-align: center;
    width: 38px
}

.KeyWords .box ul li:last-child,
.KeyWords .box ul li:nth-last-child(2) {
    margin-bottom: 0
}

.KeyWords .box ul .active a {
    background: #2971de;
    color: #fff
}

.KeyWords .box1 {
    margin-top: 36px
}

.KeyWords .box1 p {
    margin-right: 30px
}

.KeyWords .box1 p a {
    color: #4b5a79;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: .4s
}

.KeyWords .box1 p a:hover {
    color: #2971de
}

.KeyWordsOverList .boxLeft {
    width: 790px
}

.KeyWordsOverList .boxLeft .jieshan {
    color: #4b5a79;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 24px
}

.KeyWordsOverList .boxLeft>.list {
    margin-top: 31px
}

.KeyWordsOverList .boxLeft>.list .item {
    border-bottom: 1px solid rgba(51, 51, 51, .16);
    transition: .4s
}

.KeyWordsOverList .boxLeft>.list .item:first-child {
    border-top: 1px solid rgba(51, 51, 51, .16)
}

.KeyWordsOverList .boxLeft>.list .item a {
    display: block;
    padding: 45px 0 30px
}

.KeyWordsOverList .boxLeft>.list .item a .content1 {
    color: #333;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    transition: .4s
}

.KeyWordsOverList .boxLeft>.list .item a .content2 {
    margin-top: 15px
}

.KeyWordsOverList .boxLeft>.list .item a .content2 p {
    color: #999;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin-right: 36px
}

.KeyWordsOverList .boxLeft>.list .item a .content2 p img {
    margin-right: 7px;
    position: relative;
    top: -1px;
    width: 20px
}

.KeyWordsOverList .boxLeft>.list .item a .content2 p span {
    color: #2971de
}

.KeyWordsOverList .boxLeft>.list .item a .content3 {
    color: #4b5a79;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    height: 48px;
    line-height: 24px;
    margin-top: 12px
}

.KeyWordsOverList .boxLeft>.list .item:hover {
    background: #f7f8fc
}

.KeyWordsOverList .boxLeft>.list .item:hover a .content1 {
    color: #2971de
}

.KeyWordsOverList .boxRight {
    margin-top: 33px;
    width: 235px
}

.KeyWordsOverList .boxRight section {
    position: sticky;
    top: 100px
}

.KeyWordsOverList .boxRight section .content1 {
    color: #333;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 12px
}

.KeyWordsOverList .boxRight section .content2 {
    background: #dedede;
    height: 1px;
    position: relative;
    width: 100%
}

.KeyWordsOverList .boxRight section .content2:after {
    background: #2971de;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: -1px;
    width: 39px
}

.KeyWordsOverList .boxRight section .content3 {
    justify-content: space-between;
    margin-top: 28px
}

.KeyWordsOverList .boxRight section .content3 p {
    margin: 0
}

.KeyWordsOverList .boxRight section .content3 a {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    color: #4b5a79;
    display: block;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 28px;
    margin: 4px 2px;
    max-width: 90px;
    min-width: 80px;
    overflow: hidden;
    padding: 0 11px;
    text-align: center;
    text-overflow: ellipsis;
    transition: .4s;
    white-space: nowrap
}

.KeyWordsOverList .boxRight section .content3 p a:hover {
    border: 1px solid #2971de;
    color: #2971de
}

.KeyWordsOverList .boxRight section .ggt {
    padding-top: 9px
}

.KeyWordsOverList .boxRight section .ggt img {
    width: 100%
}

.InnerPage {
    margin-top: 46px;
    padding-bottom: 100px
}

.InnerPage p a {
    background: linear-gradient(0deg, rgba(237, 240, 245, .4), hsla(0, 0%, 100%, .4));
    border: 1px solid #e9e9e9;
    border-radius: 6px;
    color: #333;
    display: block;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 38px;
    text-align: center;
    transition: .4s;
    width: 90px
}

.InnerPage p a:hover {
    border: 1px solid #2971de;
    color: #2971de
}

.InnerPage div {
    margin: 0 12px
}

.InnerPage div a {
    border: 1px solid transparent;
    border-radius: 6px;
    color: #333;
    display: block;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 38px;
    margin: 0 5px;
    text-align: center;
    transition: .4s;
    width: 38px
}

.InnerPage div a:hover {
    color: #2971de
}

.InnerPage div span {
    border: 1px solid transparent;
    color: #333;
    display: block;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 38px;
    width: 38px
}

.InnerPage div .active {
    background: linear-gradient(0deg, rgba(237, 240, 245, .4), hsla(0, 0%, 100%, .4));
    border: 1px solid #2971de
}

.KeyWordsOverInfo .conten1 {
    margin-top: 16px
}

.KeyWordsOverInfo .conten1 p {
    color: #999;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin-right: 36px
}

.KeyWordsOverInfo .conten1 p img {
    margin-right: 7px;
    position: relative;
    top: -1px;
    width: 20px
}

.KeyWordsOverInfo .conten1 p span {
    color: #2971de
}

.KeyWordsOverInfo .conten2 {
    color: #4b5a79;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 29px;
    text-align: justify
}

.KeyWordsOverInfo .conten2 img {
    display: block;
    margin: auto;
    max-width: 100%
}

.KeyWordsOverInfo .conten3 {
    color: #333;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-top: 60px
}

.KeyWordsOverInfo .conten3 p {
    margin-right: 32px
}

.KeyWordsOverInfo .conten3 a {
    color: #2971de
}

.KeyWordsOverInfo .tu {
    margin-top: 32px
}

.KeyWordsOverInfo .tu img {
    width: 100%
}

.KeyWordsOverInfo .conten4 {
    margin-bottom: 100px;
    margin-top: 45px
}

.KeyWordsOverInfo .conten4 p {
    max-width: 40%
}

.KeyWordsOverInfo .conten4 p a {
    color: #333;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400
}

.KeyWordsOverInfo .conten4 p a span {
    transition: .4s
}

.KeyWordsOverInfo .conten4 p a:hover span {
    color: #2971de
}




.NewsList .list .item {
    border-bottom: 1px solid rgba(51, 51, 51, .16);
    transition: .4s
}

.NewsList .list .item a {
    padding: 45px 0 30px
}

.NewsList .list .item a .img {
    box-sizing: border-box;
    margin-right: 16px;
    width: 195px
}

.NewsList .list .item a .img img {
    height: 110px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.NewsList .list .item a .wenzi {
    width: calc(100% - 211px)
}

.NewsList .list .item a .wenzi .content1 {
    color: #333;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-top: -5px;
    transition: .4s;
    white-space: normal;
    word-break: break-word;
}

.NewsList .list .item a .wenzi .content2 {
    margin-top: 10px
}

.NewsList .list .item a .wenzi .content2 p {
    color: #999;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin-right: 36px
}

.NewsList .list .item a .wenzi .content2 p img {
    margin-right: 7px;
    position: relative;
    top: -1px;
    width: 20px
}

.NewsList .list .item a .wenzi .content2 p span {
    color: #2971de
}

.NewsList .list .item a .wenzi .content3 {
    color: #4b5a79;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    height: 48px;
    line-height: 24px;
    margin-top: 18px
}



.Package {
    margin-top: 20px
}

.Package .content1 h5 {
    color: #2971de;
    font-family: FZLanTingHeiS-DB1-GBK;
    font-size: 36px;
    font-weight: 400;
    line-height: 46px
}

.Package .content1 div {
    margin-left: 32px
}

.Package .content1 div p {
    margin-right: 18px
}

.Package .content1 div p a {
    border: 1px solid #2971de;
    border-radius: 4px;
    color: #2971de;
    display: block;
    font-family: FZLanTingHeiS-DB1-GBK;
    font-size: 16px;
    font-weight: 400;
    line-height: 46px;
    text-align: center;
    transition: .4s;
    width: 120px
}

.Package .content1 div .active a {
    background: #2971de;
    box-shadow: 0 7px 19px 0 rgba(46, 126, 236, .3);
    color: #fff
}

.Package .content2 {
    color: #4b5a79;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-top: 11px
}

.PackageTogg {
    align-items: center;
    background: linear-gradient(0deg, rgba(237, 240, 245, .4), hsla(0, 0%, 100%, .4));
    border-radius: 12px;
    box-shadow: 3px 5px 18px 0 rgba(41, 113, 222, .2);
    box-sizing: border-box;
    display: flex;
    height: 68px;
    margin-top: 45px;
    padding: 0 14px
}

.PackageTogg .togg {
    width: 100%
}

.PackageTogg .togg p a,
.label {
    border-radius: 4px;
    color: #333;
    display: block;
    line-height: 43px;
    min-width: 180px;
    text-align: center
}

.PackageTogg .togg .active a {
    background: #2971de;
    box-shadow: 0 7px 19px 0 rgba(46, 126, 236, .3);
    color: #fff
}

.PackageMain {
    margin-bottom: 100px;
    margin-top: 32px
}

.PackageMain .table {
    border: 1px solid rgba(51, 51, 51, .16);
    border-radius: 12px;
    overflow: hidden
}

.PackageMain .table table {
    width: 100%
}

.PackageMain .table table tr {
    border-bottom: 1px solid rgba(51, 51, 51, .16)
}

.PackageMain .table table tr:last-child {
    border-bottom: 0
}

.PackageMain .table table tr td {
    border-right: 1px solid rgba(51, 51, 51, .16);
    color: #4b5a79;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    padding: 12px;
    text-align: center;
    width: 16.66666%
}

.PackageMain .table table tr td:last-child {
    border-right: 0
}

.PackageMain .table table tr td:first-child {
    color: #333;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-weight: 700;
    text-align: right
}

.PackageMain .table table tr td:first-child span {
    font-size: 12px
}

.PackageMain .table table tr td img {
    width: 22px
}

.PackageMain .table table tr .text_left {
    color: #4b5a79 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    text-align: left !important
}

.PackageMain .table table tr .text_right {
    text-align: right
}

.PackageMain .table table tr th {
    background: #f2f7fd;
    color: #4b5a79;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 43px;
    text-align: center;
    width: 100%
}

.PackageMain .table table .parameter {
    background: linear-gradient(0deg, rgba(237, 240, 245, .4), hsla(0, 0%, 100%, .4))
}

.PackageMain .table table .parameter td {
    padding: 25px 12px 22px;
    text-align: center
}

.PackageMain .table table .parameter td:first-child {
    text-align: center
}

.PackageMain .table table .parameter td h6 {
    color: rgba(75, 90, 121, .9);
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px
}

.PackageMain .table table .parameter td div {
    color: #333;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px
}

.PackageMain .table table .parameter td div span {
    color: #2971de
}

.PackageMain .table table1 {
    border: 1px solid rgba(51, 51, 51, .16);
    border-collapse: separate;
    border-radius: 12px;
    box-sizing: border-box;
    overflow: hidden;
    width: 100%
}

.PackageMain .table table1 tr {
    border-bottom: 1px solid rgba(51, 51, 51, .16);
    display: table;
    width: 100%
}

.PackageMain .table table1 tr:last-child {
    border-bottom: 0
}

.PackageMain .table table1 tr td {
    border-right: 1px solid rgba(51, 51, 51, .16);
    box-sizing: border-box;
    padding: 12px;
    width: 16.66666%
}

.PackageMain .table table1 tr td img {
    width: 22px
}

.PackageMain .table table1 tr td:last-child {
    border-right: 0
}

.PackageMain .table table1 tr th {
    background: #f2f7fd;
    color: #4b5a79;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 43px;
    text-align: center;
    width: 100%
}

.PackageMain .table table1 .tr1 {
    background: linear-gradient(0deg, rgba(237, 240, 245, .4), hsla(0, 0%, 100%, .4));
    text-align: center
}

.PackageMain .table table1 .tr1 td {
    padding: 25px 0 22px
}

.PackageMain .table table1 .tr1 h6 {
    color: rgba(75, 90, 121, .9);
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px
}

.PackageMain .table table1 .tr1 div {
    color: #333;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px
}

.PackageMain .table table1 .tr1 div span {
    color: #2971de
}

.PackageMain .table table1 .tr1 .td1 {
    color: #4b5a79;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600
}

.PackageMain .table table1 .tr1 .td1 p {
    margin: auto
}

.PackageMain .table table1 .tr2 .td1 {
    align-items: center;
    color: #333;
    display: grid;
    flex: 0 16%;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-weight: 700;
    text-align: right
}

.PackageMain .table table1 .tr2 .td1 p {
    width: 100%
}

.PackageMain .table table1 .tr2 .td1 span {
    font-size: 12px
}

.PackageMain .table table1 .tr2 .td2 {
    align-content: center;
    color: #4b5a79;
    display: grid;
    flex: 0 24%;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px
}

.PackageMain .table table1 .tr2 .td2 p {
    width: 100%
}

.PackageMain .table table1 .tr2 .td3 {
    align-content: center;
    display: grid;
    text-align: center
}

.PackageMain .table table1 .tr2 .td3 p {
    width: 100%
}

.PackageMain_ {
    margin-bottom: 100px;
    margin-top: 45px
}

.PackageMain_ .table {
    border: 1px solid rgba(51, 51, 51, .16);
    border-radius: 12px;
    overflow: hidden
}

.PackageMain_ .table table {
    width: 100%
}

.PackageMain_ .table table tr {
    border-bottom: 1px solid rgba(51, 51, 51, .16)
}

.PackageMain_ .table table tr:last-child {
    border-bottom: 0
}

.PackageMain_ .table table tr th {
    background: linear-gradient(0deg, rgba(237, 240, 245, .4), hsla(0, 0%, 100%, .4));
    border-right: 1px solid rgba(51, 51, 51, .16);
    color: #4b5a79;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 20px;
    text-align: center;
    width: 20%
}

.PackageMain_ .table table tr th:last-child {
    border-right: 0
}

.PackageMain_ .table table tr th:first-child {
    text-align: right
}

.PackageMain_ .table table tr td {
    border-right: 1px solid rgba(51, 51, 51, .16);
    color: #4b5a79;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    padding: 15px 12px;
    text-align: center
}

.PackageMain_ .table table tr td a {
    color: #2971de;
    -webkit-text-decoration: underline;
    text-decoration: underline
}

.PackageMain_ .table table tr td span {
    color: #2971de
}

.PackageMain_ .table table tr td img {
    width: 22px
}

.PackageMain_ .table table tr td:last-child {
    border-right: 0
}

.PackageMain_ .table table tr td:first-child {
    color: #333;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-weight: 500;
    line-height: 24px;
    padding: 15px 20px;
    text-align: right
}

.documentation_ .box .boxLeft {
    width: 190px
}

.documentation_ .box .boxLeft .content1 h5 {
    font-weight: 500
}

.documentation_ .box .boxLeft .content1 .search {
    background: linear-gradient(0deg, rgba(237, 240, 245, .4), hsla(0, 0%, 100%, .4));
    border-radius: 6px;
    box-shadow: 3px 5px 18px 0 rgba(41, 113, 222, .2);
    margin-left: -2px
}

.documentation_ .box .boxLeft .content1 .search .left input::-moz-placeholder {
    color: #4b5a79;
    font-size: 14px
}

.documentation_ .box .boxLeft .content1 .search .left input::placeholder {
    color: #4b5a79;
    font-size: 14px
}

.documentation_ .box .boxLeft .content2 .item ul li {
    padding-left: 16px
}

.documentation_ .box .boxLeft .content2 .item p {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.documentation_ .box .boxLeft .content2 .item p a {
    font-weight: 500
}

.documentation_ .box .boxLeft .content2 .item ul li.active a {
    color: #2971de
}

.documentation_ .box .boxLeft .content2 .item ul li.active a:after {
    background: #2971de
}

.documentation_ .box .boxRight {
    width: calc(100% - 190px)
}


@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0)
    }

    to {
        transform: translate3d(85px, 0, 0)
    }
}

.Guide {
    margin-top: 92px
}

.Guide h5 {
    color: #444;
    font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 36px
}

.Guide .box .item {
    align-items: center;
    background: linear-gradient(0deg, rgba(237, 240, 245, .4), hsla(0, 0%, 100%, .4));
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    box-shadow: 0 0 16px rgba(41, 113, 222, 0);
    box-sizing: border-box;
    display: flex;
    height: 138px;
    justify-content: flex-end;
    margin-top: 24px;
    overflow: hidden;
    padding: 0 33px;
    position: relative;
    text-align: right;
    transition: .4s;
    width: 48.5%
}

.Guide .box .item:hover {
    box-shadow: 0 0 16px rgba(41, 113, 222, .2)
}

.Guide .box .item a {
    color: #444;
    display: block;
    font-size: 16px;
    font-weight: 500;
    transition: .4s
}

.Guide .box .item .img {
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0
}

.Guide .box .item:hover a {
    color: #2971de;
    z-index: 111
}


.documentation .box .boxRight .content2 h5 {
    font-size: 22px;
    font-weight: 400
}

.el-button--primary.is-plain {
    
    border-color: #2971de;
    border-width: 1px;
    color: #2971de
}

.el-button.is-plain:focus,
.el-button.is-plain:hover {
    background: #2971de
}

.index_header {
    z-index: 1299 !important
}



@font-face {
    font-family: iconfont;
    src: url(static/font/iconfont.2768eea.woff2) format("woff2"), url(static/font/iconfont.650baba.woff) format("woff"), url(static/font/iconfont.bb79cc8.ttf) format("truetype")
}

.iconfont {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: iconfont !important;
    font-size: 16px;
    font-style: normal;
    margin-bottom: 8px
}

.message-box {
    padding: 12px
}

.just-tips.el-popover {
    border: none;
    border-radius: 5px;
    box-shadow: 3px 2px 10px 1px rgba(88, 102, 123, .19);
    overflow: hidden;
    padding: 0;
    left: -101px;
    width: 250px;
}

.userListShows {
    display: none;
}
/* 新增 */
.headers{
    height: 100vh;
}
.index_banner .swiper-slide{
    height: 500px;
}
.index_banner .swiper-slide img{
     height: 500px;
}
.index_banner .swiper {
     --swiper-theme-color: #ff6600;
     --swiper-pagination-color: #00000045;
     /* 两种都可以 */
 }
@keyframes rowup {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        -webkit-transform: translate3d(0, -107px, 0);
        transform: translate3d(0, -107px, 0);
        display: none;
    }
}

.TechnologyArchitecture  .list {
    width: 900px;
    margin: 20px auto;
    position: relative;
    height: 35px;
    overflow: hidden;
}

.TechnologyArchitecture  .list .rowup {
    -webkit-animation: 10s rowup linear infinite normal;
    animation: 10s rowup linear infinite normal;
    position: relative;
}
.list-paddingleft-2 {
    margin-top: 33px;
}
.list-paddingleft-2 li {
    display: inline-block;
    cursor: pointer;
    margin-right: 37px;
    margin-bottom: 10px;
}
.list-paddingleft-2 li .cu-icon {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 8px;
    border: 1px solid #fff;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: -1px -1px 16px 2px rgb(31 32 46 / 16%);
    margin-left: 15px;
}