@charset "UTF-8";
.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
}

@-webkit-keyframes bounce {
    0%, 100%, 20%, 53%, 80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        -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%, 100%, 20%, 53%, 80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        transition-timing-function: cubic-bezier(0.755, .050, .855, .060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

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

@-webkit-keyframes flash {
    0%, 100%, 50% {
        opacity: 1
    }
    25%, 75% {
        opacity: 0
    }
}

@keyframes flash {
    0%, 100%, 50% {
        opacity: 1
    }
    25%, 75% {
        opacity: 0
    }
}

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

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.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)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.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)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

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

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

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

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 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) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceIn {
    0%, 100%, 20%, 40%, 60%, 80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.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)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {
    0%, 100%, 20%, 40%, 60%, 80% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.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)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes bounceInDown {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.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)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.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)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInLeft {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.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)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.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)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInRight {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.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)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.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)
    }
    100% {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInUp {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.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)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {
    0%, 100%, 60%, 75%, 90% {
        -webkit-transition-timing-function: cubic-bezier(0.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(0.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)
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.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)
    }
    100% {
        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)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

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

@-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)
    }
    100% {
        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)
    }
    100% {
        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)
    }
    100% {
        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)
    }
    100% {
        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)
    }
    100% {
        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)
    }
    100% {
        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)
    }
    100% {
        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)
    }
    100% {
        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
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {

        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)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    100% {
        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)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
    100% {
        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)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    100% {
        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)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
    100% {
        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)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    100% {
        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)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
    100% {
        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)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    100% {
        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)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

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

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

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

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }
    100% {
        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
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }
    100% {
        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
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }
    100% {
        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
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }
    100% {
        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
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }
    100% {
        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
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }
    100% {
        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
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }
    100% {
        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
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }
    100% {
        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) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    100% {
        -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) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    100% {
        -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) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    100% {
        -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) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    100% {
        -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) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

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

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -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) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

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

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

@-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);
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }
    100% {
        -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);
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }
    100% {
        -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
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }
    100% {
        -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% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    100% {
        -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) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

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

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

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

@-webkit-keyframes zoomIn {
    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(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.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(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.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(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.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(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.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(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.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(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.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(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.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(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.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(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.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(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.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(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.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(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.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(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.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(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.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(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.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(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
    }
}

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

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    100% {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    100% {
        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(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }
    100% {
        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(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.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(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }
    100% {
        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(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.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)
    }
    100% {
        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)
    }
    100% {
        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)
    }
    100% {
        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)
    }
    100% {
        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(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }
    100% {
        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(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.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(0.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(0.55, .055, .675, .19)
    }
    100% {
        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(0.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(0.175, .885, .32, 1)
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

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

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

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

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

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

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
}

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

/*# sourceMappingURL=fonts.css.map */


@font-face {
    font-family: "iconfont";
    src: url('../fonts/iconfont.eot?t=1571794826103'); /* IE9 */
    src: url('../fonts/iconfont.eot?t=1571794826103#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAeUAAsAAAAADxAAAAdFAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCEfAqOKIsrATYCJANACyIABCAFhG0HgUQbqQxRlFBSKNmXBXYwjT2iNKzuEBXDyqKP1f6Cz1pBnu+fqxi5NePhaz9+5+7uM/naVIh0n04i/UyiE5olSJlE85TFQmJzmv8da/r4r426FprccWRHWc7Jyo/jZbgIFcAWsPa5OYDMBgggYN4D/4A5h2db/nugC8C6CmDVl1xUgV5F4Na6jiDO235k+o2ZznHEH0S8z3nmMrXW6mt/NOvi7Xu53Tv/XWYWFUtk0tNJhPQiGomQdLp4KhkL8cx9JgRsPQiJCfT2lRQf3728FxYUQgkse45GFhZyDcqUnNDW1TUBi3gHKm16g9y89R8ff7wFkioTHp88u/ULF9/Bu/VurQpw62tDKxgZdxQU4kNtx3s5yne8qa9bW7zErg0ef/1dlJc1ptb5AsVWVIViDhIdYVcWHzhyknNG/AuvIAlZUak1Wp3eYDSZLUQNppHrv00ufAddS+I7UQFsoDKwgyrAAaoCTlA1cIFqgBu1tPzgWjp+CNUDK6gBeECNwAtqAj5QM/BjgwWsNsChghOF+E/6R5Bbb4pngbR3BLJIqpMqW2yasVwZZjdOBx0gYVYTdjEooSU8RglZS3em06kIla6KKy1jNaBNX1JsUMM+4VNW/IyTvzBIn1djKJ66/7rxhvma86arFRjccZo5e9IdVHkEW17goshWXXhDwQ0ORjt1Hw7Yehxufm566gTWrrPD7NY52IFtr/KwtWsB4PfhuHkLhEaH9RgrCKwk6Y2OrlhfozLHNoHcbVor2HgVI0zXIWq8MW3bNYBgfdLn+mZcjRCHu+U4HGB7DzoDnMUQDN3jqEVus0QZ1m8n98h+546BrYLb1lu+smzYkndBAPwp53V29FqHxxI0yoYZ4T5sPP/chd0qTBXxTV6pMujzBn8RBAdCkhyhLNurRNGuNat3HW6WZywqkz5bx/MSCfdNOnza6HpL5NbDPTJuvuR8IWir/4UpR/3tN2HRJNVVpFeWZ+ZVZZQHVZ/1qsqsPu3Zl26jtr3y1Z0+J6O3v65mK6s4lssRZsrt1hkqyvWGMpOUKc0zvJHNYoY4l30pFJqEYIHnrolmOUw26q9LPabplYev0ZxpFYf4qyU7Cfceokv41HDo6Mx4knNx8yH+oB22/rADuuFIOhu4VzDJEWVyMZNydxb4aFPf4JdybzWN8sNKmlYOg9K04VKrIzRV+EdzbfOOnd4MPRbMyffW5uaTWrdVK9cpzzTXNnici5yWBbwLYRKw2t18SqjQCQp6CgKgD0SvIpH0E3Qi1MIpKD1FO/PdZ+H+J3/A/Am1Vn1oEe+KU2skGFdYGAfBWMasJVwme39BkGM7Jtn4wrvT8eB/w0qS3B2GIwipVf/7hIHa4t5Jbnev0tBbQEA45BUWmraYHAVNizyy+ZbSkCA3j6Qfq0sTds5EPVs0JSVTJX+wL5hSWpC9J/9dtVCYXhr0HzxAlN7RxeBPErrnXOu6UxwDswdhNSxoay6CDWi3MWdc6i8GB8ssaQzTGjRw5Mw+dBE8sQcxwoUrz3QgzT8+pHpWTUwYG++QtuJIlMMUDY5i99rvtWUulhUUpZCJsdDw6a9JKrFIGWegsgbjlKR+8kt2yON5CB4/yivV1DiXBxkDZ1fj2jc1XuE4MnCqeG/E1xu6omIVM9VIWKSH89qfDOgjxva7Mic16Nv7YovSw+AKrAsb2X13p1yzG/w5NGKdvpMqpgOPFt5FwBqe4SvHMGMq/ei0M/n5aiGp7LVPngSVQ1NWb+QyVwZt6uiLUAs3rgzesyp4cWpxyaqg9K1M8RQuJUOExIXTdWSX3NPoGuXl5cMs9vN2q4C1f1hBkgqDrvopBbdScnWgH72KXv/7b5LQJqK+v/6+Ttq8+IFK56q7ab2pI0LjhBrUDAExgH4MP/Kv+Q5+AYB1rv8Nsl8CoADIYgCsvDEoz7oW+zuf87/u4vn+0y/PAxn4JXEEXl786HWRJvg3xP9czCziSxP1W3n1Znn2RY3Nzf1ucHOeKkNBNK7rn4xm11a6CiyMJfTyAr8bPZv+tkl25uZ+rMhOCpLGHshap+qivwMqg7ug1roHejfugw+2kGlROlz7YiCsvkEy+wiy1Y+66H9BZdc/qK1Ng97T2I5wcB4uXRNIBl94E4HKplo181JY/gomjyVlBV/0CeRwWNQrteL0PaRA6/DihqbBrIUmm4g7lhzEsRUZ2RAUVwLmbFCt6jqvFWWTwpJHCJDYVvUJnokxUqyUvpwtld7/FTByMYmm7Dsw/gSIgzcX6ipqc6jvTelc++7LWmfIaGBq04TeSqyEcEdtIJYTlpDV2wsBhVUES4xlBqp0np7XVNk+SW55k5vvQPEw1qYiR4kq6miijS76GGKMKeZYYm3T0gtAD6VlLK+GKFO2eZnQBLwQYxqBj+m88u4MyWRBSwWetdFihhfCO4Hj+YnNOfdgnkfIRXvTedadjUFzd255xqFMR7M234Q+FgeSVNBeVDKG1JfULBQAAAA=') format('woff2'), url('../fonts/iconfont.woff?t=1571794826103') format('woff'), url('../fonts/iconfont.ttf?t=1571794826103') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */ url('../fonts/iconfont.svg?t=1571794826103#iconfont') format('svg'); /* iOS 4.1- */
}

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

.icon-weibiaoti-:before {
    content: "\e61d";
}

.icon-jiantou-right:before {
    content: "\e600";
}

.icon-linkedin:before {
    content: "\e669";
}

.icon-insgram:before {
    content: "\e66a";
}

.icon-facebook:before {
    content: "\e66c";
}

.icon-pinterest:before {
    content: "\e66d";
}

.icon-youtube:before {
    content: "\e66f";
}

.icon-twitter:before {
    content: "\e670";
}

.icon-up7:before {
    content: "\e722";
}

.icon-left7:before {
    content: "\e724";
}

.icon-right7:before {
    content: "\e725";
}

.icon-left30:before {
    content: "\e79b";
}

.icon-right30:before {
    content: "\e79c";
}

.icon-search5:before {
    content: "\e7b3";
}

.icon-calendar3:before {
    content: "\e7e1";
}

/* CSS Document */

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    height: 100%;
}

body {
    margin: 0 auto;
    font-family: 'RobotoRegular';
    font-size: 14px;
    font-size: 1.4rem;
    height: 100%;
    overflow-x: hidden;
    max-width: 1920px;
}

img {
    border: none;
}

ul li {
    list-style-type: none;
}

ul, form, p, a, img, table, tr, td, li, dd, dt, dl, span {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #333;
}

a {
    text-decoration: none;
    color: #333;
    outline: none;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
}

h1 {
    margin: 0;
    padding: 0;
    font-weight: normal;
    color: #333;
}

.clear {
    clear: both;
}

.maln {
    margin-left: auto !important;
}

input, textarea {
    font-family: 'RobotoRegular';
    font-size: 14px;
    font-size: 1.4rem;
    color: #333;
    border: none;
    outline: none;
}

.l {
    float: left;
}

.r {
    float: right;
}

.fix {
    *zoom: 1;
}

.fix:after, .fix:before {
    display: block;
    content: "clear";
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}


::-webkit-input-placeholder { /* WebKit browsers */
    color: #999999;
}


:-o-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #999999;
}


::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #999999;
    opacity: 1;
}


:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #999999;
}

.div3 ::-webkit-input-placeholder { /* WebKit browsers */
    color: #ccc;
}

.div3 :-o-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #ccc;
}

.div3 ::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #ccc;
    opacity: 1;
}

.div3 :-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #ccc;
}

.wp {
    width: 1200px;
    margin: auto;
}

.wp * {
    box-sizing: content-box
}

@media screen and (min-width: 1220px) {
    .wp {
        width: 1200px;
        margin: auto;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1219px) {
    .wp {
        width: 980px;
        margin: auto;
    }
}

@media screen and (max-width: 999px) {
    .wp {
        width: 95%;
        margin: auto;
    }
}

.no_margin {
    margin-left: auto \0 !important;
}

@media screen and (min-width: 1220px) {
    .no_margin {
        margin-left: auto !important;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1219px) {
    .no_margin {
        margin-left: auto !important;
    }
}

/*.container*/

.container {
    width: 5px;
    height: 100%;
    position: absolute;
    right: 0;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    z-index: 999999999999999;
    cursor: pointer;
    position: fixed;
    top: -5px;
    right: 0;
    display: block;
}

.container .nav {
    overflow: hidden;
    width: 300px;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    height: auto;
    overflow: scroll;
}

.container .nav form {
    margin: 15px auto;
    width: 258px;
    height: 27px;
    border: 1px solid #fff;
    position: relative;
    background: #fff;
}

.container .nav form .iptc {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 15px;
    background-color: #fff;
    width: 80%;
    height: 26px;
    line-height: 26px;
    display: block;
    float: left;
}

.container .nav form .ipsc {
    width: 20%;
    height: 26px;
    line-height: 26px;
    display: block;
    float: right;
    background: transparent;
    position: relative;
    z-index: 99;
}

.container .nav form i {
    position: absolute;
    right: 10px;
    top: 5px;
}

.container .nav > ul {
    display: none;
    margin-top: 0px;
    margin-bottom: 0px;
    overflow: scroll;
    padding-top: 45px;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.container .nav > ul > li {
    line-height: 40px;
    font-size: 12px;
    font-size: 1.2rem;
    text-indent: 20px;
    position: relative;
}

.container .nav > ul > li .addition {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 10px;
    background: url("../images/shizi.png") no-repeat center center;
}

.container .nav > ul > li .addition.fa:before {
    margin-right: 5px;
    color: #fff;
    text-indent: 0;
}

.container .nav > ul > li > a {
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    display: block;
    margin-right: 40px;
}

.container .nav > ul > li > a span {
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
}

.container .nav > ul > li .c-show {
    display: none;
    width: 100%;
}

.container .nav > ul > li .c-show1 .c-s1 {
    position: relative;
    padding-left: 15px;
}

.container .nav > ul > li .c-show1 .c-s1 > a {
    position: relative;
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 30px;
    margin-right: 40px;
}

.container .nav > ul > li .c-show1 .c-s1 > a span {
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
}

.container .nav > ul > li .c-show1 .c-s1 > .c-show2 {
    position: relative;
}

.container .nav > ul > li .c-show1 .c-s1 > .c-show2 .c-s2 {
    position: relative;
}

.container .nav > ul > li .c-show1 .c-s1 > .c-show2 .c-s2 > a {
    text-indent: 35px;
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 30px;
    margin-right: 40px;
}

.container .nav > ul > li .c-show1 .c-s1 > .c-show2 .c-s2 > a span {
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
}

.container .nav > ul > li .c-show1 .c-s1 .c-s2 .c-show3 {
    position: relative;
}

.container .nav > ul > li .c-show1 .c-s1 .c-s2 .c-show3 .c-s3 a {
    text-indent: 50px;
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    line-height: 30px;
}

.container .nav > ul > li .c-show1 .c-s1 .c-s2 .c-show3 .c-s3 a span {
    font-size: 12px;
    font-size: 1.2rem;
    color: #fff;
}

.container .nav > ul > dl {
    padding: 20px;
}

.container .nav > ul > dl dd {
    float: left;
    margin: 0 2px;
}

.container .menubtn {
    width: 23px;
    height: 18px;
    position: absolute;
    top: 12px;
    right: 12px;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    z-index: 9999;
}

.container .menubtn span {
    display: block;
    width: 100%;
    height: 3px;
    margin-bottom: 3px;
    background-color: #45b2ec;
}

@media screen and (min-width: 768px) {
    .container, .nav {
        display: none !important;
    }
}

/***********  lunbo  *************/

* {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.slide {
    position: relative;
}

.slide .carouse {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slide .carouse .slideItem {
    width: 100%;
    position: absolute;
    cursor: pointer;
}

.slide .carouse .slideItem .banner-img {
    width: 100%;
    display: block;
}

.slide .console {
    height: 57px;
    display: inline-block;
    width: 35px;
    position: absolute;
    top: 40%;
}

.slide .dotList {
    position: absolute;
    right: 30%;
    bottom: 31px;
    text-align: center;
}

.slide .dotList ul li {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #fff;
    margin: 0 8px;
    cursor: pointer;
}

.slide .carousel-control {
    position: absolute;
    top: 50%;
    z-index: 999;
    margin-top: -33px;
}

.slide .carousel-control i {
    color: #fff;
    font-size: 60px;
    font-size: 6rem;
}

.slide .carousel-control.left {
    left: 1%;
    cursor: pointer;
}

.slide .carousel-control.right {
    right: 1%;
    cursor: pointer;
}

.slide .dotList ul li {
    cursor: pointer;
    font-size: 0px;
    margin-left: 6px;
    margin-right: 6px;
    border: none;
    outline: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
}

.slide .dotList ul li.active {
    background: #45b2ec;
}

.slide .slidedetail {
    display: none;
}

@media screen and (max-width: 999px) {
    .slide .carousel-control {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .slide .dotList ul li {
        width: 12px;
        height: 12px;
    }

    .slide .dotList {
        bottom: 5px;
    }
}

/***********  toplx  ************/

.toplx {
    background: #145c99;
    padding-top: 3px;
    padding-bottom: 1px;
}

.toplx ul {
    float: right;
}

.toplx ul li, .toplx p, .toplx a {
    color: #fff;
}

.toplx ul li {
    float: left;
    line-height: 30px;
    margin-right: 24px;
}

.toplx a:hover {
    color: #45b2ec
}

.m-hdlang {
    position: relative;
    overflow: visible;
    float: right;
    min-width: 83px;
    border-radius: 5px;
    height: 25px;
    line-height: 25px;
    border: 1px solid #fff;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box
}

.m-hdlang .lang-list {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #eee;
    z-index: 99999;
    width: 100%;
    display: none;
    text-align: center;
    font-size: 12px;
    font-size: 1.2rem;
    border: solid 1px #fff;
    margin-top: -2px;
    padding-top: 3px;
    padding-bottom: 1px;
}

.m-hdlang .lang-item {
    float: none;
    color: #fff;
    line-height: 25px;
}

.m-hdlang .lang-item a {
    color: #333;
}

.m-hdlang .lang-item a:hover {
    color: #45b2ec;
}

.m-hdlang > .lang-item {
    background: url(../images/web13.png) no-repeat right center;
    padding-right: 14px;
    font-size: 14px;
    font-size: 1.4rem;
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
}

.topsjj {
    margin-right: 25px;
    padding-top: 3px;
}

.topsjj a i {
    font-size: 22px;
    font-size: 2.2rem;
}

.topsjj a {
    margin: 0 2px;
}

.key {
    line-height: 32px;
}

.key span {
    color: #fff
}

/***********  head  ************/

.head {
    background: #fff;
}

.logo img {
    max-width: 100%;
    display: block;
}

.navlist {
    padding-top: 55px;
    max-width: 820px;
}

.navlist2 {
    display: none;
}

.navlist > li {
    float: left;
    margin-left: 30px;
    position: relative;
    padding-bottom: 45px;
}

.navlist > li > a {
    font-size: 16px;
    font-size: 1.6rem;
    text-transform: uppercase;
    display: block;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    font-family: 'RobotoBold';
}

.navlist > li:hover > a {
    color: #45b2ec;
    border-bottom: 2px solid #45b2ec;
}

.navlist > li.currentnav > a {
    color: #45b2ec;
    border-bottom: 2px solid #45b2ec;
}

.search {
    margin-top: 47px;
    position: relative;
    margin-left: 25px;
}

.search form {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 99;
    display: none;
}

.search > i {
    cursor: pointer;
    width: 35px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    display: block;
    border-radius: 5px;
    background: #45b2ec;
    color: #fff;
    font-size: 18px;
    font-size: 1.8rem;
}

.sou {
    width: 200px;
    height: 28px;
    line-height: 28px;
    padding-left: 10px;
    border: 1px solid #333;
    background: #fff;
}

.suo {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: transparent;
    cursor: pointer;
}

.search form i {
    position: absolute;
    right: 5px;
    top: 6px;
    width: 18px;
    height: 18px;
}

@media screen and (max-width: 1219px) {
    .navlist > li {
        margin-left: 15px;padding-bottom: 25px;
    }

    .topsjj {
        margin-right: 10px;
    }

    .toplx ul li {
        margin-right: 10px;
    }



    .navlist {
        padding-top: 25px;
        max-width: 600px;
    }
}

@media screen and (max-width: 999px) {
    .key {
        float: none;
    }

    .toplx ul {
        float: left;
    }

    .toplx ul li {
        margin-right: 0;
    }

    .topsjj {
        float: left;
    }

    .m-hdlang {
        float: left;
        margin-right: 10px;
    }

    .navlist {
        width: 100%;
        text-align: center;
        padding-top: 5px;
        max-width: 100%;
    }

    .navlist > li {
        float: none;
        display: inline-block;
        margin: 0 15px;
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 880px) {
    .navlist > li {
        margin: 0 10px;
    }
}

@media screen and (max-width: 767px) {
    .navlist1 {
        display: none;
    }

    .topsjj, .toplx ul {
        display: none;
    }

    .toplx {
        padding-bottom: 10px;
    }

    .logo {
        width: 220px !important;
    }

    .search {
        margin-top: 39px;
    }

    .key {
        margin-right: 30px;
        line-height: 26px;
    }
}

@media screen and (max-width: 500px) {
    .logo {
        width: 195px;
    }

    .search {
        margin-top: 32px;
    }
}

/**************  sya  **************/

.sya {
    padding-top: 69px;
    padding-bottom: 113px;
}

.sybt {
    text-align: center;
    font-family: 'RobotoBold';
    font-size: 34px;
    font-size: 3.4rem;
    padding-bottom: 22px;
    background: url(../images/sybtbg.png) no-repeat center bottom;
    margin-bottom: 63px;
}

.sybt a:hover {
    color: #45b2ec
}

.syayou {
    width: 500px;
    margin-left: 60px;
}

.vitu {
    position: relative;
    padding-bottom: 75%;
    height: 0;
    overflow: hidden;
}

.vitu iframe, .vitu img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.vitu iframe body {
    margin: 0px !important;
}

.syazuo {
    padding-top: 23px;
}

.syap1 {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #666666;
    line-height: 30px;
    font-family: 'RobotoBold';
}

.syap2 {
    display: inline-block;
    min-width: 180px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    background: #45b2ec;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: 'RobotoBold';
    margin-top: 53px;
}

.syap1:hover {
    color: #45b2ec;
}

.syap2:hover {
    background: #333;
}

@media screen and (max-width: 1219px) {
    .syayou {
        width: 450px;
        margin-left: 35px;
    }

    .syazuo {
        padding-top: 5px;
    }

    .syap2 {
        margin-top: 30px;
    }

    .sya {
        padding-bottom: 90px;
    }
}

@media screen and (max-width: 999px) {
    .sybt {
        font-size: 26px;
        font-size: 2.6rem;
        margin-bottom: 50px;
    }

    .syayou {
        width: 400px;
    }

    .syap1 {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .sya {
        padding-bottom: 70px;
    }
}

@media screen and (max-width: 850px) {
    .syayou {
        width: 360px;
    }
}

@media screen and (max-width: 767px) {
    .syayou {
        float: none;
        width: auto;
        max-width: 500px;
        margin: 0 auto;
        margin-bottom: 15px;
    }

    .sybt {
        font-size: 24px;
        font-size: 2.4rem;
        margin-bottom: 35px;
    }

    .sya {
        padding-top: 45px;
        padding-bottom: 50px;
    }

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

/*************  syp  **************/

.syp {
    padding-top: 45px;
    padding-bottom: 47px;
    background: #f7f7f7;
}

.syp .sybt {
    background: url(../images/sybtbg2.png) no-repeat center bottom;
}

.sypbox {
    width: 389px;
    float: left;
    margin-left: 16px;
    margin-bottom: 30px;
    text-align: center;
}

.syptu img {
    display: block;
    width: 100%;
    max-width: 463px;
    max-height: 463px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.syptu {
    display: block;
    overflow: hidden;
}

.syptu:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.sypp1 {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 26px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 12px;
    margin-bottom: 13px;
}

.sypp2 {
    display: block;
    color: #666666;
    height: 20px;
    line-height: 20px;
    font-size: 16px;
    font-size: 1.6rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sypp1:hover {
    color: #45b2ec;
}

.sypp2:hover {
    color: #45b2ec;
}

@media screen and (max-width: 1219px) {
    .sypbox {
        width: 316px;
    }

    .sypp1 {
        font-size: 20px;
        font-size: 2rem;
    }
}

@media screen and (max-width: 999px) {
    .sypbox {
        width: 31.333%;
        margin: 0 1%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .sypp1 {
        font-size: 16px;
        font-size: 1.6rem;
    }

    .sypp2 {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .syp {
        padding-bottom: 25px;
    }
}

@media screen and (max-width: 600px) {
    .sypbox {
        width: 48%;
    }
}

/*************  sysz  ************/

.sysz {
    padding-top: 128px;
    padding-bottom: 106px;
    background: url(/themes/template/0576/static/images/sybg1.jpg) no-repeat center top;
}

.sysz li {
    float: left;
    width: 25%;
    text-align: center;
}

.sysz li a {
    display: block;
    color: #fff;
}

.szp1 {
    font-family: 'Raleway-Bold';
    font-size: 72px;
    font-size: 7.2rem;
}

.szp2 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 36px;
    line-height: 24px;
}

.sysz li a:hover {
    color: #45b2ec;
}

@media screen and (max-width: 1219px) {
    .szp1 {
        font-size: 60px;
        font-size: 6rem;
    }

    .szp2 {
        font-size: 16px;
        font-size: 1.6rem;
    }

    .sysz {
        padding-top: 100px;
        padding-bottom: 90px;
    }
}

@media screen and (max-width: 999px) {
    .szp1 {
        font-size: 50px;
        font-size: 5rem;
    }
}

@media screen and (max-width: 767px) {
    .szp1 {
        font-size: 40px;
        font-size: 4rem;
    }

    .sysz {
        padding-top: 60px;
        padding-bottom: 50px;
    }

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

@media screen and (max-width: 600px) {
    .szp1 {
        font-size: 30px;
        font-size: 3rem;
    }

    .szp2 {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 500px) {
    .sysz li {
        width: 50%;
        margin-bottom: 15px;
    }

    .sysz {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

/*************  syn  ************/

.syn {
    padding-top: 83px;
    padding-bottom: 126px;
}

.syn .sybt {
    background: url(../images/sybtbg2.png) no-repeat center bottom;
}

.syn .img-scroll {
    position: relative;
    z-index: 9;
    padding-bottom: 77px;
}

.syn .img-scroll .prev, .syn .img-scroll .next {
    position: absolute;
    display: block;
    z-index: 9999;
    bottom: 0px;
}

.syn .img-scroll .prev i, .syn .img-scroll .next i {
    font-size: 32px;
    font-size: 3.2rem;
    color: #666666;
}

.syn .img-scroll .prev:hover i, .syn .img-scroll .next:hover i {
    color: #45b2ec;
}

.syn .img-scroll .prev {
    left: 50%;
    margin-left: -42px;
    cursor: pointer;
}

.syn .img-scroll .next {
    right: 50%;
    margin-right: -42px;
    cursor: pointer;
}

.syn .img-list {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    z-index: 99;
}

.syn .img-list ul {
    width: 10000%;
}

.syn .img-list li {
    float: left;
    display: inline;
    width: 1%;
    margin-right: 10px;
}

.synzuo {
    margin-right: 40px;
    overflow: hidden;
}

.synzuo img {
    display: block;
    width: 100%;
    max-width: 400px;
    max-height: 300px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.synzuo:hover img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.synyou {
    padding-top: 22px;
}

.synyou span {
    color: #666666;
    display: block;
    margin-top: 15px;
    margin-bottom: 26px;
}

.synyou span i {
    color: #45b2ec;
    margin-right: 10px;
    font-size: 20px;
    font-size: 2rem;
}

.synp1 {
    display: block;
    font-size: 2.2rem;
    font-family: 'RobotoBold';
    line-height: 26px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.synp2 {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #666666;
    line-height: 28px;
    height: 112px;
    overflow: hidden;
}

.synp3 {
    display: inline-block;
    min-width: 180px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    background: #45b2ec;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: 'RobotoBold';
    margin-top: 28px;
}

.synp1:hover {
    color: #45b2ec;
}

.synp2:hover {
    color: #45b2ec;
}

.synp3:hover {
    background: #333;
}

@media screen and (max-width: 999px) {
    .synp1 {
        font-size: 18px;
        font-size: 1.8rem;
    }

    .synzuo {
        width: 350px;
        margin-right: 30px;
    }

    .synyou {
        padding-top: 10px;
    }

    .synyou span {
        margin-bottom: 15px;
    }

    .syn {
        padding-top: 60px;
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 767px) {
    .synzuo {
        float: none;
        width: auto;
        max-width: 400px;
        margin: 0 auto;
        margin-bottom: 15px;
    }

    .syn {
        padding-top: 40px;
        padding-bottom: 50px;
    }
}

/*************  bottom  ************/

.bottom {
    background: #666666;
    padding-top: 30px;
}

.bottom p, .bottom li, .bottom a, .bottom span {
    color: #fff;
}

.bottom a:hover {
    color: #45b2ec;
}

.div > a, .div > span {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 34px;
    text-transform: uppercase;
}

.div {
    padding-top: 2px;
}

.div1 {
    width: 203px;
}

.div1 li {
    line-height: 28px;
}

.div2 {
    width: 335px;
    padding-left: 44px;
    padding-right: 43px;
    border-right: 1px solid #c5c5c5;
    border-left: 1px solid #c5c5c5;
}

.div2 li {
    line-height: 28px;
}

.bsjj a {
    margin-right: 8px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}

.bsjj {
    padding-top: 46px;
    padding-bottom: 15px;
}

.bsjj a i {
    font-size: 34px;
    font-size: 4.4rem;
}

.bsjj a:hover {
    color: #45b2ec;
}

.div3 {
    width: 532px;
    margin-right: 11px;
}

.div3 > a {
    margin-bottom: 29px;
}

.coxin .xing {
    background: #fff url(../images/syxing.png) no-repeat 10px center !important;
}

.coxin .int1 {
    width: 235px;
    height: 43px;
    padding-left: 17px;
    margin-top: 10px;
    float: left;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 43px;
    background: #fff;
    border: 1px solid #999999;
}

.coxin .int2 {
    width: 235px;
    height: 43px;
    padding-left: 17px;
    margin-top: 10px;
    float: right;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 43px;
    background: #fff;
    border: 1px solid #999999;
}

.coxin textarea {
    box-sizing: border-box;
    width: 513px;
    height: 135px;
    background: #fff url(../images/syxing.png) no-repeat 10px 20px !important;
    padding-left: 17px;
    margin-top: 10px;
    float: left;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 26px;
    padding-top: 10px;
    border: 1px solid #999;
}

.coxin .int3 {
    width: 245px;
    height: 43px;
    border: 1px solid #999;
    padding-left: 17px;
    margin-top: 10px;
    float: left;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 43px;
}

.coyanzheng {
    float: right;
    margin-top: 10px;
    cursor: pointer;
}

.coxin .int4 {
    width: 100%;
    box-sizing: border-box;
    height: 45px;
    line-height: 45px;
    float: none;
    margin-top: 10px;
    background: #45b2ec;
    font-size: 18px;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
}

.coxin .int4:hover {
    background: #333;
}

.copyright {
    line-height: 30px;
    margin-top: 63px;
}

.cnzz {
    padding-left: 10px;
}

.link {
    padding-top: 8px;
    padding-bottom: 10px;
    line-height: 30px;
    min-height: 30px;
}

.link a {
    margin-left: 20px;
    margin-right: 20px
}

.link a, .link span {
    display: inline-block;
}

.link a:hover {
    color: #45b2ec;
}


@media screen and (min-width: 1000px) and (max-width: 1219px) {
    .div1 {
        width: 145px;
    }

    .div > a, .div > span {
        font-size: 20px;
        font-size: 2rem;
    }

    .div2 {
        padding-left: 30px;
        padding-right: 30px;
        width: 215px;
    }

    .bsjj a i {
        font-size: 30px;
        font-size: 3rem;
    }

    .bsjj a {
        margin-right: 2px;
    }
}

@media screen and (max-width: 999px) {
    .div1 {
        width: 35%;
        margin-right: 2%;
    }

    .div2 {
        width: 50%;
        border: none;
        padding: 0;
    }

    .div3 {
        float: none;
        clear: both;
        margin-top: 20px;
    }

    .bsjj {
        padding-top: 18px;
        padding-bottom: 0;
    }

    .bsjj a i {
        font-size: 30px;
        font-size: 3rem;
    }

    .bsjj a {
        margin-right: 2px;
    }

    .div > a, .div > span {
        font-size: 20px;
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .copyright {
        margin-top: 45px;
    }
}
.bsjj-model{display: none}
@media screen and (max-width: 767px) {
    .div1, .div3, .div2 {
        width: 100%;
        margin-top: 0;
    }

    .div1 > ul, .div2 > ul, .div3 > .coxin{
        display: none;
    }
    .coxin .int1, .coxin .int2, .coxin textarea {
        width: 100%;box-sizing: border-box;
    }
    .div1 > a, .div2 > span{position: relative;width: 100%;padding-right: 30px;box-sizing: border-box;}
    .div1 > a::before, .div2 > span::before{position: absolute;right: 2px;top: 50%;transform: translateY(-50%);font-family: iconfont;content: "\e725";font-size: 18px; font-size: 1.8rem;}
    .div2 > a, .div1 > span{position: relative;width: 100%;padding-right: 30px;box-sizing: border-box;}
    .div2 > a::before, .div1 > span::before{position: absolute;right: 2px;top: 50%;transform: translateY(-50%);font-family: iconfont;content: "\e725";font-size: 16px; font-size: 1.6rem;}
    .div3 > a, .div3 > span{position: relative;width: 100%;padding-right: 30px;box-sizing: border-box;}
    .div3 > a::before, .div3 > span::before{position: absolute;right: 2px;top: 50%;transform: translateY(-50%);font-family: iconfont;content: "\e725";font-size: 18px; font-size: 1.8rem;}
    .bsjj{display: none}
    .bsjj-model{display: block}
    .bsjj a i {
        font-size: 28px;
        font-size: 2.8rem !important;
    }

    .bsjj a {
        margin-right: 2px;
    }
    .bottom {
        padding-top: 20px;
        padding-bottom: 100px;
    }

    /*.link {*/
    /*    display: none;*/
    /*}*/

    .copyright {
        margin-top: 15px;
    }

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

/************  bread  *************/

.dabt {
    height: 280px;
    background: url(../images/bannerf.png) no-repeat center top;
}

.dabt p {
    display: inline-block;
    padding-top: 119px;
    font-size: 32px;
    font-size: 3.2rem;
    color: #45b2ec;
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 2px solid #45b2ec;
    margin-left: 100px;
}

.mianbao {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    color: #666666;
    padding-top: 16px;
}

.mianbao a {
    color: #666666;
}

.mianbao a:hover {
    color: #45b2ec;
}

.co00 {
    color: #45b2ec !important;
}

.fymain {
    padding-top: 33px;
    padding-bottom: 100px;
}

/**************  about1  ***************/

.about1 {
    padding-bottom: 0;
}

.a1p1 {
    text-align: center;
    font-size: 28px;
    font-size: 2.8rem;
    color: #45b2ec;
    font-family: 'RobotoBold';
    margin-bottom: 23px;
}

.a1p2 {
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 30px;
}

.a1p3 img {
    display: block;
    max-width: 100%;
}

.a1p3 {
    margin-top: 64px;
    margin-bottom: 56px;
}

.aform {
    padding-top: 50px;
    width: 1054px;
    margin: 0 auto;
}

.aform .xing input {
    width: 470px;
    height: 32px;
    line-height: 32px;
    padding-left: 10px;
    border: 1px solid #cccccc;
    color: #999999;
}

.aform .xing {
    padding-left: 19px;
    margin-bottom: 21px;
}

.aform .xing2 {
    background: url("../images/xing.png") no-repeat left 16px;
}

.aform .textarea {
    width: 1023px;
    padding-left: 10px;
    line-height: 36px;
    height: 131px;
    border: 1px solid #cccccc;
    color: #999999;
}

.aform .xing input.capt {
    width: 364px;
    height: 32px;
    line-height: 32px;
    padding-left: 10px;
    color: #999999;
    border: 1px solid #cccccc;
}

.aform .yzm {
    cursor: pointer;
    vertical-align: middle;
    margin-left: 47px;
}

.aform .xing3 {
    display: inline-block;
}

.aform .csub {
    width: 323px;
    height: 34px;
    text-align: center;
    background: #45b2ec;
    color: #fff;
    float: right;
    cursor: pointer;
    line-height: 34px;
    font-size: 16px;
    font-size: 1.6rem;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
}

.aform .csub:hover {
    background: #333;
}

.aditu img {
    display: block;
    max-width: 1920px;
    width: 100%;
}

.aditu {
    margin-top: 56px;
}

.aform .xing:nth-child(2n-1) {
    float: left;
}

.aform .xing:nth-child(2n) {
    float: right;
}

@media screen and (max-width: 1219px) {
    .aform {
        width: 950px;
    }

    .aform .xing input {
        width: 435px;
    }

    .aform .textarea {
        width: 919px;
    }

    .aform .xing input.capt {
        width: 330px;
    }

    .aform .yzm {
        margin-left: 19px;
    }
}

@media screen and (max-width: 999px) {
    .a1p1 {
        font-size: 20px;
        font-size: 2rem;
    }

    .a1p2 {
        font-size: 16px;
        font-size: 1.6rem;
    }

    .a1p3 {
        margin-top: 40px;
        margin-bottom: 35px;
    }

    .aform {
        width: 100%;
        padding-top: 66px;
    }

    .aform .xing {
        float: none !important;
    }

    .aform .xing input {
        width: -moz-calc(100% - 14px);
        width: calc(100% - 14px);
    }

    .aform .textarea {
        width: -moz-calc(100% - 14px);
        width: calc(100% - 14px);
    }

    .aform .xing input.capt {
        width: -moz-calc(100% - 14px);
        width: calc(100% - 14px);
    }

    .aform .xing3 {
        display: block;
    }

    .dabt p {
        padding-top: 119px;
        margin-left: 0px;
    }
}

@media screen and (max-width: 650px) {
    .aform .csub {
        width: -moz-calc(100% - 19px);
        width: calc(100% - 19px);
        margin-top: 14px;
    }

    .a1p2 {
        font-size: 14px;
        font-size: 1.4rem;
    }

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

@media screen and (max-width: 450px) {
    .a1p3 {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .aditu {
        margin-top: 35px;
    }

    .a1p1 {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

/**************  about2  ***************/

.a2p1 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 28px;
}

.about2 .a1p3 {
    margin-top: 30px;
    margin-bottom: 19px;
}

.a2p2 img {
    width: 49.5%;
    margin-bottom: 19px;
    display: block;
    max-width: 588px;
}

@media screen and (max-width: 999px) {
    .fymain {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .a2p1 {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .about2 .a1p3 {
        margin-top: 20px;
    }
}

@media screen and (max-width: 400px) {
    .a2p2 img {
        width: 100%;
    }
}

/***************  about3  ***************/

.zslist {
    text-align: center;
    margin: 0 73px;
}

.zsbox {
    width: 321px;
    float: left;
    margin-left: 45px;
    margin-bottom: 23px;
}

.zslist img {
    width: 100%;
    max-width: 321px;
}

.about3 .a2p1 {
    margin-bottom: 51px;
}

@media screen and (max-width: 1219px) {
    .zsbox {
        width: 248px;
    }
}

@media screen and (max-width: 999px) {
    .zsbox {
        width: 31.333%;
        margin: 0 1%;
        margin-bottom: 30px;
    }

    .zslist {
        margin: 0;
    }
}

@media screen and (max-width: 767px) {
    .about3 .a2p1 {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 450px) {
    .zsbox {
        width: 48%;
        margin-bottom: 20px;
    }
}

/**********   product1   **********/

.pyou {
    width: 869px;
}

.pzuo {
    width: 277px;
}

.title1 {
    margin-bottom: 20px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    height: 45px;
    line-height: 45px;
    color: #fff;
    background-color: #45b2ec;
}

.title1 a {
    color: #fff;
    font-size: 24px;
    font-size: 2.4rem;
}

.title1 a:hover, .title2 a:hover {
    color: #333
}

.subNav {
    cursor: pointer;
    margin-bottom: 0px;
    border: 1px solid #d2d2d2;
    margin-top: 8px;
    padding-top: 0px;
    background: #eeeeee url(../images/probg.png) no-repeat 13px center;
}

.subNav a {
    line-height: 40px;
    padding-left: 47px;
    font-size: 16px;
    font-size: 1.6rem;
    color: #333333;
    -webkit-transition: 0s;
    -o-transition: 0s;
    -moz-transition: 0s;
    transition: 0s;
    display: inline-block
}

.subNav:hover {
    background: #45b2ec url(../images/probgon.png) no-repeat 13px center;
}

.subNav:hover a {
    color: #fff;
}

.currentDd {
    background: #45b2ec url(../images/probgon.png) no-repeat 13px center;
}

.currentDd a {
    color: #fff;
}

.navContent {
    display: none;
    background: #fff;
    position: relative;
    padding-bottom: 18px;
    border: 1px solid #d2d2d2;
    border-top: 0;
}

.navContent > p a {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    padding-top: 0;
    padding-bottom: 0px;
    color: #333;
    padding-left: 47px;
    line-height: 28px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.navContent > p a:hover {
    color: #45b2ec;
    color: #45b2ec;
}

.navContent ul li {
    line-height: 36px;
}

.navContent ul li.nobg {
    background: none;
}

.navContent ul {
    padding: 7px 0px;
    display: none
}

.navContent ul li a {
    display: block;
}

.navContent ul li {
    padding-left: 71px;
    font-size: 16px;
    font-size: 1.6rem;
}

.navContent ul li a:hover {
    color: #45b2ec;
}

.title2 {
    margin-top: 53px;
    margin-bottom: 31px;
}

.cetag a {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #666666;
    line-height: 26px;
    padding-bottom: 21px;
    border-bottom: 1px solid #c6c6c6;
    margin-bottom: 22px;
}

.cetag a:hover {
    color: #45b2ec;
}

.plbt {
    line-height: 36px;
    font-size: 22px;
    font-size: 2.2rem;
    color: #45b2ec;
    margin-bottom: 20px;
    border: 1px solid #45b2ec;
    padding: 0 30px;
    display: inline-block;
}

.plxx {
    line-height: 28px;
    font-size: 16px;
    font-size: 1.6rem;
}

.plxx a {
    color: #45b2ec;
}

.pbox {
    width: 282px;
    float: left;
    margin-left: 11px;
    text-align: center;
    margin-bottom: 29px;
}

.ptu {
    display: block;
    border: 1px solid #c7c7c7;
}

.ptu img {
    display: block;
    width: 100%;
    max-width: 463px;
    max-height: 463px;
}

.pp1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 10px;
}

.pp1 a {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 30px;
    margin-top: 20px;
}

.pp1 input {
    cursor: pointer;
    margin-right: 8px;
}

.pp2 {
    display: block;
    color: #666666;
    line-height: 24px;
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 6px;
}

.pp3 {
    display: inline-block;
    min-width: 178px;
    height: 41px;
    line-height: 41px;
    margin: 0 auto;
    margin-top: 12px;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    font-size: 1.8rem;
    background: #666666;
}

.pp1 a:hover {
    color: #45b2ec;
}

.pp2:hover {
    color: #45b2ec;
}

.pp3:hover {
    background: #45b2ec;
}

.ms_ye {
    text-align: center;
    position: relative;
    margin-top: 62px;
}

.ms_ye a, .ehezi1120 span, .ms_ye span.none {
    display: inline-block;
    min-width: 23px;
    line-height: 23px;
    text-align: center;
    margin-left: 3px;
    margin-right: 4px;
    background: #fff;
    border-radius: 50%;
    color: #0a0a0a;
    border: 1px solid #0a0a0a;
    font-family: Arial, Helvetica, sans-serif;
}

.ms_sx {
    width: auto !important;
    background: none !important;
    margin: 0 12px !important;
    color: #333 !important;
    border: none !important;
}

.ms_sx i {
    vertical-align: middle;
}

.ms_ye a.none:hover {
    color: #333;
}

.ms_ye .ms_current_ye {
    background: #45b2ec;
    border: 1px solid #45b2ec;
    color: #fff;
}

.ms_ye a:hover {
    background: #45b2ec;
    border: 1px solid #45b2ec;
    color: #fff;
}

.xiangshang {
    position: absolute;
    right: 0;
    bottom: 0;
    padding-left: 33px;
    background: url(../images/xs.jpg) no-repeat left 6px;
}

.xiangshang span {
    font-size: 16px;
    font-size: 1.6rem;
    color: #4b4b4b;
    margin-right: 14px;
}

.xiangshang input {
    min-width: 170px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    background: #45b2ec;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box
}

.xiangshang input:hover {
    background: #333;
}

.xiangshang2 {
    position: absolute;
    right: 0;
    bottom: 0;
    padding-left: 33px;
}

.xiangshang2 span {
    font-size: 16px;
    font-size: 1.6rem;
    color: #4b4b4b;
    margin-right: 14px;
}

.xiangshang2 input {
    min-width: 170px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    background: #45b2ec;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box
}

.xiangshang2 input:hover {
    background: #333;
}

.product1 .ms_ye {
    text-align: left;
}

@media screen and (max-width: 1219px) {
    .pyou {
        width: 680px;
    }

    .pbox {
        width: 213px;
        margin-left: 20px;
    }
}

@media screen and (max-width: 999px) {
    .pyou {
        width: 100%;
    }

    .pzuo {
        width: 100%;
        margin-top: 50px;
    }

    .pbox {
        width: 31.333%;
        margin: 0 1%;
        margin-bottom: 30px;
    }

    .pp1 a {
        font-size: 16px;
        font-size: 1.6rem;
    }

    .product1 .ms_ye {
        text-align: center;
    }

    .xiangshang {
        position: static;
        display: inline-block;
    }

    .ms_ye {
        margin-top: 35px;
    }

    .pp3 {
        font-size: 16px;
        font-size: 1.6rem;
    }

    .ms_ye a {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .pp3 {
        width: 140px;
    }

    .plbt {
        font-size: 18px;
        font-size: 1.8rem;
    }

    .plxx {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .cetag a {
        padding-bottom: 12px;
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 600px) {
    .pbox {
        width: 100%;
        float: none
    }
}

@media screen and (max-width: 400px) {
    .pp3 {
        font-size: 14px;
        font-size: 1.4rem;
        width: 114px;
        height: 36px;
        line-height: 36px;
    }
}

/************  product2  *************/

/*-------------2-2-products start----------------------------------------------------------*/


.zoomPad {
    position: relative;
    float: left;
    z-index: 99;
    cursor: crosshair;
}

.zoomPreload {
    -moz-opacity: 0.8;
    opacity: 0.8;
    filter: alpha(opacity=80);
    color: #333;
    font-size: 12px;
    font-family: Tahoma;
    text-decoration: none;
    border: 1px solid #CCC;
    background-color: white;
    padding: 8px;
    text-align: center;
    background-image: url(../images/zoomloader.gif);
    background-repeat: no-repeat;
    background-position: 43px 30px;
    z-index: 110;
    width: 90px;
    height: 43px;
    position: absolute;
    top: 0px;
    left: 0px;
    *width: 100px;
    *height: 49px;
}

.zoomPup {
    overflow: hidden;
    background-color: #FFF;
    -moz-opacity: 0.6;
    opacity: 0.6;
    filter: alpha(opacity=60);
    z-index: 120;
    position: absolute;
    border: 1px solid #CCC;
    z-index: 101;
    cursor: crosshair;
}

.zoomOverlay {
    position: absolute;
    left: 0px;
    top: 0px;
    background: #FFF; /*opacity:0.5; */
    z-index: 5000;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 101;
}

.zoomWindow {
    position: absolute;
    left: 110%;
    top: 40px;
    background: #FFF;
    z-index: 6000;
    height: auto;
    z-index: 10000;
    z-index: 110;
}

.zoomWrapper {
    position: relative;
    border: 1px solid #ccc;
    z-index: 110;
}

.zoomWrapperTitle {
    display: block;
    background: #999;
    color: #FFF;
    height: 18px;
    line-height: 18px;
    width: 100%;
    overflow: hidden;
    text-align: center;
    font-size: 10px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 120;
    -moz-opacity: 0.6;
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.zoomWrapperImage {
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 110;
}

.zoomWrapperImage img {
    border: 0px;
    display: block;
    position: absolute;
    z-index: 101;
}

.zoomIframe {
    z-index: -1;
    filter: alpha(opacity=0);
    -moz-opacity: 0.80;
    opacity: 0.80;
    position: absolute;
    display: block;
}


.product2 .prob-pic {
    width: 465px;
    float: left;
}

.product2 .prob-pic-big {
    position: relative;
}

.product2 .prob-pic-big-img {
    display: block;
    line-height: 0;
    font-size: 0;
    border: 1px solid #d7d7d7;
}

.product2 .prob-pic-big-img .zoomPad {
    float: none;
    z-index: 8;
}

.product2 .prob-pic-big-img .zoomPad > img {
    max-width: 100%;
}

.product2 .prob-pic-big img {
    max-width: 100%;
}

.product2 .zoomWrapperImage img {
    max-width: 1200px;
}

.product2 .prob-pic-small {
    position: relative;
    margin-top: 12px;
    padding: 0 38px;
}

.product2 .prob-pic-btn {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    display: block;
}

.product2 .prob-pic-btn i {
    color: #000000;
    font-size: 30px;
    font-size: 3rem;
}

.product2 .prob-pic-btn:hover i {
    color: #45b2ec;
}

.product2 .prob-pic-btn.prev {
    left: -7px;
}

.product2 .prob-pic-btn.next {
    right: -7px;
}

.product2 .prob-pic-list {
    overflow: hidden;
}

.product2 .prob-pic-list ul {
    width: 1000%;
    overflow: hidden;
}

.product2 .prob-pic-list ul li {
    position: relative;
    float: left;
    margin-right: 0.71%;
    width: 2.86%;
}

.product2 .prob-pic-item .item-pic {
    border: 1px solid #d7d7d7;
    overflow: inherit;
    display: block;
}

.product2 .prob-pic-item .item-pic img {
    display: block;
}

/*.product2 .prob-pic-item .item-pic.zoomThumbActive {border: solid 1px #45b2ec;}*/
.product2 .prob-pic-item .item-pic img {
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    max-width: 100%;
    display: block;
}

.pro-share {
    margin-top: 36px;
}

.share-title {
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #333333;
    position: relative;
    top: -8px;
    margin-right: 8px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.share-pic {
    display: inline-block;
}


.prob-pic .prob-pic-item .item-pic, .prob-pic .prob-pic-item .item-video {
    display: block;
    overflow: inherit;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: solid 1px #d0d0d0;
}

.prob-pic .prob-pic-item .item-pic img, .prob-pic .prob-pic-item .item-video img {
    display: block;
    width: 100%;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -webkit-transition: 0.3s;
}

.prob-pic .prob-pic-item .item-pic.active, .prob-pic .prob-pic-item .item-video.active {
    border-color: #378fe1
}

.prob-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    z-index: 8;
    display: none;
}

.prob-video iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.prob-video.show {
    display: block;
}


@media screen and (max-width: 1219px) {
    .zoomPad {
        cursor: default !important;
    }

    .zoomPup {
        display: none !important;
    }

    .zoomWindow {
        display: none !important;
    }

    .zoomPreload {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .product2 .prob-pic {
        width: 100%;
    }

    .product2 .prob-pic-big {
        display: none;
    }

    .product2 .prob-pic-small {
        margin-top: 0;
    }

    .product2 .prob-pic-list ul li {
        margin-right: .2%;
        width: 3.2%;
    }

    .product2 .prob-pic-item .item-pic:before {
        display: none !important;
    }

    .product2 .prob-pic-item .item-pic.zoomThumbActive {
        border: 1px solid #d8d8d8;
    }
}

@media screen and (max-width: 550px) {
    .product2 .prob-pic-list ul li {
        margin-right: .2%;
        width: 4.9%;
    }
}

@media screen and (max-width: 480px) {
    .product2 .prob-pic-list ul li {
        margin-right: 0%;
        width: 10%;
    }
}

/* pro-info */

.pro-info {
    width: 390px;
    padding-top: 13px;
}

.pro-info .pro-title {
    font-size: 34px;
    font-size: 3.4rem;
    line-height: 40px;
    font-style: normal;
    margin-bottom: 17px;
    color: #45b2ec;
}

.pro-info .pro-desc {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
    color: #282828;
    min-height: 97px;
    margin: 0 0 16px;
}

.pro-btn {
    display: inline-block;
    min-width: 166px;
    padding-left: 5px;
    padding-right: 5px;
    box-sizing: border-box;
    height: 48px;
    line-height: 48px;
    border-radius: 0;
    text-align: center;
    background-color: #45b2ec;
    color: #fff;
    margin-bottom: 5px;
}

.pro-btn:hover {
    background-color: #333;
}

.pro-btn a.none {
    background: #45b2ec
}

.pro-btn:first-child {
    margin-right: 21px;
}

.pro-btns {
    margin-top: 7px;
}

@media screen and (max-width: 1219px) {
    .pro-info .pro-desc {
        height: auto;
        min-height: auto;
    }

    .pro-btn:first-child {
        margin-right: 25px;
    }
}

@media screen and (max-width: 767px) {
    .pro-info .pro-title {
        font-size: 20px;
        font-size: 2rem;
        line-height: 30px;
    }

    .pro-btns {
        text-align: center;
    }

    .pro-btn:first-child {
        margin-right: 10px;
    }
}

@media screen and (max-width: 550px) {
    .pro-btn {
        width: 45%;
        margin: 0 2%;
    }

    .pro-btn:first-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 420px) {
    .pro-btn {
        width: 98%;
        margin: 0 1%;
        margin-bottom: 10px
    }

    .pro-btn:first-child {
        margin-right: 1%;
        margin-left: 1%
    }
}

.pro2-detail {
    margin-top: 61px;
}

@media screen and (max-width: 767px) {
    .pro2-detail {
        margin-top: 30px;
    }
}

.pro2-detail .item-desc {
    padding: 28px 0 30px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
}

.pro2-detail .item-desc, .pro2-detail .item-desc a, .pro2-detail .item-desc p, .pro2-detail .item-desc li, .pro2-detail .item-desc span, .pro2-detail .item-desc strong, .pro2-detail .item-desc b, .pro2-detail .item-desc i, .pro2-detail .item-desc em {
    color: #333;
}

.pro2-detail .item-desc img, .pro2-detail .item-desc iframe {
    max-width: 100%;
}

@media screen and (max-width: 767px) {
    .pro2-detail .item-desc {
        padding: 15px 0;
        line-height: 24px;
    }
}

.pro2-title {
    font-weight: bold;
    font-size: 22px;
    font-size: 2.2rem;
    text-transform: uppercase;
    border-bottom: solid 1px #ccc;
    line-height: 34px;
    padding: 5px 0;
}

.pro2-title, .pro2-title a {
    color: #253E86;
}

@media screen and (max-width: 767px) {
    .pro2-title {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

/*-------------2-2-products end------------------------------------------------------------*/

.cpxx {
    line-height: 30px;
    color: #333333;
    font-size: 16px;
    font-size: 1.6rem;
}

.cpxx p, .cpxx span {
    color: #333333;
}

.cpxx a {
    color: #45b2ec;
}

.cpxx img, .cpxx iframe {
    max-width: 100%;
}

.cxdown {
    display: block;
    width: 166px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background: #666666;
    font-size: 18px;
    font-size: 1.8rem;
    margin-top: 47px;
}

.cxdown span {
    color: #fff;
}

.cxdown:hover {
    background: #45b2ec;
}

.des {
    font-size: 28px;
    font-size: 2.8rem;
    margin-bottom: 31px;
    margin-top: 56px;
    padding-bottom: 20px;
    background: url(../images/desbg.jpg) no-repeat left bottom;
}

.des span, .des a {
    color: #45b2ec;
    font-family: 'RobotoBold';
}

.des2 {
    margin-top: 92px;
    margin-bottom: 32px;
}

.chanpinx {
    line-height: 28px;
    color: #333333;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: 'RobotoRegular', Arial, Helvetica, sans-serif
}

.chanpinx p, .chanpinx li, .chanpinx span, .chanpinx b {
    color: #333333;
}

.chanpinx a {
    color: #45b2ec;
}

.chanpinx img {
    max-width: 100%;
}

.chanpinx iframe {
    max-width: 100%;
}

.chanpinx table, .nex table, .cpxx table {
    width: 100%;
    border-collapse: collapse;
}

.chanpinx tr td, .nex tr td, .cpxx tr td {
    padding: 0 3px;
}

.table table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.table table td {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 3px;
    border: 1px solid #ccc;
}

.chanpinx .table table td {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 3px;
    border: 1px solid #ccc;
}

.fypbox {
    width: 257px;
    float: left;
    margin-left: 49px;
    margin-top: 30px;
    text-align: center;
}

.fypbox img {
    display: block;
    width: 100%;
    max-width: 463px;
    max-height: 463px;
}

.fypbox p {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 24px;
}

.tags2 a {
    display: inline-block;
    padding: 0 66px;
    line-height: 38px;
    border: 1px solid #b7b7b7;
    margin-right: 26px;
    margin-bottom: 5px;
    font-size: 16px;
    font-size: 1.6rem;
    color: #666666;
}

.tags2 a:hover {
    color: #fff;
    background: #45b2ec;
    border: 1px solid #45b2ec;
}
.tags2 .prtag{position: relative;max-height: 135px;overflow: hidden;margin-bottom: 20px}
.tags2 .prtagh{max-height: none !important;}
.tags2 .mores .zhankais{position: relative;display: inline-block;vertical-align: top;cursor: pointer;text-align: center;min-width: 124px;padding: 5px 14px;
    line-height: 28px;font-size: 16px;background: #FFFFFF;color: #45b2ec;border: 1px solid #45b2ec;}
.tags2 .mores .zhankais:hover{background: #45b2ec;color: #fff;}
@media screen and (max-width: 1000px) {
    .table {
        width: 100%;
        overflow: scroll;
    }

    .table table {
        width: 885px;
    }
}

@media screen and (max-width: 1219px) {
    .pro-info {
        width: 100%;
    }

    .pro-info .pro-title {
        font-size: 24px;
        font-size: 2.4rem;
    }

    .product2 .prob-pic {
        float: none;
        margin: 0 auto;
    }

    .fypbox {
        margin-left: 25px;
        width: 210px;
    }
}

@media screen and (max-width: 999px) {
    .product2 .prob-pic {
        float: none;
        margin: 0 auto;
    }

    .pro-info {
        width: 100%;
        text-align: center;
    }

    .pro-btns {
        margin-top: 15px;
    }

    .pro-info .pro-title::after {
        margin: 0 auto;
        margin-top: 10px;
    }

    .cpxx {
        margin-bottom: 30px;
    }

    .cxdown {
        margin: 0 auto;
        margin-top: 20px;
    }

    .pro-share {
        margin-top: 30px;
    }

    .tags2 {
        margin-top: 40px;
    }

    .fypbox {
        width: 31.333%;
        margin: 0 1%;
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .des {
        font-size: 20px;
        font-size: 2rem;
        margin-top: 35px;
    }

    .chanpinx {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .tags2 a {
        padding: 0 30px;
        font-size: 14px;
        font-size: 1.4rem;
        margin-right: 10px;
        line-height: 34px;
    }
    .tags2 .prtag{max-height: 123px;margin-bottom: 16px}
    .tags2 .mores .zhankais{min-width: 124px;padding: 5px 12px;line-height: 28px;font-size: 16px;}
}

@media screen and (max-width: 550px) {
    .pro-info .pro-title {
        font-size: 20px;
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .des {
        font-size: 18px;
        font-size: 1.8rem;
    }

    .cpxx {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .pzuo {
        margin-top: 30px;
    }

    .fypbox {
        width: 48%;
    }
}

/***********  application1  ************/

.bhang {
    position: relative;
    margin-bottom: 153px;
}

.bhang .fyblog {
    width: 467px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 20px 20px 20px 0px rgba(0, 0, 0, 0.1);
}

.bhang .fyblog img {
    width: 100%;
    max-width: 467px;
    max-height: 350px;
    display: block;
}

.bhang1 .fyblognr {
    padding-left: 545px;
    padding-top: 40px;
}

.bhang2 .fyblognr {
    padding-right: 545px;
    padding-top: 35px;
}

.fyblogp1 {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 26px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 11px;
}

.fyblogp2 {
    display: block;
    line-height: 28px;
    height: 140px;
    overflow: hidden;
    margin-top: 28px;
    margin-bottom: 43px;
    color: #666666;
    font-size: 16px;
    font-size: 1.6rem;
}

.fyblogp1:hover {
    color: #45b2ec;
}

.fyblogp2:hover {
    color: #45b2ec;
}

.fyblogp3 {
    display: inline-block;
    height: 50px;
    line-height: 50px;
    min-width: 212px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    background: #666666;
    box-sizing: border-box;
    padding-left: 5px;
    padding-right: 5px
}

.fyblogp3:hover {
    background: #45b2ec;
    color: #333;
}

.application1 .ms_ye {
    margin-top: 190px;
}

@media screen and (max-width: 1219px) {
    .fyblogp1 {
        font-size: 20px;
        font-size: 2rem;
    }
}

@media screen and (max-width: 999px) {
    .bhang .fyblog {
        width: 310px;
        box-shadow: 10px 10px 10px 0px rgba(0, 0, 0, 0.1);
    }

    .bhang1 .fyblognr {
        padding-left: 340px;
        padding-top: 0px;
    }

    .bhang2 .fyblognr {
        padding-right: 340px;
        padding-top: 20px;
    }

    .fyblogp1 {
        font-size: 18px;
        font-size: 1.8rem;
    }

    .fyblogp2 {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .application1 .ms_ye {
        margin-top: 60px;
    }

    .fyblogp3 {
        width: 160px;
        height: 40px;
        line-height: 40px;
    }

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

@media screen and (max-width: 767px) {
    .bhang .fyblog {
        float: none;
        width: auto;
        max-width: 400px;
        margin: 0 auto !important;
        display: block;
    }

    .bhang .fyblognr {
        padding: 0;
        padding-top: 20px;
    }

    .bhang {
        margin-bottom: 40px;
    }

    .application1 .ms_ye {
        margin-top: 40px;
    }

    .fyblogp2 {
        height: auto;
        max-height: 140px;
    }
}

@media screen and (max-width: 450px) {
    .fyblogp1 {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

/**********  application2  **********/

.application2 h1 {
    font-size: 28px;
    font-size: 2.8rem;
    color: #45b2ec;
    line-height: 44px;
    font-family: 'RobotoBold';
    margin-bottom: 10px;
}

.appxx {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 28px;
    margin-bottom: 57px;
}

.appxx img, .appxx iframe {
    max-width: 100%;
}

.appxx a {
    color: #45b2ec
}

.appxx a:hover {
    color: #333
}

@media screen and (max-width: 1219px) {
    .application2 h1 {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 36px;
        margin-bottom: 40px;
    }

    .appxx img {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .application2 h1 {
        font-size: 20px;
        font-size: 2rem;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .appxx img {
        margin-bottom: 15px;
    }

    .appxx {
        margin-bottom: 35px;
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 500px) {
    .application2 h1 {
        font-size: 18px;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
}

/**********  download  **********/

.downp {
    font-size: 30px;
    font-size: 3rem;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 1px solid #cfcfcf;
    margin-bottom: 30px;
}

.dbox {
    padding: 0 25px;
    padding-top: 23px;
    padding-bottom: 20px;
    background: #efefef;
    margin-bottom: 29px;
}

.dbox a:hover {
    cursor: pointer;
    color: #fff !important;
}

.dp1 {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 32px;
}

.dp2 {
    display: block;
    color: #4d4d4d;
    line-height: 28px;
    margin-top: 18px;
    margin-bottom: 20px;
}

.dp3 {
    display: inline-block;
    min-width: 140px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    padding-left: 7px;
    box-sizing: border-box;
    text-transform: uppercase;
    background: #45b2ec;
}

.dp3 img {
    vertical-align: middle;
    margin-left: 10px;
}

.dp1:hover {
    color: #45b2ec;
}

.dp2:hover {
    color: #45b2ec;
}

.dp3:hover {
    background: #333;
}

.download .ms_ye {
    margin-top: 68px;
}

@media screen and (max-width: 767px) {
    .dbox {
        padding-left: 16px;
        padding-right: 16px;
    }

    .download .ms_ye {
        margin-top: 45px;
    }
}

@media screen and (max-width: 500px) {
    .dp1 {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

/**********  news1  **********/

.nbox {
    padding-top: 37px;
    padding-bottom: 54px;
}

.nbox1 {
    background: #f6f6f6;
}

.nbox2 {
    background: #fff;
}

.swp {
    margin-right: 47px;
}

.swp img {
    display: block;
    width: 100%;
    max-width: 516px;
    max-height: 387px;
}

.nnr {
    padding-top: 28px;
}

.np1 {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ntime {
    color: #666666;
    display: block;
    margin-top: 13px;
    margin-bottom: 29px;
}

.ntime i {
    color: #45b2ec;
    font-size: 22px;
    font-size: 2.2rem;
    margin-right: 3px;
}

.np2 {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #666666;
    line-height: 28px;
    height: 140px;
    overflow: hidden;
    margin-bottom: 43px;
}

.nmore {
    display: inline-block;
    width: 212px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem;
    color: #fff;
    background: #666666;
}

.nmore:hover {
    background: #45b2ec;
}

.np1:hover {
    color: #45b2ec;
}

.np2:hover {
    color: #45b2ec;
}

.news1 .ms_ye {
    margin-top: 75px;
}

@media screen and (max-width: 1219px) {
    .swp {
        margin-right: 30px;
        width: 400px;
    }

    .np1 {
        font-size: 20px;
        font-size: 2rem;
    }

    .nnr {
        padding-top: 8px;
    }

    .ntime {
        margin-bottom: 15px;
    }

    .np2 {
        margin-bottom: 20px;
    }

    .news1 .ms_ye {
        margin-top: 45px;
    }
}

@media screen and (max-width: 999px) {
    .swp {
        width: 330px;
    }

    .np2 {
        height: 84px;
    }

    .nmore {
        width: 140px;
        height: 40px;
        line-height: 40px;
    }
}

@media screen and (max-width: 767px) {
    .swp {
        float: none;
        text-align: center;
        width: auto;
        margin-right: 0;
    }

    .swp img {
        display: inline;
    }

    .nnr {
        padding-top: 20px;
        text-align: center;
    }

    .np1 {
        font-size: 16px;
        font-size: 1.6rem;
    }

    .np2 {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .ntime {
        font-size: 14px;
        font-size: 1.4rem;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .nbox {
        padding-bottom: 35px;
    }
}

/***************  news2  ****************/

.xwxbt {
    font-size: 24px;
    font-size: 2.4rem;
    color: #333333;
    line-height: 30px;
    text-align: center;
}

.xwsjsjj {
    line-height: 26px;
    text-align: center;
    margin-bottom: 20px
}

.xwsjsjj .span {
    display: inline-block;
    color: #666666;
    padding-right: 30px;
}

.xwsjsjj .span i {
    color: #45b2ec;
    font-size: 22px;
    font-size: 2.2rem;
    margin-right: 2px;
    vertical-align: middle;
}

.nshare {
    display: inline-block;
}

.nshare1 {
    color: #45b2ec;
    display: inline-block;
    position: relative;
    padding-right: 5px;
    font-size: 16px;
    font-size: 1.6rem;
}

.nshare2 {
    display: inline-block;
    vertical-align: middle;
}

.nex {
    color: #666666;
    line-height: 28px;
    padding-top: 33px;
    margin-bottom: 60px;
    font-size: 16px;
    font-size: 1.6rem;
}

.nex p, .nex li, .nex div, .nex span, .nex b {
    color: #666666;
}

.nex a {
    color: #45b2ec;
}

.nex img, .nex iframe {
    max-width: 100%;
}

.xwsx {
    color: #333333;
    line-height: 26px;
    margin-bottom: 12px;
}

.xwsx span {
    color: #888888;
    display: inline-block;
    margin-right: 10px;
    text-transform: uppercase;
}

.xwsx span i {
    color: #45b2ec;
    font-size: 26px;
    font-size: 2.6rem;
    vertical-align: middle;
    margin-right: 10px;
}

.xwsx a {
    color: #333;
}

.xwsx a:hover {
    color: #45b2ec;
}

.xwsx a.none:hover {
    color: #333;
}

.hotpart {
    margin-top: 15px;
}

.hotbt {
    text-align: center;
    font-size: 34px;
    font-size: 3.4rem;
    font-family: 'RobotoBold';
    margin-bottom: 33px;
}

.hotbt a:hover {
    color: #45b2ec;
}

.hotbox {
    width: 388px;
    float: left;
    margin-left: 18px;
    text-align: center;
    margin-bottom: 20px
}

.hottu {
    display: block;
    border: 1px solid #cfcfcf;
}

.hottu img {
    display: block;
    width: 100%;
    max-width: 516px;
    max-height: 387px;
}

.hotp1 {
    display: block;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 9px;
    margin-bottom: 8px;
}

.hotp2 {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    color: #666666;
    line-height: 22px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.hotp1:hover {
    color: #45b2ec;
}

.hotp2:hover {
    color: #45b2ec;
}

@media screen and (max-width: 1219px) {
    .hotbox {
        width: 314px;
    }
}

@media screen and (max-width: 999px) {
    .hotbox {
        width: 31.333%;
        margin: 0 1%;
    }

    .hotp1 {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 767px) {
    .xwxbt {
        font-size: 20px;
        font-size: 2rem;
    }

    .nex {
        margin-bottom: 40px;
        font-size: 14px;
        font-size: 1.4rem;
    }

    .xwsjsjj .span {
        padding-right: 10px;
        margin-bottom: 10px;
    }

    .hotbt {
        font-size: 26px;
        font-size: 2.6rem;
    }

    .hotp2 {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 600px) {
    .hotbox {
        width: 48%;
        margin-bottom: 30px;
    }

    .hotp1 {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

/**********  contact  **********/

.contact {
    padding-bottom: 0;
}

.lxlist li {
    text-align: center;
    font-family: 'RobotoBold';
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
    margin-bottom: 24px;
}

.contact .aform {
    padding-top: 115px;
}

.lxlist li a:hover {
    color: #45b2ec;
}

@media screen and (max-width: 1219px) {
    .contact .aform {
        padding-top: 70px;
    }
}

@media screen and (max-width: 999px) {
    .contact .aform {
        padding-top: 50px;
    }
}

@media screen and (max-width: 767px) {
    .contact .aform {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .lxlist li {
        margin-bottom: 10px;
    }
}

/*

font-family: 'RobotoRegular';

font-family: 'RobotoBold';

font-family: 'Raleway-Bold';

*/

/***********  xiala  ***********/

.yiji {
    position: absolute;
    z-index: 9999;
    width: 220px;
    background: url(../images/yijibg.png);
    top: -9999999px;
    left: 50%;
    margin-left: -98px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.yiji li {
    position: relative;
}

.yiji li a {
    display: block;
    color: #333;
    line-height: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 16px;
    font-size: 1.6rem;
}

.yiji li:hover > a {
    color: #45b2ec;
}

.erji, .sanji {
    position: absolute;
    left: 100%;
    top: -999999px;
    padding-left: 3px;
}

.erji ul, .sanji ul {
    width: 220px;
    background: url(../images/yijibg.png);
    padding-top: 10px;
    padding-bottom: 10px;
}

.navlist > li:hover .yiji {
    top: 100%;
}

.yiji > li:hover .erji {
    top: -10px;
}

.erji li:hover .sanji {
    top: -10px;
}

@media screen and (max-width: 999px) {
    .yiji {
        display: none;
    }
}

.ce {
    position: fixed;
    right: 0px;
    top: 30%;
    width: 69px;
    z-index: 9999999999;
}

.ce li {
    height: 69px;
    margin-bottom: 2px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    border-radius: 5px;
    border-radius: 10px;
    box-shadow: -2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}

.ce li a {
    display: block;
    height: 53px;
}

@media screen and (max-width: 767px) {
    .link {
        padding-bottom: 10px;
    }
}

.hdtop {
    position: fixed;
    right: 90px;
    bottom: -100px;
    -webkit-transition: 1s;
    -o-transition: 1s;
    -moz-transition: 1s;
    transition: 1s;
    cursor: pointer;
    z-index: 99999;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    border-radius: 50%;
    background: #45b2ec;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.hdtop i {
    color: #fff;
}
@media screen and (max-width: 767px) {
    .hdtop {
        right: 10px;}
}
/*********************fangdaxiaoguo**********************/

#baguetteBox-overlay {
    display: none;
    opacity: 0;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #222;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: opacity .5s ease;
    -o-transition: opacity .5s ease;
    -moz-transition: opacity .5s ease;
    transition: opacity .5s ease;
    z-index: 99999999999999999999999999999999999999;
}

#baguetteBox-overlay.visible {
    opacity: 1;
}

#baguetteBox-overlay .full-image {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}

#baguetteBox-overlay .full-image figure {
    display: inline;
    margin: 0;
    height: 100%;
}

#baguetteBox-overlay .full-image img {
    display: inline-block;
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

#baguetteBox-overlay .full-image figcaption {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    line-height: 1.8;
    color: #ccc;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.6);
    font-family: Verdana, Geneva, sans-serif;
}

#baguetteBox-overlay .full-image:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px;
}

#baguetteBox-slider {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    white-space: nowrap;
    -webkit-transition: left .4s ease, -webkit-transform .4s ease;
    transition: left .4s ease, -moz-transform .4s ease;
    transition: left .4s ease, -webkit-transform .4s ease;
    -o-transition: left .4s ease, -o-transform .4s ease;
    -moz-transition: left .4s ease, transform .4s ease, -moz-transform .4s ease;
    transition: left .4s ease, transform .4s ease;
    transition: left .4s ease, transform .4s ease, -webkit-transform .4s ease, -moz-transform .4s ease, -o-transform .4s ease;
}

#baguetteBox-slider.bounce-from-right {
    -webkit-animation: bounceFromRight .4s ease-out;
    -moz-animation: bounceFromRight .4s ease-out;
    animation: bounceFromRight .4s ease-out;
}

#baguetteBox-slider.bounce-from-left {
    -webkit-animation: bounceFromLeft .4s ease-out;
    -moz-animation: bounceFromLeft .4s ease-out;
    animation: bounceFromLeft .4s ease-out;
}

.baguetteBox-button#next-button, .baguetteBox-button#previous-button {
    top: 50%;
    top: -moz-calc(50% - 30px);
    top: calc(50% - 30px);
    width: 44px;
    height: 60px;
}

.baguetteBox-button {
    position: absolute;
    cursor: pointer;
    outline: 0;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 15%;
    background-color: #323232;
    background-color: rgba(50, 50, 50, 0.5);
    color: #ddd;
    font: 1.6em sans-serif;
    -webkit-transition: background-color .4s ease;
    -o-transition: background-color .4s ease;
    -moz-transition: background-color .4s ease;
    transition: background-color .4s ease;
}

.baguetteBox-button:hover {
    background-color: rgba(50, 50, 50, 0.9);
}

.baguetteBox-button#next-button {
    right: 2%;
}

.baguetteBox-button#previous-button {
    left: 2%;
}

.baguetteBox-button#close-button {
    top: 20px;
    right: 2%;
    right: -moz-calc(2% + 6px);
    right: calc(2% + 6px);
    width: 30px;
    height: 30px;
}

.baguetteBox-button svg {
    position: absolute;
    left: 0;
    top: 0;
}

.spinner {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: bounce 2s infinite ease-in-out;
    -moz-animation: bounce 2s infinite ease-in-out;
    animation: bounce 2s infinite ease-in-out;
}

.double-bounce2 {
    -webkit-animation-delay: -1s;
    -moz-animation-delay: -1s;
    animation-delay: -1s;
}

@-webkit-keyframes bounceFromRight {
    0% {
        margin-left: 0;
    }
    50% {
        margin-left: -30px;
    }
    100% {
        margin-left: 0;
    }
}

@-moz-keyframes bounceFromRight {
    0% {
        margin-left: 0;
    }
    50% {
        margin-left: -30px;
    }
    100% {
        margin-left: 0;
    }
}

@keyframes bounceFromRight {
    0% {
        margin-left: 0;
    }
    50% {
        margin-left: -30px;
    }
    100% {
        margin-left: 0;
    }
}

@-webkit-keyframes bounceFromLeft {
    0% {
        margin-left: 0;
    }
    50% {
        margin-left: 30px;
    }
    100% {
        margin-left: 0;
    }
}

@-moz-keyframes bounceFromLeft {
    0% {
        margin-left: 0;
    }
    50% {
        margin-left: 30px;
    }
    100% {
        margin-left: 0;
    }
}

@keyframes bounceFromLeft {
    0% {
        margin-left: 0;
    }
    50% {
        margin-left: 30px;
    }
    100% {
        margin-left: 0;
    }
}

@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes bounce {
    0%, 100% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 100% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@font-face {
    font-family: 'RobotoRegular';
    font-display: swap;
    src: url("../fonts/RobotoRegular.eot");
    src: url("../fonts/RobotoRegular.eot") format("embedded-opentype"), url("../fonts/RobotoRegular.woff2") format("woff2"), url("../fonts/RobotoRegular.woff") format("woff"), url("../fonts/RobotoRegular.ttf") format("truetype"), url("../fonts/RobotoRegular.svg#RobotoRegular") format("svg");
}

@font-face {
    font-family: 'RobotoBold';
    font-display: swap;
    src: url("../fonts/RobotoBold.eot");
    src: url("../fonts/RobotoBold.eot") format("embedded-opentype"), url("../fonts/RobotoBold.woff2") format("woff2"), url("../fonts/RobotoBold.woff") format("woff"), url("../fonts/RobotoBold.ttf") format("truetype"), url("../fonts/RobotoBold.svg#RobotoBold") format("svg");
}

@font-face {
    font-family: 'Raleway-Bold';
    font-display: swap;
    src: url("../fonts/Raleway-Bold.eot");
    src: url("../fonts/Raleway-Bold.eot") format("embedded-opentype"), url("../fonts/Raleway-Bold.woff2") format("woff2"), url("../fonts/Raleway-Bold.woff") format("woff"), url("../fonts/Raleway-Bold.ttf") format("truetype"), url("../fonts/Raleway-Bold.svg#Raleway-Bold") format("svg");
}

/*# sourceMappingURL=index.css.map */

.hongsebj {
    color: #45b2ec !important
}

.zdingyip {
    padding-bottom: 20px
}

.zdingyip p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 30px;
}

.zdingyip p.a1p1 {
    text-align: center;
    font-size: 28px;
    font-size: 2.8rem;
    color: #45b2ec;
    font-family: 'RobotoBold';
    margin-bottom: 23px;
}

.zdingyip h2 {
    font-family: Arial, Helvetica, sans-serif
}

.zdingyip p strong {
    color: #333
}

.zdingyip p img, .zdingyip img {
    max-width: 100%
}

.zdingyip p a {
    color: #45b2ec
}

.zdingyip p a:hover {
    color: #333
}

.gaodeditu .iframe {
    overflow: scroll
}

.listcart a {
    background: #666666;
    display: inline-block;
    height: 34px;
    min-width: 200px;
    line-height: 34px;
    cursor: pointer;
    border: none;
    overflow: hidden;
    color: #fff;
    cursor: pointer;
    border: 1px solid #666666;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    margin-left: 10px;
}

.listcart a:hover {
    border: #45b2ec solid 1px;
    background: #45b2ec;
    color: #fff !important;
}

@media screen and (max-width: 999px) {
    .listcart a {
        margin-left: 2.5%;
        margin-right: 2.5%;
        padding-left: 0px;
        padding-right: 0px;
        float: none;
    }

    .listcart {
        width: 100%;
        margin-top: 50px;
    }

    .zdingyip p.a1p1 {
        font-size: 20px;
        font-size: 2rem;
    }
}

@media screen and (max-width: 500px) {
    .listcart a {
        width: 95% !important;
        float: none;
        overflow: hidden;
        margin-bottom: 1rem;
        margin-top: 1rem
    }

    .zdingyip p.a1p1 {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.xunpanc {
    margin-top: 25px;
    margin-bottom: 14px;
}

.xunpanc table {
    border: 1px solid #45b2ec;
}

.xunpanc table tr:first-child td {
    height: 40px;
    color: #fff !important;
    background-color: #45b2ec;
}

.xunpanc table tr .td1 {
    width: 50%;
}

.xunpanc table tr .td2 {
    width: 30%;
}

.xunpanc table tr .td3 {
    width: 20%;
}

.xunpanc table tr td {
    padding: 11px;
    border-top: 1px solid #45b2ec;
    border-bottom: 1px solid #45b2ec;
}

.xunpanc table tr .td2 {
    font-size: 0;
    line-height: 0;
}

.dddu {
    line-height: 25px;
    font-size: 14px;
    font-size: 1.4rem
}

.xunpanc a:hover {
    color: #45b2ec
}

.at-resp-share-element .at4-share-count-container {
    text-decoration: none;
    float: right;
    padding-right: 15px;
    line-height: 25px !important;
}

.at-resp-share-element .at-icon {
    width: 24px !important;
    height: 24px !important;
}

.at-style-responsive .at-share-btn {
    padding: 0 !important;
    border-radius: 2px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
    width: 24px !important;
    height: 24px !important;
}

.at-resp-share-element .at-share-btn {
    margin-bottom: 0 !important;
    margin-right: 3px !important;
}

.at-resp-share-element .at-icon {
    width: 24px !important;
    height: 24px !important;
}

.at-style-responsive .at-share-btn {
    padding: 0 !important;
    border-radius: 2px !important;
}

.at-resp-share-element .at-share-btn .at-icon-wrapper {
    width: 24px !important;
    height: 24px !important;
}

.at-resp-share-element .at-share-btn {
    margin-bottom: 0 !important;
    margin-right: 3px !important;
}


::selection {
    color: #fff;
    background: #45b2ec;
}


#baguetteBox-overlay {
    display: none;
    opacity: 0;
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #222;
    background-color: rgba(0, 0, 0, .8);
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
    z-index: 99999999999999999999999999999999999999;
}

#baguetteBox-overlay.visible {
    opacity: 1
}

#baguetteBox-overlay .full-image {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
}

#baguetteBox-overlay .full-image figure {
    display: inline;
    margin: 0;
    height: 100%
}

#baguetteBox-overlay .full-image img {
    display: inline-block;
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
}

#baguetteBox-overlay .full-image figcaption {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    line-height: 1.8;
    color: #ccc;
    background-color: #000;
    background-color: rgba(0, 0, 0, .6);
    font-family: Verdana, Geneva, sans-serif;
}

#baguetteBox-overlay .full-image:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px
}

#baguetteBox-slider {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    white-space: nowrap;
    -webkit-transition: left .4s ease, -webkit-transform .4s ease;
    transition: left .4s ease, -moz-transform .4s ease;
    transition: left .4s ease, transform .4s ease
}

#baguetteBox-slider.bounce-from-right {
    -webkit-animation: bounceFromRight .4s ease-out;
    animation: bounceFromRight .4s ease-out
}

#baguetteBox-slider.bounce-from-left {
    -webkit-animation: bounceFromLeft .4s ease-out;
    animation: bounceFromLeft .4s ease-out
}

.baguetteBox-button#next-button, .baguetteBox-button#previous-button {
    top: 50%;
    top: calc(50% - 30px);
    width: 44px;
    height: 60px
}

.baguetteBox-button {
    position: absolute;
    cursor: pointer;
    outline: 0;
    padding: 0;
    margin: 0;
    border: 0;
    -moz-border-radius: 15%;
    border-radius: 15%;
    background-color: #323232;
    background-color: rgba(50, 50, 50, .5);
    color: #ddd;
    font: 1.6em sans-serif;
    -webkit-transition: background-color .4s ease;
    transition: background-color .4s ease;
}

.baguetteBox-button:hover {
    background-color: rgba(50, 50, 50, .9)
}

.baguetteBox-button#next-button {
    right: 2%
}

.baguetteBox-button#previous-button {
    left: 2%
}

.baguetteBox-button#close-button {
    top: 20px;
    right: 2%;
    right: calc(2% + 6px);
    width: 30px;
    height: 30px
}

.baguetteBox-button svg {
    position: absolute;
    left: 0;
    top: 0
}

.spinner {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: bounce 2s infinite ease-in-out;
    animation: bounce 2s infinite ease-in-out
}

.double-bounce2 {
    -webkit-animation-delay: -1s;
    animation-delay: -1s
}

@-webkit-keyframes bounceFromRight {
    0% {
        margin-left: 0
    }
    50% {
        margin-left: -30px
    }
    100% {
        margin-left: 0
    }
}

@keyframes bounceFromRight {
    0% {
        margin-left: 0
    }
    50% {
        margin-left: -30px
    }
    100% {
        margin-left: 0
    }
}

@-webkit-keyframes bounceFromLeft {
    0% {
        margin-left: 0
    }
    50% {
        margin-left: 30px
    }
    100% {
        margin-left: 0
    }
}

@keyframes bounceFromLeft {
    0% {
        margin-left: 0
    }
    50% {
        margin-left: 30px
    }
    100% {
        margin-left: 0
    }
}

@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes bounce {
    0%, 100% {
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        transform: scale(0)
    }
    50% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        transform: scale(1)
    }
}

/*  main6  */
.main6 {
    padding-bottom: 35px;
    padding-top: 50px;
}

.main6 .m2a {
    text-align: center;
}

.m6n {
    font-size: 0px;
    padding-top: 20px;
}

.m6n:after {
    content: "";
    clear: both;
    display: block;
}

.m6lie {
    width: 22.66%;
    display: inline-block;
    vertical-align: top;
    *float: left;
    margin-left: 2.78%;
    margin-top: 25px;
}

.m6tu {
    display: block;
    padding-bottom: 100%;
    position: relative;
}

.m6tu img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.m6zi {
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
    line-height: 30px;
    margin-top: 11px;
}

.main6 a:hover {
    color: #45b2ec;
}

@media screen and (max-width: 999px) {
    .main6 {
        padding-bottom: 35px;
    }

    .m6zi {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 24px;
    }
}

@media screen and (max-width: 669px) {
    .main6 {
        padding-top: 33px;
        padding-bottom: 35px;
    }

    .m6lie {
        width: 48%;
        margin-left: 1% !important;
        margin-right: 1%;
    }

    .m6zi {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 22px;
        margin-top: 6px;
    }
}

/*  main7  */
.main7 {
    padding-top: 50px;
    padding-bottom: 60px;
}

.m7n {
    margin-top: 20px;
}

.m7lie {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 40px;
    padding-bottom: 32px;
    margin-top: 30px;
}

.m7a {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
    font-weight: bold;
    position: relative;
    padding-left: 41px;
}

.m7a a {
    display: block;
}

.m7a em {
    font-style: normal;
    font-size: 26px;
    font-size: 2.6rem;
    position: absolute;
    left: 0px;
    top: 0px;
}

.m7p {
    color: #666666;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 32px;
    margin-top: 7px;
}

.m7p p {
    color: #666666;
    position: relative;
    padding-left: 41px;
}

.m7p p a {
    color: #666;
    display: block;
}

.m7p p strong {
    font-style: normal;
    font-size: 26px;
    font-size: 2.6rem;
    position: absolute;
    left: 0px;
    top: -3px;
    color: #333;
}

.m7n a:hover {
    color: #45b2ec;
}

.main8 {
    padding-top: 30px;
    padding-bottom: 50px;
}

.m8n {
    padding-top: 50px;
}

@media screen and (max-width: 999px) {
    .main7 {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .m7lie {
        padding: 20px;
        margin-top: 20px;
    }

    .m7a {
        font-size: 16px;
        font-size: 1.6rem;
        padding-left: 35px;
    }

    .m7a em {
        font-size: 20px;
        font-size: 2rem;
    }

    .m7p {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 26px;
        margin-top: 7px;
    }

    .m7p p {
        padding-left: 35px;
    }

    .m7p p strong {
        font-size: 20px;
        font-size: 2rem;
    }

    .main8 {
        padding-top: 20px;
        padding-bottom: 30px;
    }

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

@media screen and (max-width: 767px) {
    .main7 {
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .m7lie {
        padding: 20px;
        margin-top: 20px;
    }

    .m7a {
        font-size: 14px;
        font-size: 1.4rem;
        padding-left: 30px;
    }

    .m7a em {
        font-size: 18px;
        font-size: 1.8rem;
    }

    .m7p {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 22px;
        margin-top: 7px;
    }

    .m7p p {
        padding-left: 30px;
    }

    .m7p p strong {
        font-size: 18px;
        font-size: 1.8rem;
    }
}


.main12 {
}

.main12 .m1tu {
    float: right;
}

.main12 .m1zi {
    float: left;
}

.m1tun {
    position: relative;
}

.m1tun iframe, .m1tun video {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}


.attribute {
    font-size: 16px;
    margin-top: 50px;
}

.attribute .box {
    margin-top: 20px;
}

.attribute .name span {
    display: inline-block;
    color: #333;
    transition: 0.5s;
}

.attribute .name {
    line-height: 36px;
    padding: 10px;
    padding-right: 30px;
    background: #eaeaea;
    box-sizing: border-box;
    cursor: pointer;
    color: #333;
    margin-bottom: 5px;
    position: relative;
    transition: 0.5s;
}

.attribute .name i {
    color: #999999;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -10px;
    line-height: 20px;
    font-size: 12px;
    font-size: 1.2rem;
    transition: 0.5s;
}

.attribute .name.active {
    background: #45b2ec;
}

.attribute .name.active span {
    color: #fff;
}

.attribute .name.active i {
    transform: rotate(180deg);
    color: #fff;
}

.attribute .item-box {
    box-sizing: border-box; /*max-height: 180px;overflow-y: auto;*/
    display: none;
    cursor: pointer;
}

.attribute .item-box label {
    display: block;
    cursor: pointer;
}

.attribute .item-box > div {
    color: #666f66;
    background: #eaeaea;
    padding: 20px;
    margin-bottom: 5px;
    position: relative;
}

.attribute .item-box p input {
}

.attribute .item-box div span {
    overflow-y: hidden;
    display: inline-block;
    vertical-align: middle;
    max-height: 24px;
    font-size: 16px;
    font-size: 1.6rem;
    color: #1f1e19;
}

.attribute .check-box-div {
    position: absolute !important;
    right: 20px;
    top: 50%;
    transform: translateY(-50%)
}

.attribute .check-box-div .icon {
    font-size: 18px
}

.attribute .item-box.active {
    display: block
}


/********************************************  video  ***********************************************/
.vimain {
    padding-bottom: 90px;
    padding-top: 70px;
}

.vilie {
    position: relative;
    background: #fff;
    border: solid 1px #e5e5e5;
    padding: 28px 40px;
    min-height: 327px;
    margin-top: 30px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.vitu2 {
    display: block;
    width: 375px;
    position: absolute;
    left: 40px;
    top: 28px;
    cursor: pointer;
}

.vitu2 img {
    width: 100%;
}

.vitu2 iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

.vizi {
    margin-left: 435px;
    line-height: 271px;
}

.vizin {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.via {
    display: block;
    font-size: 26px;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 32px;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    overflow: hidden;
}

.vip {
    display: block;
    color: #666666;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
    color: #666666;
    max-height: 120px;
    overflow: hidden;
    margin-top: 20px;
}

.vip p {
    color: #666;
}

.tankaung {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: #000;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9999999999
}

/*.tankaungn{ position:fixed; left:50%; top:0px; transform:translateX(-50%); width:50%; height:100%; overflow:auto;}
.tankaungn2{position:fixed; top:50%; transform:translateY(-50%); left:0px; width:100%; padding-bottom:75%;height: 0; max-height:100%; background:#fff;}*/
.tankaungn2 {
    position: fixed;
    left: 5%;
    top: 5%;
    right: 5%;
    bottom: 5%;
}

.tankaungn2 iframe, .tankaungn2 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.tankaungn2 iframe body {
    margin: 0px !important;
}

.famain {
    padding-top: 70px;
    padding-bottom: 90px;
}

@media screen and (max-width: 999px) {
    .famain {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .vimain {
        padding-bottom: 40px;
        padding-top: 30px;
    }

    .vilie {
        border: none;
        background: none;
        min-height: 109px;
        padding: 0px;
    }

    .vitu2 {
        left: 0px;
        top: 0px;
        width: 150px;
    }

    .vizi {
        margin-left: 160px;
        line-height: none;
    }

    .vizin {
        display: block;
    }

    .via {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 26px;
    }

    .vip {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 24px;
        max-height: 72px;
        overflow: hidden;
        margin-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    .vilie {
        min-height: 87px;
    }

    .vitu2 {
        width: 120px;
    }

    .vizi {
        margin-left: 130px;
    }

    .via {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 22px;
    }

    .vip {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 22px;
        max-height: 44px;
    }

    .tankaungn2 {
        position: fixed;
        left: 5%;
        top: 15%;
        right: 5%;
        bottom: 15%;
    }
}

/********************************************  certificate  ***********************************************/
.cemain {
    padding-top: 30px;
    padding-bottom: 90px;
}

.cemain .m6lie {
    width: 22.7%;
    display: inline-block;
    vertical-align: top;
    margin-left: 3.066%;
    margin-top: 20px;
}

.m6fu {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: #000;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: 0.5s;
}

.m6fu i {
    display: block;
    position: absolute;
    color: #ffffff;
    width: 30px;
    line-height: 30px;
    left: 50%;
    top: 50%;
    margin-left: -15px;
    margin-top: -15px;
    font-size: 24px;
}

.m6lie:hover .m6fu {
    opacity: 1;
}

@media screen and (max-width: 999px) {
    .cemain {
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .m6fu {
        display: none
    }

    .cemain .m6lie {
        width: 31.33%;
        margin-left: 1% !important;
        margin-right: 1%;
    }

    .cemain .m6zi {
        color: #333
    }
}

@media screen and (max-width: 767px) {
    .cemain .m6lie {
        width: 31.33%;
    }
}

@media screen and (max-width: 499px) {
    .cemain .m6lie {
        width: 48%;
        margin-top: 20px;
    }
}

.head .wp {
    position: relative;
}


.hop a {
    display: block;
    text-align: left;
    color: #666666;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 21px;
    height: 42px;
    overflow: hidden;
    margin-top: 8px;
}

.horiqi {
    display: block;
    text-align: left;
    font-size: 12px;
    font-size: 1.2rem;
    color: #666;
    margin-top: 5px;
}

/*  product2  */
.prat {
    margin-top: 53px;
}

.atbiao {
    color: #202020;
    font-size: 20px;
    font-size: 2rem;
    line-height: 30px;
    text-transform: uppercase;
}

.atn {
    margin-top: 8px;
}

.atsp {
    display: inline-block;
    color: #000000;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
}

.atn label {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    color: #999999;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
    cursor: pointer;
}

.atn span {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    color: #999999;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px
}


/*  news2  */
.nefor {
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

.nefor p {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    margin: 0 10px;
}

.nefor p strong {
}

.nefor p em {
    color: #999
}

/*  about  */
.attachment {
    padding-left: 18px;
    margin-bottom: 20px;
}

.attachment.xing2 {
    background-position: left 36px;
}

.attachment span {
    float: left;
}

.attachment #file-name {
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.attachment .file-group {
    float: left;
    margin: 20px 0 0 0px;
    width: 20%;
    height: 35px;
    position: relative;
    overflow: hidden;
}

.attachment .file-group .file-btn {
    width: 100%;
    height: 100%;
    background-color: #45b2ec;
    border: 1px solid #45b2ec;
    color: #FFFFFF;
    font-size: 16px;
    font-size: 1.6rem;
    transition: 0.5s;
}

.attachment .file-group .file-single {
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 111;
}

.attachment .file-group .file {
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 111;
}

.attachment .file-name-p {
    height: 55px;
    display: flex;
    align-items: flex-end;
    line-height: 34px
}

.attachment .file-name-p i {
    cursor: pointer;
}

.attachment .file-name-p span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.attachment .file-group:hover .file-btn {
    background-color: #333;
    border-color: #333;
}


@media screen and (max-width: 999px) {
    .attachment .file-group {
        width: 33%;
    }
}

.ynav {
    position: absolute;
    right: 0px;
    top: 8px;
    padding-bottom: 10px;
    padding-left: 10px;
    z-index: 9999;
    cursor: pointer;
}

.yvnava {
    width: 32px;
    height: 28px;
    background: #145c99;
    position: relative;
    border-radius: 5px;
}

.ysp1 {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 6px;
    top: 50%;
    margin-top: -8px;
}

.ysp2 {
    display: block;
    width: 13px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    position: absolute;
    left: 6px;
    top: 50%;
    margin-top: -1px;
}

.ysp3 {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 6px;
    top: 50%;
    margin-top: 6px;
}

.yyiji {
    position: absolute;
    right: 0px;
    top: 34px;
    width: 200px;
    border: solid 1px #d9d9d9;
    border-bottom: none;
    background: #fff;
    display: none
}

.yyiji li {
    position: relative;
}

.yyiji li a {
    display: block;
    border-bottom: solid 1px #d9d9d9;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 26px;
    padding: 6px 9px;
    text-transform: uppercase;
}

.yyiji li a:hover {
    background: #1367af;
    color: #fff;
}

.yerji {
    position: absolute;
    right: 100%;
    top: 0px;
    width: 200px;
    border: solid 1px #d9d9d9;
    border-bottom: none;
    background: #fff;
    display: none
}

.ynav:hover .yyiji {
    display: block;
}

.yyiji li:hover .yerji {
    display: block;
}

.ynav .dangqiandao a {
    background: #1367af;
    color: #fff !important;
}

.honen {
    padding-top: 50px;
}

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

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

.m1tu {
    position: relative;
}

.m1tu iframe, .m1tu video {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

@font-face {
    font-family: "iconfont1";
    font-display: swap;
    src: url('../fonts/iconfont1.eot?t=1619417544190'); /* IE9 */
    src: url('../fonts/iconfont1.eot?t=1619417544190#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAASEAAsAAAAACMAAAAQ3AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCDBgqFKIQxATYCJAMMCwgABCAFhG0HOBt5B8iemryszIACygLwD0j43GHxUL/f7+zu/aiEjidCJJFIDEk0kZlOKOKpaapE0dDfz9dp788kbj1IDaUwF46wME8AbtSxS2uaErsqii2wQ9wUoHvIE1xZzgjW6Cb8lFpWz/P/z+W0+Tyw+S3L5W635qRNASYY2J6+QAIukIAlpYaxm8iDvEwAQyy5Q2uJ51cQxgBmBRAnzTIH4YQRo4IXOBpWwcYmQOuBiZMrsFsAzr3Pxx80gwOQmAVg4cbxTIThV8BHO3xqeUo5ZQAxnB3KNlDAEtBAbBc6t/iC5BIcz1L6qwv7MCDYUJHlZTzclrPgHx5ICEQfAOWIwJ3Tp4MisIQEP3bkURMXp+4LQu8A0dHLjDoUjeXPjD5+XPDoUf4T8NKFT5/Wn9XGPTWV7CTyV4oIQiATHN5NSTRm26YdJTt5O48TIpFYTIrlIH5EiPZ6KkxNKYrHE4lIUvy44P5jms9fJaVpiZbedcVlxw5UJN5lOn1wVJ0f/cPVieVkiJh87GMMl23n5YtOUtTOqwfPEsPFZSqTKZE/wp53/MmTOxQl2buQfMk0TUv5RaPJSKSTH6G3UR/Zs2MVLZUqtdssFRqKUgRK9tG7Ck44iMVy+RRhLgN4kAO0bv6ufde8rhVJl7GALtq1g7TG3Y4zfvxoxyFCETKiAN6jhoYGCihI/oI3V049DUgWLh4NKsB/YGe0IH5+72S81BhgZbUGGXcJP/pWdv0tas4gBiS+zr1SPZudH7pRyM5u8jGpHG1oTO1DytaOxRrEcazsP5rJMc1BWYD/p7AumJ4VXRfORLeFrKJ23dQzgKz1v0DCP2Y8vQE9CD25k3/v/8P1GOvb2xbZ3AhbI4VPbPd1Oto+8dXrgsDw7LDSrCfbbGcdI+MVAiWquW5oM5+2/9W6db/er+o0EELrJrq0wOoPDHxAdAee+NYM/4+Pfuz2tdFjcygBwlw39E1new7a5ZmaxpONNrE1vyB89IdqgE7tw90AaJvYwh/xHXj2Vr6r0g//y+EzAPC2f/SDF+y0wuapARhQiPff0FIAulqhSgFTNVOhEnfdZaajPQGPqipvvRqmvOmunb3H6cBBRpDYLKBw2DMb1x16+PyhD0cUDHGTtH2YsR4+qHEBLJjnADFwCDB6LgHOwG0mg/samChfgcUgcOApDOMD+RyjmRfXQ9yWRBQOY3OtbUnIso36lRck7wyOxSmPf0Nso0bQx9M7nVmQRWyIJb0DcrOvT8KGHtvERO46Mgwbu3psjYRttalv67S9vBqKnlSt7TQhKg5DOFtEhIROUDOBzSLR/lvRzPsvENmOgcMq2lrSNwizoQ6OfHjybsBcKK1GbZcyvNeerKnPliROa8DYTCiRtxMDJm2oq3ichgi2qpo6xB1tXkKvhqbK6vRq8wZiShfgkAoM4YgB3NPWSm0zEwzyBgYAAA==') format('woff2'),
    url('../fonts/iconfont1.woff?t=1619417544190') format('woff'),
    url('../fonts/iconfont1.ttf?t=1619417544190') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */ url('../fonts/iconfont1.svg?t=1619417544190#iconfont') format('svg'); /* iOS 4.1- */
}

.iconfont1 {
    font-family: "iconfont1" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-vk-circle:before {
    content: "\e923";
}

.icon-vk:before {
    content: "\e735";
}


.vtb {
    display: inline-block;
    vertical-align: top;
}

.ul-vtb {
    display: inline-block;
    width: calc(100% - 80px);
}

/*xun pan tijiao*/

.xunpanlb .table {
    margin-top: 30px;
    margin-bottom: 30px
}

.xunpanlb .table .thead {
    font-size: 0;
    letter-spacing: 0;
    background: #333
}

.xunpanlb .table .thead p {
    text-align: center;
    padding: 0 10px;
    font-size: 16px;
    line-height: 40px;
    width: 33.3333%;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    color: #fff
}

.xunpanlb .table .thead p:nth-child(2) {
    border-right: 1px solid #dcdcdc;
    border-left: 1px solid #dcdcdc;
}

.xunpanlb .table .tbody {
    font-size: 0;
    letter-spacing: 0;
}

.xunpanlb .table .tbody .tread {
    border: 1px solid #dcdcdc;
    border-top: 0;
}

.xunpanlb .table .tbody .tread .td {
    text-align: center;
    padding: 10px 10px;
    font-size: 16px;
    line-height: 40px;
    width: 33.3333%;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
}

.xunpanlb .table .tbody .tread .td:nth-child(2) {
    border-right: 1px solid #dcdcdc;
    border-left: 1px solid #dcdcdc;
}

.xunpanlb .table .tbody .td img {
    max-width: 110px;
}

.xunpanlb .table .tbody .td a {
    color: #666666;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    text-align: center
}

.xunpanlb .table .tbody .tread:nth-child(2n+1) {
    background-color: #f1f1f1;

}

.xunpanlb .table .tbody .td a:hover {
    color: #45b2ec;
}

@media screen and (max-width: 520px) {
    .xunpanlb .table {
        border-top: 1px solid #dcdcdc;
    }

    .xunpanlb .table .thead {
        display: none;
    }

    .xunpanlb .table .tbody .td {
        width: 100% !important;
    }

    .xunpanlb .table .tbody .tread .td:nth-child(2) {
        border: 0 !important;
    }
}

#chatBox .toolBox .chaticon.commit {
    color: #45b2ec !important;
}

#chatBox .chatTop {
    background-color: #45b2ec !important;
}

.chat {
    cursor: pointer;
    background-color: #45b2ec !important;
}

.disnone {
    display: none;
}

.icon-vk-circle {
    font-size: 4.9rem !important;
}


.prt {
    padding-bottom: 30px;
}

.prtp {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 28px;
    margin-top: 25px;
}

@media screen and (max-width: 999px) {
    .prt {
    }

    .prtp {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 24px;
        margin-top: 15px;
    }
}

.przhan {
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
}

.przhanh {
    height: auto !important;
}

.fuc {
    display: block;
    width: 100%;
    height: 80px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: -moz-linear-gradient(top, rgba(221, 221, 221, 0) 0%, rgba(221, 221, 221, 1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #000000), color-stop(100%, #ffffff));
    background: -webkit-linear-gradient(top, rgba(221, 221, 221, 0) 0%, rgba(221, 221, 221, 1) 100%);
    background: -o-linear-gradient(top, rgba(221, 221, 221, 0) 0%, rgba(221, 221, 221, 1) 100%);
    background: -ms-linear-gradient(top, rgba(221, 221, 221, 0) 0%, rgba(221, 221, 221, 1) 100%);
    background: linear-gradient(to bottom, rgba(221, 221, 221, 0) 0%, rgba(221, 221, 221, 1) 100%);
}

.zhankai {
    background: #ddd;
    height: 30px;
    position: relative;
    cursor: pointer;
    margin: 0 auto;
    margin-bottom: 20px
}

.zhankai i {
    display: block;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -14px;
    margin-top: -14px;
    transition: 0.5s;
}

.zhankaih i {
    transform: rotate(180deg)
}

.fuch {
    display: none !important;
}
.logo{
  width: 274px;
}
.cart-list .cart-operate .cart-delate{
    color: #45b2ec !important;
}


.tankaunga{ position:fixed; width:100%; height:100%; left:0px; top:0px; background:#000; background:rgba(0,0,0,0.5); display:none; z-index:9999999999}
.tankaunga:before{ content:"X"; position:absolute; width:30px; height:30px; line-height:30px; text-align:center; top:10px; right:10px; background:#fff; border-radius:50%; font-size:18px;}
.tankaungn2{position:fixed; left:5%; top:5%; right:5%; bottom:5%;}

.tankaungn2 iframe,.tankaungn2 video {  position: absolute; top:0; left: 0; width: 100%; height: 100%; border:none;}
.tankaungn2 iframe body{ margin:0px !important;}

@media screen and (max-width:767px) {
    .tankaungn2{position:fixed; left:5%; top:10%; right:5%; bottom:10%;}
}

.slide iframe{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.slide video {
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 101%;
    min-height: 100%;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    display: none \9;
    display: block \9\0;
}
@media screen and (max-width: 999px) { .slide .carousel-control { display: none; }
    .slide .slideItem {
        position: relative;
    }
    .slide video {
        object-position: inherit;
        object-fit: inherit;
        width: 100%;
        height: 100%;
        transform: translate(0, 0);
        left: 0;
        top: 0;
    }
}
.cart-list .cart-quantity .simulate-select{
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.vitu>div{position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: none;}
.vitu>div>a{position: absolute;
    top: 0;
    display: block;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border: none;}
.vitu img{display: block}
