@import url(http://fonts.googleapis.com/earlyaccess/notosanstc.css);
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%,
    43% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

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

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

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

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

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

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

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

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1)
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1)
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1)
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1)
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

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

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

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

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake
}

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

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

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

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

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

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

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

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

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

@-webkit-keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
        transform: skewX(0.39062deg) skewY(0.39062deg)
    }
    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg)
    }
}

@keyframes jello {
    from,
    11.1%,
    to {
        -webkit-transform: none;
        transform: none
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
        transform: skewX(0.39062deg) skewY(0.39062deg)
    }
    88.8% {
        -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
        transform: skewX(-0.19531deg) skewY(-0.19531deg)
    }
}

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

@-webkit-keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97)
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97)
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9)
    }
    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
}

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

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

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

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

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

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

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

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

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

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

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

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

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

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

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

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

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

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

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

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

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

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

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

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

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

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

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

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

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

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

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

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

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

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

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

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

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

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

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

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

@-webkit-keyframes lightSpeedOut {
    from {
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    from {
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    50% {
        opacity: 1
    }
}

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

@-webkit-keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

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

@-webkit-keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

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

@-webkit-keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

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

@-webkit-keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

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

@-webkit-keyframes zoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3)
    }
    to {
        opacity: 0
    }
}

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

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

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

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

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

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
        transform: scale(0.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

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

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1)
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes slideOutDown {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 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 {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

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

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

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

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

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

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

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

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

a:hover,
a {
    text-decoration: none
}

* {
    font-size: 14px;
    font-family: "Microsoft YaHei", "SimHei", "LiHei Pro Medium", "SimHei", "sans-serif";
    letter-spacing: .1rem
}

.row_5.col1 #Dyn_2_1>div>div.module:not(.module-ads),
.row_5.col1 #Dyn_2_1>div.module:not(.module-ads),
.row_4.col1 #Dyn_2_1>div>div.module:not(.module-ads),
.row_4.col1 #Dyn_2_1>div.module:not(.module-ads),
.row_3.col1 #Dyn_2_1>div>div.module:not(.module-ads),
.row_3.col1 #Dyn_2_1>div.module:not(.module-ads),
.row_2.col1 #Dyn_2_1>div>div.module:not(.module-ads),
.row_2.col1 #Dyn_2_1>div.module:not(.module-ads),
.row_0.col1 #Dyn_2_1>div>div.module:not(.module-ads),
.row_0.col1 #Dyn_2_1>div.module:not(.module-ads),
.row_0.col1 .col_02>.mcol>div+div,
.footer>.minner,
.header>.minner,
.row_5.col3>.mrow,
.row_5.col2>.mrow,
.row_4.col3>.mrow,
.row_4.col2>.mrow,
.row_3.col3>.mrow,
.row_3.col2>.mrow,
.row_2.col3>.mrow,
.row_2.col2>.mrow,
.row_1>.mrow {
    max-width: 100%
}

@media screen and (max-width: 767px) {
    .minner.minner {
        padding: 0
    }
}

.page_mobilehome .module-cgmenu {
    display: none
}

ul.navbar-nav {
    margin-top: 0
}

.header {
    box-shadow: none;
    background: transparent;
    border-bottom: 1px solid transparent
}

.footer {
    padding: 0
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
    background-color: transparent;
    color: transparent;
    border-color: transparent
}

.go-pcurl,
.module-minicart {
    display: none
}

.module-detail .mpgdetail {
    padding: 0
}

.navbar-nav .open>a,
.navbar-nav .open>a:hover,
.navbar-nav .open>a:focus,
.navbar-nav>li>a:hover {
    border-color: transparent
}

.menu-wrapper-area,
#wrap #main-nav,
#wrap footer {
    display: none
}

.addauto {
    padding: 0;
    margin-bottom: 0
}

[class^="col-md-12"][class^="col-md-12"],
[class^="col-"][class^="col-"] {
    padding: 0;
    margin: 0
}

.nav>li>a:hover,
.nav>li>a:focus,
.nav .open>a,
.nav .open>a:hover,
.nav .open>a:focus {
    background-color: transparent
}

@media screen and (max-width: 767px) {
    #wrap {
        padding-top: 0
    }
}

.module {
    margin-bottom: 0
}

.langbar {
    display: none
}

.main {
    padding-bottom: 0em
}

.mnavbar.mn-collapse {
    display: none
}

.module.module-search.md_style1 {
    display: none
}

.container {
    max-width: 1000px
}

.navbar .navbar-brand {
    display: block;
    padding: 0;
    width: auto;
    height: auto
}

@media (min-width: 768px) {
    .navbar .navbar-brand img {
        width: 130px;
        height: auto
    }
}

@media screen and (max-width: 767px) {
    .navbar .navbar-brand {
        width: 100%;
        display: block;
        height: auto;
        margin: 0 auto
    }
    .navbar .navbar-brand img {
        width: 20%;
        display: block;
        margin: 0 auto
    }
}

.navbar .navbar-header {
    z-index: 99
}

@media (min-width: 768px) {
    .navbar .navbar-header {
        position: absolute;
        top: 3rem;
        left: 8%
    }
}

@media screen and (max-width: 767px) {
    .navbar .navbar-header {
        padding: .5rem 0rem
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar .navbar-header {
        left: 1rem;
        top: 0em;
        z-index: 9999
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .navbar .navbar-header {
        left: 1rem;
        top: .5em;
        z-index: 9999
    }
}

@media screen and (max-width: 767px) {
    .navbar .navbar-toggle {
        border: none;
        margin-top: 2rem
    }
    .navbar .navbar-toggle .icon-bar {
        display: none
    }
    .navbar .navbar-toggle .sr-only::before,
    .navbar .navbar-toggle .sr-only::after {
        background: #f39800;
        transition: .6s ease
    }
    .navbar .navbar-toggle.navbar-toggle:not(.collapsed) .sr-only::before {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }
    .navbar .navbar-toggle.navbar-toggle:not(.collapsed) .sr-only::after {
        -webkit-transform: rotate(-45deg) translate3d(6px, -8px, 0);
        transform: rotate(-45deg) translate3d(6px, -8px, 0)
    }
}

#defaultNavbar1 a {
    color: #40220f
}

@media (min-width: 768px) {
    #defaultNavbar1 {
        display: -webkit-box !important;
        display: flex !important;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: end;
        justify-content: flex-end;
        width: 100%;
        height: 4rem;
        background: rgba(255, 255, 255, 0.7);
        padding: .7rem 5rem .7rem 0;
        position: relative;
        top: 4rem
    }
}

@media screen and (max-width: 767px) {
    #defaultNavbar1 {
        background: rgba(243, 152, 0, 0.7);
        padding: 1rem 0
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #defaultNavbar1 {
        flex-wrap: wrap-reverse;
        padding-right: 1rem;
        position: absolute;
        top: 1rem;
        margin-top: 0
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    #defaultNavbar1 {
        flex-wrap: wrap-reverse;
        padding-right: 1rem;
        position: absolute;
        top: 3rem;
        margin-top: 0
    }
}

@media (min-width: 768px) {
    #defaultNavbar1 .nav.navbar-nav {
        display: -webkit-inline-box;
        display: inline-flex;
        margin-right: 4rem;
        width: 55%
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #defaultNavbar1 .nav.navbar-nav {
        width: calc(80%);
        display: -webkit-box;
        display: flex;
        margin-right: 0rem;
        margin-top: 1rem
    }
}

#defaultNavbar1 .nav.navbar-nav li.dropdown {
    cursor: default
}

@media (min-width: 768px) {
    #defaultNavbar1 .nav.navbar-nav>li,
    #defaultNavbar1 .nav.navbar-nav li.open {
        width: calc(100% / 7);
        text-align: center
    }
}

#defaultNavbar1 .nav.navbar-nav>li>a,
#defaultNavbar1 .nav.navbar-nav li.open>a {
    margin-left: 0;
    padding: .3rem 0rem;
    font-weight: bold;
    transition: 0.3s ease;
    border-radius: 1rem
}

@media (min-width: 768px) {
    #defaultNavbar1 .nav.navbar-nav>li>a,
    #defaultNavbar1 .nav.navbar-nav li.open>a {
        height: 5rem;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center
    }
}

#defaultNavbar1 .nav.navbar-nav>li>a span:last-child,
#defaultNavbar1 .nav.navbar-nav li.open>a span:last-child {
    display: none
}

#defaultNavbar1 .nav.navbar-nav>li>a:hover,
#defaultNavbar1 .nav.navbar-nav>li>a:active,
#defaultNavbar1 .nav.navbar-nav>li>a:focus,
#defaultNavbar1 .nav.navbar-nav li.open>a:hover,
#defaultNavbar1 .nav.navbar-nav li.open>a:active,
#defaultNavbar1 .nav.navbar-nav li.open>a:focus {
    color: #fff
}

@media screen and (max-width: 767px) {
    #defaultNavbar1 .nav.navbar-nav>li>a,
    #defaultNavbar1 .nav.navbar-nav li.open>a {
        padding: 1rem
    }
}

@media (min-width: 768px) {
    #defaultNavbar1 .nav.navbar-nav>li:hover a,
    #defaultNavbar1 .nav.navbar-nav>li:active a,
    #defaultNavbar1 .nav.navbar-nav>li:focus a,
    #defaultNavbar1 .nav.navbar-nav li.open:hover a,
    #defaultNavbar1 .nav.navbar-nav li.open:active a,
    #defaultNavbar1 .nav.navbar-nav li.open:focus a {
        color: #fff;
        background: #f39800;
        padding-left: 0em;
        padding-right: 0em
    }
    #defaultNavbar1 .nav.navbar-nav>li:hover a span:first-child,
    #defaultNavbar1 .nav.navbar-nav>li:active a span:first-child,
    #defaultNavbar1 .nav.navbar-nav>li:focus a span:first-child,
    #defaultNavbar1 .nav.navbar-nav li.open:hover a span:first-child,
    #defaultNavbar1 .nav.navbar-nav li.open:active a span:first-child,
    #defaultNavbar1 .nav.navbar-nav li.open:focus a span:first-child {
        display: none
    }
    #defaultNavbar1 .nav.navbar-nav>li:hover a span:last-child,
    #defaultNavbar1 .nav.navbar-nav>li:active a span:last-child,
    #defaultNavbar1 .nav.navbar-nav>li:focus a span:last-child,
    #defaultNavbar1 .nav.navbar-nav li.open:hover a span:last-child,
    #defaultNavbar1 .nav.navbar-nav li.open:active a span:last-child,
    #defaultNavbar1 .nav.navbar-nav li.open:focus a span:last-child {
        font-size: 10px;
        display: inline-block;
        -webkit-transform: scale(0.85);
        transform: scale(0.85);
        text-align: center
    }
    #defaultNavbar1 .nav.navbar-nav>li:hover a+.dropdown-menu,
    #defaultNavbar1 .nav.navbar-nav>li:active a+.dropdown-menu,
    #defaultNavbar1 .nav.navbar-nav>li:focus a+.dropdown-menu,
    #defaultNavbar1 .nav.navbar-nav li.open:hover a+.dropdown-menu,
    #defaultNavbar1 .nav.navbar-nav li.open:active a+.dropdown-menu,
    #defaultNavbar1 .nav.navbar-nav li.open:focus a+.dropdown-menu {
        height: auto;
        visibility: visible;
        -webkit-transform: translateY(0vw);
        transform: translateY(0vw)
    }
}

#defaultNavbar1 .nav.navbar-nav>li .dropdown-menu,
#defaultNavbar1 .nav.navbar-nav li.open .dropdown-menu {
    background: none;
    box-shadow: none;
    border: none;
    transition: 0.3s ease
}

@media (min-width: 768px) {
    #defaultNavbar1 .nav.navbar-nav>li .dropdown-menu,
    #defaultNavbar1 .nav.navbar-nav li.open .dropdown-menu {
        display: block;
        padding-top: 1rem;
        -webkit-transform: translateY(-1vw);
        transform: translateY(-1vw);
        height: 0;
        visibility: hidden;
        min-width: 10rem;
        margin-left: -1rem
    }
}

#defaultNavbar1 .nav.navbar-nav>li .dropdown-menu li,
#defaultNavbar1 .nav.navbar-nav li.open .dropdown-menu li {
    margin: 1rem 0;
    width: auto
}

@media (min-width: 768px) {
    #defaultNavbar1 .nav.navbar-nav>li .dropdown-menu li a,
    #defaultNavbar1 .nav.navbar-nav li.open .dropdown-menu li a {
        padding: .5rem 1.5rem;
        background: #f39800;
        border-radius: 1rem;
        text-align: center;
        transition: 0.3s ease
    }
    #defaultNavbar1 .nav.navbar-nav>li .dropdown-menu li a:hover,
    #defaultNavbar1 .nav.navbar-nav li.open .dropdown-menu li a:hover {
        color: #40220f
    }
}

@media (min-width: 768px) {
    #defaultNavbar1 .link {
        display: -webkit-inline-box;
        display: inline-flex;
        margin-bottom: 0;
        float: right
    }
}

@media screen and (max-width: 767px) {
    #defaultNavbar1 .link {
        margin-left: .5rem
    }
}

#defaultNavbar1 .link>li>a img {
    height: 35px;
    width: auto
}

.tooltip .tooltip-inner {
    background: #f39800
}

.tooltip.top .tooltip-arrow {
    border-top-color: #f39800
}

@media (min-width: 768px) {
    .mobile-banner {
        display: none
    }
}

@media screen and (max-width: 767px) {
    .mads-li {
        display: none
    }
    .mobile-banner {
        display: block
    }
    .mobile-banner .mads-li {
        display: block
    }
}

@media (min-width: 768px) {
    .mads-li {
        margin-top: -105px
    }
}

.mads-li .owl-controls {
    margin-top: 3rem
}

.mads-li .owl-controls .owl-dot {
    margin: 0 .2rem
}

.mads-li .owl-controls .owl-dot span {
    background: #40220f;
    transition: 0.3s ease
}

.mads-li .owl-controls .owl-dot.active span {
    background: #e83828
}

.mads-li .owl-stage-outer {
    position: relative
}

.mads-li .owl-stage-outer::after {
    content: '';
    display: block;
    width: 100%;
    height: 1rem;
    background: url("/ezfiles/38/1038/img/625/pic-front-1.png") center center repeat-x;
    background-size: cover;
    position: absolute;
    bottom: 0rem
}

@media screen and (max-width: 767px) {
    .mads-li .owl-stage-outer::after {
        background-size: cover
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .mads-li .owl-stage-outer::after {
        background-size: cover
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .mads-li .owl-stage-outer::after {
        background-size: cover
    }
}

.mads-li .owl-stage-outer::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("/ezfiles/38/1038/img/625/bannerlogo.png") center center no-repeat;
    background-size: 40%;
    background-position: center 80%;
    z-index: 999999
}

@media screen and (max-width: 767px) {
    .mads-li .owl-stage-outer::before {
        background-size: 50%;
        background-position: center 60%
    }
}

.section-1 {
    margin-top: 4rem;
    margin-bottom: 4rem
}

.section-1 hgroup {
    text-align: center
}

.section-1 hgroup h1 {
    letter-spacing: .3rem;
    font-size: 2.8rem
}

.section-1 hgroup h4 {
    letter-spacing: .5rem;
    margin-top: 1rem;
    font-size: 1.8rem
}

.section-1 hgroup h4:last-child {
    text-align: center;
    color: #e83828;
    margin-top: 4rem;
    letter-spacing: .5rem
}

@media screen and (max-width: 767px) {
    .section-1 hgroup h4:last-child {
        font-size: 1.5rem
    }
}

.section-1 p {
    text-align: center;
    font-size: 1.5rem
}

@media (min-width: 768px) {
    .section-1 p {
        line-height: 4rem
    }
}

@media screen and (max-width: 767px) {
    .section-1 p {
        line-height: 2rem
    }
}

.section-2 {
    padding: 0
}

.section-2 [class^="col-sm"]>img {
    width: 100%;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    transition: 6s ease
}

.section-2 .col-sm-6,
.section-2 .col-sm-9 {
    position: relative
}

.section-2 .col-sm-9 {
    overflow: hidden
}

.section-2 .row>a>.col-sm-6:first-child {
    overflow: hidden
}

.section-2 .row>.col-sm-6>a>.col-sm-push-6 {
    overflow: hidden
}

@media (min-width: 768px) {
    .section-2 a:hover>div>img,
    .section-2 a:focus>div>img,
    .section-2 a:active>div>img {
        -webkit-transform: scale(1.15);
        transform: scale(1.15)
    }
}

.section-2 .row>a,
.section-2 .row>.col-sm-6>a {
    display: -webkit-box;
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between
}

@media screen and (max-width: 767px) {
    .section-2 .row>a,
    .section-2 .row>.col-sm-6>a {
        display: block
    }
}

.section-2 .row>.col-sm-6 {
    display: -webkit-box;
    display: flex;
    width: 50%;
    height: 100%;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between
}

@media screen and (max-width: 767px) {
    .section-2 .row>.col-sm-6 {
        display: block;
        height: auto
    }
}

@media screen and (max-width: 767px) {
    .section-2>.row>.col-sm-6 {
        width: 100%
    }
}

.section-2 .info {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    background: #333;
    position: relative
}

.section-2 .info::before {
    content: '';
    display: inline-block;
    position: absolute;
    border-width: 1rem
}

.section-2 .info .flexcenter {
    width: 80%;
    height: 65%
}

.section-2 .info .flexcenter img {
    width: 4rem;
    margin: 0 auto;
    display: block
}

.section-2 .info .flexcenter img:nth-of-type(2) {
    width: 1.5rem
}

.section-2 .info .flexcenter h1.title {
    margin-top: 3rem;
    margin-bottom: 3rem;
    color: #fff;
    width: 100%;
    font-size: 2rem;
    letter-spacing: .2rem;
    text-align: center;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

.section-2 .info .flexcenter h1.title::before,
.section-2 .info .flexcenter h1.title::after {
    content: '';
    display: inline-block;
    width: 10%;
    height: 1px;
    background: #fff
}

.section-2 .info .flexcenter h1.title::before {
    margin-right: 1rem
}

.section-2 .info .flexcenter h1.title::after {
    margin-left: 1rem
}

.section-2 .info .flexcenter p {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    margin-top: 2rem
}

.section-2 .row:nth-of-type(1) .info {
    background: #3d584d
}

@media (min-width: 768px) {
    .section-2 .row:nth-of-type(1) .info::before {
        border-width: .5em;
        border-style: solid solid solid solid;
        border-color: transparent #3d584d transparent transparent;
        left: -1.5rem;
        border-width: 1rem 1.8rem 1rem 0
    }
}

.section-2 .row:nth-of-type(2) .info {
    background: #962725
}

@media (min-width: 768px) {
    .section-2 .row:nth-of-type(2) .info::before {
        border-width: .5em;
        border-style: solid solid solid solid;
        border-color: transparent transparent transparent #962725;
        right: -1.8rem;
        border-width: 1rem 0 1rem 1.8rem
    }
}

.section-2 .row:nth-of-type(3) .info {
    background: #a03e27
}

@media (min-width: 768px) {
    .section-2 .row:nth-of-type(3) .info::before {
        border-width: .5em;
        border-style: solid solid solid solid;
        border-color: transparent #a03e27 transparent transparent;
        left: -1.5rem;
        border-width: 1rem 1.8rem 1rem 0
    }
}

.section-2 .row>.col-sm-6:nth-of-type(1) .info {
    background: #b85128
}

@media (min-width: 768px) {
    .section-2 .row>.col-sm-6:nth-of-type(1) .info::before {
        border-width: .5em;
        border-style: solid solid solid solid;
        border-color: transparent transparent transparent #b85128;
        right: -1.5rem;
        border-width: 1rem 0 1rem 1.8rem
    }
}

.section-2 .row>.col-sm-6:nth-of-type(2) .info {
    background: #d38b38
}

@media (min-width: 768px) {
    .section-2 .row>.col-sm-6:nth-of-type(2) .info::before {
        border-width: .5em;
        border-style: solid solid solid solid;
        border-color: transparent transparent transparent #d38b38;
        right: -1.5rem;
        border-width: 1rem 0 1rem 1.8rem
    }
}

@media screen and (max-width: 767px) {
    .section-2 {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap
    }
    .section-2>.row {
        width: 100%;
        height: auto
    }
    .section-2>.row:nth-of-type(3) {
        width: 100%
    }
    .section-2>.row:last-child {
        width: 100%
    }
    .section-2 .col-sm-9 {
        height: auto;
        width: 100%;
        padding-top: 100%
    }
    .section-2 .col-sm-9>img {
        position: absolute;
        top: 0;
        height: 100%;
        width: auto;
        -webkit-transform: translateX(-25%);
        transform: translateX(-25%)
    }
    .section-2 .info {
        padding: 2rem 0
    }
    .section-2 .info .flexcenter {
        height: auto
    }
    .section-2 .col-sm-6 {
        width: 100%
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section-2 .col-sm-3 {
        width: 50%
    }
    .section-2 .col-sm-9 {
        width: 50%
    }
    .section-2 .col-sm-9 img {
        height: 100%;
        width: auto;
        position: absolute
    }
    .section-2 .col-sm-push-3 {
        left: 50%
    }
    .section-2 .col-sm-pull-9 {
        right: 50%
    }
    .section-2>.row>a>.col-sm-6>img {
        position: absolute;
        top: 0;
        height: 100%;
        width: auto;
        left: -10%
    }
    .section-2>.row>.col-sm-6>a>.col-sm-6>img {
        position: absolute;
        top: 0;
        height: 100%;
        width: auto
    }
    .section-2 .info .flexcenter {
        height: auto;
        padding: 2rem 0
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .section-2 .col-sm-9 img {
        height: 100%;
        width: 100%;
        position: absolute
    }
    .section-2>.row>a>.col-sm-6>img {
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%
    }
    .section-2>.row>.col-sm-6>a>.col-sm-6>img {
        position: absolute;
        top: 0;
        height: 100%;
        width: 100%
    }
    .section-2 .info .flexcenter {
        height: auto;
        padding: 2rem 0
    }
}

.section-3 {
    padding: 0
}

.section-3 hgroup.col-xs-12 {
    margin: 4rem 0 1rem
}

.section-3 hgroup.col-xs-12 h1 {
    text-align: center;
    font-size: 2.8rem;
    letter-spacing: .3rem
}

.section-3 hgroup.col-xs-12 h3 {
    text-align: center;
    letter-spacing: .5rem;
    margin-top: 1rem;
    font-size: 1.8rem
}

.section-3>.row:nth-of-type(1)::after {
    content: '';
    display: block;
    border-width: .5em;
    border-style: solid solid solid solid;
    border-color: transparent transparent #962725 transparent;
    border-width: 0 1.2rem 2rem 1.2rem;
    width: 1rem;
    height: 1rem;
    margin: 0 auto
}

.section-3>.row:nth-of-type(2) {
    background: #962725
}

@media (min-width: 768px) {
    .section-3>.row:nth-of-type(2) {
        padding: 4rem 4rem;
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center
    }
}

@media screen and (max-width: 767px) {
    .section-3>.row:nth-of-type(2) {
        padding: 2rem 0
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section-3>.row:nth-of-type(2) {
        flex-wrap: wrap
    }
}

.section-3 .col-sm-6 {
    padding: 0 0rem
}

@media (min-width: 768px) {
    .section-3 .col-sm-6 {
        margin: 0 4rem;
        width: 40%
    }
}

@media screen and (max-width: 767px) {
    .section-3 .col-sm-6 {
        padding: 0 2rem
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section-3 .col-sm-6 {
        width: 100%
    }
}

.section-3 .col-sm-6 img {
    width: 100%;
    border: 8px solid #fff
}

@media (min-width: 768px) {
    .section-3 .col-sm-6:first-child {
        width: 30%
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section-3 .col-sm-6:first-child {
        width: 100%
    }
}

@media screen and (max-width: 767px) {
    .section-3 .col-sm-6.appendnews {
        padding: 2rem
    }
}

.section-3 h5 a,
.section-3 .mdetail p a {
    color: #fff
}

.section-3 h5 {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    left: -1.5rem
}

.section-3 h5::before {
    content: '';
    display: inline-block;
    width: .5rem;
    height: .5rem;
    background: #fff;
    border-radius: 50%;
    position: relative;
    margin-right: 1rem
}

.section-3 h5 a {
    font-size: 1.5rem
}

.section-4 {
    margin: 4rem 0;
    padding: 0
}

.section-4 hgroup h1 {
    text-align: center;
    font-size: 2.8rem;
    letter-spacing: .3rem;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

.section-4 hgroup h1::before,
.section-4 hgroup h1::after {
    content: '';
    display: inline-block;
    width: calc(50% - 8rem);
    height: 1px;
    background: #e83828
}

.section-4 hgroup h1::after {
    margin-left: 2rem
}

@media screen and (max-width: 767px) {
    .section-4 hgroup h1::after {
        margin-left: 1rem
    }
}

.section-4 hgroup h1::before {
    margin-right: 2rem
}

@media screen and (max-width: 767px) {
    .section-4 hgroup h1::before {
        margin-right: 1rem
    }
}

.section-4 hgroup h3 {
    text-align: center;
    letter-spacing: .5rem;
    margin-top: 1rem;
    font-size: 1.8rem
}

@media (min-width: 768px) {
    .section-4 .row:nth-of-type(2),
    .section-4 .row:nth-of-type(3) {
        padding: 0 4rem
    }
}

@media screen and (max-width: 767px) {
    .section-4 .row:nth-of-type(2),
    .section-4 .row:nth-of-type(3) {
        padding: 2rem 2rem 0
    }
}

.section-4 .row:nth-of-type(2) ul,
.section-4 .row:nth-of-type(3) ul {
    margin-top: 3rem;
    padding-left: 10rem;
    display: -webkit-box;
    display: flex
}

@media screen and (max-width: 767px) {
    .section-4 .row:nth-of-type(2) ul,
    .section-4 .row:nth-of-type(3) ul {
        flex-wrap: wrap;
        padding-left: 0;
        -webkit-box-pack: center;
        justify-content: center;
        margin-top: 1rem
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .section-4 .row:nth-of-type(2) ul,
    .section-4 .row:nth-of-type(3) ul {
        padding-left: 0
    }
}

.section-4 .row:nth-of-type(2) ul li,
.section-4 .row:nth-of-type(3) ul li {
    margin: 0 2rem
}

@media (min-width: 768px) {
    .section-4 .row:nth-of-type(2) ul li,
    .section-4 .row:nth-of-type(3) ul li {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -webkit-box-pack: center;
        justify-content: center
    }
}

@media screen and (max-width: 767px) {
    .section-4 .row:nth-of-type(2) ul li,
    .section-4 .row:nth-of-type(3) ul li {
        display: block;
        float: left;
        width: calc(100% / 3 - 2rem);
        margin: 1rem
    }
}

.section-4 .row:nth-of-type(2) ul li img,
.section-4 .row:nth-of-type(3) ul li img {
    width: 150px;
    height: auto
}

@media screen and (max-width: 767px) {
    .section-4 .row:nth-of-type(2) ul li img,
    .section-4 .row:nth-of-type(3) ul li img {
        width: 100%
    }
}

.contact.container-fluid {
    padding: 0;
    background: url("/ezfiles/38/1038/img/625/footbg.png") center center no-repeat;
    background-size: cover
}

.contact.container-fluid::before {
    content: '';
    display: block;
    width: 100%;
    height: 1rem;
    background: url("/ezfiles/38/1038/img/625/pic-front-2.png") center center repeat-x;
    background-size: 100%;
    background-position: -2px 0
}

@media (min-width: 768px) {
    .contact.container-fluid hgroup.col-xs-12 {
        margin: 4rem 0
    }
}

.contact.container-fluid hgroup.col-xs-12 h1 {
    text-align: center;
    font-size: 2.8rem;
    letter-spacing: .3rem;
    color: #fff
}

.contact.container-fluid hgroup.col-xs-12 h3 {
    text-align: center;
    letter-spacing: .5rem;
    margin-top: 1rem;
    font-size: 1.8rem;
    color: #fff
}

.contact.container-fluid .form-section {
    margin: 0 auto
}

@media (min-width: 768px) {
    .contact.container-fluid .form-section {
        width: 70%
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .contact.container-fluid .form-section {
        width: 100%
    }
}

.contact.container-fluid .form-section .formBS {
    border: none
}

.contact.container-fluid .form-section .form-group.form-group {
    border: none
}

.contact.container-fluid .form-section .form-group.form-group [class*="col-sm-"] {
    border: none
}

@media (min-width: 768px) {
    .contact.container-fluid .form-section .form-group.form-group [class*="col-sm-"] {
        margin-bottom: 1.5rem
    }
}

.contact.container-fluid .form-section .col-sm-3 {
    text-align: right
}

@media (min-width: 768px) {
    .contact.container-fluid .form-section .col-sm-3 {
        width: 13%;
        color: #fff
    }
}

@media screen and (max-width: 767px) {
    .contact.container-fluid .form-section .col-sm-3 {
        color: #fff
    }
}

.contact.container-fluid .form-section .col-sm-9 input,
.contact.container-fluid .form-section .col-sm-9 textarea {
    background: rgba(255, 255, 255, 0.7)
}

@media (min-width: 768px) {
    .contact.container-fluid .form-section .col-sm-9 {
        width: 87%
    }
}

.contact.container-fluid .form-section .btn.btn-s {
    border: 3px solid #fff;
    border-radius: 1rem;
    background: #962725;
    color: #fff
}

.footer {
    background: #a03e27;
    position: relative
}

@media (min-width: 768px) {
    .footer .foot {
        padding-top: 4rem;
        padding-bottom: 4rem
    }
}

@media screen and (max-width: 767px) {
    .footer .foot {
        padding-top: 4rem;
        padding-bottom: 2rem
    }
}

@media (min-width: 768px) {
    .footer .contact {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center
    }
    .footer .contact address,
    .footer .contact p {
        display: inline-block
    }
}

@media screen and (max-width: 767px) {
    .footer .contact {
        padding-top: 1rem;
        margin-bottom: 3rem
    }
    .footer .contact address,
    .footer .contact p {
        margin-bottom: 1rem
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .footer .contact {
        flex-wrap: wrap;
        margin-bottom: 2rem;
        padding-top: 1rem
    }
    .footer .contact address,
    .footer .contact p {
        width: 100%;
        display: block;
        margin-bottom: 1rem
    }
}

@media (min-width: 768px) {
    .footer .col-xs-12>.copyright {
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center
    }
}

.footer .col-xs-12>.copyright p,
.footer .col-xs-12>.copyright a {
    display: inline-block;
    font-size: 1rem
}

@media screen and (max-width: 767px) {
    .footer .socialicon {
        position: absolute;
        bottom: 0;
        right: 0
    }
}

.footer .socialicon img {
    width: 30px;
    height: 30px
}

@media (min-width: 768px) {
    .footer .socialicon {
        position: absolute;
        top: 3rem;
        right: 1%
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer .socialicon {
        right: 1rem
    }
}

@media (min-width: 768px) {
    .section-1,
    .section-2,
    .section-4,
    .contact.container-fluid,
    .section-3 .row .col-sm-6:first-child,
    .section-3 .row .col-sm-6:last-child {
        opacity: 0
    }
}

@-webkit-keyframes cart {
    from {
        -webkit-transform: translateX(200%);
        transform: translateX(200%);
        transition: 0.6s cubic-bezier(0.81, 0.26, 0, 0.93)
    }
    to {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        transition: 0.6s cubic-bezier(0.81, 0.26, 0, 0.93)
    }
}

@keyframes cart {
    from {
        -webkit-transform: translateX(200%);
        transform: translateX(200%);
        transition: 0.6s cubic-bezier(0.81, 0.26, 0, 0.93)
    }
    to {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        transition: 0.6s cubic-bezier(0.81, 0.26, 0, 0.93)
    }
}

@media (min-width: 768px) {
    body:not(.page_mobilehome) #Dyn_head+div {
        margin-top: -105px
    }
}

.mpgdetail {
    padding: 0
}

body:not(.page_mobilehome) .wrap,
.mpgdetail {
    background: #fdf0d9
}

.module-sublist {
    display: none
}

.page-foot {
    margin-top: 4em;
    margin-bottom: 4em
}

.page-foot img {
    overflow: hidden;
    opacity: 0.2
}

.page.page-aboutus {
    padding: 0;
    position: relative
}

@media (min-width: 768px) {
    .page.page-aboutus .col-xs-12.titlebg {
        position: absolute;
        left: 5%;
        top: 25%;
        width: 450px;
        padding: 1em
    }
}

@media screen and (max-width: 767px) {
    .page.page-aboutus .col-xs-12.titlebg {
        background: #333;
        padding: 0 1em 1em
    }
}

.page.page-aboutus .col-xs-12.titlebg header img:first-child {
    width: 220px;
    margin: 0 auto
}

.page.page-aboutus .col-xs-12.titlebg header h1 {
    color: #fff;
    font-family: "FangSong", "LiSong Pro Light", "STFangsong", "SimSun", "NSimSun", "sans-serif";
    font-weight: bold;
    letter-spacing: .1em;
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center
}

@media screen and (max-width: 767px) {
    .page.page-aboutus .col-xs-12.titlebg header h1 {
        font-family: "Microsoft YaHei", "SimHei", "LiHei Pro Medium", "SimHei", "sans-serif";
        font-weight: normal;
        font-size: 32px;
        text-align: center
    }
}

.page.page-aboutus .col-xs-12.titlebg header img:last-child {
    margin-top: 1em;
    margin-bottom: 1em;
    background-color: #fff;
    border-radius: 50%
}

.page.page-aboutus .col-xs-12.titlebg p {
    color: #fff;
    line-height: 2em
}

.page.page-aboutus .col-xs-12.titlebg h3 {
    text-align: center;
    color: #fff;
    font-family: "FangSong", "LiSong Pro Light", "STFangsong", "SimSun", "NSimSun", "sans-serif";
    font-weight: bold;
    margin-top: 1.5em
}

@media screen and (max-width: 767px) {
    .page.page-aboutus .col-xs-12.titlebg h3 {
        font-weight: normal;
        font-family: "Microsoft YaHei", "SimHei", "LiHei Pro Medium", "SimHei", "sans-serif";
        letter-spacing: .1em;
        line-height: 1.5em
    }
}

.page.page-aboutus .banner .owl-controls {
    display: none
}

.page.page-aboutus.timeline {
    position: relative;
    width: 100%;
    max-width: inherit;
    padding-top: 4em
}

.page.page-aboutus.timeline::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: url("/ezfiles/38/1038/img/625/8.png") center center no-repeat;
    background-size: cover;
    -webkit-filter: blur(5px);
    filter: blur(5px);
    z-index: 0
}

.page.page-aboutus.timeline::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: .3;
    z-index: 1
}

.page.page-aboutus.timeline .row {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2
}

.page.page-aboutus.timeline h1.title {
    text-align: center;
    color: #fff;
    font-family: "FangSong", "LiSong Pro Light", "STFangsong", "SimSun", "NSimSun", "sans-serif";
    font-weight: bold;
    letter-spacing: .5em
}

@media screen and (max-width: 767px) {
    .page.page-aboutus.timeline h1.title {
        font-family: "Microsoft YaHei", "SimHei", "LiHei Pro Medium", "SimHei", "sans-serif";
        letter-spacing: .1em
    }
}

.page.page-aboutus.timeline .col-xs-12 ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    margin: 4em auto 4em;
    position: relative;
    display: block
}

.page.page-aboutus.timeline .col-xs-12 ul::before {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    background: #fff;
    left: 50%;
    top: 0;
    position: absolute
}

@media screen and (max-width: 767px) {
    .page.page-aboutus.timeline .col-xs-12 ul::before {
        left: 40px
    }
}

.page.page-aboutus.timeline .col-xs-12 ul li {
    color: #fff;
    position: relative;
    width: 100%;
    margin-top: 0em;
    display: inline-block;
    clear: both
}

.page.page-aboutus.timeline .col-xs-12 ul li article {
    padding: 1em 2em;
    width: 46%;
    position: relative
}

@media screen and (max-width: 767px) {
    .page.page-aboutus.timeline .col-xs-12 ul li article {
        width: 90%;
        padding: 0 1em 0 50px
    }
}

.page.page-aboutus.timeline .col-xs-12 ul li article::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    background-image: url("/ezfiles/38/1038/img/691/icon.png");
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
    transition: .6s ease;
    top: 25%
}

.page.page-aboutus.timeline .col-xs-12 ul li article a span {
    color: #fff;
    display: block;
    font-size: 18px;
    margin-top: .5em;
    margin-bottom: .5em;
    font-weight: bold
}

.page.page-aboutus.timeline .col-xs-12 ul li article p {
    font-size: 16px;
    line-height: 2em;
    display: none;
    transition: .6s ease
}

.page.page-aboutus.timeline .col-xs-12 ul li img {
    display: none
}

.page.page-aboutus.timeline .col-xs-12 ul li:nth-child(even) article {
    text-align: right
}

@media screen and (max-width: 767px) {
    .page.page-aboutus.timeline .col-xs-12 ul li:nth-child(even) article {
        float: right;
        text-align: left
    }
}

.page.page-aboutus.timeline .col-xs-12 ul li:nth-child(even) article::before {
    right: -5.3em
}

@media screen and (max-width: 767px) {
    .page.page-aboutus.timeline .col-xs-12 ul li:nth-child(even) article::before {
        left: -10px;
        right: inherit
    }
}

.page.page-aboutus.timeline .col-xs-12 ul li:nth-child(odd) article {
    float: right
}

.page.page-aboutus.timeline .col-xs-12 ul li:nth-child(odd) article::before {
    left: -5.2em
}

@media screen and (max-width: 767px) {
    .page.page-aboutus.timeline .col-xs-12 ul li:nth-child(odd) article::before {
        left: -10px
    }
}

.page.page-aboutus .awards {
    margin-top: 4em
}

.page.page-aboutus .awards header img {
    display: block;
    margin: 0 auto;
    width: 220px
}

.page.page-aboutus .awards header h1 {
    text-align: center;
    font-family: "FangSong", "LiSong Pro Light", "STFangsong", "SimSun", "NSimSun", "sans-serif";
    font-weight: bold;
    letter-spacing: .2em
}

@media screen and (max-width: 767px) {
    .page.page-aboutus .awards header h1 {
        font-family: "Microsoft YaHei", "SimHei", "LiHei Pro Medium", "SimHei", "sans-serif";
        font-weight: normal;
        letter-spacing: .1em
    }
}

.page.page-aboutus .awards ul.list-inline {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-top: 4em
}

.page.page-aboutus .awards ul.list-inline li {
    width: calc(100% / 3 - 1em);
    margin: 0 .5em;
    text-align: center
}

@media screen and (max-width: 767px) {
    .page.page-aboutus .awards ul.list-inline li {
        width: 100%
    }
}

.page.page-aboutus .awards ul.list-inline li .year {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 2em
}

.page.page-aboutus .awards ul.list-inline li .year+p {
    font-size: 16px;
    line-height: 2em
}

.page.page-aboutus .clients,
.page.page-aboutus .suppliers {
    margin-top: 4em
}

.page.page-aboutus .clients header img:first-child,
.page.page-aboutus .suppliers header img:first-child {
    width: 320px
}

@media screen and (max-width: 767px) {
    .page.page-aboutus .clients header img:first-child,
    .page.page-aboutus .suppliers header img:first-child {
        width: 300px
    }
}

.page.page-aboutus .clients header h1,
.page.page-aboutus .suppliers header h1 {
    text-align: center;
    font-family: "FangSong", "LiSong Pro Light", "STFangsong", "SimSun", "NSimSun", "sans-serif";
    font-weight: bold;
    letter-spacing: .2em
}

@media screen and (max-width: 767px) {
    .page.page-aboutus .clients header h1,
    .page.page-aboutus .suppliers header h1 {
        font-family: "Microsoft YaHei", "SimHei", "LiHei Pro Medium", "SimHei", "sans-serif";
        font-weight: normal;
        letter-spacing: .1em
    }
}

.page.page-aboutus .clients header img:last-child,
.page.page-aboutus .suppliers header img:last-child {
    background-color: #fff;
    border-radius: 50%
}

.page.page-aboutus .clients article p,
.page.page-aboutus .suppliers article p {
    margin-top: 2em;
    line-height: 2em;
    font-size: 16px;
    text-align: center
}

@media screen and (max-width: 767px) {
    .page.page-aboutus .clients article p,
    .page.page-aboutus .suppliers article p {
        padding: 0 1em
    }
}

.page.page-aboutus .clients article p+h4,
.page.page-aboutus .suppliers article p+h4 {
    font-size: 26px;
    text-align: center;
    font-family: "FangSong", "LiSong Pro Light", "STFangsong", "SimSun", "NSimSun", "sans-serif";
    font-weight: bold;
    margin-top: 1.5em;
    color: #f39800;
    margin-top: 1em
}

@media screen and (max-width: 767px) {
    .page.page-aboutus .clients article p+h4,
    .page.page-aboutus .suppliers article p+h4 {
        font-weight: normal;
        font-family: "Microsoft YaHei", "SimHei", "LiHei Pro Medium", "SimHei", "sans-serif";
        letter-spacing: .1em;
        line-height: 1.5em
    }
}

.page.page-aboutus .clients article ul.list-inline,
.page.page-aboutus .suppliers article ul.list-inline {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-top: 4em
}

@media screen and (max-width: 767px) {
    .page.page-aboutus .clients article ul.list-inline,
    .page.page-aboutus .suppliers article ul.list-inline {
        padding: 0 1em
    }
}

.page.page-aboutus .clients article ul.list-inline li,
.page.page-aboutus .suppliers article ul.list-inline li {
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    margin: 5px;
}

@media screen and (max-width: 767px) {
    .page.page-aboutus .clients article ul.list-inline li,
    .page.page-aboutus .suppliers article ul.list-inline li {
        width: calc(100% / 2 - 1em);
        margin: 0 .5em 1em
    }
}

.page.page-aboutus .brandIntroduction {
    padding: 6em 0
}

.page.page-aboutus h2.title {
    font-weight: bold;
    color: #c07800;
    margin-bottom: 0;
    font-size: 36px;
    letter-spacing: 0
}

.page.page-aboutus h2.title-cn {
    margin-top: 0;
    color: #da8800;
    font-size: 36px
}

.page.page-aboutus h3 {
    font-size: 18px;
    color: #1A1A1A;
    line-height: 2em
}

.page.page-title {
    padding: 0
}

.page.page-title .row .col-xs-12 {
    position: relative;
    display: block;
    overflow: hidden
}

@media (min-width: 768px) {
    .page.page-title .row .col-xs-12 {
        height: 600px
    }
}

.page.page-title .row .col-xs-12::after {
    content: '';
    display: block;
    width: 100%;
    height: 1rem;
    background: url("/ezfiles/38/1038/img/625/pic-front-1.png") center center repeat-x;
    background-size: cover;
    position: absolute;
    bottom: 0rem;
    z-index: 2
}

@media screen and (max-width: 767px) {
    .page.page-title .row .col-xs-12::after {
        background-size: cover
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .page.page-title .row .col-xs-12::after {
        background-size: cover
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .page.page-title .row .col-xs-12::after {
        background-size: cover
    }
}

.page.page-title .row .col-xs-12::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1
}

.page.page-title .row .col-xs-12 img {
    width: 100%
}

.module.module-rcglist {
    max-width: 1000px;
    display: block;
    margin: 4em auto
}

@media screen and (max-width: 767px) {
    .module.module-rcglist {
        margin-top: 2em;
        padding: 0 1em
    }
}

.module.module-rcglist .mt h3 {
    margin-bottom: 1em
}

.module.module-rcglist .row.listBS {
    margin-bottom: 2em
}

@media screen and (max-width: 767px) {
    .module.module-rcglist .row.listBS {
        margin-bottom: 1em
    }
}

.module-detail .mpgtitle {
    display: none
}

.module-detail .mb {
    padding: 0
}

.module-detail .mpgdetail {
    background-size: cover !important;
    background-repeat: no-repeat !important
}

.news-detail {
    max-width: 1000px;
    display: block;
    margin: 2em auto 0;
    text-align: center;
    color: #1A1A1A;
    padding: 0em 0;
    background: #fff
}

@media screen and (max-width: 767px) {
    .news-detail {
        margin: 2em auto;
        padding: 2em 1em
    }
}

.news-detail .newsbg {
    margin-bottom: 1em
}

.news-detail .row {
    padding: .5em
}

.news-detail .detail-group {
    padding: 1em
}

.news-detail .detail-group h1 {
    border-bottom: 1px solid #fff;
    display: inline-block;
    padding-bottom: .5em
}

.news-detail .detail-group h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: #C5C6C6
}

.news-detail .detail-group p {
    font-size: 16px;
    letter-spacing: .1em
}

.news-detail .detail-group h3 {
    color: #fff;
    font-weight: bold
}

.module-ptlist .d-txt {
    padding-left: 1em
}

@media screen and (max-width: 767px) {
    .module-ptlist .d-txt {
        padding-left: 0
    }
}

.module-ptlist .page.page-product.detail header h1 {
    margin-top: 0;
    font-size: 26px;
    color: rgba(26, 26, 26, 0.9);
    font-weight: bold;
    letter-spacing: .1em;
    margin-bottom: .5em;
    padding-bottom: .5em;
    display: inline-block;
    border-bottom: 2px solid #1A1A1A
}

@media screen and (max-width: 767px) {
    .module-ptlist .page.page-product.detail header h1 {
        margin-top: 1em
    }
}

.module-ptlist .page.page-product.detail article p {
    line-height: 1.5em;
    color: #1A1A1A;
    font-size: 16px;
    margin-bottom: .5em
}

.row.col2.row_0 {
    max-width: 1000px;
    margin: 2em auto
}

@media screen and (max-width: 767px) {
    .row.col2.row_0 {
        margin-top: 0;
        margin-bottom: 0;
        padding: 0 1em
    }
}

.row.col2.row_0 .col_01 {
    width: 10em
}

@media screen and (max-width: 767px) {
    .row.col2.row_0 .col_01 {
        width: 100%;
        margin-top: 1em
    }
}

.row.col2.row_0 .col_02 {
    width: calc(100% - $col-pd)
}

@media screen and (max-width: 767px) {
    .row.col2.row_0 .col_02 {
        width: 100%
    }
}

.row.col2.row_0 .mbox {
    background: #fff;
    border: 1px solid transparent;
    transition: .3s ease
}

.row.col2.row_0 .mbox:hover {
    box-shadow: 1px 1px 10px -1px #ffc15a
}

.row.col2.row_0 .d-txt {
    margin-top: 2em;
    padding-left: 0
}

.row.col2.row_0 .d-txt h5 {
    padding: 0
}

.row.col2.row_0 .d-txt h5 a {
    font-size: 16px;
    letter-spacing: .1em;
    font-weight: bold;
    padding: 0em 1em
}

.row.col2.row_0 .d-txt .mdetail {
    padding: 0 1em;
    color: #1A1A1A;
    font-size: 14px;
    margin: 1em 0
}

@media screen and (max-width: 767px) {
    .row.col2.row_0 .left-menu {
        background: #fff;
        padding: 1em
    }
}

.row.col2.row_0 .left-menu h1.title {
    font-size: 16px;
    color: #1A1A1A;
    border-bottom: 1px solid #1A1A1A;
    padding-bottom: .5em;
    margin-bottom: 1em;
    display: inline-block;
    color: #1A1A1A;
    font-weight: bold
}

.row.col2.row_0 .left-menu>ul {
    padding-left: 0;
    list-style: none
}

.row.col2.row_0 .left-menu>ul>li {
    margin-bottom: 2em
}

.row.col2.row_0 .left-menu>ul>li a {
    font-size: 16px
}

.row.col2.row_0 .left-menu>ul>li a.active+ul {
    display: block
}

.row.col2.row_0 .left-menu>ul>li>ul {
    display: none;
    margin-top: .5em;
    padding: 1em 0em;
    list-style: none
}

.row.col2.row_0 .left-menu>ul>li>ul li {
    margin-bottom: 2em
}

.row.col2.row_0 .left-menu>ul>li>ul li:last-child {
    margin-bottom: 0
}

.row.col2.row_0 .left-menu>ul>li>ul li a {
    border: 1px dashed #f39800;
    padding: .5em
}

@media (min-width: 768px) {
    .row.col2.row_0 .left-menu>ul>li>ul li a {
        background: rgba(243, 152, 0, 0.2)
    }
}

@media screen and (max-width: 767px) {
    .module-ecptdetail {
        margin-top: 2em
    }
}

.module-ecptdetail .mb {
    padding-top: 0
}

.module-ecptdetail .mpro-preview.col-sm-5 {
    display: none
}

.module-ecptdetail .mpro-panel.col-sm-7 {
    width: 100%
}

.module-ecptdetail .thumb-large .owl-carousel .owl-item img,
.module-ecptdetail .thumb-large .mlarge .owl-stage-outer {
    max-height: inherit;
    width: 100%
}

.module-ecptdetail .owl-controls {
    display: none
}

.module-ecptdetail .mpgtitle.mpro-name {
    display: none
}

.module-ecptdetail .mpro-wrap {
    position: relative
}

.module-ecptdetail .col-sm-5 {
    width: calc(100% - 10%);
    max-width: inherit
}

@media screen and (max-width: 767px) {
    .module-ecptdetail .col-sm-5 {
        width: 100%
    }
}

.module-ecptdetail .page.page-product.detail {
    padding: 2em;
    background: #fdf0d9
}

.module-ecptdetail .page.page-product.detail .col-sm-8 {
    padding: 2em;
    background: #fff
}

.module-ecptdetail .page.page-product.detail .col-sm-4 {
    padding-left: 2em
}

@media screen and (max-width: 767px) {
    .module-ecptdetail .page.page-product.detail .col-sm-4 {
        padding-left: 0
    }
}

.module-ecptdetail .page.page-product.detail header h1 {
    margin-top: 0;
    font-size: 26px;
    color: rgba(26, 26, 26, 0.9);
    font-weight: bold;
    letter-spacing: .1em;
    display: inline-block
}

@media screen and (max-width: 767px) {
    .module-ecptdetail .page.page-product.detail header h1 {
        margin-top: 1em
    }
}

.module-ecptdetail .page.page-product.detail article p {
    line-height: 1.5em;
    color: #1A1A1A;
    font-size: 16px;
    margin-bottom: .5em
}

.module-ecptdetail .page.page-product.detail article p span {
    font-weight: bold;
    color: #170c05
}

.module-ecptdetail .page.page-product.detail .infoDetail {
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom: 1px solid #ccc
}

.module-ecptdetail .page.page-product.detail .theSameProducts {
    padding-top: 1em;
    margin-top: 1em
}

.module-ecptdetail .page.page-product.detail .theSameProducts h1.title {
    margin-top: 0
}

.module-ecptdetail .page.page-product.detail .theSameProducts ul.list-inline {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1em
}

.module-ecptdetail .page.page-product.detail .theSameProducts ul.list-inline li {
    width: calc(100% / 2 - 2em);
    margin: 1em;
    background: #fff
}

.module-ecptdetail .page.page-product.detail .theSameProducts ul.list-inline li img {
    padding: .5em;
    width: 100%
}

.module-ecptdetail .page.page-product.detail .owlHash {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -.1em
}

.module-ecptdetail .page.page-product.detail .owlHash li {
    width: calc(100% / 4 - .2em);
    margin: 1em .1em
}

.module-ecptdetail .page.page-product.detail .owlHash li img {
    width: 100%
}

.module-ecptdetail .nav.nav-tabs {
    display: none
}

.page.page-chuang,
.page.page-chuang-product {
    padding: 4em 0
}

@media screen and (max-width: 767px) {
    .page.page-chuang,
    .page.page-chuang-product {
        padding: 2em 1em
    }
}

.page.page-chuang>.row,
.page.page-chuang-product>.row {
    border: 1px solid #f39800;
    position: relative;
    padding: 2em
}

@media screen and (max-width: 767px) {
    .page.page-chuang>.row,
    .page.page-chuang-product>.row {
        padding: 0 2em
    }
}

.page.page-chuang>.row::before,
.page.page-chuang-product>.row::before {
    content: '';
    background: rgba(0, 0, 0, 0.7);
    display: block;
    width: calc(100% - 1em);
    height: calc(100% - 1em);
    position: absolute;
    top: .5em;
    left: .5em;
    border: 1px solid #f39800
}

.page.page-chuang article.col-xs-12,
.page.page-chuang-product article.col-xs-12 {
    text-align: center;
    color: #fff
}

.page.page-chuang article.col-xs-12 header h1.title,
.page.page-chuang-product article.col-xs-12 header h1.title {
    font-family: "FangSong", "LiSong Pro Light", "STFangsong", "SimSun", "NSimSun", "sans-serif";
    color: #fff;
    font-weight: bold;
    letter-spacing: .1em
}

@media screen and (max-width: 767px) {
    .page.page-chuang article.col-xs-12 header h1.title,
    .page.page-chuang-product article.col-xs-12 header h1.title {
        font-family: "Microsoft YaHei", "SimHei", "LiHei Pro Medium", "SimHei", "sans-serif";
        font-weight: normal
    }
}

.page.page-chuang article.col-xs-12 header h2.title,
.page.page-chuang-product article.col-xs-12 header h2.title {
    margin-bottom: 0
}

.page.page-chuang article.col-xs-12 header h4,
.page.page-chuang-product article.col-xs-12 header h4 {
    color: #aaa;
    letter-spacing: 0em;
    margin-top: .5em
}

.page.page-chuang article.col-xs-12 article,
.page.page-chuang-product article.col-xs-12 article {
    margin-top: 2em;
    margin-bottom: 2em
}

@media screen and (max-width: 767px) {
    .page.page-chuang article.col-xs-12 article,
    .page.page-chuang-product article.col-xs-12 article {
        margin-bottom: 1em
    }
}

.page.page-chuang article.col-xs-12 article p,
.page.page-chuang-product article.col-xs-12 article p {
    font-size: 16px;
    line-height: 2em
}

.page.page-chuang article.col-xs-12 article p+i,
.page.page-chuang-product article.col-xs-12 article p+i {
    font-size: 16px;
    color: #aaa;
    line-height: 2em
}

.page.page-chuang article.col-xs-12 article>img,
.page.page-chuang-product article.col-xs-12 article>img {
    width: 200px;
    margin-bottom: 2em
}

.page.page-chuang article.col-xs-12 article ul,
.page.page-chuang-product article.col-xs-12 article ul {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-transform: scale(0.8);
    transform: scale(0.8)
}

@media screen and (max-width: 767px) {
    .page.page-chuang article.col-xs-12 article ul,
    .page.page-chuang-product article.col-xs-12 article ul {
        -webkit-transform: scale(1);
        transform: scale(1);
        display: block;
        -webkit-column-count: 2;
        column-count: 2
    }
}

.page.page-chuang article.col-xs-12 article ul li,
.page.page-chuang-product article.col-xs-12 article ul li {
    margin: .5em 0
}

@media screen and (max-width: 767px) {
    .page.page-chuang article.col-xs-12 article ul li,
    .page.page-chuang-product article.col-xs-12 article ul li {
        width: 100%;
        display: inline-block;
        margin: 0 0em 1em
    }
}

.page.page-chuang article.col-xs-12 article ul li img,
.page.page-chuang-product article.col-xs-12 article ul li img {
    width: calc(100% - .5em)
}

.mpgdetail {
    background-repeat: no-repeat !important;
    background-size: cover !important
}

.page.page-chuang-product>.row article.col-xs-12>.row {
    margin: 6em 0
}

@media (min-width: 768px) {
    .page.page-chuang-product>.row article.col-xs-12>.row {
        display: -webkit-box;
        display: flex;
        -webkit-box-align: center;
        align-items: center
    }
}

.page.page-chuang-product>.row article.col-xs-12>.row:first-child {
    margin-top: 0
}

.page.page-chuang-product>.row article.col-xs-12>.row:last-child {
    margin-bottom: 0
}

.page.page-chuang-product>.row article.col-xs-12>.row .col-sm-push-6 {
    padding-right: 10%
}

@media screen and (max-width: 767px) {
    .page.page-chuang-product>.row article.col-xs-12>.row .col-sm-push-6 {
        padding-right: 0
    }
}

.page.page-chuang-product>.row article.col-xs-12>.row .col-sm-pull-6 {
    text-align: right;
    padding-left: 10%
}

@media screen and (max-width: 767px) {
    .page.page-chuang-product>.row article.col-xs-12>.row .col-sm-pull-6 {
        text-align: left;
        padding-left: 0
    }
}

@media screen and (max-width: 767px) {
    .page.page-chuang-product>.row article.col-xs-12>.row .col-sm-pull-6 header {
        margin-top: 1em
    }
}

.page.page-chuang-product>.row article.col-xs-12>.row .col-sm-pull-6 header p {
    font-size: 22px;
    font-weight: bold;
    color: #00b300;
    letter-spacing: .1em;
    margin-bottom: 0
}

.page.page-chuang-product>.row article.col-xs-12>.row .col-sm-pull-6 header p+i {
    color: #ccc;
    border-bottom: 1px solid #fff;
    padding-bottom: .5em
}

.page.page-chuang-product>.row article.col-xs-12>.row .col-sm-pull-6 article {
    margin-bottom: 0
}

.page.page-chuang-product>.row article.col-xs-12>.row .col-sm-pull-6 article p {
    margin: 0
}

.page.page-salesmap .row.part {
    margin-top: 4em;
    margin-bottom: 0
}

.page.page-salesmap .row.part h2.sub-title {
    text-align: center;
    margin-top: .5em;
    margin-bottom: .5em;
    font-family: 'Times New Roman', Times, serif;
    font-size: 36px
}

.page.page-salesmap .row.part article.col-xs-12 header h1,
.page.page-salesmap .row.store article.col-xs-12 header h1 {
    text-align: center;
    font-family: "FangSong", "LiSong Pro Light", "STFangsong", "SimSun", "NSimSun", "sans-serif";
    font-weight: bold;
    letter-spacing: .2em
}

@media screen and (max-width: 767px) {
    .page.page-salesmap .row.part article.col-xs-12 header h1,
    .page.page-salesmap .row.store article.col-xs-12 header h1 {
        font-family: "Microsoft YaHei", "SimHei", "LiHei Pro Medium", "SimHei", "sans-serif";
        font-weight: normal;
        letter-spacing: .1em
    }
}

.page.page-salesmap .row.part article.col-xs-12 ul.list-inline,
.page.page-salesmap .row.store article.col-xs-12 ul.list-inline {
    margin: 0em 0 2em
}

@media screen and (max-width: 767px) {
    .page.page-salesmap .row.part article.col-xs-12 ul.list-inline,
    .page.page-salesmap .row.store article.col-xs-12 ul.list-inline {
        -webkit-column-count: 2;
        column-count: 2
    }
}

@media screen and (max-width: 767px) {
    .page.page-salesmap .row.part article.col-xs-12 ul.list-inline li,
    .page.page-salesmap .row.store article.col-xs-12 ul.list-inline li {
        margin-bottom: 2em
    }
}

.page.page-salesmap .row.store {
    margin-top: 6em
}

@media screen and (max-width: 767px) {
    .page.page-salesmap .row.store {
        margin-top: 2em
    }
}

.page.page-salesmap .row.store p.contact,
.page.page-salesmap .row.store p.contact a {
    font-size: 22px;
    text-align: center;
    line-height: 2em;
    margin-top: 1em
}

.page.page-salesmap .row.store article.col-xs-12 header h1 {
    padding: .2em 0;
    margin-bottom: 0
}

.page.page-salesmap .row.store article.col-xs-12 header h2.sub-title {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 36px;
    margin-top: 0.5em;
    margin-bottom: 0.5em
}

.page.page-salesmap .row.store article.col-xs-12 article table {
    margin-top: 2em
}

.page.page-salesmap .row.store article.col-xs-12 article table thead {
    background: #d14a4a
}

.page.page-salesmap .row.store article.col-xs-12 article table thead th {
    color: #fff
}

.page.page-salesmap .row.store article.col-xs-12 article table tbody {
    background: #d65f5f
}

.page.page-salesmap .row.store article.col-xs-12 article table tbody td {
    color: #fff
}

@media screen and (max-width: 767px) {
    .page.page-salesmap .row.store article.col-xs-12 article table tbody td:nth-of-type(1) {
        width: 30%
    }
}

@media screen and (max-width: 767px) {
    .page.page-salesmap .row.store article.col-xs-12 article table tbody td:nth-of-type(2) {
        width: 40%
    }
}

@media screen and (max-width: 767px) {
    .page.page-salesmap .row.store article.col-xs-12 article table tbody td:nth-of-type(3) {
        width: 30%
    }
}

.page.page-contact>.row {
    max-width: 1000px;
    display: block;
    margin: 4em auto 2em
}

@media screen and (max-width: 767px) {
    .page.page-contact>.row {
        margin-top: 2em
    }
}

.page.page-contact>.row .col-sm-4 article:not(:first-child) {
    margin-top: 2em
}

.page.page-contact>.row .col-sm-4 article.info h1.title {
    font-size: 16px;
    letter-spacing: .1em;
    line-height: 2em
}

.page.page-contact>.row .col-sm-4 article.info h1.title span {
    font-size: 18px;
    display: block;
    font-weight: bold
}

.page.page-contact>.row .col-sm-4 .qr p {
    font-size: 18px;
    font-weight: bold
}

@media (min-width: 768px) {
    .page.page-contact>.row .col-sm-8 {
        padding-left: 2em;
        border-left: 1px solid #ccc
    }
}

.page.page-contact>.row .col-sm-8>div:not(.module) {
    width: 100% !important
}

@media screen and (max-width: 767px) {
    .page.page-contact>.row .col-sm-8>div:not(.module) {
        height: 300px !important
    }
}

.page.page-contact>.row .col-sm-8 .module-form {
    margin-top: 2em
}

.page.page-contact>.row .col-sm-8 .module-form .formBS {
    border-color: transparent
}

.page.page-contact>.row .col-sm-8 .module-form .formBS .form-group,
.page.page-contact>.row .col-sm-8 .module-form .formBS [class*="col-"] {
    border-color: transparent
}

.page.page-contact>.row .col-sm-8 .module-form label {
    text-align: right;
    border-color: transparent
}

.page.page-contact>.row .col-sm-8 .module-form input,
.page.page-contact>.row .col-sm-8 .module-form textarea {
    border-radius: 0;
    border-color: #ccc
}

.page.page-contact>.row .col-sm-8 .module-form .btn {
    background: #7c2020;
    color: #fff;
    border-color: transparent;
    border-radius: 0;
    transition: .3s ease
}

.page.page-contact>.row .col-sm-8 .module-form .btn:hover {
    background: #fff;
    color: #7c2020;
    border-color: #7c2020
}
.row.d-center{
  display: table;
  margin: 0 auto;
}
.about-banner img{
  width: 100%!important;
}
.list-inline>li{
  margin: 5px;
}
.page-salesmap .list-inline{
  padding: 30px 0;
}
.page-aboutus .list-inline>li{
  margin: 5px;
}
/*# sourceMappingURL=usercss.css.map */