@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

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

@-webkit-keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

@keyframes bounce {

    0%,
    100%,
    20%,
    50%,
    80% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

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

@-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: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

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

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }

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

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

@-webkit-keyframes shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

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

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
}

@keyframes shake {

    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

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

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px)
    }
}

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

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

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

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

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

    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg)
    }

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

    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg)
    }

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

    100% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0)
    }
}

.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: scale(1);
        transform: scale(1)
    }

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

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

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

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        -ms-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

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

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg)
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg)
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg)
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg)
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        -ms-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg)
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        -ms-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg)
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        -ms-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg)
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        -ms-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg)
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        -ms-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05)
    }

    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9)
    }

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

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

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px)
    }

    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }

    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px)
    }

    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px)
    }

    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px)
    }

    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

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

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

    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }

    25% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3)
    }
}

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

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

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

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

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

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

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

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

.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: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.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;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

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

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }
}

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

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

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

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

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

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }
}

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

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

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

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

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

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }
}

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

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

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

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

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

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

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

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

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

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

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

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

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

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

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

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

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0);
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0);
        -ms-transform: perspective(400px) rotateX(0);
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }
}

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

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0);
        -ms-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }
}

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

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0);
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0);
        -ms-transform: perspective(400px) rotateX(0);
        transform: perspective(400px) rotateX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

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

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0);
        -ms-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

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

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

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }

    80% {
        -webkit-transform: translateX(0) skewX(-15deg);
        transform: translateX(0) skewX(-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0) skewX(0);
        transform: translateX(0) skewX(0);
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        -ms-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }

    80% {
        -webkit-transform: translateX(0) skewX(-15deg);
        -ms-transform: translateX(0) skewX(-15deg);
        transform: translateX(0) skewX(-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0) skewX(0);
        -ms-transform: translateX(0) skewX(0);
        transform: translateX(0) skewX(0);
        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% {
        -webkit-transform: translateX(0) skewX(0);
        transform: translateX(0) skewX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0) skewX(0);
        -ms-transform: translateX(0) skewX(0);
        transform: translateX(0) skewX(0);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) 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 center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        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: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        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: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        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: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        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: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

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

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

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

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

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

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

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

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

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

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

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

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

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

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

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

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

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

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

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

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

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

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

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

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

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(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: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

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

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

    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        -ms-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: rotate(80deg);
        -ms-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

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

    100% {
        -webkit-transform: translateY(700px);
        -ms-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0
    }
}

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

@-webkit-keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }

    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(0);
        transform: translateX(0) rotate(0)
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(0);
        -ms-transform: translateX(0) rotate(0);
        transform: translateX(0) rotate(0)
    }
}

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

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(0);
        transform: translateX(0) rotate(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0) rotate(0);
        -ms-transform: translateX(0) rotate(0);
        transform: translateX(0) rotate(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        -ms-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg)
    }
}

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

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

    50% {
        opacity: 1
    }
}

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

    50% {
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }

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

    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

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

    to {
        opacity: 0
    }
}

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

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

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

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

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

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

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

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

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

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

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
    -webkit-transform-origin: left center;
    transform-origin: left center
}

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

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

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

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

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
    -webkit-transform-origin: right center;
    transform-origin: right center
}

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

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

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

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

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

article,
aside,
dd,
dialog,
dl,
dt,
figcaption,
figure,
footer,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
li,
main,
nav,
ol,
p,
pre,
section,
ul {
    margin: 0;
    padding: 0
}

body {
    margin: 0;
    color: #333;
    font-size: 14px;
    font-family: PingFang SC, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-variant: tabular-nums;
    line-height: 1.5;
    background-color: #fff;
    -webkit-font-feature-settings: "tnum";
    -moz-font-feature-settings: "tnum";
    font-feature-settings: "tnum";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

body,
html {
    width: 100%;
    height: 100%
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

li,
ol,
ul {
    list-style-type: none
}

input::-ms-clear,
input::-ms-reveal {
    display: none
}

input[type=number],
input[type=password],
input[type=text],
textarea {
    -webkit-appearance: none;
    -moz-appearance: textfield
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none
}

*,
::after,
::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

@-ms-viewport {
    width: device-width
}

[tabindex="-1"]:focus {
    outline: 0 !important
}

a {
    text-decoration: none;
    background-color: transparent;
    outline: 0;
    cursor: pointer;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    -moz-transition: color .3s;
    transition: color .3s;
    -webkit-text-decoration-skip: objects;
    color: #333
}

em,
i {
    font-style: normal
}

img {
    vertical-align: middle;
    border-style: none
}

svg:not(:root) {
    overflow: hidden
}

[role=button],
a,
area,
button,
input:not([type=range]),
label,
select,
summary,
textarea {
    -ms-touch-action: manipulation;
    touch-action: manipulation
}

table {
    border-collapse: collapse
}

th {
    text-align: inherit
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button;
    cursor: pointer
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    padding: 0;
    border-style: none
}

input[type=checkbox],
input[type=radio] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
    -webkit-appearance: listbox
}

textarea {
    overflow: auto;
    resize: vertical
}

[hidden] {
    display: none !important
}

button {
    outline: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

iframe {
    border: none
}

iframe::-webkit-scrollbar {
    width: 5px;
    background-color: #eee
}

iframe::-webkit-scrollbar-thumb {
    background-color: #ccc;
    -webkit-border-radius: 5px;
    border-radius: 5px
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #eee
}

::-webkit-scrollbar-thumb {
    background-color: #ccc;
    -webkit-border-radius: 5px;
    border-radius: 5px
}

button,
input,
option,
select {
    border: 1px solid #333;
    outline: 0
}

.clearfix {
    zoom: 1
}

.clearfix::after,
.clearfix:before {
    content: "";
    display: block
}

.clearfix:after {
    clear: both
}

.head-wrap {
    width: 100%;
    height: 80px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s
}

.head-wrap.active,
.head-wrap.fixed {
    background-color: #fff;
    -webkit-box-shadow: 0 3px 6px 1px rgba(0, 0, 0, .16);
    -moz-box-shadow: 0 3px 6px 1px rgba(0, 0, 0, .16);
    box-shadow: 0 3px 6px 1px rgba(0, 0, 0, .16)
}

.head-wrap.active .head-inner .logo-desc,
.head-wrap.fixed .head-inner .logo-desc {
    color: #333
}

.head-wrap.active .head-inner .menu-item a,
.head-wrap.fixed .head-inner .menu-item a,
.head-wrap.active .head-inner .menu-item p,
.head-wrap.fixed .head-inner .menu-item p {
    color: #333
}

.head-wrap.active .head-inner .menu-item a:hover,
.head-wrap.fixed .head-inner .menu-item a:hover {
    color: #00823b
}

.head-wrap.active .head-inner .menu-item .icon.user-icon,
.head-wrap.fixed .head-inner .menu-item .icon.user-icon {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/user_fixed.png)
}

.head-wrap.active .head-inner .menu-item .icon.msg-icon,
.head-wrap.fixed .head-inner .menu-item .icon.msg-icon {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/msg_fixed.png)
}

.head-wrap.active .head-inner .menu-item .icon.menu-icon,
.head-wrap.fixed .head-inner .menu-item .icon.menu-icon {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/menu_fixed.png)
}

.head-inner {
    width: 1188px;
    height: 80px;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.head-inner .head-l {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.head-inner .head-logo {
    margin-right: 10px;
    line-height: 1
}

.head-inner .head-logo img {
    width: 100px;
    height: 38px;
    vertical-align: middle
}

.head-inner .logo-desc {
    font-size: 12px
}

.head-inner .head-r {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.head-inner .menu-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.head-inner .menu-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.head-inner .menu-list.icon-menu-list .menu-item {
    padding: 0 15px
}

.head-inner .menu-item {
    display: inline-block;
    line-height: 1;
    font-size: 16px
}

.head-inner .menu-item>a:not(.icon) {
    display: inline-block;
    padding: 0 25px;
    height: 50px;
    line-height: 50px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #fff;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s
}

.head-inner .menu-item>a:not(.icon):hover {
    background-color: rgba(246, 250, 254, .8);
    color: #00823b
}

.head-inner .menu-item .icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    -webkit-transform: translateY(1px);
    -moz-transform: translateY(1px);
    -ms-transform: translateY(1px);
    -o-transform: translateY(1px);
    transform: translateY(1px);
    background-repeat: no-repeat;
    background-position: 0 0;
    -moz-background-size: cover;
    background-size: cover;
    position: relative
}

.head-inner .menu-item .icon .num {
    position: absolute;
    left: 16px;
    top: -2px;
    background-color: red;
    color: #fff;
    font-size: 12px;
    line-height: 14px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    padding: 0 3px
}

.head-inner .menu-item .icon.user-icon {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/user.png)
}

.head-inner .menu-item .icon.msg-icon {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/msg.png)
}

.head-inner .menu-item .icon.menu-icon {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/menu.png)
}

.head-inner .menu-item.hover-menu-item {
    position: relative
}

.head-inner .menu-item.hover-menu-item:hover .menu-hover-wrap {
    display: block
}

.head-inner .menu-item.hover-menu-item svg{
	fill: #fff;
}

.head-wrap.active .head-inner .menu-item.hover-menu-item svg{
    fill: #333;
}

.head-inner .trade-hover-wrap,.head-inner .lg-hover-wrap  {
    position: absolute;
    top: 50px;
    left: 50%;
    width: 220px;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 12px 0;
    background-color: #fff;
    -webkit-box-shadow: 0 0 6px 1px rgba(0, 0, 0, .16);
    -moz-box-shadow: 0 0 6px 1px rgba(0, 0, 0, .16);
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, .16);
    cursor: pointer;
    display: none
}

.head-inner .trade-hover-wrap::before,.head-inner .lg-hover-wrap::before {
    content: "";
    border-width: 10px;
    border-color: transparent transparent #fff transparent;
    border-style: dashed dashed solid dashed;
    position: absolute;
    left: 50%;
    top: -20px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}
.head-inner .trade-hover-wrap a{
	display: block;
    width: 220px;
    height: 30px;
    line-height: 30px;
    color: #333;
    text-align: right;
}

.head-inner .lg-hover-wrap a {
    display: block;
    width: 220px;
    height: 30px;
    line-height: 30px;
    color: #333;
    text-align: center;
}
.head-inner .trade-hover-wrap a span{
    color: #999;
    display: inline-block;
    width: 45%;
    float: right;
    text-align: left;
    padding-left: 5px;
}

.head-inner .trade-hover-wrap a:hover,
.head-inner .trade-hover-wrap a:hover span,
.head-inner .lg-hover-wrap a:hover {
    color: #2da84a;
    background-color: #f6fafe
}

.head-inner .lg-hover-wrap ,.head-inner .lg-hover-wrap a {
	width: 120px;
}

.head-inner .apps-hover-wrap {
    position: absolute;
    right: 0;
    top: 24px;
    display: none
}

.head-inner .menu-hover-con li {
    font-size: 14px
}

.head-inner .apps-con {
    width: 346px;
    padding: 26px;
    background: #fff;
    -webkit-box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, .1);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
    grid-gap: 5px
}

.head-inner .apps-con a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding: 5px 0;
    font-size: 14px;
    line-height: 20px;
    color: #666
}

.head-inner .apps-con a:hover {
    background-color: #f6fafe
}

.head-inner .apps-con a .app-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/uc_nav_spirit.png);
    background-repeat: no-repeat;
    -moz-background-size: 400px;
    background-size: 400px
}

.head-inner .apps-con a:nth-of-type(1) .app-icon {
    background-position: -207px -143px
}

.head-inner .apps-con a:nth-of-type(2) .app-icon {
    background-position: -15px -79px
}

.head-inner .apps-con a:nth-of-type(3) .app-icon {
    background-position: -207px -79px
}

.head-inner .apps-con a:nth-of-type(4) .app-icon {
    background-position: -207px -15px;
}

.head-inner .apps-con a:nth-of-type(5) .app-icon {
    background-position: -79px -79px
}

.head-inner .apps-con a:nth-of-type(6) .app-icon {
    background-position: -271px -79px;
}

.head-inner .apps-con a:nth-of-type(7) .app-icon {
    background-position: -207px -15px
}

.head-inner .apps-con a:nth-of-type(8) .app-icon {
    background-position: -15px -15px
}

.head-inner .apps-con a:nth-of-type(9) .app-icon {
    background-position: -143px -143px
}

.slide-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .08);
    display: none
}

.slide-menu .slide-inner {
    width: 80vw;
    height: 100vh;
    background-color: #fff;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s
}

.slide-menu .slide-logo {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    border-bottom: 1px solid #d8d4d4
}

.slide-menu .slide-menu-content {
    padding: 15px
}

.slide-menu .slide-menu-list {
    text-align: left
}

.slide-menu .slide-menu-list a {
    display: block;
    width: 100%;
    height: 40px;
    line-height: 40px
}

.slide-menu .second-menu-list {
    padding-left: 15px
}

.slide-menu .second-menu-list a {
    color: #717171
}

.foot-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(-75px);
    -moz-transform: translateY(-75px);
    -ms-transform: translateY(-75px);
    -o-transform: translateY(-75px);
    transform: translateY(-75px)
}

.foot-wrap.has-form {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0)
}

.foot-wrap .foot-t {
    width: 100%;
    height: 90px;
    background: url(http://img.ecerimg.com/image/static/pc_zh/mask.png) center top no-repeat;
    position: relative
}

.foot-wrap .foot-b {
    width: 100%;
    background-color: #1e261f;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.foot-wrap .guide-wrap {
    width: 1200px;
    padding: 30px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.foot-wrap .guide-l {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.foot-wrap .guide-item {
    color: #fff
}

.foot-wrap .guide-item a {
    color: #fff
}

.foot-wrap .guide-item a:hover {
    color: #2da84a;
    text-decoration: none!important;
}

.foot-wrap .guide-item dt {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.foot-wrap .guide-item dd {
    font-size: 14px;
    line-height: 30px;
    display: -ms-inline-grid;
    display: inline-grid;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto
}

.foot-wrap .guide-item dd p {
    margin-right: 30px
}

.foot-wrap .guide-item dd p a:hover {
    text-decoration: underline;
    color: #2da84a
}

.foot-wrap .guide-item.contact-item dd {
    -ms-grid-columns: auto;
    grid-template-columns: auto
}

.foot-wrap .guide-r {
    width: 380px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

.foot-wrap .guide-r .code-col {
    font-size: 14px;
    line-height: 16px;
    margin-right: 20px
}

.foot-wrap .guide-r .code-col p {
    margin-right: 0
}

.foot-wrap .guide-r .code-col img {
    width: 120px;
    margin-bottom: 5px;
    border: 4px solid #fff
}

.foot-wrap .guide-r .code-col:last-child {
    margin-right: 0
}

.foot-wrap .copyright-wrap {
    width: 1200px;
    height: 62px;
    color: #9a9a9a;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.foot-wrap .copyright-wrap p:first-of-type {
    margin-right: 30px
}

.foot-wrap.m-foot-wrap {
    padding: 20px 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #9a9a9a;
    background-color: #1e261f;
    display: none
}

.foot-wrap.m-foot-wrap .foot-logo {
    margin-bottom: 15px
}

.foot-wrap.m-foot-wrap .foot-logo img {
    width: 90px;
    height: 35px
}

.foot-wrap.m-foot-wrap .contact-row {
    margin-bottom: 5px
}

.foot-wrap.m-foot-wrap .contact-row span {
    margin: 0 15px
}

.foot-wrap.m-foot-wrap .friend-links {
    margin-bottom: 15px
}

.foot-wrap.m-foot-wrap .friend-links a {
    display: inline-block;
    padding: 0 5px;
    color: #9a9a9a
}

.foot-wrap.m-foot-wrap .friend-links a:hover {
    color: #2da84a
}

.foot-wrap.m-foot-wrap .copyright-row {
    font-size: 12px;
    text-align: center
}

.foot-wrap.m-foot-wrap .copyright-row p:first-of-type {
    margin-bottom: 5px
}

.aside-wrap {
    position: fixed;
    top: 190px;
    right: 40px;
    z-index: 30
}

.aside-menu {
    -webkit-animation: fadeInRightBig;
    -moz-animation: fadeInRightBig;
    -o-animation: fadeInRightBig;
    animation: fadeInRightBig;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s
}

.aside-menu .menu-item {
    width: 80px;
    height: 80px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #333;
    margin-bottom: 5px;
    position: relative;
    background-color: rgba(0, 0, 0, .8);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s;
    cursor: pointer
}

.aside-menu .menu-item a:hover {
    color: #2da84a
}

.aside-menu .menu-item.item2:before,
.aside-menu .menu-item.item3:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 100%;
    background-color: transparent;
    position: absolute;
    left: -15px;
    top: 0;
    display: none
}

.aside-menu .menu-item.item2.active:before,
.aside-menu .menu-item.item3.active:before {
    display: block
}

.aside-menu .menu-item.item2.active .menu-hover,
.aside-menu .menu-item.item3.active .menu-hover {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.aside-menu .menu-item.item2 .menu-hover {
    padding: 0 15px;
    height: 78px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.aside-menu .menu-item.item2 .hover-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px
}

.aside-menu .menu-item.item2 .hover-row:last-of-type {
    margin-bottom: 0
}

.aside-menu .menu-item.item2 .hover-row .icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    background-position: 0 0;
    background-repeat: no-repeat
}

.aside-menu .menu-item.item2 .hover-row:nth-of-type(1) .icon {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/aside2_hover1.png)
}

.aside-menu .menu-item.item2 .hover-row:nth-of-type(2) .icon {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/aside2_hover2.png)
}

.aside-menu .menu-item.item3:hover .menu-hover {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.aside-menu .menu-item.item3:hover:before {
    display: block
}

.aside-menu .menu-item.item3 .menu-hover {
    padding: 10px 24px
}

.aside-menu .menu-item.item3 .hover-row {
    font-size: 12px;
    margin-right: 30px;
    text-align: center
}

.aside-menu .menu-item.item3 .hover-row:last-child {
    margin-right: 0
}

.aside-menu .menu-item.item3 .hover-row img {
    width: 120px;
    border: 1px dashed #666;
    vertical-align: top;
    margin-bottom: 7px
}

.aside-menu .menu-item.to-top {
    position: relative;
    margin-top: 14px;
    background-color: #2da84a
}

.aside-menu .menu-item.to-top:hover {
    background-color: #059246
}

.aside-menu .menu-item.to-top:hover:before {
    border-color: transparent transparent #059246 transparent
}

.aside-menu .menu-item.to-top:before {
    content: " ";
    display: inline-block;
    border-width: 16px;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #2da84a transparent;
    position: absolute;
    left: 50%;
    top: -25px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s
}

.aside-menu .menu-btn {
    width: 48px;
    height: 48px;
    background-position: center center;
    background-repeat: no-repeat;
    background-position: 0 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.aside-menu .menu-btn.btn1 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/aside1.png)
}

.aside-menu .menu-btn.btn2 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/aside2.png)
}

.aside-menu .menu-btn.btn3 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/aside3.png)
}

.aside-menu .menu-btn.btn4 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/aside4.png)
}

.aside-menu .menu-btn:hover.btn1 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/aside1_active.png)
}

.aside-menu .menu-btn:hover.btn2 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/aside2_active.png)
}

.aside-menu .menu-btn:hover.btn3 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/aside3_active.png)
}

.aside-menu .menu-btn:hover.btn4 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/aside4_active.png)
}

.aside-menu .menu-hover {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 95px;
    top: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 0 6px 1px rgba(0, 0, 0, .16);
    -moz-box-shadow: 0 0 6px 1px rgba(0, 0, 0, .16);
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, .16);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    display: none
}

.aside-menu .menu-hover:before {
    content: "";
    position: absolute;
    right: -20px;
    top: 25px;
    border-width: 13px;
    border-color: transparent transparent transparent #fff;
    border-style: dashed dashed dashed solid
}

.modal-wrap {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 888;
    background: rgba(0, 0, 0, .6);
    display: none
}

.modal-content {
    width: 470px;
    padding: 20px 30px;
    font-size: 16px;
    background: #fff;
    -webkit-box-shadow: 0 0 6px 1px rgba(0, 0, 0, .16);
    -moz-box-shadow: 0 0 6px 1px rgba(0, 0, 0, .16);
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, .16);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%)
}

.modal-hd {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px
}

.modal-hd .close-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/close_1.png)
}

.modal-hd .close-icon:hover {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/close.png)
}

.form-wrap .form-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px
}

.form-wrap .form-row.span2 .input-row .placehoder,
.form-wrap .form-row.span2 .input-row input {
    width: 200px
}

.form-wrap .form-row:last-of-type {
    margin-top: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.form-wrap .form-row.action-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.form-wrap .form-row.action-row .tips {
    min-height: 2em;
    color: red;
    line-height: 2em
}

.form-wrap .form-row.action-row .status {
    min-height: 2em;
    line-height: 2em
}

.form-wrap .form-col {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 10px
}

.form-wrap .form-col:last-of-type {
    margin-right: 0
}

.form-wrap .form-col.required>label:before {
    content: "*";
    color: red
}

.form-wrap .form-col>label {
    display: inline-block;
    margin-bottom: 10px
}

.form-wrap .input-row .placehoder,
.form-wrap .input-row .select,
.form-wrap .input-row input,
.form-wrap .input-row select {
    width: 100%;
    color: #999;
    background-color: #f7f7f7
}

body {
    min-width: 1230px;
    overflow-x: auto
}

.wow {
    visibility: hidden
}

.banner-wrap {
    height: 590px;
    margin-bottom: 60px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 188px;
    background-repeat: no-repeat;
    background-position: center center;
    -moz-background-size: cover;
    background-size: cover;
    position: relative
}

.banner-wrap::before {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background: url(http://img.ecerimg.com/image/static/pc_zh/banner_mask.png) center top no-repeat;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    bottom: 0
}

.banner-wrap.ggAds-bg {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/ads_banner.jpg)
}

.banner-wrap.website-bg {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/website_banner.jpg)
}

.banner-wrap.videoMeet-bg {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/videoMeet_banner.jpg)
}

.banner-wrap.superTrain-bg {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/superTrain_banner.jpg)
}

.banner-wrap.b2b-bg {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/b2b_banner.jpg)
}

.banner-wrap.maoyt-bg {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/maoyt_banner.jpg)
}

.banner-wrap.aboutus-bg {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/aboutus_banner.jpg)
}

.banner-wrap.logistic-bg {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/logistic_banner.jpg)
}

.banner-wrap .content {
    color: #fff;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.banner-wrap .title {
    text-align: center;
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 30px
}

.banner-wrap .desc {
    width: 700px;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 90px
}

.tab-menu-wrap {
    width: 1188px;
    margin: 0 auto 50px
}

.tab-content-item {
    margin-bottom: 50px
}

.tab-content-item .tab-hd {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 38px
}

.tab-content-item .tab-hd .title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    position: relative
}

.tab-content-item .tab-hd .title:after,
.tab-content-item .tab-hd .title:before {
    content: " ";
    display: block;
    width: 14px;
    height: 12px;
    margin: 0 10px;
    background-repeat: no-repeat;
    background-position: 0 0;
    -moz-background-size: cover;
    background-size: cover
}

.tab-content-item .tab-hd .title:before {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/title_l.png)
}

.tab-content-item .tab-hd .title:after {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/title_r.png)
}

.tab-content-item .tab-bd {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.menu-list .menu-btn {
    display: inline-block;
    padding: 0 20px;
    height: 32px;
    line-height: 32px;
    font-weight: 700;
    text-align: center;
    color: #333;
    border: 1px solid transparent;
    -webkit-border-radius: 17px;
    -moz-border-radius: 17px;
    border-radius: 17px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s
}

.menu-list .menu-btn.active,
.menu-list .menu-btn:hover {
    color: #2da84a;
    border-color: #2da84a
}

.btn-link {
    display: inline-block;
    width: 180px;
    height: 46px;
    line-height: 46px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    background-color: #2da84a;
    color: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s
}

.btn-link:hover {
    background-color: #059246;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    box-shadow: 0 0 20px rgba(0, 0, 0, .3)
}

.input-row {
    position: relative
}

.input-row .placehoder,
.input-row .select,
.input-row input,
.input-row select {
    width: 220px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    background-color: rgba(255, 255, 255, .27);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: none;
    padding: 0 20px
}

.input-row select {
    padding: 0 16px
}

.input-row select+.placehoder {
    padding: 0 16px
}

.input-row option {
    color: #333
}

.input-row .placehoder {
    position: absolute;
    left: 0;
    top: 0;
    background-color: transparent
}

.main-section {
    margin-bottom: 50px
}

.main-section .section-hd {
    width: 1188px;
    margin: 0 auto 50px
}

.main-section .section-hd .en {
    font-size: 16px;
    color: #b4b4b4;
    line-height: 1;
    margin-bottom: 5px
}

.main-section .section-hd .zh {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700
}

.main-section .section-hd .intro {
    font-size: 24px;
    font-family: "Microsoft YaHei-Regular, Microsoft YaHei";
    font-weight: 400;
    color: #b4b4b4;
    margin-top: -10px;
    margin-bottom: 30px
}

.main-section .section-hd .line {
    width: 44px;
    height: 8px;
    background-color: #2da84a
}

.main-section.partners-wrap,
.main-section.team-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.main-section.services-wrap {
    margin-top: 70px
}

.main-section .services-bd {
    width: 1180px;
    margin: 0 auto
}

.main-section.technology-wrap {
    padding-top: 70px;
    background: #fafafa;
    padding-bottom: 67px
}

.main-section.partners-wrap {
    padding-top: 70px;
    background: #fafafa;
    padding-bottom: 67px
}

.main-section.demo-wrap {
    width: 1180px;
    margin: 0 auto 20px
}

.services-bd .services-menu {
    width: 1188px;
    margin: 0 auto 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.services-bd .menu-action {
    position: absolute;
    bottom: -330px;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 10
}

.services-bd .next-btn,
.services-bd .prev-btn {
    display: inline-block;
    width: 42px;
    height: 42px;
    background-position: 0 0;
    background-repeat: no-repeat;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s
}

.services-bd .next-btn.prev-btn,
.services-bd .prev-btn.prev-btn {
    background: url(http://img.ecerimg.com/image/static/pc_zh/prev_dark.png) center no-repeat;
    margin-left: -68px;
    float: left
}

.services-bd .next-btn.prev-btn.active,
.services-bd .next-btn.prev-btn:hover,
.services-bd .prev-btn.prev-btn.active,
.services-bd .prev-btn.prev-btn:hover {
    background: url(http://img.ecerimg.com/image/static/pc_zh/prev_light.png) center no-repeat
}

.services-bd .next-btn.next-btn,
.services-bd .prev-btn.next-btn {
    background: url(http://img.ecerimg.com/image/static/pc_zh/next_dark.png) center no-repeat;
    margin-right: -60px;
    float: right
}

.services-bd .next-btn.next-btn.active,
.services-bd .next-btn.next-btn:hover,
.services-bd .prev-btn.next-btn.active,
.services-bd .prev-btn.next-btn:hover {
    background: url(http://img.ecerimg.com/image/static/pc_zh/next_light.png) center no-repeat
}

.services-bd .menu-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 30px !important
}

.services-bd .menu-btn i {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 6px
}

.services-bd .ec_ecer {
    background: url(http://img.ecerimg.com/image/static/pc_zh/ec_ecer_v1.png) center no-repeat;
    background-size: cover;
}

.services-bd .ec_meeting {
    background: url(http://img.ecerimg.com/image/static/pc_zh/ec_meeting.png) center no-repeat
}

.services-bd .ec_freight {
    background: url(http://img.ecerimg.com/image/static/pc_zh/ec_freight.png) center no-repeat
}

.services-swiper {
    width: 1200px;
    height: 660px;
    overflow: hidden;
    margin-left: -10px
}

.services-swiper .swiper-content {
    width: 1200px;
    height: 660px;
    position: relative;
    margin: 0 auto;
    margin-left: 10px
}

.services-swiper .swiper-list {
    width: 8560px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: absolute;
    left: -1230px;
    top: 0;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    -moz-transition: all .2s;
    transition: all .2s
}

.services-swiper .swiper-item {
    width: 1180px;
    height: 660px;
    margin-right: 50px;
    position: absolute;
    left: 1230px;
    top: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}

.services-swiper .swiper-item.active img {
    opacity: 1
}

.services-swiper .swiper-item img {
    width: 100%;
    opacity: .7;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.services-swiper .swiper-item .mask-txt {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 30px;
    color: #fff;
    padding: 0 50px
}
.services-swiper .swiper-item .img_swiper .mask-txt {
    bottom: 60px;
}


.services-swiper .swiper-item .mask-txt .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px
}

.services-swiper .swiper-item .mask-txt .desc {
    font-size: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.services-swiper .swiper-item .mask-txt .link {
    color: #fff;
    white-space: nowrap;
    margin-left: 50px;
}

.services-swiper .swiper-item .float-tags .tag-cloud {
    position: absolute;
    width: 128px;
    height: 80px;
    line-height: 80px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, .11);
    -moz-box-shadow: 0 0 10px 1px rgba(0, 0, 0, .11);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, .11);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    opacity: .9
}

.services-swiper .swiper-item .float-tags .tag-cloud.yellow {
    right: 263px;
    top: 132px;
    color: #fcbc05
}

.services-swiper .swiper-item .float-tags .tag-cloud.blue {
    right: 158px;
    top: 63px;
    color: #4285f4
}

.services-swiper .swiper-item .float-tags .tag-cloud.green {
    right: 118px;
    top: 180px;
    color: #2daa4a
}

.services-swiper .expand .expand-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 660px;
    padding-top: 10px
}

.services-swiper .expand .expand-wrap .expand-left {
    width: 780px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.services-swiper .expand .expand-wrap .expand-right {
    width: 380px;
    margin-left: 20px
}

.services-swiper .expand .expand-wrap .expand-right .expand-celler {
    width: 100%;
    height: 150px;
    background: #fff;
    -webkit-box-shadow: 0 0 8px 1px rgba(209, 209, 209, .55);
    -moz-box-shadow: 0 0 8px 1px rgba(209, 209, 209, .55);
    box-shadow: 0 0 8px 1px rgba(209, 209, 209, .55);
    -webkit-border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
    margin-bottom: 10px;
    padding: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative
}

.services-swiper .expand .expand-wrap .expand-right .expand-celler .celler-tip {
    font-size: 18px;
    font-family: "Microsoft YaHei-Bold, Microsoft YaHei";
    font-weight: 700;
    color: #2daa4a;
    margin-bottom: 10px
}

.services-swiper .expand .expand-wrap .expand-right .expand-celler .celler-txt {
    font-size: 14px;
    font-family: "Microsoft YaHei-Regular, Microsoft YaHei";
    font-weight: 400;
    color: #333;
    position: relative;
    z-index: 1
}

.services-swiper .expand .expand-wrap .expand-right .expand-celler:after {
    content: "1";
    display: block;
    width: 90px;
    height: 90px;
    color: #2daa4a;
    font-size: 90px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 90px;
    font-weight: 800;
    z-index: 0
}

.services-swiper .expand .expand-wrap .expand-right .expand-celler:nth-child(1):after {
    content: "";
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/number_1.png)
}

.services-swiper .expand .expand-wrap .expand-right .expand-celler:nth-child(2):after {
    content: "";
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/number_2.png)
}

.services-swiper .expand .expand-wrap .expand-right .expand-celler:nth-child(3):after {
    content: "";
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/number_3.png)
}

.services-swiper .expand .expand-wrap .expand-right .expand-celler:nth-child(4):after {
    content: "";
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/number_4.png)
}

.services-swiper .expand .expand-wrap .expand-top {
    height: 470px;
    position: relative;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden
}

.services-swiper .expand .expand-wrap .expand-bot {
    height: 150px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0 0 8px 1px rgba(209, 209, 209, .55);
    -moz-box-shadow: 0 0 8px 1px rgba(209, 209, 209, .55);
    box-shadow: 0 0 8px 1px rgba(209, 209, 209, .55);
    -webkit-border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px 4px 4px 4px;
    border-radius: 4px 4px 4px 4px;
    margin-top: 10px;
    padding-top: 20px
}

.services-swiper .expand .expand-wrap .expand-bot .bot_celler {
    width: 33.33%
}

.services-swiper .expand .expand-wrap .expand-bot .bot_celler .bot_celler-number {
    font-size: 18px;
    font-family: "Microsoft YaHei-Bold, Microsoft YaHei";
    font-weight: 700;
    color: #2daa4a;
    text-align: center
}

.services-swiper .expand .expand-wrap .expand-bot .bot_celler .bot_celler-number span {
    font-size: 50px;
    font-weight: 900;
    color: #2daa4a;
    margin-right: 8px
}

.services-swiper .expand .expand-wrap .expand-bot .bot_celler .bot_celler-txt {
    font-size: 18px;
    font-family: "Microsoft YaHei-Bold, Microsoft YaHei";
    font-weight: 700;
    color: #000;
    text-align: center
}

.team-bd {
    width: 1188px
}

.team-bd .team-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.team-bd .team-item .txt-con {
    width: 494px
}

.team-bd .team-item .txt-con .num {
    display: inline-block;
    width: 98px;
    height: 86px;
    background-position: 0 0;
    background-repeat: no-repeat
}

.team-bd .team-item .txt-con .desc1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: -1px;
    text-align: left;
    position: relative;
}
.team-bd .team-item .txt-con .desc1::before {
    content: "";
    width: 44px;
    height: 8px;
    background-color: #2da84a;
    position: absolute;
    left: 0;
    bottom: -20px;
}


.team-bd .team-item .txt-con .desc2 {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 24px;
}

.team-bd .team-item .txt-con .green {
    color: #2da84a
}

.team-bd .team-item .txt-con .link {
    color: #0076ff
}

.team-bd .team-item .link-row {
    display: none;
    text-align: center;
    padding-bottom: 36px
}

.team-bd .team-item .link-row .m-link {
    display: inline-block;
    width: 140px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #2da84a;
    color: #fff
}

.team-bd .team-item.showTechnology {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: url(http://img.ecerimg.com/image/static/pc_zh/04_pic2.png) top left;
    -moz-background-size: cover;
    background-size: cover;
    border: 1px solid #eee;
    border-left: none;
    border-right: none;
    margin-top: 50px
}

.team-bd .item-1 .txt-con,
.team-bd .item-3 .txt-con {
    text-align: right
}

.team-bd .item-1 .txt-con .desc2,
.team-bd .item-3 .txt-con .desc2 {
    text-align: left
}

.team-bd .item-1 .pic-con,
.team-bd .item-3 .pic-con {
    width: 565px;
    height: 590px;
    background: url(http://img.ecerimg.com/image/static/pc_zh/01_pic.jpg) 0 0 no-repeat;
    -moz-background-size: contain;
    background-size: contain
}

.team-bd .item-1 .txt-con {
    padding-top: 60px
}

.team-bd .item-1 .txt-con .num {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/01.png)
}

.team-bd .item-1 .txt-con .desc1 {
    /* text-indent: 52% */
}

.team-bd .item-1 .pic-con {
    position: relative
}

.team-bd .item-1 .pic-con .icon {
    position: absolute
}

.team-bd .item-1 .pic-con .icon.active .dot {
    width: 13px;
    height: 13px
}

.team-bd .item-1 .pic-con .icon.active .halo-1,
.team-bd .item-1 .pic-con .icon.active .halo-2 {
    display: block
}

.team-bd .item-1 .pic-con .dot,
.team-bd .item-1 .pic-con .halo-1,
.team-bd .item-1 .pic-con .halo-2 {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s
}

.team-bd .item-1 .pic-con .dot {
    width: 7px;
    height: 7px;
    z-index: 3;
    background-color: #2da84a
}

.team-bd .item-1 .pic-con .halo-1 {
    display: none;
    width: 27px;
    height: 27px;
    background-color: #86ed9d;
    opacity: .6;
    -webkit-animation: haloScale1 1.5s infinite;
    -moz-animation: haloScale1 1.5s infinite;
    -o-animation: haloScale1 1.5s infinite;
    animation: haloScale1 1.5s infinite
}

.team-bd .item-1 .pic-con .halo-2 {
    display: none;
    width: 45px;
    height: 45px;
    background-color: #b5f4c3;
    opacity: .57;
    -webkit-animation: haloScale2 1.5s infinite;
    -moz-animation: haloScale2 1.5s infinite;
    -o-animation: haloScale2 1.5s infinite;
    animation: haloScale2 1.5s infinite
}

.team-bd .item-2 {
    position: relative;
    top: -60px
}

.team-bd .item-2 .txt-con {
    padding-top: 25px;
    text-align: left
}

.team-bd .item-2 .txt-con .num {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/02.png)
}

.team-bd .item-2 .txt-con .desc2 {
    text-align: left
}

.team-bd .item-2 .pic-con {
    width: 550px;
    height: 426px;
    background: url(http://img.ecerimg.com/image/static/pc_zh/02_pic.jpg) 0 0 no-repeat;
    -moz-background-size: contain;
    background-size: contain;
    position: relative;
    overflow: hidden
}

.team-bd .item-2 .tag-cloud {
    height: 90px;
    background-position: 0 0;
    background-repeat: no-repeat;
    position: absolute;
    -webkit-transform: all 1s;
    -moz-transform: all 1s;
    -ms-transform: all 1s;
    -o-transform: all 1s;
    transform: all 1s
}

.team-bd .item-2 .tag-cloud.tag-1 {
    left: 0;
    top: -5px;
    width: 237px;
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/team_tag1.png)
}

.team-bd .item-2 .tag-cloud.tag-2 {
    left: 50px;
    top: 100px;
    width: 223px;
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/team_tag2.png)
}

.team-bd .item-2 .tag-cloud.tag-3 {
    left: 20px;
    top: 200px;
    width: 213px;
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/team_tag3.png)
}

.team-bd .item-2 .tag-cloud.tag-4 {
    left: 340px;
    top: 40px;
    width: 209px;
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/team_tag4.png)
}

.team-bd .item-2 .tag-cloud.tag-5 {
    left: 320px;
    top: 170px;
    width: 238px;
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/team_tag5.png)
}

.team-bd .item-3 .txt-con {
    padding-top: 30px
}

.team-bd .item-3 .txt-con .num {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/03.png)
}

.team-bd .item-3 .pic-con {
    width: 516px;
    height: 499px;
    background: url(http://img.ecerimg.com/image/static/pc_zh/04_pic1.png) center center no-repeat;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative
}

.team-bd .item-3 .txt-tags .tag {
    position: absolute;
    color: #b5efc2;
    font-size: 16px
}

.team-bd .item-3 .location-tag {
    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-animation: locaFloatAE 2s infinite;
    -moz-animation: locaFloatAE 2s infinite;
    -o-animation: locaFloatAE 2s infinite;
    animation: locaFloatAE 2s infinite
}

.team-bd .item-3 .location-tag .icon {
    position: absolute;
    width: 78px;
    height: 78px;
    background: url(http://img.ecerimg.com/image/static/pc_zh/03_pic2.png) center center no-repeat
}

.team-bd .item-3 .location-tag .txt {
    display: inline-block;
    width: 67px;
    height: 30px;
    line-height: 16px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    color: #69dac5;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    z-index: 2;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%)
}

.team-bd .item-3 .location-tag .halo {
    display: inline-block;
    width: 106px;
    height: 106px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #d9ffe2;
    opacity: .2
}

.team-bd .item-3 .location-tag.tag-1 {
    left: 40px;
    bottom: 90px
}

.team-bd .item-3 .location-tag.tag-1 .txt {
    top: 110px
}

.team-bd .item-3 .location-tag.tag-2 {
    right: 40px;
    bottom: 90px;
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -o-animation-delay: .2s;
    animation-delay: .2s
}

.team-bd .item-3 .location-tag.tag-2 .txt {
    top: 110px
}

.team-bd .item-3 .location-tag.tag-3 {
    left: 40px;
    top: 90px;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -o-animation-delay: .4s;
    animation-delay: .4s
}

.team-bd .item-3 .location-tag.tag-3 .txt {
    top: -20px
}

.team-bd .item-3 .location-tag.tag-4 {
    right: 40px;
    top: 90px;
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s
}

.team-bd .item-3 .location-tag.tag-4 .txt {
    top: -30px
}

.team-bd .item-3 .location-tag .txt_bg {
    width: 276px;
    height: 91px;
    background: #fff;
    -webkit-box-shadow: 0 0 6px 1px rgba(0, 0, 0, .11);
    -moz-box-shadow: 0 0 6px 1px rgba(0, 0, 0, .11);
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, .11);
    -webkit-border-radius: 15px 15px 15px 15px;
    -moz-border-radius: 15px 15px 15px 15px;
    border-radius: 15px 15px 15px 15px;
    opacity: 1;
    font-size: 17px;
    font-family: "Microsoft YaHei-Bold, Microsoft YaHei";
    font-weight: 700;
    color: #333;
    padding: 20px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.team-bd .item-3 .location-tag .txt_bg b {
    font-size: 24px;
    font-family: "Microsoft YaHei-Bold, Microsoft YaHei";
    font-weight: 700;
    color: #2daa4a;
    margin: 0 4px
}

.team-bd .item-3 .location-tag.tag-5 {
    right: 520px;
    top: 60px;
    -webkit-animation-delay: .5s;
    -moz-animation-delay: .5s;
    -o-animation-delay: .5s;
    animation-delay: .5s
}

.team-bd .item-3 .location-tag.tag-5 .txt {
    top: -30px
}

.team-bd .item-3 .location-tag.tag-6 {
    right: -280px;
    top: 60px;
    -webkit-animation-delay: .3s;
    -moz-animation-delay: .3s;
    -o-animation-delay: .3s;
    animation-delay: .3s
}

.team-bd .item-3 .location-tag.tag-6 .txt {
    top: -30px
}

.team-bd .item-3 .location-tag.tag-7 {
    right: 520px;
    bottom: 90px;
    -webkit-animation-delay: .4s;
    -moz-animation-delay: .4s;
    -o-animation-delay: .4s;
    animation-delay: .4s
}

.team-bd .item-3 .location-tag.tag-7 .txt {
    top: -30px
}

.team-bd .item-3 .location-tag.tag-8 {
    right: -280px;
    bottom: 90px;
    -webkit-animation-delay: .2s;
    -moz-animation-delay: .2s;
    -o-animation-delay: .2s;
    animation-delay: .2s
}

.team-bd .item-3 .location-tag.tag-8 .txt {
    top: -30px
}

.partners-bd {
    width: 1188px;
    display: -ms-inline-grid;
    display: inline-grid;
    -ms-grid-columns: auto auto auto auto;
    grid-template-columns: auto auto auto auto;
    grid-gap: 26px
}

.partners-bd .partner-item {
    display: inline-block;
    width: 280px;
    height: 110px;
    text-align: center;
    line-height: 110px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 8px 1px rgba(211, 211, 211, .35);
    -moz-box-shadow: 0 0 8px 1px rgba(211, 211, 211, .35);
    box-shadow: 0 0 8px 1px rgba(211, 211, 211, .35);
    -webkit-animation: flipInX;
    -moz-animation: flipInX;
    -o-animation: flipInX;
    animation: flipInX;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    position: relative
}

.partners-bd .partner-item img {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}

.partners-bd .partner-item:hover img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center
}

.partners-bd .partner-item span {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#343434));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, #343434 100%);
    background: -moz- oldlinear-gradient(top, rgba(0, 0, 0, 0) 0, #343434 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0, #343434 100%);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #343434 100%);
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    opacity: 1;
    color: #fff
}

.demo-wrap .partner-item {
    height: auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden
}

.main-banner-wrap {
    width: 100%;
    height: 650px;
    background: url(http://img.ecerimg.com/image/static/pc_zh/main_banner_en.jpg) center center no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative
}

.main-banner-wrap::before {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background: url(http://img.ecerimg.com/image/static/pc_zh/banner_mask.png) center top no-repeat;
    -moz-background-size: 100% 100%;
    background-size: 100% 100%;
    position: absolute;
    left: 0;
    bottom: 0
}

.main-banner-wrap .banner-content {
    width: 1188px;
    margin: 0 auto;
    padding-top: 100px;
    position: relative;
    z-index: 10
}

.main-banner-wrap .content-t {
    color: #fff;
    margin-bottom: 76px
}

.main-banner-wrap .content-t .title-row {
    width: 470px;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px
}

.main-banner-wrap .content-t .title-row.m-title-row {
    display: none;
    line-height: 2em;
    font-size: 12px
}

.main-banner-wrap .content-t .title-row .line {
    width: 44px;
    height: 8px;
    margin-top: 20px;
    background-color: #fff
}

.main-banner-wrap .content-t .desc-row {
    width: 470px;
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 40px
}

.main-banner-wrap .data-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.main-banner-wrap .data-list .data-item {
    width: 230px;
    height: 120px;
    padding: 28px 0 28px 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 6px 1px rgba(0, 0, 0, .26);
    -moz-box-shadow: 0 0 6px 1px rgba(0, 0, 0, .26);
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, .26);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: right bottom
}

.main-banner-wrap .data-list .data-item.item-1 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/ban_menu_1.png)
}

.main-banner-wrap .data-list .data-item.item-2 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/ban_menu_2.png)
}

.main-banner-wrap .data-list .data-item.item-3 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/ban_menu_3.png)
}

.main-banner-wrap .data-list .data-item.item-4 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/ban_menu_4.png)
}

.main-banner-wrap .data-list .data-item.item-5 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/ban_menu_5.png)
}

.main-banner-wrap .data-list .data-item .num-row {
    display: inline-block;
    position: relative
}

.main-banner-wrap .data-list .data-item .num-row .num {
    font-size: 30px
}

.main-banner-wrap .data-list .data-item .num-row .plus {
    font-size: 20px;
    font-weight: 700;
    color: #2da84a;
    position: absolute;
    right: -15px;
    top: 0
}

.data-wrap {
    width: 1188px;
    margin: 0 auto;
    position: relative;
    top: -70px
}

.data-wrap .data-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.data-wrap .data-list .data-item {
    width: 230px;
    height: 120px;
    padding: 28px 0 28px 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 6px 1px rgba(0, 0, 0, .26);
    -moz-box-shadow: 0 0 6px 1px rgba(0, 0, 0, .26);
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, .26);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-position: right bottom
}

.data-wrap .data-list .data-item.item-1 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/ban_menu_1.png)
}

.data-wrap .data-list .data-item.item-2 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/ban_menu_2.png)
}

.data-wrap .data-list .data-item.item-3 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/ban_menu_3.png)
}

.data-wrap .data-list .data-item.item-4 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/ban_menu_4.png)
}

.data-wrap .data-list .data-item.item-5 {
    background-image: url(http://img.ecerimg.com/image/static/pc_zh/ban_menu_5.png)
}

.data-wrap .data-list .data-item .num-row {
    display: inline-block;
    position: relative
}

.data-wrap .data-list .data-item .num-row .num {
    font-size: 30px
}

.data-wrap .data-list .data-item .num-row .plus {
    font-size: 20px;
    font-weight: 700;
    color: #2da84a;
    position: absolute;
    right: -15px;
    top: 0
}

.consult-wrap {
    width: 1218px;
    height: 138px;
    margin: 0 auto;
    padding: 0 60px;
    background: url(http://img.ecerimg.com/image/static/pc_zh/consult_bg.png) center center no-repeat;
    -moz-background-size: cover;
    background-size: cover;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 20
}

.consult-wrap .consult-l {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex
}

.consult-wrap .consult-l .input-row {
    margin-right: 10px
}

.consult-wrap .consult-r .consult-btn {
    width: 150px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #2da84a;
    background-color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: none
}

.consult-wrap .consult-r .consult-btn:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, .3);
    box-shadow: 0 0 20px rgba(0, 0, 0, .3)
}

.consult-wrap .consult-r .tips {
    min-height: 2em;
    line-height: 2em;
    color: red
}

.consult-wrap .consult-r .status {
    min-height: 2em;
    line-height: 2em;
    color: #fff
}

@-webkit-keyframes haloScale1 {
    0% {
        width: 0;
        height: 0
    }

    50% {
        width: 27px;
        height: 27px
    }

    100% {
        width: 0;
        height: 0
    }
}

@-moz-keyframes haloScale1 {
    0% {
        width: 0;
        height: 0
    }

    50% {
        width: 27px;
        height: 27px
    }

    100% {
        width: 0;
        height: 0
    }
}

@-o-keyframes haloScale1 {
    0% {
        width: 0;
        height: 0
    }

    50% {
        width: 27px;
        height: 27px
    }

    100% {
        width: 0;
        height: 0
    }
}

@keyframes haloScale1 {
    0% {
        width: 0;
        height: 0
    }

    50% {
        width: 27px;
        height: 27px
    }

    100% {
        width: 0;
        height: 0
    }
}

@-webkit-keyframes haloScale2 {
    0% {
        width: 0;
        height: 0
    }

    50% {
        width: 45px;
        height: 45px
    }

    100% {
        width: 0;
        height: 0
    }
}

@-moz-keyframes haloScale2 {
    0% {
        width: 0;
        height: 0
    }

    50% {
        width: 45px;
        height: 45px
    }

    100% {
        width: 0;
        height: 0
    }
}

@-o-keyframes haloScale2 {
    0% {
        width: 0;
        height: 0
    }

    50% {
        width: 45px;
        height: 45px
    }

    100% {
        width: 0;
        height: 0
    }
}

@keyframes haloScale2 {
    0% {
        width: 0;
        height: 0
    }

    50% {
        width: 45px;
        height: 45px
    }

    100% {
        width: 0;
        height: 0
    }
}

@-webkit-keyframes locaFloatAE {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-moz-keyframes locaFloatAE {
    0% {
        -moz-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -moz-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

@-o-keyframes locaFloatAE {
    0% {
        -o-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -o-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes locaFloatAE {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -o-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}

/*# sourceMappingURL=main.v1.min.css.map */


.team-bd .item-4 .pic-con {
    width: 565px;
    height: 426px;
    background: url(http://img.ecerimg.com/image/static/pc_zh/fa.jpeg) 0 0 no-repeat;
    -moz-background-size: contain;
    background-size: contain;
    background-position-y: -50px;
    position: relative;
}
.team-bd .item-4 .txt-con {
    width: 504px;
    text-align: right;
}
.team-bd .item-4 .txt-con .desc2 {
    text-align: left;
}
.team-bd .item-4 .piece-item {
    border-radius: 12px;
    box-shadow: 0px 8px 6px 0px rgba(0, 0, 0, 0.25);
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}
.team-bd .item-4 .piece-item1 {
    width: 164px;
    height: 55px;
    left: 70px;
    top: 110px;
    color: rgb(1, 1, 1);
    font-size: 20px;
    font-weight: 400;
}
.team-bd .item-4 .piece-item1 svg {
    width: 30px;
    margin-right: 6px;
}
.team-bd .item-4 .piece-item2 {
    width: 67px;
    height: 67px;
    left: 110px;
    top: 250px;
}
.team-bd .item-4 .piece-item2 svg {
    width: 40px;
}
.team-bd .item-4 .piece-item3 {
    width: 184px;
    height: 55px;
    right: 0px;
    top: 150px;
    color: rgb(1, 1, 1);
    font-size: 20px;
    font-weight: 400;
}
.team-bd .item-4 .piece-item3 svg {
    width: 30px;
    margin-right: 6px;
}
.team-bd .item-4 .piece-item4 {
    width: 67px;
    height: 67px;
    right: 65px;
    bottom: 85px;
}
.team-bd .item-4 .piece-item4 svg {
    width: 40px;
}

.team-bd .item-5 .pic-con {
    width: 565px;
    height: 386px;
    background: url(http://img.ecerimg.com/image/static/pc_zh/szz.jpeg) 0 0 no-repeat;
    -moz-background-size: contain;
    background-size: contain;
    position: relative;
}
.team-bd .item-5 .txt-con {
    width: 504px;
}
.team-bd .item-5 .pic-con img {
    position: absolute;
    width: 280px;
    right: -30px;
    bottom: -20px;
}

.team-bd .item-6 .pic-con {
    width: 565px;
    height: 386px;
    background: url(http://img.ecerimg.com/image/static/pc_zh/service.jpeg) 0 0 no-repeat;
    -moz-background-size: contain;
    background-size: contain;
    background-position: center;
    position: relative;
}
.team-bd .item-6 .txt-con {
    width: 530px;
    text-align: right;
}
.team-bd .item-6 .txt-con .desc2 {
    text-align: left;
}
.team-bd .item-6 .pic-con .piece-item {
    position: absolute;
    border-radius: 11.02px;
    box-shadow: 0px 2.63px 4.46px 0px rgba(0, 0, 0, 0.01),0px 11.56px 9.24px 0px rgba(0, 0, 0, 0.01),0px 28.36px 18.44px 0px rgba(0, 0, 0, 0.02),0px 54.63px 36.14px 0px rgba(0, 0, 0, 0.02),0px 91.92px 66.45px 0px rgba(0, 0, 0, 0.02);
    background: rgb(255, 255, 255);
    right: -30px;
    bottom: -20px;
    font-size: 16px;
    color: #333333;
    font-weight: 400;
    width: 105px;
    height: 36px;
    line-height: 36px;
    text-align: center;
}
.team-bd .item-6 .pic-con .piece-item span {
    color: #E02020;
    font-size: 18px;
}
.team-bd .item-6 .pic-con .piece-item:nth-child(1) {
    left: 15px;
    bottom: 75px;
}
.team-bd .item-6 .pic-con .piece-item:nth-child(2) {
    right: 15px;
    top: 105px;
}
.team-bd .item-7 {
    margin-top: 130px;
}
.team-bd .item-7 .pic-con {
    width: 565px;
    height: 386px;
    background: url(http://img.ecerimg.com/image/static/pc_zh/service-system.jpeg) 0 0 no-repeat;
    -moz-background-size: contain;
    background-size: cover;
    background-position-y: 0;
    position: relative;
    top: -60px;
}
.team-bd .item-7 .txt-con {
    width: 530px;
}
.team-bd .item-7 .pic-con .bubble-item {
    position: absolute;
    border-radius: 13.21px;
    box-shadow: 0px 2.04px 3.47px 0px rgba(0, 0, 0, 0.01),0px 8.97px 7.18px 0px rgba(0, 0, 0, 0.01),0px 22.02px 14.32px 0px rgba(0, 0, 0, 0.02),0px 42.42px 28.06px 0px rgba(0, 0, 0, 0.02),0px 71.38px 51.59px 0px rgba(0, 0, 0, 0.02),0px 110.12px 88.1px 0px rgba(0, 0, 0, 0.03);
    background: rgb(255, 255, 255);
    background: rgb(255, 255, 255);
    font-size: 14px;
    color: #242331;
    font-weight: 600;
    padding: 2px 14px;
    line-height: 32px;
    text-align: center;
}
.team-bd .item-7 .pic-con .bubble-item:nth-of-type(1) {
    left: 95px;
    top: 60px;
}
.team-bd .item-7 .pic-con .bubble-item:nth-of-type(2) {
    left: 95px;
    top: 120px;
}
.team-bd .item-7 .pic-con .bubble-item:nth-of-type(3) {
    left: 30px;
    top: 175px;
}
.team-bd .item-7 .pic-con .bubble-item:nth-of-type(4) {
    left: 100px;
    top: 245px;
}
.team-bd .item-7 .pic-con .bubble-item:nth-of-type(5) {
    right: 100px;
    top: 25px;
}
.team-bd .item-7 .pic-con .bubble-item:nth-of-type(6) {
    right: 100px;
    top: 125px;
}