@charset "UTF-8"; /*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated.bounceIn,.animated.bounceOut,.animated.flipOutX,.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounce {
    0%,20%,53%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,43% {
        -webkit-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0)
    }

    40%,43%,70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06)
    }

    70% {
        -webkit-transform: translate3d(0,-15px,0);
        transform: translate3d(0,-15px,0)
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0);
        transform: translate3d(0,-4px,0)
    }
}

@keyframes bounce {
    0%,20%,53%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%,43% {
        -webkit-transform: translate3d(0,-30px,0);
        transform: translate3d(0,-30px,0)
    }

    40%,43%,70% {
        -webkit-animation-timing-function: cubic-bezier(.755,.05,.855,.06);
        animation-timing-function: cubic-bezier(.755,.05,.855,.06)
    }

    70% {
        -webkit-transform: translate3d(0,-15px,0);
        transform: translate3d(0,-15px,0)
    }

    90% {
        -webkit-transform: translate3d(0,-4px,0);
        transform: translate3d(0,-4px,0)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

@keyframes flash {
    0%,50%,to {
        opacity: 1
    }

    25%,75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25,.75,1);
        transform: scale3d(1.25,.75,1)
    }

    40% {
        -webkit-transform: scale3d(.75,1.25,1);
        transform: scale3d(.75,1.25,1)
    }

    50% {
        -webkit-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.85,1)
    }

    65% {
        -webkit-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1)
    }

    75% {
        -webkit-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25,.75,1);
        transform: scale3d(1.25,.75,1)
    }

    40% {
        -webkit-transform: scale3d(.75,1.25,1);
        transform: scale3d(.75,1.25,1)
    }

    50% {
        -webkit-transform: scale3d(1.15,.85,1);
        transform: scale3d(1.15,.85,1)
    }

    65% {
        -webkit-transform: scale3d(.95,1.05,1);
        transform: scale3d(.95,1.05,1)
    }

    75% {
        -webkit-transform: scale3d(1.05,.95,1);
        transform: scale3d(1.05,.95,1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shake {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }
}

@keyframes shake {
    0%,to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }

    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }

    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }

    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }

    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,20% {
        -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate(3deg);
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate(-3deg);
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%,20% {
        -webkit-transform: scale3d(.9,.9,.9) rotate(-3deg);
        transform: scale3d(.9,.9,.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate(3deg);
        transform: scale3d(1.1,1.1,1.1) rotate(3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale3d(1.1,1.1,1.1) rotate(-3deg);
        transform: scale3d(1.1,1.1,1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%,0,0) rotate(-5deg);
        transform: translate3d(-25%,0,0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%,0,0) rotate(3deg);
        transform: translate3d(20%,0,0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%,0,0) rotate(-3deg);
        transform: translate3d(-15%,0,0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%,0,0) rotate(2deg);
        transform: translate3d(10%,0,0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%,0,0) rotate(-1deg);
        transform: translate3d(-5%,0,0) rotate(-1deg)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%,0,0) rotate(-5deg);
        transform: translate3d(-25%,0,0) rotate(-5deg)
    }

    30% {
        -webkit-transform: translate3d(20%,0,0) rotate(3deg);
        transform: translate3d(20%,0,0) rotate(3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%,0,0) rotate(-3deg);
        transform: translate3d(-15%,0,0) rotate(-3deg)
    }

    60% {
        -webkit-transform: translate3d(10%,0,0) rotate(2deg);
        transform: translate3d(10%,0,0) rotate(2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%,0,0) rotate(-1deg);
        transform: translate3d(-5%,0,0) rotate(-1deg)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes jello {
    0%,11.1%,to {
        -webkit-transform: none;
        transform: none
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {
    0%,11.1%,to {
        -webkit-transform: none;
        transform: none
    }

    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes bounceIn {
    0%,20%,40%,60%,80%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-3000px,0);
        transform: translate3d(0,-3000px,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,25px,0);
        transform: translate3d(0,25px,0)
    }

    75% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

    90% {
        -webkit-transform: translate3d(0,5px,0);
        transform: translate3d(0,5px,0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-3000px,0);
        transform: translate3d(0,-3000px,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,25px,0);
        transform: translate3d(0,25px,0)
    }

    75% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

    90% {
        -webkit-transform: translate3d(0,5px,0);
        transform: translate3d(0,5px,0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px,0,0);
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px,0,0);
        transform: translate3d(25px,0,0)
    }

    75% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    90% {
        -webkit-transform: translate3d(5px,0,0);
        transform: translate3d(5px,0,0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px,0,0);
        transform: translate3d(-3000px,0,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px,0,0);
        transform: translate3d(25px,0,0)
    }

    75% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    90% {
        -webkit-transform: translate3d(5px,0,0);
        transform: translate3d(5px,0,0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px,0,0);
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px,0,0);
        transform: translate3d(-25px,0,0)
    }

    75% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }

    90% {
        -webkit-transform: translate3d(-5px,0,0);
        transform: translate3d(-5px,0,0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px,0,0);
        transform: translate3d(3000px,0,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px,0,0);
        transform: translate3d(-25px,0,0)
    }

    75% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }

    90% {
        -webkit-transform: translate3d(-5px,0,0);
        transform: translate3d(-5px,0,0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,3000px,0);
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0)
    }

    75% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0)
    }

    90% {
        -webkit-transform: translate3d(0,-5px,0);
        transform: translate3d(0,-5px,0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInUp {
    0%,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(.215,.61,.355,1);
        animation-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,3000px,0);
        transform: translate3d(0,3000px,0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0)
    }

    75% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0)
    }

    90% {
        -webkit-transform: translate3d(0,-5px,0);
        transform: translate3d(0,-5px,0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0)
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0,10px,0);
        transform: translate3d(0,10px,0)
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,-20px,0);
        transform: translate3d(0,-20px,0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px,0,0);
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px,0,0);
        transform: translate3d(20px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px,0,0);
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px,0,0);
        transform: translate3d(-20px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,20px,0);
        transform: translate3d(0,20px,0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0,-10px,0);
        transform: translate3d(0,-10px,0)
    }

    40%,45% {
        opacity: 1;
        -webkit-transform: translate3d(0,20px,0);
        transform: translate3d(0,20px,0)
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,2000px,0);
        transform: translate3d(0,2000px,0)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px,0,0);
        transform: translate3d(-2000px,0,0)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px,0,0);
        transform: translate3d(2000px,0,0)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0,-2000px,0);
        transform: translate3d(0,-2000px,0)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(-1turn);
        transform: perspective(400px) rotateY(-1turn)
    }

    0%,40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) translateZ(150px) rotateY(-190deg)
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) translateZ(150px) rotateY(-170deg)
    }

    50%,80% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95,.95,.95);
        transform: perspective(400px) scale3d(.95,.95,.95)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(-1turn);
        transform: perspective(400px) rotateY(-1turn)
    }

    0%,40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) translateZ(150px) rotateY(-190deg)
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) translateZ(150px) rotateY(-170deg)
    }

    50%,80% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95,.95,.95);
        transform: perspective(400px) scale3d(.95,.95,.95)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    0%,40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    0%,40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg)
    }

    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    0%,40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg)
    }

    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    0%,40% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg)
    }

    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }

    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }

    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%,0,0) skewX(-30deg);
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg)
    }

    60%,80% {
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%,0,0) skewX(-30deg);
        transform: translate3d(100%,0,0) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg)
    }

    60%,80% {
        opacity: 1
    }

    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }

    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%,0,0) skewX(30deg);
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(100%,0,0) skewX(30deg);
        transform: translate3d(100%,0,0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        transform-origin: center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    0%,to {
        -webkit-transform-origin: center
    }

    to {
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        transform-origin: center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    0%,to {
        -webkit-transform-origin: center
    }

    to {
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }

    0%,to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }

    0%,to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    0%,to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    0%,to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    0%,to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }

    0%,to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    0%,to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    0%,to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }

    0%,to {
        -webkit-transform-origin: center
    }

    to {
        transform-origin: center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }

    0%,to {
        -webkit-transform-origin: center
    }

    to {
        transform-origin: center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    0%,to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    0%,to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    0%,to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    0%,to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    0%,to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }

    0%,to {
        -webkit-transform-origin: left bottom
    }

    to {
        transform-origin: left bottom;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    0%,to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }

    0%,to {
        -webkit-transform-origin: right bottom
    }

    to {
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
    0% {
        transform-origin: top left
    }

    0%,20%,60% {
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        transform-origin: top left
    }

    40%,80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0,700px,0);
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        transform-origin: top left
    }

    0%,20%,60% {
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        transform-origin: top left
    }

    40%,80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    to {
        -webkit-transform: translate3d(0,700px,0);
        transform: translate3d(0,700px,0);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0) rotate(-120deg);
        transform: translate3d(-100%,0,0) rotate(-120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%,0,0) rotate(-120deg);
        transform: translate3d(-100%,0,0) rotate(-120deg)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0) rotate(120deg);
        transform: translate3d(100%,0,0) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(100%,0,0) rotate(120deg);
        transform: translate3d(100%,0,0) rotate(120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(-1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        transform: scale3d(.1,.1,.1) translate3d(1000px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-10px,0,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,1000px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50%,to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    50%,to {
        opacity: 0
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,-60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px,0,0);
        transform: scale(.1) translate3d(-2000px,0,0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(42px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px,0,0);
        transform: scale(.1) translate3d(-2000px,0,0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px,0,0);
        transform: scale(.1) translate3d(2000px,0,0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(-42px,0,0);
        transform: scale3d(.475,.475,.475) translate3d(-42px,0,0)
    }

    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px,0,0);
        transform: scale(.1) translate3d(2000px,0,0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        transform: scale3d(.475,.475,.475) translate3d(0,60px,0);
        -webkit-animation-timing-function: cubic-bezier(.55,.055,.675,.19);
        animation-timing-function: cubic-bezier(.55,.055,.675,.19)
    }

    to {
        opacity: 0;
        -webkit-transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        transform: scale3d(.1,.1,.1) translate3d(0,-2000px,0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1);
        animation-timing-function: cubic-bezier(.175,.885,.32,1)
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%,0,0);
        transform: translate3d(-100%,0,0)
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%,0,0);
        transform: translate3d(100%,0,0)
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}
/* 基本颜色 begin */
/* 基本颜色 end */
/* 基础功能 begin */
.f-cb:after,
.f-cbli li:after {
  display: block;
  clear: both;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  content: " ";
}
.f-cb,
.f-cbli li {
  zoom: 1;
}
.f-ib {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.f-dn {
  display: none;
}
.f-vh {
  visibility: hidden;
}
.f-vs {
  visibility: visible;
}
.f-db {
  display: block;
}
.f-fl {
  float: left;
}
.f-fr {
  float: right;
}
.f-pr {
  position: relative;
}
.f-abs {
  position: absolute;
}
.f-prz {
  position: relative;
  zoom: 1;
}
.f-oh {
  overflow: hidden;
}
.f-ff {
  font-family: "Helvetica Neue", Helvetica, "Microsoft YaHei", Tahoma, Arial, sans-serif;
}
.f-fs12 {
  font-size: 12px !important;
}
.f-fs14 {
  font-size: 14px !important;
}
.f-fwn {
  font-weight: normal;
}
.f-fwb {
  font-weight: bold;
}
.f-tal {
  text-align: left;
}
.f-tac {
  text-align: center;
}
.f-tar {
  text-align: right;
}
.f-taj {
  text-align: justify;
  text-justify: text-justify;
}
.f-vam,
.f-vama * {
  vertical-align: middle;
}
.f-wsn {
  word-wrap: normal;
  white-space: nowrap;
}
.f-pre {
  overflow: hidden;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-all;
}
.f-wwb {
  white-space: normal;
  word-wrap: break-word;
  word-break: break-all;
}
.f-ti {
  overflow: hidden;
  text-indent: -30000px;
}
.f-ti2 {
  text-indent: 2em;
}
.f-lhn {
  line-height: normal;
}
.f-tdu,
.f-tdu:hover {
  text-decoration: underline;
}
.f-tdn,
.f-tdn:hover {
  text-decoration: none;
}
.f-toe {
  overflow: hidden;
  word-wrap: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.f-csp {
  cursor: pointer;
}
.f-csd {
  cursor: default;
}
.f-csh {
  cursor: help;
}
.f-csm {
  cursor: move;
}
.f-usn {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.f-bg {
  background-position: center center;
  background-size: auto auto;
}
.f-dva {
  text-align: center;
}
.f-dva > * {
  display: inline-block;
  vertical-align: middle;
}
.f-dva:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/* 基础样式功能 end */
* {
  box-sizing: border-box;
}
@font-face {
  src: url("/CloudBeing/assets/font/SourceHanSansCN-Normal.otf");
  font-family: 'SourceHanSansCN-Normal';
}
html,
body {
  margin: 0;
  padding: 0;
  min-width: 1200px;
  height: 100%;
  overflow-y: hidden;
  font-family: "SourceHanSansCN-Normal";
}
.ql-align-center {
  text-align: center !important;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  width: auto\9;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}
header {
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  min-width: 1200px;
  height: 76px;
  line-height: 76px;
  font-size: 16px;
  color: #fff;
  background-color: rgba(35, 37, 40, 0.5);
}
header .head {
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 5%;
  font-size: 16px;
}
header .head .logo {
  display: inline-block;
  width: 126.4px;
  height: 76px;
  line-height: 76px;
  margin-left: 20px;
  background: url('/CloudBeing/page/img/logo.png') no-repeat center center;
  background-size: contain;
}
header .head .nav {
  height: 100%;
  text-align: center;
}
header .head .nav .caseCoverList li a {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
header .head .nav li {
  position: relative;
  margin: 0 20px;
}
header .head .nav li a {
  color: #fff;
  padding: 15px 20px;
}
header .head .nav li:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0px;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width .5s;
}
header .head .nav li.active:after,
header .head .nav > li:hover:after {
  width: 100%;
}
header .head .nav li.nav-part ul.nav-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  font-size: 14px;
  line-height: 52px !important;
}
header .head .nav li.nav-part ul.nav-list li {
  margin: auto;
  width: 100%;
  background-color: rgba(43, 61, 81, 0.3);
}
header .head .nav li.nav-part ul.nav-list li:hover {
  background-color: #000000;
  transition: background-color 0.5s;
}
header .head .nav li.nav-part:hover ul.nav-list {
  display: block;
}
main {
  width: 100%;
  height: 100%;
}
main .container {
  display: block;
  margin: auto;
  width: 1200px;
}
main .swiper-container {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background-color: #000;
  /*> .swiper-pagination{
            right: 30px;

            .swiper-pagination-bullet{
                width: 15px;
                height: 15px;
            }
        }*/
}
main .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
}
main .swiper-container .pagination {
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: 20;
  text-align: center;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  -o-transform: translate(0, -50%);
  -ms-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
main .swiper-container .pagination .swiper-pagination-switch {
  display: block;
  margin: 30px 0;
  cursor: pointer;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: transparent;
  border: 1px solid #fff;
}
main .swiper-container .pagination .swiper-active-switch {
  opacity: 1;
  background-color: #fff !important;
}
main .swiper-container .swiper-pagination-switch {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: #555;
  margin: 0 5px;
  opacity: 0.8;
  border: 1px solid #fff !important;
  cursor: pointer;
}
main .swiper-container .swiper-active-switch {
  background: #fff;
}
main .home-banner-bg {
  display: none;
  position: relative;
  height: 100%;
  background-color: #4f7082;
}
main .home-banner-bg:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}
main .content-wrap {
  display: flex;
  z-index: 2;
  width: 100%;
  height: 100%;
}
main .content-wrap .content {
  margin: auto;
}
main .content-wrap .content .btn-more {
  display: block;
  margin-top: 25px;
  width: 154px;
  height: 40px;
  line-height: 38px;
  font-size: 18px;
  color: #545454;
  border: 1px solid #959595;
}
main .content-wrap .content .btn-more:after {
  content: '>>>';
  font-family: '\9ED1\4F53';
}
main .content-wrap .content .btn-more:hover {
  color: #fff;
  border-color: transparent;
  background-color: #545454;
}
main .content-wrap .tab-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 500px;
  background-color: #fff;
}
main .content-wrap .tab-wrap .content {
  top: 0 !important;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
}
main .content-wrap .tab-wrap .content .title {
  margin-top: 43px;
  margin-bottom: 88px;
  font-size: 28px;
  color: #4d5559;
  letter-spacing: normal;
}
main .content-wrap .tab-wrap .content .title:after {
  bottom: -33px;
  width: 80px;
  height: 4px;
  background-color: #bfbfbf;
}
main .content-wrap .tab-wrap .content .describe {
  color: #666666;
  font-size: 12px;
  text-indent: 24px;
  text-align: left;
}
main .content-wrap .tab-wrap .content .more-btn {
  display: block;
  margin: auto;
  margin-top: 20px;
  width: 126px;
  height: 32px;
  line-height: 30px;
  color: #323335;
  border-radius: 20px;
  border: 1px solid #323335;
  background-color: #fff;
}
main .content-wrap .tab-wrap .content .more-btn:hover {
  color: #fff;
  border-color: transparent;
  background-color: #323335;
}
main .content-wrap .tab-wrap .content [class^="icon"] {
  margin: auto;
}
main .content-wrap .tab-wrap .line-33 {
  display: flex;
  width: 33.33%;
}
main .content-wrap .tab-wrap .tab-item {
  height: 100%;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
main .content-wrap .tab-wrap .tab-item .content {
  border-right: 1px solid #E6E6E6;
}
main .content-wrap .tab-wrap .tab-item:last-child .content {
  border-right: none;
}
main .content-wrap .tab-wrap .tab-item:hover {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  -webkit-transform: translate3d(0, 0px, -2px);
  transform: translate3d(0, 1px, -2px);
}
main .content-wrap .tab-wrap .tab-item:hover .content {
  border-right-color: transparent;
}
main .content-wrap .tab-wrap .tab-item:hover .content .title {
  color: #4daad2;
}
main .content-wrap .tab-wrap .tab-item:hover {
  /*.title{
                    color: #fff!important;
                }
                .describe{
                    color: #fff!important;
                }
                .more-btn{
                    display: block!important;
                }*/
}
main .content-wrap .tab-wrap .tab-item:hover .content {
  border-color: transparent;
}
main .home {
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  background-position: top center;
}
main .home .visible-md {
  position: absolute;
}
main .home .content .title {
  position: relative;
  margin-bottom: 68px;
  font-size: 64px;
  font-weight: bold;
  letter-spacing: 25px;
  font-family: "microsoft yahei";
}
main .home .content .title:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  margin: auto;
  width: 67px;
  height: 6px;
  background-color: #55B7E7;
}
main .home .describe {
  font-size: 14px;
  line-height: 30px;
}
main .home .know {
  position: absolute;
  left: 50%;
  margin-top: 50px;
  transform: translate(-50%);
  width: 220px;
  height: 50px;
  border: 1px solid #A4C1C9;
  text-align: center;
  line-height: 50px;
}
main .home .know span {
  width: 28px;
  height: 30px;
  margin-right: 12px;
  display: inline-block;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAeCAYAAAA/xX6fAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDY3IDc5LjE1Nzc0NywgMjAxNS8wMy8zMC0yMzo0MDo0MiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkQ5QjFFNkRDNUE2NjExRTg5MzE4OThEMURCMkU2NzA4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkQ5QjFFNkRENUE2NjExRTg5MzE4OThEMURCMkU2NzA4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RDlCMUU2REE1QTY2MTFFODkzMTg5OEQxREIyRTY3MDgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RDlCMUU2REI1QTY2MTFFODkzMTg5OEQxREIyRTY3MDgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5/7TzYAAACZ0lEQVR42qzXTUhUURjG8RntFhoVBFIkQ0Pf0YAYRVFGGQlSC8mCQmrRIlqEbXVTJC2CICKFcFsh1aKI6GMRUdSm7IO+iJIkW5RQCwuFmsym/4HnxkFu59w7Mxd+wj33vO8zM8495066UCikEhzrsRQLMR1DGMRDfI3VwQR6LEAvxgru4w62+/q5Lk7DWavhExxAA5bohdRhB85Z84awLmlgDnk1OIPZMT4Jow0TquuMG9ioglHUxwyyVeK8enT7AnOaOICgiDBbp3qddAX+wLcSg2zHFdoaFdini4vKGGi8Ud/ADsxo8JSjsBa7iwico949duA1DboKuzXnlb5YSUKvq7banEzVyRVPUd+kG71HtXECF6tmnzlp1skaT9GliNXlE3bFDDVfyLsVrG5NWuUeeVbBPxFj83ARV5H11N9DgwlcgbFUaUcLBnDIMecpppjAWnxOlX4EOI3LmBVxfdj8MYFVyMdomI4Z3IpcxHg+DPyOmanyHSfQHzE+Iwz8oI/Vd4x6rr/ERnRgPOJ6Ngx8Zv6ZqPQ0HHdcO4I63HfM2YARE3hTAzs9gRURY7ewDMdifEL1uBHelGbTfO25cS9YN/wvtCdY2rapblM4cFgDcx1FHdYSmE24lg5qQ/+3eAdq1u8pnF/EbtGi3m2T98P9urC3jHth+Ebe/m/Hv60Jq8sU+EL9Mq6HqPeatKWEoGo8Vp8m31NbYL2yriLCNuO36puTPAiHj3ojOIgqT1CjtbN/wcqoeWnPb4ut6EVG5+/wHB8xgRosx1prpTqKrlJ+Wxir9Ng/HLHr/8QD7NHPA2evvwIMAGtYJ9m4/SC7AAAAAElFTkSuQmCC) no-repeat center center;
  background-size: contain;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
main .swiper-pagination .swiper-pagination-bullet {
  margin: 30px 0 !important;
  background-color: transparent;
  border: 1px solid #fff;
  opacity: 1;
}
main .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
footer {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 304px;
  z-index: 2;
  font-size: 16px;
  line-height: 30px;
  color: #61615f !important;
  background-color: #181818;
}
footer .container {
  width: 100%;
  height: 100%;
  padding: 0 10%;
  margin: 0 auto;
  position: relative;
}
footer .container .top_content {
  background-color: #000000;
  width: 100%;
  height: 50px;
  position: absolute;
  left: 0;
  top: 0;
}
footer .container .information {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 0 150px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
footer .container .information ul {
  text-align: center;
  width: 20%;
}
footer .container .information ul li {
  font-size: 14px;
}
footer .container .information ul li a {
  color: #a4a4a4;
  line-height: 30px;
}
footer .container .information ul li a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}
footer .container .information ul li:first-child {
  font-size: 16px !important;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-weight: bold;
  background-color: #000000;
}
footer .container .information ul li:first-child a {
  opacity: 1;
}
footer .container .information ul li:first-child:hover a {
  text-decoration: none;
}
footer .container .information ul:first-child {
  margin-left: 0;
}
footer .container .contact-way-wrap {
  display: flex;
}
footer .container .contact-way-wrap .code-wrap {
  display: inline-block;
  text-align: center;
  line-height: 60px;
}
footer .container .contact-way-wrap .contact-way {
  display: inline-block;
  margin-left: 39px;
  line-height: 30px;
}
footer .container .contact-way-wrap .contact-way .number {
  font-size: 34px;
  color: #5ac7ff;
  margin-bottom: 12px;
}
footer .container .copyright {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 12px;
  line-height: 52px;
  text-align: center;
  color: #ccc;
}
.dg.ac {
  display: none;
}
.roll-up {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 30px;
  z-index: 10;
  margin: auto;
  width: 78px;
  height: 78px;
  background-image: url('/CloudBeing/page/img/roll-up.png');
  cursor: pointer;
}
.wenan-tr {
  top: 10%;
  right: 10%;
}
.wenan-rb {
  right: 10%;
  bottom: 10%;
}
.wenan-bl {
  left: 10%;
  bottom: 10%;
}
.wenan-tl {
  top: 10%;
  left: 10%;
}
[class^="wenan"] {
  position: absolute;
  width: 560px;
  color: #fff;
  overflow: hidden;
}
[class^="wenan"] .title {
  font-size: 36px;
}
[class^="wenan"] .title .case-video {
  display: inline-block;
  position: absolute;
  margin-top: 7px;
  margin-left: 25px;
  padding: 7px;
  font-size: 14px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
[class^="wenan"] .title .case-video:hover {
  text-decoration: underline;
}
[class^="wenan"] .subhead {
  margin-top: -5px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  font-size: 24px;
  line-height: 48px;
  border-bottom: 1px solid #fff;
}
[class^="wenan"] .describe {
  font-size: 14px;
}
[class^="wenan"] .icon-wrap {
  display: flex;
  margin-top: 65px;
  font-size: 27px;
}
[class^="wenan"] .icon-wrap > [class^="icon-"]:first-child {
  margin-right: 100px;
}
[class^="wenan"] .wechat-service .text {
  display: inline-block;
  margin-left: 25px;
  font-size: 20px;
  color: #25DB79;
  font-weight: bold;
}
[class^="wenan"] .wechat-service .text:before {
  content: '[';
  display: inline-block;
  margin-right: 10px;
  color: #fff;
}
[class^="wenan"] .wechat-service .text:after {
  content: ']';
  display: inline-block;
  margin-left: 10px;
  color: #fff;
}
[class^="wenan"] .wechat-service:before {
  content: '';
  display: inline-block;
  margin-left: -50px;
  margin-right: 16px;
  margin-bottom: -4px;
  width: 34px;
  height: 34px;
  background-image: url('/CloudBeing/page/img/icon/wechat-service.png');
}
.intro-wrap {
  width: auto;
  padding: 25px 35px;
  border: 1px solid #fff;
}
.intro-wrap .title {
  font-size: 36px;
}
.intro-wrap .subhead {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 36px;
  border-bottom: none;
}
/* 视频播放 begin */
.video-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.video-wrap .controls {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 812px;
  height: 636px;
}
.video-wrap .controls .sewise-player-ui .topbar {
  display: none;
}
.video-wrap .controls .close {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 28px;
  line-height: 25px;
  text-align: center;
  background: url('/CloudBeing/page/img/icon/icon_close.png') no-repeat center center;
  background-size: contain;
  border-radius: 50%;
  cursor: pointer;
  transition: all .5s;
}
.video-wrap .controls .close:hover {
  transform: rotate(180deg);
}
/* 视频播放 end  */
i {
  display: block;
}
.icon-app {
  width: 109px;
  height: 109px;
  background-image: url('/CloudBeing/page/img/icon/app.png');
}
.icon-wechat {
  width: 136px;
  height: 112px;
  background-image: url('/CloudBeing/page/img/icon/wechat.png');
}
.icon-explain {
  width: 80px;
  height: 119px;
  background-image: url('/CloudBeing/page/img/icon/explain.png');
}
.icon-huanqiang {
  width: 124px;
  height: 90px;
  background-image: url('/CloudBeing/page/img/icon/huangqiang.png');
}
.icon-TV {
  width: 120px;
  height: 107px;
  background-image: url('/CloudBeing/page/img/icon/TV.png');
}
.icon-exhibition {
  width: 124px;
  height: 105px;
  background-image: url('/CloudBeing/page/img/icon/exhibition.png');
}
.icon-interaction {
  width: 110px;
  height: 105px;
  background-image: url('/CloudBeing/page/img/icon/interaction.png');
}
.icon-location:before {
  content: '';
  display: inline-block;
  margin-right: 13px;
  margin-bottom: -3px;
  width: 12px;
  height: 18px;
  background-image: url('/CloudBeing/page/img/icon/location-grey.png');
}
.icon-phone:before {
  content: '';
  display: inline-block;
  margin-right: 13px;
  margin-bottom: -1px;
  width: 14px;
  height: 15px;
  background-image: url('/CloudBeing/page/img/icon/phone.png');
}
.icon-fax:before {
  content: '';
  display: inline-block;
  margin-right: 13px;
  margin-bottom: -1px;
  width: 15px;
  height: 15px;
  background-image: url('/CloudBeing/page/img/icon/fax.png');
}
.icon-MAIL:before {
  content: '';
  display: inline-block;
  margin-right: 13px;
  margin-bottom: -1px;
  width: 17px;
  height: 13px;
  background-image: url('/CloudBeing/page/img/icon/MAIL.png');
}
.icon-place:before {
  content: '';
  display: inline-block;
  margin-right: 12px;
  margin-bottom: -12px;
  width: 48px;
  height: 48px;
  background-image: url('/CloudBeing/page/img/icon/icon-place.png');
}
.icon-voice:before {
  content: '';
  display: inline-block;
  margin-right: 12px;
  margin-bottom: -12px;
  width: 48px;
  height: 48px;
  background-image: url('/CloudBeing/page/img/icon/icon-voice.png');
}
.icon-AR:before {
  content: '';
  display: inline-block;
  margin-right: 12px;
  margin-bottom: -12px;
  width: 48px;
  height: 48px;
  background-image: url('/CloudBeing/page/img/icon/icon-AR.png');
}
.icon-game:before {
  content: '';
  display: inline-block;
  margin-right: 12px;
  margin-bottom: -12px;
  width: 48px;
  height: 48px;
  background-image: url('/CloudBeing/page/img/icon/icon-game.png');
}
.icon-guide:before {
  content: '';
  display: inline-block;
  margin-right: 12px;
  margin-bottom: -12px;
  width: 48px;
  height: 48px;
  background-image: url('/CloudBeing/page/img/icon/icon-guide.png');
}
.icon-shop:before {
  content: '';
  display: inline-block;
  margin-right: 12px;
  margin-bottom: -12px;
  width: 48px;
  height: 48px;
  background-image: url('/CloudBeing/page/img/icon/icon-shop.png');
}
.icon-shopping-cart:before {
  content: '';
  display: inline-block;
  margin-right: 12px;
  margin-bottom: -12px;
  width: 48px;
  height: 48px;
  background-image: url('/CloudBeing/page/img/icon/icon-shopping-cart.png');
}
.icon-video:before {
  content: '';
  display: inline-block;
  margin-right: 6px;
  margin-bottom: -1px;
  width: 22px;
  height: 12px;
  background-size: 100% 100%;
  background-image: url('/CloudBeing/page/img/icon/icon-video.png');
}
.bds_tsina {
  background-image: url("/CloudBeing/page/img/icon/weibo.png") !important;
}
.bds_tsina:hover {
  background-image: url("/CloudBeing/page/img/icon/weibo_hl.png") !important;
}
.bds_weixin {
  background-image: url("/CloudBeing/page/img/icon/weixin.png") !important;
}
.bds_weixin:hover {
  background-image: url("/CloudBeing/page/img/icon/weixin_hl.png") !important;
}
.bds_more {
  background-image: url("/CloudBeing/page/img/icon/more.png") !important;
}
.bds_more:hover {
  background-image: url("/CloudBeing/page/img/icon/more_hl.png") !important;
}
.active .icon-app {
  background-image: url('/CloudBeing/page/img/icon/app-active.png');
}
.active .icon-wechat {
  background-image: url('/CloudBeing/page/img/icon/wechat-active.png');
}
.active .icon-explain {
  background-image: url('/CloudBeing/page/img/icon/explain-active.png');
}
.active .icon-huanqiang {
  background-image: url('/CloudBeing/page/img/icon/huangqiang-active.png');
}
.active .icon-TV {
  background-image: url('/CloudBeing/page/img/icon/TV-active.png');
}
.active .icon-exhibition {
  background-image: url('/CloudBeing/page/img/icon/exhibition-active.png');
}
.active .icon-interaction {
  background-image: url('/CloudBeing/page/img/icon/interaction-active.png');
}
.icon-app {
  width: 109px;
  height: 109px;
  background-image: url('/CloudBeing/page/img/icon/icon_app.png');
}
.icon-wx {
  width: 136px;
  height: 112px;
  background-image: url('/CloudBeing/page/img/icon/icon_wechat.png');
}
/* 逐渐显示 begin */
.show-up {
  opacity: 0;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
  -webkit-transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
  transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s, transform 2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.8s;
}
.show-up + .show-up {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}
.show-up + .show-up + .show-up {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}
.show-up + .show-up + .show-up + .show-up {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}
/* 逐渐显示 end */
/* 方向显示 begin */
.left-to-right {
  position: relative;
  top: 0;
  left: -100%;
  transition: left 1.5s;
}
.left-to-right + .left-to-right {
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
}
.left-to-right + .left-to-right + .left-to-right {
  -webkit-transition-delay: .8s;
  transition-delay: .8s;
}
.top-to-bottom {
  position: relative;
  top: -100%;
  left: 0;
  transition: top 1.5s;
}
.right-to-left {
  position: relative;
  top: 0;
  right: -100%;
  transition: right 1.5s;
}
.right-to-left + .right-to-left {
  -webkit-transition-delay: .6s;
  transition-delay: .6s;
}
.right-to-left + .right-to-left + .right-to-left {
  -webkit-transition-delay: .8s;
  transition-delay: .8s;
}
.bottom-to-top {
  position: relative;
  left: 0;
  bottom: -100%;
  transition: bottom 1.5s;
}
/* 方向显示 end */
.swiper-slide-active .show-up {
  -webkit-transform: translate3d(0px, -20px, 0px);
  transform: translate3d(0px, -20px, 0px);
  opacity: 1;
  filter: alpha(opacity=100);
}
.swiper-slide-active .left-to-right {
  left: 0;
}
.swiper-slide-active .top-to-bottom {
  top: 0;
}
.swiper-slide-active .right-to-left {
  right: 0;
}
.swiper-slide-active .bottom-to-top {
  bottom: 0;
}
.swiper-slide-active .caseList_show {
  bottom: 15% !important;
  opacity: 1 !important;
}
main.index .swiper-container {
  top: auto;
  z-index: 1;
}
.describe_cover {
  font-size: 26px !important;
}
main {
  min-width: 1200px;
}
main .visitType {
  font-size: 30px;
  margin-top: 9%;
}
main .English {
  font-size: 28px;
  margin-top: 5px;
}
main .address {
  font-size: 30px;
  margin: 2px 0 0px;
}
main .visitTime {
  margin-top: 18%;
  font-size: 26px;
}
main .visitTitle {
  font-size: 60px;
  margin-top: 13%;
  width: 600px;
}
main .visitTitle span {
  font-size: 190px;
}
main .visitqr {
  width: 200px;
  height: 160px;
  position: absolute;
  right: 12%;
  bottom: 15%;
  display: flex;
}
main .visitqr img {
  width: 160px;
}
main .visitqr span {
  display: inline-block;
  width: 20px;
  height: 100%;
  text-align-last: justify;
  writing-mode: vertical-rl;
  text-align: center;
  align-items: stretch;
  padding: 7px 0;
  box-sizing: border-box;
  font-size: 14px;
  margin-left: 8px;
}
main .swiper-container {
  min-width: 1200px;
}
main .swiper-container .swiper-slide {
  z-index: 5;
  overflow: hidden;
}
main .swiper-container .pagination .swiper-pagination-switch {
  border: 1px solid #363636;
}
main .swiper-container .pagination .swiper-active-switch {
  background-color: #363636;
}
main .showcase {
  background: url('/CloudBeing/page/img/background/showcase.jpg') no-repeat bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
main .home {
  background-size: cover;
}
main .home .videoMask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
main .home .videoMask .video_kuang {
  width: 1287px;
  height: 734px;
  background: url("/CloudBeing/assets/img/video_kuang.png") no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 1%;
}
main .home .videoMask .video_kuang video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 1258px;
  height: 703px;
  object-fit: cover;
}
main .home .videoMask .video_close {
  position: absolute;
  left: 84%;
  top: 8%;
}
main .home .video_button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10%;
  cursor: pointer;
}
main .home .video_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .home .home_content_img {
  width: 879px;
}
@font-face {
  src: url("/CloudBeing/assets/font/Alibaba-PuHuiTi-Bold.ttf");
  font-family: 'Alibaba-PuHuiTi-Bold';
}
main .home .home_word {
  position: relative;
  z-index: 3;
  font-size: 88px;
  letter-spacing: 3px;
  animation-duration: 2s;
  font-family: 'Alibaba-PuHuiTi-Bold';
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .home .home_word .topword1 {
  margin-bottom: 20px;
}
main .guide {
  background: url('/CloudBeing/page/img/background/bg_3.png') no-repeat bottom center;
  background-size: cover;
}
main .guide .content {
  position: absolute;
  left: 20%;
  bottom: 15%;
}
main .guide .content .title {
  color: #fff;
}
main .guide .content .subhead {
  color: #fff;
}
main .guide .content .describe {
  color: #dfdfdf;
}
main .guide .content .btn-more {
  color: #dfdfdf;
  border: 1px solid #959595;
}
main .wisdom:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
main .wisdom {
  background-image: url('/CloudBeing/page/img/background/bg_7.jpg');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position-x: center;
  background-position-y: center;
  position: relative;
  color: white;
}
main .wisdom .btn-more {
  display: block;
  margin-top: 25px;
  width: 154px;
  height: 40px;
  line-height: 38px;
  font-size: 18px;
  color: #fff;
  border: 1px solid #fff;
}
main .wisdom .btn-more:after {
  content: '>>>';
  font-family: '\9ED1\4F53';
}
main .wisdom .btn-more:hover {
  color: #fff;
  border-color: transparent;
  background-color: #545454;
}
main .wisdom p {
  margin: 0;
}
main .wisdom .wisdom_content {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  box-sizing: border-box;
}
main .wisdom .wisdom_content .card {
  width: 490px;
  height: 490px;
  z-index: 999;
  top: 10%;
  position: relative;
  cursor: pointer;
}
main .wisdom .wisdom_content .card .card_title {
  position: absolute;
  top: -70px;
  font-size: 32px;
}
main .wisdom .wisdom_content .card .box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: -32px 30px 0px 1px rgba(83, 98, 98, 0.5);
  transform-style: preserve-3d;
  transition: 1s ease;
}
main .wisdom .wisdom_content .card:hover .box {
  box-shadow: none;
  font-size: 30px;
  transform: rotateY(180deg);
}
main .wisdom .wisdom_content .card:hover .contentBx {
  margin-top: 30px;
  margin-left: 30px;
}
main .wisdom .wisdom_content .card .box .imgBx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
main .wisdom .wisdom_content .card .box .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .wisdom .wisdom_content .card .box .contentBx1 {
  background-size: cover;
}
main .wisdom .wisdom_content .card .box .contentBx2 {
  background-size: cover;
}
main .wisdom .wisdom_content .card .box .contentBx3 {
  background-size: cover;
}
main .wisdom .wisdom_content .card .box .contentBx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
  transform: rotateY(180deg);
}
main .wisdom .wisdom_content .card .box .contentBx div {
  transform-style: preserve-3d;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  transform: translateZ(100px);
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  letter-spacing: 3px;
}
main .wisdom .wisdom_content .card .box .contentBx div h2 {
  color: #fff;
  font-size: 20px;
  letter-spacing: 1px;
}
main .wisdom .wisdom_content .card .box .contentBx div p {
  color: #fff;
  font-size: 16px;
}
main .smart {
  background-position-x: center;
  background-position-y: center;
  position: relative;
}
main .smart .title_cn {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 99px;
  z-index: 1;
  font-size: 38px;
  color: white !important;
}
main .smart .title_en {
  font-size: 18px;
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 17%;
  z-index: 1;
  color: white !important;
  opacity: 0.4;
}
main .smart .kuang:hover {
  opacity: 1;
}
main .smart .kuang {
  width: 140px;
  height: 40px;
  background-image: url('/CloudBeing/page/img/background/p3/kuang.png');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  opacity: 0.5;
}
main .smart .smart_content {
  padding: 0 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  flex-wrap: wrap;
  margin-top: 12%;
}
main .smart .smart_content .smart_item:hover .mask {
  display: block;
}
main .smart .smart_content .smart_item:hover .bgImg {
  transform: scale(1.1);
}
main .smart .smart_content .smart_item:hover .small_bgImg {
  transform: scale(1.1);
}
main .smart .smart_content .smart_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 552px;
  position: relative;
  color: white;
  overflow: hidden;
}
main .smart .smart_content .smart_item .location {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  font-size: 12px;
  opacity: 0.7;
  margin-top: 5px;
  box-sizing: border-box;
}
main .smart .smart_content .smart_item .location img {
  width: 8px;
  margin-right: 10px;
}
main .smart .smart_content .smart_item .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.5);
  transition: 2s;
}
main .smart .smart_content .smart_item .mask .word1 {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100px;
  font-size: 28px;
  text-align: center;
}
main .smart .smart_content .smart_item .mask .word2 {
  width: 100%;
  position: absolute;
  left: 0;
  top: 150px;
  font-size: 14px;
  text-align: center;
}
main .smart .smart_content .smart_item .bgImg {
  transition: 1s;
}
main .smart .smart_content .smart_item .bgImg_content {
  width: 552px;
  height: 309px;
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
main .smart .smart_content .smart_item .bgImg_content .small_bgImg {
  width: 552px;
  height: 309px;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 1s;
}
main .smart .content {
  position: absolute;
  right: 25%;
  bottom: 10%;
}
main .smart .content .title {
  color: #333333;
}
main .smart .content .subhead {
  color: #333333;
}
main .smart .content .describe {
  color: #666;
}
main .smart .content .btn-more {
  font-size: 14px;
  color: #545454;
  border-color: #959595;
}
main .case:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
main .case {
  background: url('/CloudBeing/page/img/background/bg_7.jpg') no-repeat center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position-x: center;
  background-position-y: center;
  color: white !important;
  position: relative;
}
main .case .codeMask {
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
main .case .codeMask img {
  width: 500px;
}
main .case footer {
  position: absolute !important;
}
main .case .contact_cn,
main .case .contact_en,
main .case .phone,
main .case .location,
main .case .codeImg,
main .case .imgList {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}
main .case .contact_cn {
  top: 14%;
  font-size: 38px;
}
main .case .contact_en {
  top: 20%;
  opacity: 0.5;
  font-size: 18px;
}
main .case .phone {
  top: 23%;
  font-size: 44px;
}
main .case .location {
  font-size: 20px;
  top: 32%;
}
main .case .codeImg {
  top: 40%;
}
main .case .imgList {
  top: 59%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 20%;
  cursor: pointer;
}
main .case .imgList img:hover {
  transition: 500ms;
  transform: scale(1.1);
}
main .interaction {
  background-image: url('/CloudBeing/page/img/background/wisdom-interaction-bg.jpg');
  background-size: auto 100%;
}
main .interaction .content {
  position: relative;
  top: 12%;
  right: 25%;
  color: #fff;
}
main .interaction .content .btn-more {
  color: #fff;
  border-color: #fff;
}
main .data {
  background-image: url('/CloudBeing/page/img/background/wisdom-data-bg.jpg');
  background-size: 100% auto;
}
main .data .content {
  position: relative;
  top: 5%;
  left: 25%;
}
main .data .content .title {
  color: #2e3036;
}
main .data .content .describe {
  color: #6b6b6b;
}
main .common .content {
  text-align: left;
}
main .common .content .title {
  font-size: 36px;
}
main .common .content .subhead {
  margin-bottom: 14px;
  font-size: 22px;
}
main .common .content .describe {
  font-size: 15px;
  line-height: 28px;
}
main .footer {
  background-image: url('/CloudBeing/page/img/background/footer-bg.jpg');
}
main .footer .footer-wrap {
  margin: auto;
  padding-top: 95px;
  width: 1200px;
  height: 100%;
}
main .footer .footer-wrap .content {
  position: relative;
}
main .footer .footer-wrap .content .title {
  font-size: 40px;
  display: inline-block;
  color: #2e3036;
  margin-right: 35px;
}
main .footer .footer-wrap .content .subhead {
  margin-bottom: 14px;
  font-size: 26px;
  display: inline-block;
  color: #2e3036;
}
main .footer .footer-wrap .content .subhead .more {
  font-size: 18px;
  color: #545454;
  position: absolute;
  right: 0;
  bottom: 0;
}
main .footer .footer-wrap .content .subhead .more:after {
  content: '>>>';
  font-family: SimSun;
}
main .footer .footer-wrap .dynamic-wrap {
  margin-top: 60px;
  height: 294px;
}
main .footer .footer-wrap .dynamic-wrap .dynamic-item {
  position: relative;
  display: block;
  margin-right: 8px;
  width: 294px;
  height: 100%;
  text-align: center;
  overflow: hidden;
  /*.img-coverage{
                                  position: absolute;
                                  top: 0;
                                  left: 0;
                                  right: 0;
                                  bottom: 0;
                                  margin: auto;
                              }*/
}
main .footer .footer-wrap .dynamic-wrap .dynamic-item img {
  /*margin-left: -25%;*/
  max-width: none;
  position: relative;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}
main .footer .footer-wrap .dynamic-wrap .dynamic-item .coverage {
  max-width: 100%;
  max-height: 100%;
  background-position: center center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}
main .footer .footer-wrap .dynamic-wrap .dynamic-item .describe {
  position: absolute;
  left: 0;
  bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
  text-align: left;
  line-height: 32px;
  color: #fff;
}
main .footer .footer-wrap .dynamic-wrap .dynamic-item:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
main .footer .footer-wrap .dynamic-wrap .dynamic-item:last-child {
  margin-right: 0;
}
main .footer .footer-wrap .dynamic-wrap .dynamic-item:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
main .footer .mini-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 330px;
  color: #fff;
  background-image: url('/CloudBeing/page/img/background/bg-footer.jpg');
  background-position: top center;
}
main .footer .mini-footer .information ul {
  margin-left: 90px;
}
main .footer .mini-footer .information ul li {
  font-weight: 200;
}
main .footer .mini-footer .information ul li a {
  color: #fff;
  line-height: 30px;
}
main .footer .mini-footer .information ul li a:hover {
  text-decoration: underline;
}
main .footer .mini-footer .information ul li:first-child {
  margin-bottom: 10px;
  font-weight: bold;
}
main .footer .mini-footer .information ul li:first-child a {
  opacity: 1;
}
main .footer .mini-footer .information ul li:first-child:hover a {
  text-decoration: none;
}
main .footer .mini-footer .information ul:first-child {
  margin-left: 0;
}
main .footer .mini-footer .contact-way-wrap {
  display: flex;
}
main .footer .mini-footer .contact-way-wrap .code-wrap {
  text-align: center;
  line-height: 60px;
  display: inline-block;
}
main .footer .mini-footer .contact-way-wrap .contact-way {
  display: inline-block;
  margin-left: 39px;
  line-height: 30px;
}
main .footer .mini-footer .contact-way-wrap .contact-way .number {
  font-size: 34px;
  color: #5ac7ff;
  line-height: 22px;
  margin-bottom: 12px;
}
main .footer .mini-footer .copyright {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 12px;
  line-height: 52px;
  text-align: center;
  color: #ccc;
}
main .home-banner-bg {
  display: block;
  background-color: transparent;
  background-image: url('/CloudBeing/page/img/background/home-banner-bg.jpg');
}
main .home-banner-bg:before {
  background-image: url('/CloudBeing/page/img/background/sections-mask.png');
}
main .interaction:before {
  top: 10%;
  right: 5%;
  width: 60%;
  height: 700px;
  background-position: top right;
  background-image: url('/CloudBeing/page/img/background/wisdom-interaction-bg-adorn.png');
}
main .data:before {
  left: 10%;
  top: 20%;
  z-index: 10;
  width: 40%;
  height: 1197px;
  background-position: left top;
  background-image: url('/CloudBeing/page/img/background/wisdom-data-bg-adorn.png');
}
.guide {
  height: auto;
  background-color: #f5f6fa;
}
.guide .topBg {
  width: 100%;
  height: 508px;
  background: url("/CloudBeing/page/img/wisdom/catalog/topBg.png") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 9% 0;
}
.guide .topBg .title {
  font-size: 45px;
  color: #0a95e1;
}
.guide .topBg .word {
  font-size: 14px;
  color: #ffffff;
}
.guide .typeContent {
  width: 100%;
  height: 807px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #10081D;
}
.guide .typeContent .typeList {
  width: 879px;
  height: 600px;
  background: url("/CloudBeing/page/img/wisdom/guide/wordBg.png") no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.interaction {
  height: 100%;
  overflow: auto;
}
.interaction .banner {
  height: 580px;
  position: relative;
  overflow: hidden;
}
.interaction .banner .visible-md {
  position: absolute;
}
.interaction .banner .title {
  font-size: 64px;
  color: #fff;
  text-align: center;
  padding-top: 190px;
  position: relative;
  z-index: 1;
}
.interaction .banner .line {
  text-align: center;
  height: 50px;
  position: relative;
  z-index: 1;
}
.interaction .banner .line span {
  display: inline-block;
  width: 68px;
  height: 6px;
  background-color: #55B7E7;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
}
.interaction .banner .content {
  margin-top: 35px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 28px;
  position: relative;
  z-index: 1;
}
.interaction .banner .content p {
  margin: 0;
  padding: 0;
}
.interaction .daolan-content {
  display: flex;
}
.interaction .daolan-content .app-content:hover,
.interaction .daolan-content .wx-content:hover {
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  -webkit-transform: translate3d(0, 0px, -2px);
  transform: translate3d(0, 1px, -2px);
  border-radius: 6px;
  cursor: pointer;
  transition: all 300ms;
}
.interaction .daolan-content .app-content:hover .title,
.interaction .daolan-content .wx-content:hover .title {
  color: #4daad2;
}
.interaction .daolan-content .app-content,
.interaction .daolan-content .wx-content {
  padding-top: 40px;
  padding-left: 60px;
  padding-right: 60px;
  text-align: center;
  padding-bottom: 50px;
  flex: 1;
}
.interaction .daolan-content .app-content .title,
.interaction .daolan-content .wx-content .title {
  margin-top: 43px;
  margin-bottom: 30px;
  font-size: 28px;
  color: #4d5559;
  letter-spacing: normal;
  position: relative;
  font-weight: bold;
}
.interaction .daolan-content .app-content .bar,
.interaction .daolan-content .wx-content .bar {
  width: 80px;
  height: 4px;
  margin: 0 auto;
  margin-bottom: 60px;
  background-color: #bfbfbf;
}
.interaction .daolan-content .app-content .info,
.interaction .daolan-content .wx-content .info {
  font-size: 16px;
  color: #666666;
  text-indent: 24px;
  text-align: left;
  line-height: 26px;
}
.interaction .daolan-content .app-content .more,
.interaction .daolan-content .wx-content .more {
  display: block;
  margin: auto;
  margin-top: 20px;
  width: 126px;
  height: 32px;
  line-height: 30px;
  color: #323335;
  border-radius: 20px;
  border: 1px solid #323335;
  background-color: #fff;
}
.interaction .daolan-content .app-content .logo {
  width: 109px;
  height: 109px;
  background: url("/CloudBeing/page/img/icon/icon_app.png") no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
}
.interaction .daolan-content .wx-content .logo {
  width: 136px;
  height: 112px;
  background: url("/CloudBeing/page/img/icon/icon_wechat.png") no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
}
.interaction .content-wrap .content {
  position: relative;
}
.interaction .content-wrap .tab-wrap .line-25 {
  display: flex;
  width: 25%;
}
.interaction .content-wrap .tab-wrap .line-25:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: auto;
}
.interaction .content-wrap .tab-wrap .line-50 {
  display: flex;
  width: 50%;
}
.interaction .content-wrap .tab-wrap .line-50:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: auto;
}
.interaction .interaction-scene-1 {
  background-image: url('/CloudBeing/page/img/background/interaction-scene-1.jpg');
}
.interaction .interaction-scene-1 > div {
  width: 510px;
}
.interaction .interaction-scene-2 {
  background-image: url('/CloudBeing/page/img/background/interaction-scene-2.jpg');
}
.interaction .exhibition-scene-1 {
  background-image: url('/CloudBeing/page/img/background/exhibition-scene-1.jpg');
}
.interaction .exhibition-scene-2 {
  background-image: url('/CloudBeing/page/img/background/exhibition-scene-2.jpg');
}
.interaction .screen-scene-1 {
  background-image: url('/CloudBeing/page/img/background/screen-scene-1.jpg');
}
.interaction .screen-scene-2 {
  background-image: url('/CloudBeing/page/img/background/screen-scene-2.jpg');
}
.interaction .wall-scene-1 {
  background-image: url('/CloudBeing/page/img/background/wall-scene-1.jpg');
}
.interaction .wall-scene-1 .describe {
  font-size: 14px;
  text-indent: 28px;
}
.interaction .wall-scene-1 > div {
  width: 510px;
}
main.data .content-wrap .content {
  position: relative;
  top: -25%;
}
main.data .content-wrap .tab-wrap .row {
  display: flex;
  text-align: center;
  width: 100%;
}
main.data .content-wrap .tab-wrap .row .content {
  margin: auto;
}
main.data .content-wrap .tab-wrap .row .icon {
  width: 144px;
  height: 108px;
  background-image: url('/CloudBeing/page/img/icon/cloud.png');
}
main.data .data-scene-1 {
  position: relative;
  background-image: url('/CloudBeing/page/img/background/data-bg.jpg');
}
main.data .data-scene-1 .wenan {
  position: absolute;
  right: 10%;
  bottom: 10%;
  overflow: hidden;
}
main.data .data-scene-1 .describe {
  width: 445px;
  text-indent: 28px;
  font-size: 14px;
}
.case {
  overflow: auto;
}
.case .home-banner-bg {
  overflow: hidden;
}
.case .case_content {
  height: auto;
  background-color: #000000;
  padding-top: 95px;
  position: relative;
  max-width: 1900px;
}
.case .case_content .tapbarBox {
  overflow: hidden;
  width: 1870px;
  height: 960px;
  display: flex;
}
.case .case_content .tapbarBox .navs {
  height: 100%;
  width: 230px;
  position: relative;
  display: flex;
  align-items: center;
  top: -115px;
}
.case .case_content .tapbarBox .navs .tapbar {
  width: 184px;
  height: 225px;
  position: relative;
  left: 72px;
}
.case .case_content .tapbarBox .navs .tapbar .item {
  width: 110px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 18px;
  color: white;
  cursor: pointer;
}
.case .case_content .tapbarBox .contents {
  width: 1640px;
  height: 100%;
  position: relative;
  overflow: scroll;
  overflow: -moz-scrollbars-none;
}
.case .case_content .tapbarBox .contents ul {
  width: 1640px;
  height: auto;
}
.case .case_content .tapbarBox .contents ul li {
  float: left;
  width: 500px;
  height: 280px;
  transition: all 1s;
  cursor: pointer;
  position: relative;
  margin-left: 30px;
  margin-top: 40px;
  animation: shows 2s ease-in-out;
}
.case .case_content .tapbarBox .contents ul li .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 500px;
  height: 280px;
  opacity: 0;
  transition: all .5s;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.case .case_content .tapbarBox .contents ul li .mask .btn {
  width: fit-content;
  height: fit-content;
  display: inline-block;
  color: #fff;
}
.case .case_content .tapbarBox .contents ul li .mask .name {
  font-size: 24px;
}
.case .case_content .tapbarBox .contents ul li .mask .info {
  font-size: 12px;
}
.case .case_content .tapbarBox .contents ul li .img {
  width: 500px;
  height: 280px;
  position: relative;
  transition: all 1s;
  overflow: hidden;
  border-radius: 15px;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: black;
}
.case .case_content .tapbarBox .contents ul li .img img {
  width: 100%;
  height: 100%;
  transition: all .5s;
  max-width: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
}
.case .case_content .tapbarBox .contents ul li:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4);
}
.case .case_content .tapbarBox .contents ul li:hover img {
  height: 120%;
}
.case .case_content .tapbarBox .contents ul li:hover .mask {
  opacity: 1;
}
.case .case_content .tapbarBox .contents ul li:nth-of-type(3n) {
  margin-right: 0;
}
.case .case_content .tapbarBox .contents::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
.case .case_content .contact1:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.case .case_content .contact1 {
  width: 100%;
  height: 850px;
  margin-top: 50px;
  background: url('/CloudBeing/page/img/background/bg_7.jpg') no-repeat center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position-x: center;
  background-position-y: center;
  color: white !important;
  position: relative;
}
.case .case_content .contact1 .codeMask {
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.case .case_content .contact1 .codeMask img {
  width: 500px;
}
.case .case_content .contact1 footer {
  position: absolute !important;
}
.case .case_content .contact1 .contact_cn,
.case .case_content .contact1 .contact_en,
.case .case_content .contact1 .phone,
.case .case_content .contact1 .location,
.case .case_content .contact1 .codeImg,
.case .case_content .contact1 .imgList {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}
.case .case_content .contact1 .contact_cn {
  top: 20%;
  font-size: 31px;
}
.case .case_content .contact1 .contact_en {
  top: 25%;
  opacity: 0.5;
}
.case .case_content .contact1 .phone {
  top: 29%;
  font-size: 26px;
}
.case .case_content .contact1 .location {
  font-size: 20px;
  top: 35%;
}
.case .case_content .contact1 .codeImg {
  top: 42%;
}
.case .case_content .contact1 .imgList {
  top: 59%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 20%;
}
.case .case_content .active {
  background-color: white;
  color: black;
}
.case .case_content .active span {
  color: black;
  font-weight: bold;
}
@keyframes shows {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.we main #case:after {
  content: '';
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.we main #case {
  background: url('/CloudBeing/page/img/background/bg_7.jpg') no-repeat center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position-x: center;
  background-position-y: center;
  color: white !important;
  position: relative;
}
.we main #case .codeMask {
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.we main #case .codeMask img {
  width: 500px;
}
.we main #case footer {
  position: absolute !important;
}
.we main #case .contact_cn,
.we main #case .contact_en,
.we main #case .phone,
.we main #case .location,
.we main #case .codeImg,
.we main #case .imgList {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}
.we main #case .contact_cn {
  top: 14%;
  font-size: 38px;
}
.we main #case .contact_en {
  top: 20%;
  opacity: 0.5;
  font-size: 18px;
}
.we main #case .phone {
  top: 23%;
  font-size: 44px;
}
.we main #case .location {
  font-size: 20px;
  top: 32%;
}
.we main #case .codeImg {
  top: 40%;
}
.we main #case .imgList {
  top: 59%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 20%;
  cursor: pointer;
}
.we main #case .imgList img:hover {
  transition: 500ms;
  transform: scale(1.1);
}
.we main .we3 {
  color: white;
}
.we main .we3 .newsContent:hover .content-wrap {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.we main .we3 .newsContent {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.we main .we3 .newsContent .content-wrap:hover {
  opacity: 1 !important;
  filter: alpha(opacity=100);
}
.we main .we3 .newsContent .content-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
}
.we main .we3 .newsContent .content-wrap .content_mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 500px;
  height: 250px;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.we main .we3 .newsContent .content-wrap .word {
  width: 500px;
}
.we main .we3 .newsContent .content-wrap .time {
  width: 100%;
  color: white;
  opacity: 0.5;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.we main .we3 .newsContent .content-wrap .title {
  color: white;
  font-size: 22px;
}
.we main .we3 .newsContent .content-wrap img {
  width: 500px;
  height: 250px;
}
.we main .we3 .title_cn {
  font-size: 54px;
  font-weight: bold;
  text-align: center;
  margin-top: 10%;
}
.we main .we3 .title_en {
  font-size: 26px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 50px;
  opacity: 0.5;
}
.we main .we2 {
  color: white;
}
.we main .we2 .imgList {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.we main .we2 .imgList img {
  width: 155px;
  height: 216px;
  margin-bottom: 20px;
}
.we main .we2 .title_cn {
  font-size: 54px;
  font-weight: bold;
  text-align: center;
  margin-top: 10%;
}
.we main .we2 .title_en {
  font-size: 26px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 50px;
  opacity: 0.5;
}
.we main .we_word {
  color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  width: 65%;
  z-index: 9;
}
.we main .we_word .title_cn {
  width: 100%;
  font-size: 54px;
  font-weight: bold;
  text-align: center;
  margin-top: 0%;
  position: relative;
  z-index: 9;
}
.we main .we_word .title_en {
  font-size: 26px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 50px;
}
.we main .we_word .gra1,
.we main .we_word .gra2,
.we main .we_word .gra3 {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  margin-bottom: 50px;
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 30px;
  letter-spacing: 5px;
  color: #ffffff;
}
.we main .swiper-container {
  top: auto;
  z-index: 1;
  min-width: 1200px;
  width: 100%;
  height: 100%;
}
.we main .swiper-container .we_container {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.we main .swiper-container .we_container .lunbo1 {
  background: url('/CloudBeing/page/img/we/bg1.png') no-repeat bottom center;
  background-size: cover;
}
.we main .swiper-container .we_container .lunbo2 {
  background: url('/CloudBeing/page/img/we/bg2.png') no-repeat bottom center;
  background-size: cover;
}
.we main .swiper-container .we_container .lunbo3 {
  background: url('/CloudBeing/page/img/we/bg3.png') no-repeat bottom center;
  background-size: cover;
}
.we main .swiper-container .we_container .lunbo4 {
  background: url('/CloudBeing/page/img/we/bg4.png') no-repeat bottom center;
  background-size: cover;
}
.we main .swiper-container .we_container .next {
  position: absolute;
  top: 53%;
  transform: translateY(-50);
  right: 13%;
  z-index: 8;
}
.we main .swiper-container .we_container .prev {
  position: absolute;
  top: 53%;
  transform: translateY(-50);
  left: 13%;
  z-index: 8;
}
.we main .swiper-container .we_container .swiper-wrapper {
  display: flex !important;
}
.we main .swiper-container .we_container .swiper-button-next {
  padding-right: 530px !important;
}
.we main .swiper-container .rongyu_container {
  width: 70%;
  height: 55vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: auto;
}
.we main .swiper-container .rongyu_container .swiper-slide {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.we main .swiper-container .rongyu_container .lunbo_img {
  width: 155px;
  height: 216px;
  margin-bottom: 10px;
}
.we main .swiper-container .rongyu_container .lunbo_img1 {
  height: 216px;
}
.we main .swiper-container .rongyu_container .next {
  position: absolute;
  top: 60%;
  transform: translateY(-50);
  right: 13%;
  z-index: 8;
}
.we main .swiper-container .rongyu_container .prev {
  position: absolute;
  top: 60%;
  transform: translateY(-50);
  left: 13%;
  z-index: 8;
}
.we main .swiper-container .rongyu_container .swiper-wrapper {
  display: flex !important;
  margin: 0 auto !important;
}
.we main .swiper-container .rongyu_container .swiper-button-next {
  padding-right: 530px !important;
}
.we main .swiper-container .swiper-wrapper {
  display: block !important;
}
.we main .swiper-container .swiper-slide {
  z-index: 5;
  overflow: hidden;
}
.we main .swiper-container .pagination .swiper-pagination-switch {
  border: 1px solid #363636;
}
.we main .swiper-container .pagination .swiper-active-switch {
  background-color: #363636;
}
.news {
  overflow: auto;
  background-color: #000000;
}
.news main {
  height: auto;
  background-color: #000000;
  width: 100%;
}
.news main section {
  width: 100%;
  background-color: #000000;
}
.news main section .case {
  background: url('/CloudBeing/page/img/background/bg_7.jpg') no-repeat center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position-x: center;
  background-position-y: center;
  color: white !important;
  position: relative;
  width: 100%;
  height: 800px;
}
.news main section .case footer {
  position: absolute !important;
}
.news main section .case .contact_cn,
.news main section .case .contact_en,
.news main section .case .phone,
.news main section .case .location,
.news main section .case .codeImg,
.news main section .case .imgList {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}
.news main section .case .contact_cn {
  top: 20%;
  font-size: 31px;
}
.news main section .case .contact_en {
  top: 25%;
  opacity: 0.5;
}
.news main section .case .phone {
  top: 29%;
  font-size: 26px;
}
.news main section .case .location {
  font-size: 20px;
  top: 35%;
}
.news main section .case .codeImg {
  top: 42%;
}
.news main section .case .imgList {
  top: 59%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 20%;
}
.news main section .content-wrap {
  width: 100%;
  display: block;
  background-color: #000000 !important;
}
.news main section .content-wrap .title_cn {
  font-size: 54px;
}
.news main section .content-wrap .title_en {
  font-size: 26px;
  opacity: 0.5;
  margin-top: 10px;
}
.news main section .content-wrap > .content {
  margin: 130px;
}
.news main section .content-wrap .tab-wrap {
  margin-top: -50px;
  position: relative;
  height: auto;
  background-color: #000000;
}
.news main section .content-wrap .tab-wrap .news-list {
  color: #666666;
  background-color: #000000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 5%;
}
.news main section .content-wrap .tab-wrap .news-list li {
  display: inline-block;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  width: 552px;
  color: white !important;
}
.news main section .content-wrap .tab-wrap .news-list li .content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.news main section .content-wrap .tab-wrap .news-list li .content-wrap .cover {
  height: 309px;
  width: 552px;
  border-radius: 10px;
}
.news main section .content-wrap .tab-wrap .news-list li .content-wrap .word {
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
}
.news main section .content-wrap .tab-wrap .news-list li .content-wrap .word a {
  color: white;
  font-size: 20px;
}
.news main section .content-wrap .tab-wrap .news-list li .content-wrap .word .text {
  color: #666;
}
.news main section .content-wrap .tab-wrap .news-list li .content-wrap .word .time {
  color: #b2b2b2;
  font-size: 18px;
  padding: 10px 0;
}
.news main section .content-wrap .tab-wrap .news-list li:hover {
  background: #f7f7f7;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  -webkit-transform: translate3d(0, 0px, -2px);
  transform: translate3d(0, 1px, -2px);
}
.news main section .content-wrap .tab-wrap .news-list li:hover .content-wrap .word h2 {
  color: white !important;
}
.news.details .ql-indent-1 {
  text-indent: 2em;
}
.news.details .ql-indent-2 {
  text-indent: 4em;
}
.news.details p {
  text-align: left;
  color: white !important;
}
.news.details p * {
  color: white !important;
}
.news.details p img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.news.details section .news_details {
  width: 100vw;
}
.news.details section .content-wrap .tab-wrap .coverBg {
  width: 100vw;
  height: 563px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.news.details section .content-wrap .tab-wrap .news-wrap {
  margin: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  width: 850px;
  color: white !important;
  text-align: center;
  line-height: 35px;
}
.news.details section .content-wrap .tab-wrap .news-wrap .title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.news.details section .content-wrap .tab-wrap .news-wrap .time {
  margin-bottom: 50px;
  font-size: 18px;
  color: white !important;
}
.news.details section .content-wrap .tab-wrap .news-wrap .content {
  font-size: 20px;
  color: white !important;
  text-indent: 32px;
  text-align: left;
}
.news.details section .content-wrap .tab-wrap .news-wrap .content > div > div {
  margin-bottom: 50px;
}
.news.details section .content-wrap .tab-wrap .news-wrap .content .f-tac {
  text-indent: 0;
}
.news.details section .content-wrap .tab-wrap .share {
  margin-top: 115px;
  padding-right: 10px;
  width: 100%;
  height: 74px;
  background-color: #F7F7F7;
}
.news.details section .content-wrap .tab-wrap .share .bdsharebuttonbox {
  height: 100%;
}
.news.details section .content-wrap .tab-wrap .share .bdsharebuttonbox .bds_tsina,
.news.details section .content-wrap .tab-wrap .share .bdsharebuttonbox .bds_weixin,
.news.details section .content-wrap .tab-wrap .share .bdsharebuttonbox .bds_more {
  margin: 15px 13px 0 0;
  width: 44px;
  height: 44px;
  background-position: 0!important;
}
.news.details section .content-wrap .tab-wrap .share .bdsharebuttonbox .f-fl {
  line-height: 74px;
  font-size: 14px;
  color: white !important;
}
@media (max-width: 1450px) {
  main .common .content-wrap .tab-wrap {
    height: 400px;
  }
  main .common .content-wrap .tab-wrap .tab-item .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  main .common .content-wrap .tab-wrap .tab-item .content .title {
    margin-top: 0;
    margin-bottom: 40px;
  }
  main .common .footer-wrap {
    padding-top: 80px;
  }
  main .common .footer-wrap .dynamic-wrap {
    margin-top: 0;
  }
  main .common .footer-wrap .dynamic-wrap .dynamic-item {
    /*width: 250px;
                        height: 250px;*/
  }
  main .common .mini-footer {
    height: 290px;
  }
  main .common .mini-footer .footer-wrap {
    padding-top: 60px;
  }
  footer {
    height: 300px;
    padding: 60px 60px 0;
  }
}
@media (max-width: 1300px) {
  footer {
    height: 300px;
    padding: 70px 20px 0;
  }
}
body {
  margin: 0;
  padding: 0;
}
.multimedia {
  height: auto;
  background-color: #000000;
  padding-top: 95px;
  position: relative;
  max-width: 1900px;
}
.multimedia .tapbarBox {
  overflow: hidden;
  width: 1870px;
  height: 960px;
  display: flex;
}
.multimedia .tapbarBox .navs {
  font-size: 18px;
  height: 100%;
  width: 230px;
  position: relative;
  display: flex;
  align-items: center;
  top: -115px;
}
.multimedia .tapbarBox .navs .tapbar {
  width: 184px;
  height: 225px;
  position: relative;
  left: 72px;
}
.multimedia .tapbarBox .navs .tapbar .item {
  width: 110px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 18px;
  color: white;
  cursor: pointer;
}
.multimedia .tapbarBox .contents {
  width: 1640px;
  height: 100%;
  position: relative;
  overflow: scroll;
  overflow: -moz-scrollbars-none;
}
.multimedia .tapbarBox .contents ul {
  width: 1640px;
  height: auto;
}
.multimedia .tapbarBox .contents ul li {
  border-radius: 20px;
  float: left;
  width: 500px;
  height: 280px;
  transition: all 1s;
  cursor: pointer;
  position: relative;
  margin-left: 30px;
  margin-top: 40px;
  border-radius: 15px;
  animation: shows 2s ease-in-out;
}
.multimedia .tapbarBox .contents ul li .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 500px;
  height: 280px;
  opacity: 0;
  transition: all .5s;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.multimedia .tapbarBox .contents ul li .mask .btn {
  width: fit-content;
  height: fit-content;
  display: inline-block;
  color: #fff;
}
.multimedia .tapbarBox .contents ul li .mask .name {
  font-size: 24px;
}
.multimedia .tapbarBox .contents ul li .img {
  width: 500px;
  height: 280px;
  background-color: #fff;
  position: relative;
  transition: all 1s;
  overflow: hidden;
  border-radius: 15px;
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
}
.multimedia .tapbarBox .contents ul li .img img {
  width: 100%;
  height: 100%;
  transition: all .5s;
  max-width: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
}
.multimedia .tapbarBox .contents ul li:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4);
}
.multimedia .tapbarBox .contents ul li:hover img {
  height: 120%;
}
.multimedia .tapbarBox .contents ul li:hover .mask {
  opacity: 1;
}
.multimedia .tapbarBox .contents ul li:nth-of-type(3n) {
  margin-right: 0;
}
.multimedia .tapbarBox .contents::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
.multimedia .case:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.multimedia .case {
  width: 100%;
  height: 850px;
  margin-top: 50px;
  background: url('/CloudBeing/page/img/background/bg_7.jpg') no-repeat center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position-x: center;
  background-position-y: center;
  color: white !important;
  position: relative;
}
.multimedia .case .codeMask {
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.multimedia .case .codeMask img {
  width: 500px;
}
.multimedia .case footer {
  position: absolute !important;
}
.multimedia .case .contact_cn,
.multimedia .case .contact_en,
.multimedia .case .phone,
.multimedia .case .location,
.multimedia .case .codeImg,
.multimedia .case .imgList {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}
.multimedia .case .contact_cn {
  top: 20%;
  font-size: 31px;
}
.multimedia .case .contact_en {
  top: 25%;
  opacity: 0.5;
}
.multimedia .case .phone {
  top: 29%;
  font-size: 26px;
}
.multimedia .case .location {
  font-size: 20px;
  top: 35%;
}
.multimedia .case .codeImg {
  top: 42%;
}
.multimedia .case .imgList {
  top: 59%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 20%;
}
.multimedia .active {
  background-color: white;
  color: black;
}
.multimedia .active span {
  color: black;
  font-weight: bold;
}
@keyframes shows {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.casedetails {
  height: auto;
  background-color: #000000;
  overflow: hidden;
  color: white !important;
}
.casedetails .bigImg {
  text-align: center;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  box-sizing: content-box;
  margin: 0 auto;
  margin-bottom: 58px;
}
.casedetails .bigImg img:nth-of-type(1) {
  width: 100%;
  height: 100%;
}
.casedetails .bigImg .playImg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
}
.casedetails .bigImg video {
  width: 100%;
  height: 100%;
  object-fit: fill;
  position: absolute;
  left: 0;
  top: 0;
}
.casedetails > .content {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 150px;
}
.casedetails > .content .title {
  font-size: 24px;
  color: #FFFFFF;
  text-align: left;
  line-height: 1;
  margin-bottom: 35px;
  position: relative;
  box-sizing: border-box;
  padding-left: 15px;
}
.casedetails > .content .title:before {
  position: absolute;
  content: '';
  height: 25px;
  width: 5px;
  background-color: #FFFFFF;
  left: 0;
  top: 0;
}
.casedetails > .content .text {
  font-size: 14px;
  color: #FFFFFF;
  line-height: 28px;
  margin-bottom: 80px;
}
.casedetails > .content .text p {
  margin: 0;
}
.casedetails > .content .imgBox {
  overflow: hidden;
  margin-bottom: 120px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.casedetails > .content .imgBox .imgBg {
  width: 49.5%;
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 20px;
}
.casedetails .other {
  background: none;
}
.casedetails .other .footer-wrap {
  margin: auto;
  width: 1200px;
  height: 100%;
}
.casedetails .other .footer-wrap .content {
  position: relative;
  line-height: 1;
  margin-bottom: 52px;
}
.casedetails .other .footer-wrap .content .title {
  font-size: 40px;
  display: inline-block;
  color: #FFFFFF;
  margin-right: 35px;
  line-height: 1;
}
.casedetails .other .footer-wrap .content .subhead {
  font-size: 26px;
  display: inline-block;
  color: #FFFFFF;
}
.casedetails .other .footer-wrap .content .subhead .more {
  font-size: 18px;
  color: #FFFFFF;
  position: absolute;
  right: 0;
  bottom: 0;
}
.casedetails .other .footer-wrap .content .subhead .more:after {
  content: '>>>';
  font-family: SimSun;
}
.casedetails .other .footer-wrap .imgList {
  width: 100%;
  height: 294px;
  margin-bottom: 63px;
}
.casedetails .other .footer-wrap .imgList .item {
  float: left;
  width: 294px;
  height: 294px;
  overflow: hidden;
  background: url('/CloudBeing/page/img/9.png') no-repeat center center;
  background-size: cover;
  margin-right: 8px;
  position: relative;
  transition: all .5s;
}
.casedetails .other .footer-wrap .imgList .item:last-of-type {
  margin: 0;
}
.casedetails .other .footer-wrap .imgList .item .text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  padding-left: 24px;
}
.casedetails .other .footer-wrap .imgList .item .text p:first-of-type {
  margin: 0;
  font-size: 18px;
  transition: all .5s;
}
.casedetails .other .footer-wrap .imgList .item .text p:last-of-type {
  margin: 0;
  font-size: 10px;
  line-height: 1;
  margin-bottom: 20px;
  font-variant: small-caps;
  transition: all .5s;
}
.casedetails .other .footer-wrap .imgList .item:hover {
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.3);
}
.casedetails .other .footer-wrap .imgList .item:hover .text p:first-of-type {
  font-size: 22px;
}
.casedetails .other .footer-wrap .imgList .item:hover .text p:last-of-type {
  font-size: 14px;
}
body {
  background-color: #000000;
  margin: 0;
  padding: 0;
}
body::-webkit-scrollbar {
  display: none;
  /*ChromeSafari*/
}
.mediaDetails {
  max-width: 100%;
  height: auto;
  position: relative;
}
.mediaDetails .homePage {
  width: 100%;
  height: 950px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mediaDetails .homePage .title {
  font-size: 46px;
  font-weight: bold;
  color: #FFFFFF;
  letter-spacing: 3px;
  position: relative;
  top: -30px;
  animation: shows 2s ease-in-out;
  display: block;
}
.mediaDetails .text {
  width: 100%;
  height: 350px;
  position: relative;
}
.mediaDetails .text h1 {
  color: white;
  font-size: 36px;
  position: absolute;
  top: 70px;
  left: 116px;
  letter-spacing: 3px;
}
.mediaDetails .text .content {
  color: #D9D9D9;
  font-size: 28px;
  position: absolute;
  left: 115px;
  top: 180px;
  line-height: 50px;
  letter-spacing: 3px;
}
.mediaDetails .detailPage {
  width: 96%;
  height: auto;
  position: relative;
  left: 2%;
  display: flex;
  flex-flow: wrap;
  top: 30px;
}
.mediaDetails .detailPage .items {
  width: 48.5%;
  height: 515px;
  position: relative;
  margin-left: 1%;
  margin-top: 1%;
  background-size: 100% 100%;
  border-radius: 10px;
}
.mediaDetails .detailPage .items .titles {
  color: #FFFFFF;
  font-size: 28px;
  position: absolute;
  bottom: 0;
  bottom: 60px;
  left: 50px;
  letter-spacing: 2px;
}
.mediaDetails .detailPage .items:hover .mask {
  opacity: 1;
}
.mediaDetails .detailPage .items .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all .5s;
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}
.mediaDetails .detailPage .items .mask .btn {
  width: 100px;
  height: 100px;
}
.mediaDetails .detailPage .items .mask .btn::before {
  content: '';
  display: inline-block;
  width: 100px;
  height: 100px;
  background: url('/CloudBeing/page/img/icon/play.png') no-repeat center center;
  background-size: 80% 80%;
}
.mediaDetails .detailPage .items .mask .btn::before .title {
  display: none;
}
.mediaDetails .contact {
  width: 1900px;
  height: 680px;
  position: relative;
  top: 30px;
}
.mediaDetails .contact .contact-bg {
  width: 100%;
  height: 640px;
  background: url("/CloudBeing/page/img/multimedia/12.png") no-repeat;
  position: absolute;
  bottom: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
}
.mediaDetails .contact .contact-bg .one {
  position: absolute;
  top: 78px;
  color: white;
  font-size: 35px;
  letter-spacing: 2px;
}
.mediaDetails .contact .contact-bg .two {
  font-size: 18px;
  color: #474A49;
  position: absolute;
  top: 140px;
}
.mediaDetails .contact .contact-bg .three {
  font-size: 40px;
  color: white;
  position: absolute;
  top: 198px;
}
.mediaDetails .contact .contact-bg .four {
  position: absolute;
  top: 280px;
  display: flex;
}
.mediaDetails .contact .contact-bg .four .text {
  font-size: 20px;
  color: #F6F9F9;
}
.mediaDetails .contact .contact-bg .four .imgs {
  position: relative;
  left: -6px;
  top: 3px;
}
.mediaDetails .contact .contact-bg .five {
  width: auto;
  height: auto;
  position: absolute;
  top: 366px;
}
.mediaDetails .contact .contact-bg .six {
  width: 450px;
  height: 40px;
  display: flex;
  position: absolute;
  top: 530px;
  margin-left: 50px;
}
.mediaDetails .contact .contact-bg .six div {
  flex: 1;
  display: flex;
  align-items: center;
}
@keyframes shows {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
/**
 * Created by Administrator on 2018/9/12.
 * Email: 514009729@qq.com
 * describe:
 */
.wisdom_service {
  height: auto;
  background-color: #fff;
}
.wisdom_service p {
  margin: 0;
}
.wisdom_service .topBg {
  width: 100%;
  height: 1080px;
  background: url("/CloudBeing/page/img/wisdom/catalog/topBg.png") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.wisdom_service .kernel {
  background: #11081D;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 174px;
  box-sizing: border-box;
}
.wisdom_service .kernel .circle {
  margin-top: 235px;
  margin-bottom: 150px;
}
.wisdom_service .all_system {
  background-color: #221A2F;
  padding-top: 53px;
  padding-bottom: 93px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.wisdom_service .all_system .system_title {
  margin-bottom: 65px;
}
.wisdom_service .all_system .systemList {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  width: 70%;
  margin: 0 auto;
}
.wisdom_service .all_system .systemList .system_item {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-size: 20px;
  margin-bottom: 48px;
}
.wisdom_service .all_system .systemList .system_item .name {
  margin-top: 23px;
}
/**
 * Created by Administrator on 2019/8/7.
 * Email: 514009729@qq.com
 * describe: 
 */
.monitoring {
  height: auto;
  font-family: "microsoft yahei";
}
.monitoring .banner {
  background: url(../img/banner-snhjjc.jpg) no-repeat;
  width: 100%;
  height: 579px;
  background-size: cover;
  padding-top: 370px;
  padding-left: 360px;
}
.monitoring .banner .title {
  font-family: "microsoft yahei";
  color: white;
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 30px;
}
.monitoring .banner .en-title-1 {
  font-family: "microsoft yahei";
  color: white;
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 10px;
}
.monitoring .banner .en-title-2 {
  font-family: "microsoft yahei";
  color: white;
  font-size: 32px;
  line-height: 32px;
}
.monitoring .monitoring_content {
  text-align: center;
}
.monitoring .monitoring_content .scene {
  padding-bottom: 100px;
}
.monitoring .monitoring_content .scene .title {
  font-size: 34px;
  line-height: 34px;
  padding-top: 100px;
  margin-bottom: 65px;
}
.monitoring .monitoring_content .scene .info {
  font-size: 20px;
  color: #666666;
  width: 868px;
  text-align: left;
  margin: 0 auto;
  margin-bottom: 35px;
}
.monitoring .monitoring_content .scene .infoImg {
  width: 1202px;
  height: 618px;
  background: url(../img/img-yycj.jpg) no-repeat;
  background-size: cover;
  margin: 0 auto;
}
.monitoring .monitoring_content .function {
  background-color: #f8f8f8;
}
/**
 * Created by Administrator on 2019/8/7.
 * Email: 514009729@qq.com
 * describe: 
 */
.passenger {
  height: auto;
  font-family: "microsoft yahei";
}
.passenger .banner {
  background: url(../img/banner-kltj.jpg) no-repeat;
  width: 100%;
  height: 579px;
  background-size: cover;
  padding-top: 370px;
  padding-left: 360px;
}
.passenger .banner .title {
  font-family: "microsoft yahei";
  color: white;
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 30px;
}
.passenger .banner .en-title-1 {
  font-family: "microsoft yahei";
  color: white;
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 10px;
}
.passenger .banner .en-title-2 {
  font-family: "microsoft yahei";
  color: white;
  font-size: 32px;
  line-height: 32px;
}
.passenger .passenger_content {
  text-align: center;
}
.passenger .passenger_content .scene {
  padding-bottom: 100px;
}
.passenger .passenger_content .scene .title {
  font-size: 34px;
  line-height: 34px;
  padding-top: 100px;
  margin-bottom: 65px;
}
.passenger .passenger_content .scene .info {
  font-size: 20px;
  color: #666666;
  width: 868px;
  text-align: left;
  margin: 0 auto;
  margin-bottom: 105px;
}
.passenger .passenger_content .scene .infoImg {
  width: 1202px;
  height: 618px;
  background: url(../img/img-dlrj.jpg) no-repeat;
  background-size: cover;
  margin: 0 auto;
}
.passenger .passenger_content .function {
  background-color: #f8f8f8;
}
/**
 * Created by Administrator on 2021/10/9.
 * Email: 514009729@qq.com
 * describe: 
 */
.join::-webkit-scrollbar {
  display: none;
  /*ChromeSafari*/
}
.join {
  background-color: #000000;
  color: white;
  height: 100%;
  overflow: auto !important;
}
.join .case:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.join .case {
  background: url('/CloudBeing/page/img/background/bg_7.jpg') no-repeat center center;
  height: 800px;
  margin-top: 130px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position-x: center;
  background-position-y: center;
  color: white !important;
  position: relative;
}
.join .case footer {
  position: absolute !important;
}
.join .case .contact_cn,
.join .case .contact_en,
.join .case .phone,
.join .case .location,
.join .case .codeImg,
.join .case .imgList {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}
.join .case .contact_cn {
  top: 20%;
  font-size: 31px;
}
.join .case .contact_en {
  top: 25%;
  opacity: 0.5;
}
.join .case .phone {
  top: 29%;
  font-size: 26px;
}
.join .case .location {
  font-size: 20px;
  top: 35%;
}
.join .case .codeImg {
  top: 42%;
}
.join .case .imgList {
  top: 59%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 20%;
}
.join .title_cn {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-top: 8%;
}
.join .title_en {
  font-size: 30px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 50px;
  opacity: 0.5;
}
.join .join_item {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.join .join_item .part_name {
  width: 100%;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}
.join .join_item .post {
  width: 100%;
  box-sizing: border-box;
  padding: 0 40px;
  margin-bottom: 50px;
}
.join .join_item .post .post_line {
  margin-bottom: 20px;
  margin-top: 20px;
}
.join .join_item .post .post_name {
  font-size: 25px;
}
.join .join_item .post .quartersList {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 20px;
}
.join .join_item .post .quartersList .quarters1 {
  width: 45%;
}
.join .join_item .post .quartersList .quarters1 .quarters_title {
  margin-top: 10px;
  margin-bottom: 10px;
}
.join .join_item .post .quartersList .quarters1 .quarters_word {
  font-size: 18px;
  line-height: 33px;
}
.join .didian {
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  color: white;
  font-size: 23px;
  margin-bottom: 20px;
}
.join .didian img {
  margin-right: 30px;
}
.join .didian .location {
  margin-right: 40px;
}
.ticket {
  height: auto;
  background-color: #f5f6fa;
}
.ticket .topBg {
  width: 100%;
  height: 508px;
  background: url("/CloudBeing/page/img/wisdom/ticket/topBg.png") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 9% 0;
}
.ticket .topBg .title {
  font-size: 45px;
  color: #0a95e1;
}
.ticket .topBg .word {
  font-size: 14px;
  color: #ffffff;
}
.ticket .typeContent {
  width: 100%;
  height: 301px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #10081D;
}
.ticket .typeContent .typeList {
  width: 1194px;
  height: 300px;
  background: url("/CloudBeing/page/img/wisdom/ticket/wordBg.png") no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.ticket .ticket_content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #10081D;
}
.ticket .ticket_content .ticketList {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #10081D;
  height: auto;
  padding: 0 20%;
  margin-bottom: 60px;
}
.mall {
  height: auto;
  background-color: #f5f6fa;
}
.mall .topBg {
  width: 100%;
  height: 508px;
  background: url("/CloudBeing/page/img/wisdom/mall/topBg.png") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 9% 0;
}
.mall .topBg .title {
  font-size: 45px;
  color: #0a95e1;
}
.mall .topBg .word {
  font-size: 14px;
  color: #ffffff;
}
.mall .typeContent {
  width: 100%;
  height: 807px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #10081D;
}
.mall .typeContent .typeList {
  width: 1501px;
  height: 300px;
  background: url("/CloudBeing/page/img/wisdom/mall/wordBg.png") no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.knowledge {
  height: auto;
  background-color: #f5f6fa;
}
.knowledge .topBg {
  width: 100%;
  height: 508px;
  background: url("/CloudBeing/page/img/wisdom/knowledge/topBg.png") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 9% 0;
}
.knowledge .topBg .title {
  font-size: 45px;
  color: #0a95e1;
}
.knowledge .topBg .word {
  font-size: 14px;
  color: #ffffff;
}
.knowledge .typeContent {
  width: 100%;
  height: 807px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #10081D;
}
.knowledge .typeContent .typeList {
  width: 1501px;
  height: 300px;
  background: url("/CloudBeing/page/img/wisdom/knowledge/wordBg.png") no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.collection1 {
  height: auto;
  background-color: #f5f6fa;
}
.collection1 .topBg {
  width: 100%;
  height: 435px;
  background: url("/CloudBeing/page/img/wisdom/collection/topBg.png") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 7% 0;
  text-align: center;
  line-height: 30px;
}
.collection1 .topBg .title {
  font-size: 45px;
  color: #0a95e1;
}
.collection1 .topBg .word {
  font-size: 14px;
  color: #ffffff;
}
.collection1 .typeContent {
  width: 100%;
  height: 807px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #10081D;
}
.collection1 .typeContent .typeList {
  width: 1158px;
  height: 577px;
  background: url("/CloudBeing/page/img/wisdom/collection/wordBg.jpg") no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.information1 {
  height: auto;
  background-color: #f5f6fa;
}
.information1 .topBg {
  width: 100%;
  height: 435px;
  background: url("/CloudBeing/page/img/wisdom/information/topBg.png") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 7% 0;
  text-align: center;
  line-height: 30px;
}
.information1 .topBg .title {
  font-size: 45px;
  color: #0a95e1;
}
.information1 .topBg .word {
  font-size: 14px;
  color: #ffffff;
}
.information1 .typeContent {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #10081D;
}
.information1 .typeContent .typeList {
  width: 1341px;
  height: 393px;
  background: url("/CloudBeing/page/img/wisdom/information/wordBg.png") no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.information1 .typeContent .typeList1 {
  width: 1370px;
  height: 781px;
  background: url("/CloudBeing/page/img/wisdom/information/wordBg2.png") no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.virtual {
  height: auto;
  background-color: #f5f6fa;
}
.virtual .topBg {
  background: #10081D;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
}
.virtual .topBg .leftBg {
  text-align: center;
}
.virtual .topBg .leftBg .title {
  font-size: 45px;
  color: #0a95e1;
}
.virtual .topBg .leftBg .word {
  font-size: 14px;
  line-height: 30px;
  color: #ffffff;
}
.virtual .topBg .rightBg {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 50.5%;
  box-sizing: border-box;
  padding-top: 50px;
}
.virtual .topBg .rightBg img:nth-of-type(1),
.virtual .topBg .rightBg img:nth-of-type(2) {
  margin-bottom: 20px;
}
.control {
  height: auto;
  background-color: #f5f6fa;
}
.control .topBg {
  width: 100%;
  height: 435px;
  background: #10081D;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 7% 0;
  text-align: center;
  line-height: 30px;
}
.control .topBg .title {
  font-size: 45px;
  color: #0a95e1;
}
.control .topBg .word {
  font-size: 14px;
  color: #ffffff;
}
.control .typeContent {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #10081D;
  margin-top: -150px;
  box-sizing: border-box;
  padding-bottom: 50px;
}
.control .typeContent .typeList {
  width: 990px;
  height: 561px;
  background: url("/CloudBeing/page/img/wisdom/control/wordBg2.png") no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.control .typeContent .typeList1 {
  width: 814px;
  height: 534px;
  background: url("/CloudBeing/page/img/wisdom/control/wordBg1.jpg") no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.digital {
  height: auto;
  background-color: #f5f6fa;
}
.digital .topBg {
  width: 100%;
  height: 435px;
  background: url("/CloudBeing/page/img/wisdom/digital/topBg.png") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 7% 0;
  text-align: center;
  line-height: 30px;
}
.digital .topBg .title {
  font-size: 45px;
  color: #0a95e1;
}
.digital .topBg .word {
  font-size: 14px;
  color: #ffffff;
}
.digital .typeContent {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #10081D;
}
.digital .typeContent .typeList {
  width: 1243px;
  height: 600px;
  background: url("/CloudBeing/page/img/wisdom/digital/wordBg.jpg") no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.digital .typeContent .typeList1 {
  width: 1370px;
  height: 781px;
  background: url("/CloudBeing/page/img/wisdom/information/wordBg2.png") no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.audience {
  height: auto;
  background-color: #f5f6fa;
}
.audience .topBg {
  width: 100%;
  height: 435px;
  background: url("/CloudBeing/page/img/wisdom/audience/topBg.png") no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 7% 0;
  text-align: center;
  line-height: 30px;
}
.audience .topBg .title {
  font-size: 45px;
  color: #0a95e1;
}
.audience .topBg .word {
  font-size: 14px;
  color: #ffffff;
}
.audience .typeContent {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #10081D;
}
.audience .typeContent .typeList {
  width: 1647px;
  height: 364px;
  background: url("/CloudBeing/page/img/wisdom/audience/wordBg.jpg") no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.audience .typeContent .typeList1 {
  width: 1647px;
  height: 364px;
  background: url("/CloudBeing/page/img/wisdom/digital/wordBg.jpg") no-repeat;
  background-size: cover;
  margin-top: 50px;
}
.bigData {
  height: auto;
  background-color: #f5f6fa;
}
.bigData .topBg {
  background: #10081D;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
}
.bigData .topBg .leftBg {
  text-align: center;
}
.bigData .topBg .leftBg .title {
  font-size: 45px;
  color: #0a95e1;
}
.bigData .topBg .leftBg .word {
  font-size: 14px;
  line-height: 30px;
  color: #ffffff;
}
.bigData .topBg .rightBg {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 50.5%;
  box-sizing: border-box;
  padding-top: 50px;
}
.bigData .topBg .rightBg img:nth-of-type(1),
.bigData .topBg .rightBg img:nth-of-type(2) {
  margin-bottom: 20px;
}
