@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

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

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

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

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

@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    40%, 43% {
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    40%, 43%, 70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06)
    }
    70% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    40%, 43% {
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    40%, 43%, 70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06)
    }
    70% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

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

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

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

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

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

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

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

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes jello {
    0%, 11.1%, to {
        -webkit-transform: none;
        transform: none
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {
    0%, 11.1%, to {
        -webkit-transform: none;
        transform: none
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

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

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInUp {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(-1turn);
        transform: perspective(400px) rotateY(-1turn)
    }
    0%, 40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) translateZ(150px) rotateY(-190deg)
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) translateZ(150px) rotateY(-170deg)
    }
    50%, 80% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(-1turn);
        transform: perspective(400px) rotateY(-1turn)
    }
    0%, 40% {
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) translateZ(150px) rotateY(-190deg)
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) translateZ(150px) rotateY(-170deg)
    }
    50%, 80% {
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@charset "utf-8";
.noSize {
  font-size: 0;
  text-indent: -9999em;
}
.flex {
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
  display: flex;
  /* Chrome 29+, Firefox 22+, IE 11+, Opera 12.1/17/18, Android 4.4+ */
}
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-focus-ring-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html,
body {
  width: 100%;
}
body {
  font-family: "\5FAE\8F6F\96C5\9ED1", "Microsoft YaHei", STHeiTi, sans-serif;
}
/* CSS Document */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu,
select {
  margin: 0;
  padding: 0;
}
html,
body,
fieldset,
img,
iframe,
abbr {
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
em,
strong,
b {
  font-weight: normal;
  font-style: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
li {
  list-style: none;
}
input,
textarea {
  outline: none;
}
button,
a,
div,
select {
  border: none;
  outline: none;
}
input,
textarea,
button,
a {
  font: inherit;
  color: inherit;
}
textarea {
  overflow: auto;
  resize: none;
}
input {
  outline: none;
}
a,
button {
  cursor: pointer;
}
a,
a:hover {
  text-decoration: none;
}
select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition-delay: 999999s;
  -webkit-transition: color 999999s ease-out, background-color 999999s ease-out;
}
#NIE-warning-dialog {
  -webkit-box-sizing: content-box !important;
          box-sizing: content-box !important;
}
#NIE-topBar {
  z-index: 999 !important;
}
#NIE-topBar * {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@font-face {
  font-family: 'fzlth';
  src: url('https://nie.res.netease.com/comm/js/nie/ref/fonts/fzlth.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
.no-webp html, 
.no-webp body {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sj-bg_d5743e97.png) no-repeat center center;
  background-size: cover}
.webp html, 
.webp body {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sj-bg_d5743e97.webp) no-repeat center center;
  background-size: cover}
.no-webp html, 
.no-webp body {background-size:cover}
.webp html, 
.webp body {background-size:cover}
html,
body {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 1370px;
  min-height: 100vh;
  font-family: 'fzlth';
}
#app {
  position: relative;
}
body {
  max-width: 1920px;
  font-size: 16px;
}
@media screen and (min-width: 2100px) {
  .el-select-dropdown {
    left: 50% !important;
    -webkit-transform: translateX(-10%) !important;
            transform: translateX(-10%) !important;
  }
}
.over-hidden {
  overflow: hidden;
}
.logo-list {
  position: absolute;
  left: 20px;
  width: 690px;
  top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.logo-list a {
  width: 225px;
  height: 75px;
}
.no-webp .logo-list a:nth-child(1) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/logo-wangyi_46eddca9.png) no-repeat center center;
  background-size: cover}
.webp .logo-list a:nth-child(1) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/logo-wangyi_46eddca9.webp) no-repeat center center;
  background-size: cover}
.no-webp .logo-list a:nth-child(1) {background-size:cover}
.webp .logo-list a:nth-child(1) {background-size:cover}
.logo-list a:nth-child(1) {
  width: 210px;
}
.no-webp .logo-list a:nth-child(2) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/logo-leihuo_0022d27f.png) no-repeat center center;
  background-size: cover}
.webp .logo-list a:nth-child(2) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/logo-leihuo_0022d27f.webp) no-repeat center center;
  background-size: cover}
.no-webp .logo-list a:nth-child(2) {background-size:cover}
.webp .logo-list a:nth-child(2) {background-size:cover}
.logo-list a:nth-child(2) {
  width: 80px;
}
.no-webp .logo-list a:nth-child(3) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/logo-xueyuan_04ee1b83.png) no-repeat center center;
  background-size: cover}
.webp .logo-list a:nth-child(3) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/logo-xueyuan_04ee1b83.webp) no-repeat center center;
  background-size: cover}
.no-webp .logo-list a:nth-child(3) {background-size:cover}
.webp .logo-list a:nth-child(3) {background-size:cover}
.logo-list a:nth-child(3) {
  width: 100px;
}
.no-webp .logo-list a:nth-child(4) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/logo-chuanmei_533c4679.png) no-repeat center center;
  background-size: cover}
.webp .logo-list a:nth-child(4) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/logo-chuanmei_533c4679.webp) no-repeat center center;
  background-size: cover}
.no-webp .logo-list a:nth-child(4) {background-size:cover}
.webp .logo-list a:nth-child(4) {background-size:cover}
.logo-list a:nth-child(4) {
  width: 150px;
}
.no-webp .zp-video-bg {background-color:rgba(0, 0, 0, 0.8)}
.webp .zp-video-bg {background-color:rgba(0, 0, 0, 0.8)}
.zp-video-bg {
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.zp-video-bg.animate {
  -webkit-animation: fadeInUp 0.4s ease-in-out;
          animation: fadeInUp 0.4s ease-in-out;
}
.zp-video-bg .zp-video-mb {
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 960px;
  min-width: 480px;
  max-height: 600px;
}
.zp-video-bg .zp-video-mb video {
  width: 100%;
  height: 100%;
}
.zp-video-bg .zp-video-mb {
  position: relative;
}
.no-webp .zp-video-bg .x {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3132px -800px}
.webp .zp-video-bg .x {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3132px -800px}
.no-webp .zp-video-bg .x {background-size:3203px 2581px}
.webp .zp-video-bg .x {background-size:3203px 2581px}
.no-webp .zp-video-bg .x {background-position:-3132px -800px}
.webp .zp-video-bg .x {background-position:-3132px -800px}
.zp-video-bg .x {
  cursor: pointer;
width:40px;
height:40px;

  position: absolute;
  right: 30px;
  top: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.zp-video-bg .x:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.no-webp .container-mb {background-color:rgba(0, 0, 0, 0.6)}
.webp .container-mb {background-color:rgba(0, 0, 0, 0.6)}
.container-mb {
  display: none;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.no-webp .container-mb .container-pop {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/bm-pop_c4b1541f.png) no-repeat center center}
.webp .container-mb .container-pop {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/bm-pop_c4b1541f.webp) no-repeat center center}
.container-mb .container-pop {
  width: 599px;
  height: 433px;
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #1850cb;
  font-size: 30px;
  text-align: center;
  line-height: 400px;
  text-indent: 1em;
}
.no-webp .container-mb .container-back {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3163px -886px}
.webp .container-mb .container-back {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3163px -886px}
.no-webp .container-mb .container-back {background-size:3203px 2581px}
.webp .container-mb .container-back {background-size:3203px 2581px}
.no-webp .container-mb .container-back {background-position:-3163px -886px}
.webp .container-mb .container-back {background-position:-3163px -886px}
.container-mb .container-back {
  cursor: pointer;
width:23px;
height:23px;

  position: fixed;
  left: 50%;
  top: 5%;
  -webkit-transform: translate(1150%, -50%);
          transform: translate(1150%, -50%);
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}
.container-mb .container-back:hover {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
  -webkit-transform: translate(1150%, -50%) rotate(90deg);
          transform: translate(1150%, -50%) rotate(90deg);
}
#copyright {
  position: absolute;
  bottom: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.no-webp #copyright .leihuo-copyright {background:rgba(255, 255, 255, 0)}
.webp #copyright .leihuo-copyright {background:rgba(255, 255, 255, 0)}
#copyright .leihuo-copyright {
}
#copyright .nie-copyright-new-inner {
  width: 750px;
}
.no-webp .container-index {background-image:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/bg1_36ad0c01.png), url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/bg3_228d3a3b.png), url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/bg2_50bf1338.png);
  background-position: top,bottom,center;
  background-size: 1920px 3922px,1920px 2707px,1920px 71px;
  background-repeat: no-repeat, no-repeat, repeat-y}
.webp .container-index {background-image:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/bg1_36ad0c01.webp), url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/bg3_228d3a3b.webp), url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/bg2_50bf1338.webp);
  background-position: top,bottom,center;
  background-size: 1920px 3922px,1920px 2707px,1920px 71px;
  background-repeat: no-repeat, no-repeat, repeat-y}
.no-webp .container-index {background-position:top,bottom,center}
.webp .container-index {background-position:top,bottom,center}
.no-webp .container-index {background-size:1920px 3922px,1920px 2707px,1920px 71px}
.webp .container-index {background-size:1920px 3922px,1920px 2707px,1920px 71px}
.no-webp .container-index {background-repeat:no-repeat, no-repeat, repeat-y}
.webp .container-index {background-repeat:no-repeat, no-repeat, repeat-y}
.container-index {
  width: 100%;
  max-width: 1920px;
  height: 6700px;
  overflow: hidden;
}
.no-webp .container-index .bm-yd {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1613px -2264px}
.webp .container-index .bm-yd {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1613px -2264px}
.no-webp .container-index .bm-yd {background-size:3203px 2581px}
.webp .container-index .bm-yd {background-size:3203px 2581px}
.no-webp .container-index .bm-yd {background-position:-1613px -2264px}
.webp .container-index .bm-yd {background-position:-1613px -2264px}
.container-index .bm-yd {
  position: absolute;
  top: 812px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
width:79px;
height:95px;

  -webkit-animation: yd 1s linear infinite;

          animation: yd 1s linear infinite;
}
.container-index .container-content {
  width: 1370px;
  height: 100%;
  margin: 0 auto;
}
.container-index .container-content .content {
  width: 1370px;
  position: absolute;
  top: 1030px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.no-webp .container-index .topScroll {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2029px -1833px}
.webp .container-index .topScroll {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2029px -1833px}
.no-webp .container-index .topScroll {background-size:3203px 2581px}
.webp .container-index .topScroll {background-size:3203px 2581px}
.no-webp .container-index .topScroll {background-position:-2029px -1833px}
.webp .container-index .topScroll {background-position:-2029px -1833px}
.container-index .topScroll {
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  position: fixed;
  right: 22px;
  bottom: 50px;
  z-index: 999;
  cursor: pointer;
width:201px;
height:203px;

}
.container-index .topScroll:hover {
  -webkit-filter: brightness(130%);
          filter: brightness(130%);
}
.no-webp .container-index .fc-bg {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2883px -642px}
.webp .container-index .fc-bg {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2883px -642px}
.no-webp .container-index .fc-bg {background-size:3203px 2581px}
.webp .container-index .fc-bg {background-size:3203px 2581px}
.no-webp .container-index .fc-bg {background-position:-2883px -642px}
.webp .container-index .fc-bg {background-position:-2883px -642px}
.container-index .fc-bg {
width:247px;
height:668px;

  position: fixed;
  left: 0;
  bottom: 50px;
  z-index: 999;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.container-index .fc-bg ul {
  display: fixed;
  width: 210px;
  height: 322px;
  padding-top: 57px;
}
.no-webp .container-index .fc-bg ul li {background-size:100% auto !important}
.webp .container-index .fc-bg ul li {background-size:100% auto !important}
.no-webp .container-index .fc-bg ul li {background-repeat:no-repeat !important}
.webp .container-index .fc-bg ul li {background-repeat:no-repeat !important}
.container-index .fc-bg ul li {
  cursor: pointer;
  width: 212px;
  height: 76px;
  margin: 0 0 4px 0;
}
.container-index .fc-bg ul li:hover {
  width: 212px;
  height: 76px;
}
.no-webp .container-index .fc-bg ul li:nth-child(1) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-0_f3849e4b.png)}
.webp .container-index .fc-bg ul li:nth-child(1) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-0_f3849e4b.webp)}
.container-index .fc-bg ul li:nth-child(1) {
}
.no-webp .container-index .fc-bg ul li:nth-child(1):hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-0-h_1ae14b4d.png)}
.webp .container-index .fc-bg ul li:nth-child(1):hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-0-h_1ae14b4d.webp)}
.container-index .fc-bg ul li:nth-child(1):hover {
}
.no-webp .container-index .fc-bg ul li:nth-child(1).active {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-0-h_1ae14b4d.png)}
.webp .container-index .fc-bg ul li:nth-child(1).active {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-0-h_1ae14b4d.webp)}
.container-index .fc-bg ul li:nth-child(1).active {
  margin-bottom: 3px;
  cursor: pointer;
  font-size: 37px;
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 1px #257aca;
}
.no-webp .container-index .fc-bg ul li:nth-child(2) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-1_df570bbc.png)}
.webp .container-index .fc-bg ul li:nth-child(2) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-1_df570bbc.webp)}
.container-index .fc-bg ul li:nth-child(2) {
}
.no-webp .container-index .fc-bg ul li:nth-child(2):hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-1-h_b4525a5e.png)}
.webp .container-index .fc-bg ul li:nth-child(2):hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-1-h_b4525a5e.webp)}
.container-index .fc-bg ul li:nth-child(2):hover {
}
.no-webp .container-index .fc-bg ul li:nth-child(2).active {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-1-h_b4525a5e.png)}
.webp .container-index .fc-bg ul li:nth-child(2).active {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-1-h_b4525a5e.webp)}
.container-index .fc-bg ul li:nth-child(2).active {
  margin-bottom: 3px;
  cursor: pointer;
  font-size: 37px;
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 1px #257aca;
}
.no-webp .container-index .fc-bg ul li:nth-child(3) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-2_26c1da36.png)}
.webp .container-index .fc-bg ul li:nth-child(3) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-2_26c1da36.webp)}
.container-index .fc-bg ul li:nth-child(3) {
}
.no-webp .container-index .fc-bg ul li:nth-child(3):hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-2-h_ea8aa57b.png)}
.webp .container-index .fc-bg ul li:nth-child(3):hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-2-h_ea8aa57b.webp)}
.container-index .fc-bg ul li:nth-child(3):hover {
}
.no-webp .container-index .fc-bg ul li:nth-child(3).active {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-2-h_ea8aa57b.png)}
.webp .container-index .fc-bg ul li:nth-child(3).active {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-2-h_ea8aa57b.webp)}
.container-index .fc-bg ul li:nth-child(3).active {
  margin-bottom: 3px;
  cursor: pointer;
  font-size: 37px;
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 1px #257aca;
}
.no-webp .container-index .fc-bg ul li:nth-child(4) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-3_c00a2a79.png)}
.webp .container-index .fc-bg ul li:nth-child(4) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-3_c00a2a79.webp)}
.container-index .fc-bg ul li:nth-child(4) {
}
.no-webp .container-index .fc-bg ul li:nth-child(4):hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-3-h_e099b397.png)}
.webp .container-index .fc-bg ul li:nth-child(4):hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-3-h_e099b397.webp)}
.container-index .fc-bg ul li:nth-child(4):hover {
}
.no-webp .container-index .fc-bg ul li:nth-child(4).active {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-3-h_e099b397.png)}
.webp .container-index .fc-bg ul li:nth-child(4).active {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-3-h_e099b397.webp)}
.container-index .fc-bg ul li:nth-child(4).active {
  margin-bottom: 3px;
  cursor: pointer;
  font-size: 37px;
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 1px #257aca;
}
.no-webp .container-index .fc-bg ul li:nth-child(5) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-4_91b7ffee.png)}
.webp .container-index .fc-bg ul li:nth-child(5) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-4_91b7ffee.webp)}
.container-index .fc-bg ul li:nth-child(5) {
}
.no-webp .container-index .fc-bg ul li:nth-child(5):hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-4-h_d9faf001.png)}
.webp .container-index .fc-bg ul li:nth-child(5):hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-4-h_d9faf001.webp)}
.container-index .fc-bg ul li:nth-child(5):hover {
}
.no-webp .container-index .fc-bg ul li:nth-child(5).active {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-4-h_d9faf001.png)}
.webp .container-index .fc-bg ul li:nth-child(5).active {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/text-4-h_d9faf001.webp)}
.container-index .fc-bg ul li:nth-child(5).active {
  margin-bottom: 3px;
  cursor: pointer;
  font-size: 37px;
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 1px #257aca;
}
.no-webp .container-index .fc-bg div {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1901px -843px}
.webp .container-index .fc-bg div {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1901px -843px}
.no-webp .container-index .fc-bg div {background-size:3203px 2581px}
.webp .container-index .fc-bg div {background-size:3203px 2581px}
.no-webp .container-index .fc-bg div {background-position:-1901px -843px}
.webp .container-index .fc-bg div {background-position:-1901px -843px}
.container-index .fc-bg div {
  position: absolute;
width:188px;
height:154px;

  bottom: 32px;
  left: 10px;
}
.no-webp .container-index .fc-bg div::after {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/ewm-content_e0ad4e94.png) no-repeat center center;
  background-size: cover}
.webp .container-index .fc-bg div::after {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/ewm-content_e0ad4e94.webp) no-repeat center center;
  background-size: cover}
.no-webp .container-index .fc-bg div::after {background-size:cover}
.webp .container-index .fc-bg div::after {background-size:cover}
.container-index .fc-bg div::after {
  width: 140px;
  height: 140px;
  content: '';
  position: absolute;
  top: 5px;
  left: 7px;
}
@media screen and (max-width: 1669px) {
  .container-index .fc-bg {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    left: -25px;
  }
}
@media screen and (max-width: 1470px) {
  .container-index .fc-bg {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    left: -50px;
  }
}
@-webkit-keyframes myBreath {
  0% {
    -webkit-transform: scale(0.88);
            transform: scale(0.88);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.88);
            transform: scale(0.88);
  }
}
@keyframes myBreath {
  0% {
    -webkit-transform: scale(0.88);
            transform: scale(0.88);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.88);
            transform: scale(0.88);
  }
}
.no-webp .container-index .bm-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2558px -1833px}
.webp .container-index .bm-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2558px -1833px}
.no-webp .container-index .bm-btn {background-size:3203px 2581px}
.webp .container-index .bm-btn {background-size:3203px 2581px}
.no-webp .container-index .bm-btn {background-position:-2558px -1833px}
.webp .container-index .bm-btn {background-position:-2558px -1833px}
.container-index .bm-btn {
  position: absolute;
  cursor: pointer;
  top: 720px;
  left: 50%;
  margin-left: -162px;
width:324px;
height:106px;

  -webkit-animation: myBreath 1s linear infinite;

          animation: myBreath 1s linear infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.no-webp .container-index .bm-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2232px -1833px}
.webp .container-index .bm-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2232px -1833px}
.no-webp .container-index .bm-btn:hover {background-size:3203px 2581px}
.webp .container-index .bm-btn:hover {background-size:3203px 2581px}
.no-webp .container-index .bm-btn:hover {background-position:-2232px -1833px}
.webp .container-index .bm-btn:hover {background-position:-2232px -1833px}
.container-index .bm-btn:hover {
width:324px;
height:106px;

}
.container-index .hdjs {
  width: 100%;
  height: 1120px;
  position: relative;
}
.no-webp .container-index .hdjs .hd-title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1116px -1555px}
.webp .container-index .hdjs .hd-title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1116px -1555px}
.no-webp .container-index .hdjs .hd-title {background-size:3203px 2581px}
.webp .container-index .hdjs .hd-title {background-size:3203px 2581px}
.no-webp .container-index .hdjs .hd-title {background-position:-1116px -1555px}
.webp .container-index .hdjs .hd-title {background-position:-1116px -1555px}
.container-index .hdjs .hd-title {
width:386px;
height:122px;

  text-align: center;
  margin: 0 auto;
  font-size: 38px;
  color: #ffffff;
}
.container-index .hdjs .hd-content {
  position: relative;
  width: 1168px;
  margin: 43px auto 0 auto;
}
.no-webp .container-index .hdjs .hd-content .hd-bg {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2105px -1362px}
.webp .container-index .hdjs .hd-content .hd-bg {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2105px -1362px}
.no-webp .container-index .hdjs .hd-content .hd-bg {background-size:3203px 2581px}
.webp .container-index .hdjs .hd-content .hd-bg {background-size:3203px 2581px}
.no-webp .container-index .hdjs .hd-content .hd-bg {background-position:-2105px -1362px}
.webp .container-index .hdjs .hd-content .hd-bg {background-position:-2105px -1362px}
.container-index .hdjs .hd-content .hd-bg {
width:1035px;
height:282px;

}
.no-webp .container-index .hdjs .hd-content .hd-swiper {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-0px -2172px}
.webp .container-index .hdjs .hd-content .hd-swiper {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-0px -2172px}
.no-webp .container-index .hdjs .hd-content .hd-swiper {background-size:3203px 2581px}
.webp .container-index .hdjs .hd-content .hd-swiper {background-size:3203px 2581px}
.no-webp .container-index .hdjs .hd-content .hd-swiper {background-position:-0px -2172px}
.webp .container-index .hdjs .hd-content .hd-swiper {background-position:-0px -2172px}
.container-index .hdjs .hd-content .hd-swiper {
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  position: absolute;
  top: -64.5px;
  right: 0;
width:588px;
height:409px;

}
.container-index .hdjs .hd-content .more-hero {
  position: absolute;
  right: 22px;
  top: 20px;
  width: 542px;
  height: 366px;
  border-radius: 30px;
  overflow: hidden;
}
.container-index .hdjs .hd-content .more-hero .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.container-index .hdjs .hd-content .more-hero .swiper-slide {
  display: inline-block;
  min-width: 542px;
  height: 366px;
}
.no-webp .container-index .hdjs .hd-content .more-hero .hero-thumb-item1 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/1_0d35f4ce.png) no-repeat}
.webp .container-index .hdjs .hd-content .more-hero .hero-thumb-item1 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/1_0d35f4ce.webp) no-repeat}
.container-index .hdjs .hd-content .more-hero .hero-thumb-item1 {
}
.no-webp .container-index .hdjs .hd-content .more-hero .hero-thumb-item2 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/2_84318536.png) no-repeat}
.webp .container-index .hdjs .hd-content .more-hero .hero-thumb-item2 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/2_84318536.webp) no-repeat}
.container-index .hdjs .hd-content .more-hero .hero-thumb-item2 {
}
.no-webp .container-index .hdjs .hd-content .more-hero .hero-thumb-item3 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/3_bf17ac25.png) no-repeat}
.webp .container-index .hdjs .hd-content .more-hero .hero-thumb-item3 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/3_bf17ac25.webp) no-repeat}
.container-index .hdjs .hd-content .more-hero .hero-thumb-item3 {
}
.no-webp .container-index .hdjs .hd-content .more-hero .hero-thumb-item4 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/4_344b95a6.png) no-repeat}
.webp .container-index .hdjs .hd-content .more-hero .hero-thumb-item4 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/4_344b95a6.webp) no-repeat}
.container-index .hdjs .hd-content .more-hero .hero-thumb-item4 {
}
.no-webp .container-index .hdjs .hd-content .swiper-button-next {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3132px -642px}
.webp .container-index .hdjs .hd-content .swiper-button-next {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3132px -642px}
.no-webp .container-index .hdjs .hd-content .swiper-button-next {background-size:3203px 2581px}
.webp .container-index .hdjs .hd-content .swiper-button-next {background-size:3203px 2581px}
.no-webp .container-index .hdjs .hd-content .swiper-button-next {background-position:-3132px -642px}
.webp .container-index .hdjs .hd-content .swiper-button-next {background-position:-3132px -642px}
.container-index .hdjs .hd-content .swiper-button-next {
width:56px;
height:54px;

  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translate(-90%, -50%);
          transform: translate(-90%, -50%);
  cursor: pointer;
}
.container-index .hdjs .hd-content .swiper-button-next:hover {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
}
.no-webp .container-index .hdjs .hd-content .swiper-button-prev {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3132px -698px}
.webp .container-index .hdjs .hd-content .swiper-button-prev {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3132px -698px}
.no-webp .container-index .hdjs .hd-content .swiper-button-prev {background-size:3203px 2581px}
.webp .container-index .hdjs .hd-content .swiper-button-prev {background-size:3203px 2581px}
.no-webp .container-index .hdjs .hd-content .swiper-button-prev {background-position:-3132px -698px}
.webp .container-index .hdjs .hd-content .swiper-button-prev {background-position:-3132px -698px}
.container-index .hdjs .hd-content .swiper-button-prev {
width:56px;
height:54px;

  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translate(90%, -50%);
          transform: translate(90%, -50%);
  cursor: pointer;
}
.container-index .hdjs .hd-content .swiper-button-prev:hover {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
}
.no-webp .container-index .hdjs .hd-obj {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/js-text_0efc0c2a.png) no-repeat center center;
  background-size: cover}
.webp .container-index .hdjs .hd-obj {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/js-text_0efc0c2a.webp) no-repeat center center;
  background-size: cover}
.no-webp .container-index .hdjs .hd-obj {background-size:cover}
.webp .container-index .hdjs .hd-obj {background-size:cover}
.container-index .hdjs .hd-obj {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  margin: 50px auto auto auto;
  width: 1325px;
  height: 201px;
}
.no-webp .container-index .hdjs .hd-ewm {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1163px -1833px}
.webp .container-index .hdjs .hd-ewm {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1163px -1833px}
.no-webp .container-index .hdjs .hd-ewm {background-size:3203px 2581px}
.webp .container-index .hdjs .hd-ewm {background-size:3203px 2581px}
.no-webp .container-index .hdjs .hd-ewm {background-position:-1163px -1833px}
.webp .container-index .hdjs .hd-ewm {background-position:-1163px -1833px}
.container-index .hdjs .hd-ewm {
  position: relative;
  margin: 14px auto auto auto;
width:864px;
height:280px;

}
.no-webp .container-index .hdjs .hd-ewm::after {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/ewm-content_e0ad4e94.png) no-repeat center center;
  background-size: cover}
.webp .container-index .hdjs .hd-ewm::after {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/ewm-content_e0ad4e94.webp) no-repeat center center;
  background-size: cover}
.no-webp .container-index .hdjs .hd-ewm::after {background-size:cover}
.webp .container-index .hdjs .hd-ewm::after {background-size:cover}
.container-index .hdjs .hd-ewm::after {
  width: 140px;
  height: 140px;
  content: '';
  position: absolute;
  top: 15px;
  left: 73.5px;
  border-radius: 10px;
}
.no-webp .container-index .bslc .lc-title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1504px -1679px}
.webp .container-index .bslc .lc-title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1504px -1679px}
.no-webp .container-index .bslc .lc-title {background-size:3203px 2581px}
.webp .container-index .bslc .lc-title {background-size:3203px 2581px}
.no-webp .container-index .bslc .lc-title {background-position:-1504px -1679px}
.webp .container-index .bslc .lc-title {background-position:-1504px -1679px}
.container-index .bslc .lc-title {
width:386px;
height:121px;

  text-align: center;
  margin: 0 auto;
  font-size: 38px;
  color: #ffffff;
}
.no-webp .container-index .bslc .lc-bg {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2105px -0px}
.webp .container-index .bslc .lc-bg {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2105px -0px}
.no-webp .container-index .bslc .lc-bg {background-size:3203px 2581px}
.webp .container-index .bslc .lc-bg {background-size:3203px 2581px}
.no-webp .container-index .bslc .lc-bg {background-position:-2105px -0px}
.webp .container-index .bslc .lc-bg {background-position:-2105px -0px}
.container-index .bslc .lc-bg {
  margin: 73px auto auto auto;
width:1098px;
height:640px;

}
.container-index .jxsz {
  margin: 80px auto auto auto;
}
.no-webp .container-index .jxsz .sz-title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1504px -1555px}
.webp .container-index .jxsz .sz-title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1504px -1555px}
.no-webp .container-index .jxsz .sz-title {background-size:3203px 2581px}
.webp .container-index .jxsz .sz-title {background-size:3203px 2581px}
.no-webp .container-index .jxsz .sz-title {background-position:-1504px -1555px}
.webp .container-index .jxsz .sz-title {background-position:-1504px -1555px}
.container-index .jxsz .sz-title {
width:386px;
height:121px;

  text-align: center;
  margin: 0 auto;
  font-size: 38px;
  color: #ffffff;
}
.no-webp .container-index .jxsz .sz-bg {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-0px -1120px}
.webp .container-index .jxsz .sz-bg {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-0px -1120px}
.no-webp .container-index .jxsz .sz-bg {background-size:3203px 2581px}
.webp .container-index .jxsz .sz-bg {background-size:3203px 2581px}
.no-webp .container-index .jxsz .sz-bg {background-position:-0px -1120px}
.webp .container-index .jxsz .sz-bg {background-position:-0px -1120px}
.container-index .jxsz .sz-bg {
  margin: 65px auto auto auto;
width:1114px;
height:711px;

}
.container-index .zptp {
  margin: 120px 0 0 0;
}
.no-webp .container-index .zptp .zptp-title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1717px -1438px}
.webp .container-index .zptp .zptp-title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1717px -1438px}
.no-webp .container-index .zptp .zptp-title {background-size:3203px 2581px}
.webp .container-index .zptp .zptp-title {background-size:3203px 2581px}
.no-webp .container-index .zptp .zptp-title {background-position:-1717px -1438px}
.webp .container-index .zptp .zptp-title {background-position:-1717px -1438px}
.container-index .zptp .zptp-title {
width:371px;
height:107px;

  text-align: center;
  margin: 0 auto;
  font-size: 38px;
  color: #ffffff;
}
.container-index .zptp .zptp-tip {
  color: #ffffff;
  font-size: 18px;
  text-align: center;
  padding: 0 0 45px 0;
}
.container-index .zptp .vote-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0 0 0 120px;
}
.no-webp .container-index .zptp .vote-list .vote-item {background:#fff}
.webp .container-index .zptp .vote-list .vote-item {background:#fff}
.container-index .zptp .vote-list .vote-item {
  width: 354px;
  height: 335px;
  border-radius: 22px;
  padding: 2px 0 0 0;
  margin: 0 30px 40px 0;
  position: relative;
}
.container-index .zptp .vote-list .vote-item:nth-child(3n) {
  margin: 0;
}
.container-index .zptp .vote-list .vote-item .img-wrap {
  width: 350px;
  height: 195px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
}
.container-index .zptp .vote-list .vote-item .img-wrap .img {
  overflow: hidden;
  cursor: pointer;
  width: 350px;
  height: 195px;
  margin: 0 auto;
  display: block;
  border-radius: 22px;
  -webkit-box-shadow: 0 0 13px rgba(34, 100, 175, 0.61);
          box-shadow: 0 0 13px rgba(34, 100, 175, 0.61);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.container-index .zptp .vote-list .vote-item .img-wrap .img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.container-index .zptp .vote-list .vote-item .work-name {
  font-weight: bold;
  cursor: pointer;
  height: 43px;
  font-size: 20px;
  color: #3c66d7;
  padding: 20px 0 0 16px;
}
.container-index .zptp .vote-list .vote-item .work-mark {
  cursor: pointer;
  height: 42px;
  font-size: 16px;
  color: #3c66d7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 11px 0 13px 16px;
}
.container-index .zptp .vote-list .vote-item .work-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.container-index .zptp .vote-list .vote-item .work-bottom .vote-num {
  font-size: 22px;
  color: #f39314;
  padding: 18px 0 0 16px;
}
.container-index .zptp .vote-list .vote-item .work-bottom .vote-index {
  font-weight: bold;
  font-size: 50px;
  color: #1850cb;
  position: absolute;
  right: 8px;
  bottom: 3px;
}
.container-index .wqzp {
  margin: 120px auto auto auto;
}
.no-webp .container-index .wqzp .zp-title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1116px -1679px}
.webp .container-index .wqzp .zp-title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1116px -1679px}
.no-webp .container-index .wqzp .zp-title {background-size:3203px 2581px}
.webp .container-index .wqzp .zp-title {background-size:3203px 2581px}
.no-webp .container-index .wqzp .zp-title {background-position:-1116px -1679px}
.webp .container-index .wqzp .zp-title {background-position:-1116px -1679px}
.container-index .wqzp .zp-title {
width:386px;
height:121px;

  text-align: center;
  margin: 0 auto;
  font-size: 38px;
  color: #ffffff;
}
.container-index .wqzp .zp-swiper {
  position: relative;
  margin-top: 70px;
  height: 470px;
}
.no-webp .container-index .wqzp .zp-kb {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-0px -1833px}
.webp .container-index .wqzp .zp-kb {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-0px -1833px}
.no-webp .container-index .wqzp .zp-kb {background-size:3203px 2581px}
.webp .container-index .wqzp .zp-kb {background-size:3203px 2581px}
.no-webp .container-index .wqzp .zp-kb {background-position:-0px -1833px}
.webp .container-index .wqzp .zp-kb {background-position:-0px -1833px}
.container-index .wqzp .zp-kb {
  position: relative;
  text-align: center;
width:1161px;
height:337px;

  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.no-webp .container-index .wqzp .zp-kb .teamTitle {background:-webkit-gradient(linear, left top, left bottom, color-stop(40%, #ffffff), color-stop(60%, #77caee))}
.webp .container-index .wqzp .zp-kb .teamTitle {background:-webkit-gradient(linear, left top, left bottom, color-stop(40%, #ffffff), color-stop(60%, #77caee))}
.no-webp .container-index .wqzp .zp-kb .teamTitle {background:linear-gradient(180deg, #ffffff 40%, #77caee 60%)}
.webp .container-index .wqzp .zp-kb .teamTitle {background:linear-gradient(180deg, #ffffff 40%, #77caee 60%)}
.container-index .wqzp .zp-kb .teamTitle {
  width: 312px;
  height: 68px;
  line-height: 68px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-53.7%);
          transform: translateX(-53.7%);
  font-size: 28px;
  color: #ffffff;
  text-align: center;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.container-index .wqzp .zp-kb .maxTitle7 {
  font-size: 21px;
}
.container-index .wqzp .zp-kb .teamName {
  position: absolute;
  top: 90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 700px;
  font-size: 18px;
  color: #99e2ff;
  text-align: center;
}
.container-index .wqzp .zp-kb .teamName span {
  margin-right: 15px;
}
.container-index .wqzp .zp-kb .teamName p {
  line-height: 30px;
}
.container-index .wqzp .zp-kb .theGameIntroduction {
  font-size: 16px;
  position: absolute;
  top: 160px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #ffffff;
  width: 700px;
  line-height: 35px;
}
.swiperBg {
  width: calc(100vw - 17px);
  min-width: 1370px;
  position: absolute;
  left: calc(-50vw + 693px);
  top: 0;
  height: 506px;
  overflow: hidden;
}
.swiperBg .more-zp {
  height: 400px;
  position: relative;
  top: 130px;
}
.no-webp .swiperBg .mb {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-mb_65cfe415.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiperBg .mb {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-mb_65cfe415.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiperBg .mb {background-size:100% auto}
.webp .swiperBg .mb {background-size:100% auto}
.swiperBg .mb {
  z-index: 10;
  cursor: pointer;
  position: absolute;
  top: 50%;
  height: 100%;
  height: calc(100vw / 5 / 839 * 476);
  min-height: 155.6px;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.swiperBg .swiper-wrapperw {
  width: 100vw;
  min-width: 1370px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.swiperBg .swiper-ra {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 96%;
  height: calc(100vw / 5 / 839 * 438);
  min-height: 155.6px;
  overflow: hidden;
  border-radius: 12px;
}
.no-webp .swiperBg .zp-thumb-item {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-bg_b964c7c1.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiperBg .zp-thumb-item {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-bg_b964c7c1.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiperBg .zp-thumb-item {background-size:100% auto}
.webp .swiperBg .zp-thumb-item {background-size:100% auto}
.swiperBg .zp-thumb-item {
  min-height: 156px;
  height: calc(100vw / 5 / 839 * 503);
  min-width: 20%;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
.swiperBg .swiper-slide-prev {
  position: relative;
  -webkit-transform: scale(1.8);
          transform: scale(1.8);
  z-index: 3;
}
.swiperBg .swiper-slide-active {
  z-index: 4;
  -webkit-transform: scale(2.2);
          transform: scale(2.2);
}
.swiperBg .swiper-slide-active .mb {
  display: none;
}
.swiperBg .swiper-slide-next {
  position: relative;
  -webkit-transform: scale(1.8);
          transform: scale(1.8);
  z-index: 3;
}
.swiperBg .swiper-slide-next + div {
  z-index: 2;
}
.no-webp .swiper-button-next-item {background-color:#ffffff}
.webp .swiper-button-next-item {background-color:#ffffff}
.no-webp .swiper-button-next-item {background-size:cover}
.webp .swiper-button-next-item {background-size:cover}
.swiper-button-next-item {
  z-index: 7;
  cursor: pointer;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  width: 20px;
  height: 20px;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
.no-webp .swiper-button-next-item::after {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/left-jt_fdce3c11.png) no-repeat left top;
  background-size: cover}
.webp .swiper-button-next-item::after {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/left-jt_fdce3c11.webp) no-repeat left top;
  background-size: cover}
.no-webp .swiper-button-next-item::after {background-size:cover}
.webp .swiper-button-next-item::after {background-size:cover}
.swiper-button-next-item::after {
  z-index: 8;
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7.5px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.no-webp .swiper-button-prev-item {background-color:#ffffff}
.webp .swiper-button-prev-item {background-color:#ffffff}
.no-webp .swiper-button-prev-item {background-size:cover}
.webp .swiper-button-prev-item {background-size:cover}
.swiper-button-prev-item {
  z-index: 7;
  cursor: pointer;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  width: 20px;
  height: 20px;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}
.no-webp .swiper-button-prev-item::after {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/right-jt_e3d68538.png) no-repeat left top;
  background-size: cover}
.webp .swiper-button-prev-item::after {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/right-jt_e3d68538.webp) no-repeat left top;
  background-size: cover}
.no-webp .swiper-button-prev-item::after {background-size:cover}
.webp .swiper-button-prev-item::after {background-size:cover}
.swiper-button-prev-item::after {
  z-index: 8;
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7.5px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.swiper-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-item .wrapper-item {
  width: 2679px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.swiper-item .wrapper-item .slide-item {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.no-webp .swiper-item .wrapper-item .slide-item .swiper-play {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/play_f3560e64.png) no-repeat center center;
  background-size: cover}
.webp .swiper-item .wrapper-item .slide-item .swiper-play {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/play_f3560e64.webp) no-repeat center center;
  background-size: cover}
.no-webp .swiper-item .wrapper-item .slide-item .swiper-play {background-size:cover}
.webp .swiper-item .wrapper-item .slide-item .swiper-play {background-size:cover}
.swiper-item .wrapper-item .slide-item .swiper-play {
  width: 35px;
  height: 35px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.swiper-item .wrapper-item .slide-item .swiper-play:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
.no-webp .swiper-item .wrapper-item .slide-item video {background-size:cover}
.webp .swiper-item .wrapper-item .slide-item video {background-size:cover}
.swiper-item .wrapper-item .slide-item video {
  width: 100%;
  overflow: hidden;
}
.no-webp .swiper-item .wrapper-item .slide-item0 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-0-0_ea82debd.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiper-item .wrapper-item .slide-item0 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-0-0_ea82debd.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiper-item .wrapper-item .slide-item0 {background-size:100% auto}
.webp .swiper-item .wrapper-item .slide-item0 {background-size:100% auto}
.swiper-item .wrapper-item .slide-item0 {
}
.swiper-item .wrapper-item .slide-item1 .swiper-play {
  display: none;
}
.no-webp .swiper-item .wrapper-item .slide-item1:nth-child(4) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-1-0_59eb6ebd.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiper-item .wrapper-item .slide-item1:nth-child(4) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-1-0_59eb6ebd.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiper-item .wrapper-item .slide-item1:nth-child(4) {background-size:100% auto}
.webp .swiper-item .wrapper-item .slide-item1:nth-child(4) {background-size:100% auto}
.swiper-item .wrapper-item .slide-item1:nth-child(4) {
}
.no-webp .swiper-item .wrapper-item .slide-item1:nth-child(1) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-1-0_59eb6ebd.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiper-item .wrapper-item .slide-item1:nth-child(1) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-1-0_59eb6ebd.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiper-item .wrapper-item .slide-item1:nth-child(1) {background-size:100% auto}
.webp .swiper-item .wrapper-item .slide-item1:nth-child(1) {background-size:100% auto}
.swiper-item .wrapper-item .slide-item1:nth-child(1) {
}
.no-webp .swiper-item .wrapper-item .slide-item1:nth-child(2) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-1-1_5b027a28.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiper-item .wrapper-item .slide-item1:nth-child(2) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-1-1_5b027a28.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiper-item .wrapper-item .slide-item1:nth-child(2) {background-size:100% auto}
.webp .swiper-item .wrapper-item .slide-item1:nth-child(2) {background-size:100% auto}
.swiper-item .wrapper-item .slide-item1:nth-child(2) {
}
.no-webp .swiper-item .wrapper-item .slide-item1:nth-child(3) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-1-2_2ede52c4.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiper-item .wrapper-item .slide-item1:nth-child(3) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-1-2_2ede52c4.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiper-item .wrapper-item .slide-item1:nth-child(3) {background-size:100% auto}
.webp .swiper-item .wrapper-item .slide-item1:nth-child(3) {background-size:100% auto}
.swiper-item .wrapper-item .slide-item1:nth-child(3) {
}
.no-webp .swiper-item .wrapper-item .slide-item2 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-2-0_62fad0b3.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiper-item .wrapper-item .slide-item2 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-2-0_62fad0b3.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiper-item .wrapper-item .slide-item2 {background-size:100% auto}
.webp .swiper-item .wrapper-item .slide-item2 {background-size:100% auto}
.swiper-item .wrapper-item .slide-item2 {
}
.swiper-item .wrapper-item .slide-item2 .swiper-play {
  display: none;
}
.no-webp .swiper-item .wrapper-item .slide-item3 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-3-0_5cbe05be.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiper-item .wrapper-item .slide-item3 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-3-0_5cbe05be.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiper-item .wrapper-item .slide-item3 {background-size:100% auto}
.webp .swiper-item .wrapper-item .slide-item3 {background-size:100% auto}
.swiper-item .wrapper-item .slide-item3 {
}
.no-webp .swiper-item .wrapper-item .slide-item4 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-4-0_71ef5395.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiper-item .wrapper-item .slide-item4 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-4-0_71ef5395.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiper-item .wrapper-item .slide-item4 {background-size:100% auto}
.webp .swiper-item .wrapper-item .slide-item4 {background-size:100% auto}
.swiper-item .wrapper-item .slide-item4 {
}
.no-webp .swiper-item .wrapper-item .slide-item5 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-5-0_af9be6bf.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiper-item .wrapper-item .slide-item5 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-5-0_af9be6bf.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiper-item .wrapper-item .slide-item5 {background-size:100% auto}
.webp .swiper-item .wrapper-item .slide-item5 {background-size:100% auto}
.swiper-item .wrapper-item .slide-item5 {
}
.no-webp .swiper-item .wrapper-item .slide-item6 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-6-0_45f7cf86.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiper-item .wrapper-item .slide-item6 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-6-0_45f7cf86.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiper-item .wrapper-item .slide-item6 {background-size:100% auto}
.webp .swiper-item .wrapper-item .slide-item6 {background-size:100% auto}
.swiper-item .wrapper-item .slide-item6 {
}
.no-webp .swiper-item .wrapper-item .slide-item6:nth-child(2) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-6-1_e6b4d1c2.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiper-item .wrapper-item .slide-item6:nth-child(2) {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-6-1_e6b4d1c2.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiper-item .wrapper-item .slide-item6:nth-child(2) {background-size:100% auto}
.webp .swiper-item .wrapper-item .slide-item6:nth-child(2) {background-size:100% auto}
.swiper-item .wrapper-item .slide-item6:nth-child(2) {
}
.no-webp .swiper-item .wrapper-item .slide-item7 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-7-0_506258cd.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiper-item .wrapper-item .slide-item7 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-7-0_506258cd.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiper-item .wrapper-item .slide-item7 {background-size:100% auto}
.webp .swiper-item .wrapper-item .slide-item7 {background-size:100% auto}
.swiper-item .wrapper-item .slide-item7 {
}
.no-webp .swiper-item .wrapper-item .slide-item8 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-8-0_032a9736.png) no-repeat center center;
  background-size: 100% auto}
.webp .swiper-item .wrapper-item .slide-item8 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/zp-item-8-0_032a9736.webp) no-repeat center center;
  background-size: 100% auto}
.no-webp .swiper-item .wrapper-item .slide-item8 {background-size:100% auto}
.webp .swiper-item .wrapper-item .slide-item8 {background-size:100% auto}
.swiper-item .wrapper-item .slide-item8 {
}
.swiper-item .wrapper-item .slide-item8 .swiper-play {
  display: none;
}
.swiper-pagination {
  z-index: 9;
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.no-webp .swiper-pagination span {background-color:#29358f}
.webp .swiper-pagination span {background-color:#29358f}
.swiper-pagination span {
  cursor: pointer;
  display: inline-block;
  margin-right: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.no-webp .swiper-pagination .swiper-pagination-bullet-active {background-color:#ffffff}
.webp .swiper-pagination .swiper-pagination-bullet-active {background-color:#ffffff}
.swiper-pagination .swiper-pagination-bullet-active {
}
@media screen and (max-width: 1500px) {
  .swiperBg .zp-thumb-item {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .swiperBg .swiper-slide-prev {
    position: relative;
    -webkit-transform: scale(2);
            transform: scale(2);
    z-index: 3;
  }
  .swiperBg .swiper-slide-active {
    z-index: 4;
    -webkit-transform: scale(2.4);
            transform: scale(2.4);
  }
  .swiperBg .swiper-slide-active .mb {
    display: none;
  }
  .swiperBg .swiper-slide-next {
    position: relative;
    -webkit-transform: scale(2);
            transform: scale(2);
    z-index: 3;
  }
}
@media screen and (max-width: 1385px) {
  .swiper-ra {
    width: 95.9% !important;
  }
}
.no-webp .example {background:rgba(0, 0, 0, 0.5)}
.webp .example {background:rgba(0, 0, 0, 0.5)}
.example {
  z-index: 99999;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.no-webp .example .exampleBg {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2105px -642px}
.webp .example .exampleBg {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2105px -642px}
.no-webp .example .exampleBg {background-size:3203px 2581px}
.webp .example .exampleBg {background-size:3203px 2581px}
.no-webp .example .exampleBg {background-position:-2105px -642px}
.webp .example .exampleBg {background-position:-2105px -642px}
.example .exampleBg {
  position: relative;
width:776px;
height:718px;

  margin-right: 200px;
}
.example .exampleBg .exampleAnimate {
  margin: 100px 0 0 270px;
}
.no-webp .example-x {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3163px -886px}
.webp .example-x {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3163px -886px}
.no-webp .example-x {background-size:3203px 2581px}
.webp .example-x {background-size:3203px 2581px}
.no-webp .example-x {background-position:-3163px -886px}
.webp .example-x {background-position:-3163px -886px}
.example-x {
  cursor: pointer;
width:23px;
height:23px;

  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}
.example-x:hover {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
#example {
  height: 420px;
}
.loginfo {
  position: absolute;
  right: 20px;
  top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.loginfo p {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  font-size: 18px;
}
.no-webp .loginfo .login-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png) no-repeat;background-size:3203px 2581px;
background-position:-3061px -1312px}
.webp .loginfo .login-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp) no-repeat;background-size:3203px 2581px;
background-position:-3061px -1312px}
.no-webp .loginfo .login-btn {background-size:3203px 2581px}
.webp .loginfo .login-btn {background-size:3203px 2581px}
.no-webp .loginfo .login-btn {background-position:-3061px -1312px}
.webp .loginfo .login-btn {background-position:-3061px -1312px}
.loginfo .login-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
width:82px;
height:35px;

  margin-left: 10px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  color: #17308c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-bottom: 4px;
}
.loginfo .login-btn:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.no-webp .loginfo .back-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png) no-repeat;background-size:3203px 2581px;
background-position:-1742px -2172px}
.webp .loginfo .back-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp) no-repeat;background-size:3203px 2581px;
background-position:-1742px -2172px}
.no-webp .loginfo .back-btn {background-size:3203px 2581px}
.webp .loginfo .back-btn {background-size:3203px 2581px}
.no-webp .loginfo .back-btn {background-position:-1742px -2172px}
.webp .loginfo .back-btn {background-position:-1742px -2172px}
.loginfo .back-btn {
width:228px;
height:78px;

  margin-right: 20px;
}
.no-webp .loginfo .back-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png) no-repeat;background-size:3203px 2581px;
background-position:-1282px -2172px}
.webp .loginfo .back-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp) no-repeat;background-size:3203px 2581px;
background-position:-1282px -2172px}
.no-webp .loginfo .back-btn:hover {background-size:3203px 2581px}
.webp .loginfo .back-btn:hover {background-size:3203px 2581px}
.no-webp .loginfo .back-btn:hover {background-position:-1282px -2172px}
.webp .loginfo .back-btn:hover {background-position:-1282px -2172px}
.loginfo .back-btn:hover {
width:228px;
height:78px;

}
.no-webp .loginfo .center-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png) no-repeat;background-size:3203px 2581px;
background-position:-1512px -2172px}
.webp .loginfo .center-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp) no-repeat;background-size:3203px 2581px;
background-position:-1512px -2172px}
.no-webp .loginfo .center-btn {background-size:3203px 2581px}
.webp .loginfo .center-btn {background-size:3203px 2581px}
.no-webp .loginfo .center-btn {background-position:-1512px -2172px}
.webp .loginfo .center-btn {background-position:-1512px -2172px}
.loginfo .center-btn {
width:228px;
height:78px;

  margin-right: 20px;
}
.no-webp .loginfo .center-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png) no-repeat;background-size:3203px 2581px;
background-position:-2924px -1941px}
.webp .loginfo .center-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp) no-repeat;background-size:3203px 2581px;
background-position:-2924px -1941px}
.no-webp .loginfo .center-btn:hover {background-size:3203px 2581px}
.webp .loginfo .center-btn:hover {background-size:3203px 2581px}
.no-webp .loginfo .center-btn:hover {background-position:-2924px -1941px}
.webp .loginfo .center-btn:hover {background-position:-2924px -1941px}
.loginfo .center-btn:hover {
width:228px;
height:78px;

}
.no-webp .page-apply, 
.no-webp .page-apply-2, 
.no-webp .page-apply-3 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/bg_7d697936.png) no-repeat top center;
  background-size: cover}
.webp .page-apply, 
.webp .page-apply-2, 
.webp .page-apply-3 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/bg_7d697936.webp) no-repeat top center;
  background-size: cover}
.no-webp .page-apply, 
.no-webp .page-apply-2, 
.no-webp .page-apply-3 {background-size:cover}
.webp .page-apply, 
.webp .page-apply-2, 
.webp .page-apply-3 {background-size:cover}
.page-apply,
.page-apply-2,
.page-apply-3 {
  width: 100%;
  max-width: 1920px;
  height: 2515px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 450px;
}
.no-webp .page-apply .bm-yd, 
.no-webp .page-apply-2 .bm-yd, 
.no-webp .page-apply-3 .bm-yd {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1613px -2264px}
.webp .page-apply .bm-yd, 
.webp .page-apply-2 .bm-yd, 
.webp .page-apply-3 .bm-yd {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1613px -2264px}
.no-webp .page-apply .bm-yd, 
.no-webp .page-apply-2 .bm-yd, 
.no-webp .page-apply-3 .bm-yd {background-size:3203px 2581px}
.webp .page-apply .bm-yd, 
.webp .page-apply-2 .bm-yd, 
.webp .page-apply-3 .bm-yd {background-size:3203px 2581px}
.no-webp .page-apply .bm-yd, 
.no-webp .page-apply-2 .bm-yd, 
.no-webp .page-apply-3 .bm-yd {background-position:-1613px -2264px}
.webp .page-apply .bm-yd, 
.webp .page-apply-2 .bm-yd, 
.webp .page-apply-3 .bm-yd {background-position:-1613px -2264px}
.page-apply .bm-yd,
.page-apply-2 .bm-yd,
.page-apply-3 .bm-yd {
  display: none;
  position: absolute;
  top: 762px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
width:79px;
height:95px;

  -webkit-animation: yd 1s linear infinite;

          animation: yd 1s linear infinite;
}
@-webkit-keyframes yd {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 20px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes yd {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: 20px;
  }
  100% {
    margin-top: 0;
  }
}
.no-webp .page-apply .cnt .title, 
.no-webp .page-apply-2 .cnt .title, 
.no-webp .page-apply-3 .cnt .title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png) no-repeat;background-size:3203px 2581px;
background-position:-1717px -1314px}
.webp .page-apply .cnt .title, 
.webp .page-apply-2 .cnt .title, 
.webp .page-apply-3 .cnt .title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp) no-repeat;background-size:3203px 2581px;
background-position:-1717px -1314px}
.no-webp .page-apply .cnt .title, 
.no-webp .page-apply-2 .cnt .title, 
.no-webp .page-apply-3 .cnt .title {background-size:3203px 2581px}
.webp .page-apply .cnt .title, 
.webp .page-apply-2 .cnt .title, 
.webp .page-apply-3 .cnt .title {background-size:3203px 2581px}
.no-webp .page-apply .cnt .title, 
.no-webp .page-apply-2 .cnt .title, 
.no-webp .page-apply-3 .cnt .title {background-position:-1717px -1314px}
.webp .page-apply .cnt .title, 
.webp .page-apply-2 .cnt .title, 
.webp .page-apply-3 .cnt .title {background-position:-1717px -1314px}
.page-apply .cnt .title,
.page-apply-2 .cnt .title,
.page-apply-3 .cnt .title {
width:386px;
height:122px;

  margin: 0 auto;
}
.no-webp .page-apply .cnt .form, 
.no-webp .page-apply-2 .cnt .form, 
.no-webp .page-apply-3 .cnt .form {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/cnt-1_64536047.png) no-repeat}
.webp .page-apply .cnt .form, 
.webp .page-apply-2 .cnt .form, 
.webp .page-apply-3 .cnt .form {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/cnt-1_64536047.webp) no-repeat}
.page-apply .cnt .form,
.page-apply-2 .cnt .form,
.page-apply-3 .cnt .form {
  width: 1229px;
  height: 1387px;
  margin: 30px auto 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 65px;
  color: #3c66d7;
}
.page-apply .cnt .form .row,
.page-apply-2 .cnt .form .row,
.page-apply-3 .cnt .form .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 22px;
}
.page-apply .cnt .form .row .tips,
.page-apply-2 .cnt .form .row .tips,
.page-apply-3 .cnt .form .row .tips {
  width: 100%;
  text-align: center;
}
.page-apply .cnt .form .row .delete-btn,
.page-apply-2 .cnt .form .row .delete-btn,
.page-apply-3 .cnt .form .row .delete-btn {
  cursor: pointer;
  text-decoration: underline;
  margin-left: 10px;
}
.page-apply .cnt .form .row .label,
.page-apply-2 .cnt .form .row .label,
.page-apply-3 .cnt .form .row .label {
  font-size: 28px;
  color: #3c66d7;
  font-weight: bold;
  width: 360px;
  text-align: right;
}
.page-apply .cnt .form .row .label.small,
.page-apply-2 .cnt .form .row .label.small,
.page-apply-3 .cnt .form .row .label.small {
  font-size: 24px;
}
.page-apply .cnt .form .row .label span,
.page-apply-2 .cnt .form .row .label span,
.page-apply-3 .cnt .form .row .label span {
  color: #fe0000;
}
.page-apply .cnt .form .row .ipt-cnt,
.page-apply-2 .cnt .form .row .ipt-cnt,
.page-apply-3 .cnt .form .row .ipt-cnt {
  margin-left: 26px;
  font-size: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.page-apply .cnt .form .row .ipt-cnt.noflex,
.page-apply-2 .cnt .form .row .ipt-cnt.noflex,
.page-apply-3 .cnt .form .row .ipt-cnt.noflex {
  display: block;
}
.page-apply .cnt .form .row .ipt-cnt > span,
.page-apply-2 .cnt .form .row .ipt-cnt > span,
.page-apply-3 .cnt .form .row .ipt-cnt > span {
  margin: 0 18px;
}
.page-apply .cnt .form .row .ipt-cnt > input,
.page-apply-2 .cnt .form .row .ipt-cnt > input,
.page-apply-3 .cnt .form .row .ipt-cnt > input {
  width: 500px;
  height: 46px;
  border-radius: 46px;
  border: none;
  text-indent: 24px;
  -webkit-box-shadow: inset 0 0 5px rgba(49, 77, 125, 0.21);
          box-shadow: inset 0 0 5px rgba(49, 77, 125, 0.21);
}
.page-apply .cnt .form .row .ipt-cnt > input::-webkit-input-placeholder,
.page-apply-2 .cnt .form .row .ipt-cnt > input::-webkit-input-placeholder,
.page-apply-3 .cnt .form .row .ipt-cnt > input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.page-apply .cnt .form .row .ipt-cnt > input::-moz-placeholder,
.page-apply-2 .cnt .form .row .ipt-cnt > input::-moz-placeholder,
.page-apply-3 .cnt .form .row .ipt-cnt > input::-moz-placeholder {
  color: #c1c1c1;
}
.page-apply .cnt .form .row .ipt-cnt > input:-ms-input-placeholder,
.page-apply-2 .cnt .form .row .ipt-cnt > input:-ms-input-placeholder,
.page-apply-3 .cnt .form .row .ipt-cnt > input:-ms-input-placeholder {
  color: #c1c1c1;
}
.page-apply .cnt .form .row .ipt-cnt > input::-ms-input-placeholder,
.page-apply-2 .cnt .form .row .ipt-cnt > input::-ms-input-placeholder,
.page-apply-3 .cnt .form .row .ipt-cnt > input::-ms-input-placeholder {
  color: #c1c1c1;
}
.page-apply .cnt .form .row .ipt-cnt > input::placeholder,
.page-apply-2 .cnt .form .row .ipt-cnt > input::placeholder,
.page-apply-3 .cnt .form .row .ipt-cnt > input::placeholder {
  color: #c1c1c1;
}
.page-apply .cnt .form .row .ipt-cnt .el-input__inner,
.page-apply-2 .cnt .form .row .ipt-cnt .el-input__inner,
.page-apply-3 .cnt .form .row .ipt-cnt .el-input__inner {
  width: 187px;
  height: 46px;
  border: none;
  color: #3c66d7;
  -webkit-box-shadow: inset 0 0 5px rgba(49, 77, 125, 0.21);
          box-shadow: inset 0 0 5px rgba(49, 77, 125, 0.21);
  border-radius: 46px;
  padding-left: 24px;
  font-size: 22px;
}
.page-apply .cnt .form .row .ipt-cnt .el-input__suffix,
.page-apply-2 .cnt .form .row .ipt-cnt .el-input__suffix,
.page-apply-3 .cnt .form .row .ipt-cnt .el-input__suffix {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  right: 20px;
}
.no-webp .page-apply .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret, 
.no-webp .page-apply-2 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret, 
.no-webp .page-apply-3 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png) no-repeat;background-size:3203px 2581px;
background-position:-3132px -944px}
.webp .page-apply .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret, 
.webp .page-apply-2 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret, 
.webp .page-apply-3 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp) no-repeat;background-size:3203px 2581px;
background-position:-3132px -944px}
.no-webp .page-apply .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret, 
.no-webp .page-apply-2 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret, 
.no-webp .page-apply-3 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret {background-size:3203px 2581px}
.webp .page-apply .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret, 
.webp .page-apply-2 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret, 
.webp .page-apply-3 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret {background-size:3203px 2581px}
.no-webp .page-apply .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret, 
.no-webp .page-apply-2 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret, 
.no-webp .page-apply-3 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret {background-position:-3132px -944px}
.webp .page-apply .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret, 
.webp .page-apply-2 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret, 
.webp .page-apply-3 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret {background-position:-3132px -944px}
.page-apply .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret,
.page-apply-2 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret,
.page-apply-3 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret {
width:19px;
height:17px;

}
.page-apply .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret::before,
.page-apply-2 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret::before,
.page-apply-3 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret::before,
.page-apply .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret::after,
.page-apply-2 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret::after,
.page-apply-3 .cnt .form .row .ipt-cnt .el-select .el-input .el-select__caret::after {
  display: none;
}
.no-webp .page-apply .cnt .form .row .ipt-cnt .upload-btn, 
.no-webp .page-apply-2 .cnt .form .row .ipt-cnt .upload-btn, 
.no-webp .page-apply-3 .cnt .form .row .ipt-cnt .upload-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png) no-repeat;background-size:3203px 2581px;
background-position:-2883px -1312px}
.webp .page-apply .cnt .form .row .ipt-cnt .upload-btn, 
.webp .page-apply-2 .cnt .form .row .ipt-cnt .upload-btn, 
.webp .page-apply-3 .cnt .form .row .ipt-cnt .upload-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp) no-repeat;background-size:3203px 2581px;
background-position:-2883px -1312px}
.no-webp .page-apply .cnt .form .row .ipt-cnt .upload-btn, 
.no-webp .page-apply-2 .cnt .form .row .ipt-cnt .upload-btn, 
.no-webp .page-apply-3 .cnt .form .row .ipt-cnt .upload-btn {background-size:3203px 2581px}
.webp .page-apply .cnt .form .row .ipt-cnt .upload-btn, 
.webp .page-apply-2 .cnt .form .row .ipt-cnt .upload-btn, 
.webp .page-apply-3 .cnt .form .row .ipt-cnt .upload-btn {background-size:3203px 2581px}
.no-webp .page-apply .cnt .form .row .ipt-cnt .upload-btn, 
.no-webp .page-apply-2 .cnt .form .row .ipt-cnt .upload-btn, 
.no-webp .page-apply-3 .cnt .form .row .ipt-cnt .upload-btn {background-position:-2883px -1312px}
.webp .page-apply .cnt .form .row .ipt-cnt .upload-btn, 
.webp .page-apply-2 .cnt .form .row .ipt-cnt .upload-btn, 
.webp .page-apply-3 .cnt .form .row .ipt-cnt .upload-btn {background-position:-2883px -1312px}
.page-apply .cnt .form .row .ipt-cnt .upload-btn,
.page-apply-2 .cnt .form .row .ipt-cnt .upload-btn,
.page-apply-3 .cnt .form .row .ipt-cnt .upload-btn {
width:176px;
height:46px;

}
.no-webp .page-apply .cnt .form .row .ipt-cnt .upload-btn:hover, 
.no-webp .page-apply-2 .cnt .form .row .ipt-cnt .upload-btn:hover, 
.no-webp .page-apply-3 .cnt .form .row .ipt-cnt .upload-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png) no-repeat;background-size:3203px 2581px;
background-position:-2608px -2038px}
.webp .page-apply .cnt .form .row .ipt-cnt .upload-btn:hover, 
.webp .page-apply-2 .cnt .form .row .ipt-cnt .upload-btn:hover, 
.webp .page-apply-3 .cnt .form .row .ipt-cnt .upload-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp) no-repeat;background-size:3203px 2581px;
background-position:-2608px -2038px}
.no-webp .page-apply .cnt .form .row .ipt-cnt .upload-btn:hover, 
.no-webp .page-apply-2 .cnt .form .row .ipt-cnt .upload-btn:hover, 
.no-webp .page-apply-3 .cnt .form .row .ipt-cnt .upload-btn:hover {background-size:3203px 2581px}
.webp .page-apply .cnt .form .row .ipt-cnt .upload-btn:hover, 
.webp .page-apply-2 .cnt .form .row .ipt-cnt .upload-btn:hover, 
.webp .page-apply-3 .cnt .form .row .ipt-cnt .upload-btn:hover {background-size:3203px 2581px}
.no-webp .page-apply .cnt .form .row .ipt-cnt .upload-btn:hover, 
.no-webp .page-apply-2 .cnt .form .row .ipt-cnt .upload-btn:hover, 
.no-webp .page-apply-3 .cnt .form .row .ipt-cnt .upload-btn:hover {background-position:-2608px -2038px}
.webp .page-apply .cnt .form .row .ipt-cnt .upload-btn:hover, 
.webp .page-apply-2 .cnt .form .row .ipt-cnt .upload-btn:hover, 
.webp .page-apply-3 .cnt .form .row .ipt-cnt .upload-btn:hover {background-position:-2608px -2038px}
.page-apply .cnt .form .row .ipt-cnt .upload-btn:hover,
.page-apply-2 .cnt .form .row .ipt-cnt .upload-btn:hover,
.page-apply-3 .cnt .form .row .ipt-cnt .upload-btn:hover {
width:176px;
height:46px;

}
.page-apply .cnt .form .row .ipt-cnt .upload-btn input,
.page-apply-2 .cnt .form .row .ipt-cnt .upload-btn input,
.page-apply-3 .cnt .form .row .ipt-cnt .upload-btn input {
  opacity: 0;
  width: 100%;
  height: 100%;
}
.page-apply .cnt .form .row .ipt-cnt .upload-tips,
.page-apply-2 .cnt .form .row .ipt-cnt .upload-tips,
.page-apply-3 .cnt .form .row .ipt-cnt .upload-tips {
  font-size: 16px;
  margin-top: 4px;
}
.page-apply .cnt .form .row .ipt-cnt .format-tips,
.page-apply-2 .cnt .form .row .ipt-cnt .format-tips,
.page-apply-3 .cnt .form .row .ipt-cnt .format-tips {
  margin-top: 4px;
  white-space: nowrap;
  font-size: 16px;
}
.no-webp .page-apply .cnt .form .personal, 
.no-webp .page-apply-2 .cnt .form .personal, 
.no-webp .page-apply-3 .cnt .form .personal {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/apply-bg-1_76d0e162.png) no-repeat}
.webp .page-apply .cnt .form .personal, 
.webp .page-apply-2 .cnt .form .personal, 
.webp .page-apply-3 .cnt .form .personal {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/apply-bg-1_76d0e162.webp) no-repeat}
.page-apply .cnt .form .personal,
.page-apply-2 .cnt .form .personal,
.page-apply-3 .cnt .form .personal {
  width: 1066px;
  height: 819px;
  margin: 0 auto;
  padding-top: 95px;
}
.no-webp .page-apply .cnt .form .team, 
.no-webp .page-apply-2 .cnt .form .team, 
.no-webp .page-apply-3 .cnt .form .team {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/apply-bg-2_8c7260e4.png) no-repeat}
.webp .page-apply .cnt .form .team, 
.webp .page-apply-2 .cnt .form .team, 
.webp .page-apply-3 .cnt .form .team {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/apply-bg-2_8c7260e4.webp) no-repeat}
.page-apply .cnt .form .team,
.page-apply-2 .cnt .form .team,
.page-apply-3 .cnt .form .team {
  width: 1066px;
  height: 242px;
  margin: 30px auto 0;
  padding-top: 100px;
}
.no-webp .page-apply .cnt .form .submit-btn, 
.no-webp .page-apply-2 .cnt .form .submit-btn, 
.no-webp .page-apply-3 .cnt .form .submit-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png) no-repeat;background-size:3203px 2581px;
background-position:-2884px -1833px}
.webp .page-apply .cnt .form .submit-btn, 
.webp .page-apply-2 .cnt .form .submit-btn, 
.webp .page-apply-3 .cnt .form .submit-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp) no-repeat;background-size:3203px 2581px;
background-position:-2884px -1833px}
.no-webp .page-apply .cnt .form .submit-btn, 
.no-webp .page-apply-2 .cnt .form .submit-btn, 
.no-webp .page-apply-3 .cnt .form .submit-btn {background-size:3203px 2581px}
.webp .page-apply .cnt .form .submit-btn, 
.webp .page-apply-2 .cnt .form .submit-btn, 
.webp .page-apply-3 .cnt .form .submit-btn {background-size:3203px 2581px}
.no-webp .page-apply .cnt .form .submit-btn, 
.no-webp .page-apply-2 .cnt .form .submit-btn, 
.no-webp .page-apply-3 .cnt .form .submit-btn {background-position:-2884px -1833px}
.webp .page-apply .cnt .form .submit-btn, 
.webp .page-apply-2 .cnt .form .submit-btn, 
.webp .page-apply-3 .cnt .form .submit-btn {background-position:-2884px -1833px}
.page-apply .cnt .form .submit-btn,
.page-apply-2 .cnt .form .submit-btn,
.page-apply-3 .cnt .form .submit-btn {
width:312px;
height:96px;

  margin: 40px auto 0;
  cursor: pointer;
}
.no-webp .page-apply .cnt .form .submit-btn:hover, 
.no-webp .page-apply-2 .cnt .form .submit-btn:hover, 
.no-webp .page-apply-3 .cnt .form .submit-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png) no-repeat;background-size:3203px 2581px;
background-position:-590px -2264px}
.webp .page-apply .cnt .form .submit-btn:hover, 
.webp .page-apply-2 .cnt .form .submit-btn:hover, 
.webp .page-apply-3 .cnt .form .submit-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp) no-repeat;background-size:3203px 2581px;
background-position:-590px -2264px}
.no-webp .page-apply .cnt .form .submit-btn:hover, 
.no-webp .page-apply-2 .cnt .form .submit-btn:hover, 
.no-webp .page-apply-3 .cnt .form .submit-btn:hover {background-size:3203px 2581px}
.webp .page-apply .cnt .form .submit-btn:hover, 
.webp .page-apply-2 .cnt .form .submit-btn:hover, 
.webp .page-apply-3 .cnt .form .submit-btn:hover {background-size:3203px 2581px}
.no-webp .page-apply .cnt .form .submit-btn:hover, 
.no-webp .page-apply-2 .cnt .form .submit-btn:hover, 
.no-webp .page-apply-3 .cnt .form .submit-btn:hover {background-position:-590px -2264px}
.webp .page-apply .cnt .form .submit-btn:hover, 
.webp .page-apply-2 .cnt .form .submit-btn:hover, 
.webp .page-apply-3 .cnt .form .submit-btn:hover {background-position:-590px -2264px}
.page-apply .cnt .form .submit-btn:hover,
.page-apply-2 .cnt .form .submit-btn:hover,
.page-apply-3 .cnt .form .submit-btn:hover {
width:312px;
height:96px;

}
.page-apply .cnt .form .tips,
.page-apply-2 .cnt .form .tips,
.page-apply-3 .cnt .form .tips {
  font-size: 19px;
  color: #3c66d7;
  text-align: center;
  margin-top: 14px;
}
.no-webp .page-apply .cnt .info, 
.no-webp .page-apply-2 .cnt .info, 
.no-webp .page-apply-3 .cnt .info {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/cnt-2_36f87803.png) repeat-y}
.webp .page-apply .cnt .info, 
.webp .page-apply-2 .cnt .info, 
.webp .page-apply-3 .cnt .info {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/cnt-2_36f87803.webp) repeat-y}
.page-apply .cnt .info,
.page-apply-2 .cnt .info,
.page-apply-3 .cnt .info {
  width: 1073px;
  margin: 80px auto 120px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.no-webp .page-apply .cnt .info:before, 
.no-webp .page-apply-2 .cnt .info:before, 
.no-webp .page-apply-3 .cnt .info:before {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2105px -1646px}
.webp .page-apply .cnt .info:before, 
.webp .page-apply-2 .cnt .info:before, 
.webp .page-apply-3 .cnt .info:before {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2105px -1646px}
.no-webp .page-apply .cnt .info:before, 
.no-webp .page-apply-2 .cnt .info:before, 
.no-webp .page-apply-3 .cnt .info:before {background-size:3203px 2581px}
.webp .page-apply .cnt .info:before, 
.webp .page-apply-2 .cnt .info:before, 
.webp .page-apply-3 .cnt .info:before {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info:before, 
.no-webp .page-apply-2 .cnt .info:before, 
.no-webp .page-apply-3 .cnt .info:before {background-position:-2105px -1646px}
.webp .page-apply .cnt .info:before, 
.webp .page-apply-2 .cnt .info:before, 
.webp .page-apply-3 .cnt .info:before {background-position:-2105px -1646px}
.page-apply .cnt .info:before,
.page-apply-2 .cnt .info:before,
.page-apply-3 .cnt .info:before {
  content: '';
width:1073px;
height:80px;

  position: absolute;
  top: -80px;
}
.no-webp .page-apply .cnt .info:after, 
.no-webp .page-apply-2 .cnt .info:after, 
.no-webp .page-apply-3 .cnt .info:after {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2105px -1728px}
.webp .page-apply .cnt .info:after, 
.webp .page-apply-2 .cnt .info:after, 
.webp .page-apply-3 .cnt .info:after {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2105px -1728px}
.no-webp .page-apply .cnt .info:after, 
.no-webp .page-apply-2 .cnt .info:after, 
.no-webp .page-apply-3 .cnt .info:after {background-size:3203px 2581px}
.webp .page-apply .cnt .info:after, 
.webp .page-apply-2 .cnt .info:after, 
.webp .page-apply-3 .cnt .info:after {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info:after, 
.no-webp .page-apply-2 .cnt .info:after, 
.no-webp .page-apply-3 .cnt .info:after {background-position:-2105px -1728px}
.webp .page-apply .cnt .info:after, 
.webp .page-apply-2 .cnt .info:after, 
.webp .page-apply-3 .cnt .info:after {background-position:-2105px -1728px}
.page-apply .cnt .info:after,
.page-apply-2 .cnt .info:after,
.page-apply-3 .cnt .info:after {
  content: '';
width:1073px;
height:80px;

  position: absolute;
  bottom: -80px;
}
.page-apply .cnt .info .modify-btn,
.page-apply-2 .cnt .info .modify-btn,
.page-apply-3 .cnt .info .modify-btn {
  cursor: pointer;
  color: #3c66d7;
  font-weight: bold;
  font-size: 22px;
  position: absolute;
  top: 26px;
  right: 30px;
  z-index: 1;
}
.no-webp .page-apply .cnt .info-team, 
.no-webp .page-apply-2 .cnt .info-team, 
.no-webp .page-apply-3 .cnt .info-team {background:#dcf7ff}
.webp .page-apply .cnt .info-team, 
.webp .page-apply-2 .cnt .info-team, 
.webp .page-apply-3 .cnt .info-team {background:#dcf7ff}
.page-apply .cnt .info-team,
.page-apply-2 .cnt .info-team,
.page-apply-3 .cnt .info-team {
  position: relative;
  width: 928px;
  -webkit-box-shadow: 0 0 15px 0 rgba(63, 99, 182, 0.08);
          box-shadow: 0 0 15px 0 rgba(63, 99, 182, 0.08);
  border-radius: 10px;
  margin: 0 auto 63px auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 106px;
  padding-bottom: 80px;
  text-align: center;
  font-size: 28px;
  color: #3c66d7;
}
.no-webp .page-apply .cnt .info-team.info-team-hasdata, 
.no-webp .page-apply-2 .cnt .info-team.info-team-hasdata, 
.no-webp .page-apply-3 .cnt .info-team.info-team-hasdata {background:#dcf7ff}
.webp .page-apply .cnt .info-team.info-team-hasdata, 
.webp .page-apply-2 .cnt .info-team.info-team-hasdata, 
.webp .page-apply-3 .cnt .info-team.info-team-hasdata {background:#dcf7ff}
.page-apply .cnt .info-team.info-team-hasdata,
.page-apply-2 .cnt .info-team.info-team-hasdata,
.page-apply-3 .cnt .info-team.info-team-hasdata {
  position: relative;
  width: 928px;
  -webkit-box-shadow: 0 0 15px 0 rgba(63, 99, 182, 0.08);
          box-shadow: 0 0 15px 0 rgba(63, 99, 182, 0.08);
  border-radius: 10px;
}
.no-webp .page-apply .cnt .info-team.info-team-hasdata .team-name, 
.no-webp .page-apply-2 .cnt .info-team.info-team-hasdata .team-name, 
.no-webp .page-apply-3 .cnt .info-team.info-team-hasdata .team-name {background:#fff}
.webp .page-apply .cnt .info-team.info-team-hasdata .team-name, 
.webp .page-apply-2 .cnt .info-team.info-team-hasdata .team-name, 
.webp .page-apply-3 .cnt .info-team.info-team-hasdata .team-name {background:#fff}
.page-apply .cnt .info-team.info-team-hasdata .team-name,
.page-apply-2 .cnt .info-team.info-team-hasdata .team-name,
.page-apply-3 .cnt .info-team.info-team-hasdata .team-name {
  font-size: 24px;
  color: #3c66d7;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 20px;
  height: 39px;
  margin: 0 auto;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-apply .cnt .info-team.info-team-hasdata .operate,
.page-apply-2 .cnt .info-team.info-team-hasdata .operate,
.page-apply-3 .cnt .info-team.info-team-hasdata .operate {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.page-apply .cnt .info-team.info-team-hasdata .operate .operate-item,
.page-apply-2 .cnt .info-team.info-team-hasdata .operate .operate-item,
.page-apply-3 .cnt .info-team.info-team-hasdata .operate .operate-item {
  margin: 0 0 0 20px;
  cursor: pointer;
  font-weight: bold;
}
.page-apply .cnt .info-team.info-team-hasdata .list,
.page-apply-2 .cnt .info-team.info-team-hasdata .list,
.page-apply-3 .cnt .info-team.info-team-hasdata .list {
  text-align: left;
  font-size: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.no-webp .page-apply .cnt .info-team.info-team-hasdata .list li, 
.no-webp .page-apply-2 .cnt .info-team.info-team-hasdata .list li, 
.no-webp .page-apply-3 .cnt .info-team.info-team-hasdata .list li {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1521px -843px}
.webp .page-apply .cnt .info-team.info-team-hasdata .list li, 
.webp .page-apply-2 .cnt .info-team.info-team-hasdata .list li, 
.webp .page-apply-3 .cnt .info-team.info-team-hasdata .list li {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1521px -843px}
.no-webp .page-apply .cnt .info-team.info-team-hasdata .list li, 
.no-webp .page-apply-2 .cnt .info-team.info-team-hasdata .list li, 
.no-webp .page-apply-3 .cnt .info-team.info-team-hasdata .list li {background-size:3203px 2581px}
.webp .page-apply .cnt .info-team.info-team-hasdata .list li, 
.webp .page-apply-2 .cnt .info-team.info-team-hasdata .list li, 
.webp .page-apply-3 .cnt .info-team.info-team-hasdata .list li {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info-team.info-team-hasdata .list li, 
.no-webp .page-apply-2 .cnt .info-team.info-team-hasdata .list li, 
.no-webp .page-apply-3 .cnt .info-team.info-team-hasdata .list li {background-position:-1521px -843px}
.webp .page-apply .cnt .info-team.info-team-hasdata .list li, 
.webp .page-apply-2 .cnt .info-team.info-team-hasdata .list li, 
.webp .page-apply-3 .cnt .info-team.info-team-hasdata .list li {background-position:-1521px -843px}
.page-apply .cnt .info-team.info-team-hasdata .list li,
.page-apply-2 .cnt .info-team.info-team-hasdata .list li,
.page-apply-3 .cnt .info-team.info-team-hasdata .list li {
  padding: 22px 0 0 38px;
  margin: 0 0 36px 0;
width:378px;
height:186px;

}
.page-apply .cnt .info-team.info-team-hasdata .list li .team-title,
.page-apply-2 .cnt .info-team.info-team-hasdata .list li .team-title,
.page-apply-3 .cnt .info-team.info-team-hasdata .list li .team-title {
  font-size: 24px;
  padding: 0 0 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.no-webp .page-apply .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon, 
.no-webp .page-apply-2 .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon, 
.no-webp .page-apply-3 .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3132px -842px}
.webp .page-apply .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon, 
.webp .page-apply-2 .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon, 
.webp .page-apply-3 .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3132px -842px}
.no-webp .page-apply .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon, 
.no-webp .page-apply-2 .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon, 
.no-webp .page-apply-3 .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon {background-size:3203px 2581px}
.webp .page-apply .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon, 
.webp .page-apply-2 .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon, 
.webp .page-apply-3 .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon, 
.no-webp .page-apply-2 .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon, 
.no-webp .page-apply-3 .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon {background-position:-3132px -842px}
.webp .page-apply .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon, 
.webp .page-apply-2 .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon, 
.webp .page-apply-3 .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon {background-position:-3132px -842px}
.page-apply .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon,
.page-apply-2 .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon,
.page-apply-3 .cnt .info-team.info-team-hasdata .list li .team-title .duizhang-icon {
width:54px;
height:21px;

  margin: 0 0 0 8px;
}
.page-apply .cnt .info-team.info-team-hasdata .list li .team-info,
.page-apply-2 .cnt .info-team.info-team-hasdata .list li .team-info,
.page-apply-3 .cnt .info-team.info-team-hasdata .list li .team-info {
  line-height: 34px;
}
.page-apply .cnt .info-team.info-team-hasdata .list.list-top li:nth-child(1),
.page-apply-2 .cnt .info-team.info-team-hasdata .list.list-top li:nth-child(1),
.page-apply-3 .cnt .info-team.info-team-hasdata .list.list-top li:nth-child(1) {
  margin: 0 auto 36px auto;
}
.page-apply .cnt .info-team.info-team-hasdata .list.list-bottom li:nth-child(1),
.page-apply-2 .cnt .info-team.info-team-hasdata .list.list-bottom li:nth-child(1),
.page-apply-3 .cnt .info-team.info-team-hasdata .list.list-bottom li:nth-child(1),
.page-apply .cnt .info-team.info-team-hasdata .list.list-bottom li:nth-child(3),
.page-apply-2 .cnt .info-team.info-team-hasdata .list.list-bottom li:nth-child(3),
.page-apply-3 .cnt .info-team.info-team-hasdata .list.list-bottom li:nth-child(3) {
  margin: 0 50px 0 64px;
}
.page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap,
.page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap,
.page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap {
  padding: 48px 0;
}
.no-webp .page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member, 
.no-webp .page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member, 
.no-webp .page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1218px -2264px}
.webp .page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member, 
.webp .page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member, 
.webp .page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1218px -2264px}
.no-webp .page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member, 
.no-webp .page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member, 
.no-webp .page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member {background-size:3203px 2581px}
.webp .page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member, 
.webp .page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member, 
.webp .page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member, 
.no-webp .page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member, 
.no-webp .page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member {background-position:-1218px -2264px}
.webp .page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member, 
.webp .page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member, 
.webp .page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member {background-position:-1218px -2264px}
.page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member,
.page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member,
.page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member {
  cursor: pointer;
  font-size: 40px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(27, 135, 193, 0.35);
  padding: 22px 0 0 0;
  letter-spacing: 4px;
width:312px;
height:95px;

  margin: 0 auto;
}
.no-webp .page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover, 
.no-webp .page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover, 
.no-webp .page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-904px -2264px}
.webp .page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover, 
.webp .page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover, 
.webp .page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-904px -2264px}
.no-webp .page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover, 
.no-webp .page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover, 
.no-webp .page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover {background-size:3203px 2581px}
.webp .page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover, 
.webp .page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover, 
.webp .page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover, 
.no-webp .page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover, 
.no-webp .page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover {background-position:-904px -2264px}
.webp .page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover, 
.webp .page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover, 
.webp .page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover {background-position:-904px -2264px}
.page-apply .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover,
.page-apply-2 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover,
.page-apply-3 .cnt .info-team.info-team-hasdata .invite-member-wrap .invite-member:hover {
width:312px;
height:95px;

}
.page-apply .cnt .info-team .info-team-name-wrap,
.page-apply-2 .cnt .info-team .info-team-name-wrap,
.page-apply-3 .cnt .info-team .info-team-name-wrap {
  position: relative;
  padding: 16px 0 0 0;
  width: 777px;
  margin: 0 auto;
}
.page-apply .cnt .info-team .info-team-name-wrap.no-team-wrap,
.page-apply-2 .cnt .info-team .info-team-name-wrap.no-team-wrap,
.page-apply-3 .cnt .info-team .info-team-name-wrap.no-team-wrap {
  padding: 0 0 48px 0;
}
.no-webp .page-apply .cnt .info-team .info-team-name-wrap.no-team-wrap .team-name, 
.no-webp .page-apply-2 .cnt .info-team .info-team-name-wrap.no-team-wrap .team-name, 
.no-webp .page-apply-3 .cnt .info-team .info-team-name-wrap.no-team-wrap .team-name {background:#fff}
.webp .page-apply .cnt .info-team .info-team-name-wrap.no-team-wrap .team-name, 
.webp .page-apply-2 .cnt .info-team .info-team-name-wrap.no-team-wrap .team-name, 
.webp .page-apply-3 .cnt .info-team .info-team-name-wrap.no-team-wrap .team-name {background:#fff}
.page-apply .cnt .info-team .info-team-name-wrap.no-team-wrap .team-name,
.page-apply-2 .cnt .info-team .info-team-name-wrap.no-team-wrap .team-name,
.page-apply-3 .cnt .info-team .info-team-name-wrap.no-team-wrap .team-name {
  width: 419px;
  margin: 0 auto;
  font-size: 24px;
  color: #3c66d7;
  height: 42px;
  border-radius: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.no-webp .page-apply .cnt .info-team .info-team-name-wrap .team-name, 
.no-webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-name, 
.no-webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-name {background:#3c66d7}
.webp .page-apply .cnt .info-team .info-team-name-wrap .team-name, 
.webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-name, 
.webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-name {background:#3c66d7}
.page-apply .cnt .info-team .info-team-name-wrap .team-name,
.page-apply-2 .cnt .info-team .info-team-name-wrap .team-name,
.page-apply-3 .cnt .info-team .info-team-name-wrap .team-name {
  position: absolute;
  top: -5px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  height: 45px;
  border-radius: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.no-webp .page-apply .cnt .info-team .info-team-name-wrap .team-list, 
.no-webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-list, 
.no-webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-list {background:#fff}
.webp .page-apply .cnt .info-team .info-team-name-wrap .team-list, 
.webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-list, 
.webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-list {background:#fff}
.page-apply .cnt .info-team .info-team-name-wrap .team-list,
.page-apply-2 .cnt .info-team .info-team-name-wrap .team-list,
.page-apply-3 .cnt .info-team .info-team-name-wrap .team-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  height: 141px;
  font-size: 24px;
}
.page-apply .cnt .info-team .info-team-name-wrap .team-list li,
.page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li,
.page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-right: 2px solid #949ae8;
  position: relative;
}
.page-apply .cnt .info-team .info-team-name-wrap .team-list li:nth-child(1),
.page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li:nth-child(1),
.page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li:nth-child(1) {
  font-weight: bold;
}
.page-apply .cnt .info-team .info-team-name-wrap .team-list li.add-member,
.page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li.add-member,
.page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li.add-member {
  cursor: pointer;
  color: #d7d7d7;
}
.no-webp .page-apply .cnt .info-team .info-team-name-wrap .team-list li .add, 
.no-webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li .add, 
.no-webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li .add {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3153px -944px}
.webp .page-apply .cnt .info-team .info-team-name-wrap .team-list li .add, 
.webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li .add, 
.webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li .add {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3153px -944px}
.no-webp .page-apply .cnt .info-team .info-team-name-wrap .team-list li .add, 
.no-webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li .add, 
.no-webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li .add {background-size:3203px 2581px}
.webp .page-apply .cnt .info-team .info-team-name-wrap .team-list li .add, 
.webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li .add, 
.webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li .add {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info-team .info-team-name-wrap .team-list li .add, 
.no-webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li .add, 
.no-webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li .add {background-position:-3153px -944px}
.webp .page-apply .cnt .info-team .info-team-name-wrap .team-list li .add, 
.webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li .add, 
.webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li .add {background-position:-3153px -944px}
.page-apply .cnt .info-team .info-team-name-wrap .team-list li .add,
.page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li .add,
.page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li .add {
  color: #d7d7d7;
width:17px;
height:17px;

  position: absolute;
  bottom: -4px;
  right: 16px;
}
.no-webp .page-apply .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon, 
.no-webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon, 
.no-webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3132px -865px}
.webp .page-apply .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon, 
.webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon, 
.webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3132px -865px}
.no-webp .page-apply .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon, 
.no-webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon, 
.no-webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon {background-size:3203px 2581px}
.webp .page-apply .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon, 
.webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon, 
.webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon, 
.no-webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon, 
.no-webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon {background-position:-3132px -865px}
.webp .page-apply .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon, 
.webp .page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon, 
.webp .page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon {background-position:-3132px -865px}
.page-apply .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon,
.page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon,
.page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li .duizhang-icon {
  display: inline-block;
  position: absolute;
  top: -31px;
  right: 4px;
width:47px;
height:19px;

}
.page-apply .cnt .info-team .info-team-name-wrap .team-list li:last-child,
.page-apply-2 .cnt .info-team .info-team-name-wrap .team-list li:last-child,
.page-apply-3 .cnt .info-team .info-team-name-wrap .team-list li:last-child {
  border: none;
}
.no-webp .page-apply .cnt .info-team-name-2, 
.no-webp .page-apply-2 .cnt .info-team-name-2, 
.no-webp .page-apply-3 .cnt .info-team-name-2 {background:#fff}
.webp .page-apply .cnt .info-team-name-2, 
.webp .page-apply-2 .cnt .info-team-name-2, 
.webp .page-apply-3 .cnt .info-team-name-2 {background:#fff}
.page-apply .cnt .info-team-name-2,
.page-apply-2 .cnt .info-team-name-2,
.page-apply-3 .cnt .info-team-name-2 {
  color: #3c66d7;
  width: 376px;
  height: 39px;
  margin: 0 auto;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
}
.page-apply .cnt .info .team-work,
.page-apply-2 .cnt .info .team-work,
.page-apply-3 .cnt .info .team-work {
  padding: 52px 0 0 0;
  width: 928px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.page-apply .cnt .info .team-work .apply-title,
.page-apply-2 .cnt .info .team-work .apply-title,
.page-apply-3 .cnt .info .team-work .apply-title {
  top: 10px;
}
.page-apply .cnt .info .team-work .team-work-item,
.page-apply-2 .cnt .info .team-work .team-work-item,
.page-apply-3 .cnt .info .team-work .team-work-item {
  position: relative;
}
.no-webp .page-apply .cnt .info .team-work .team-work-item .team-work-title, 
.no-webp .page-apply-2 .cnt .info .team-work .team-work-item .team-work-title, 
.no-webp .page-apply-3 .cnt .info .team-work .team-work-item .team-work-title {background:#3c66d7}
.webp .page-apply .cnt .info .team-work .team-work-item .team-work-title, 
.webp .page-apply-2 .cnt .info .team-work .team-work-item .team-work-title, 
.webp .page-apply-3 .cnt .info .team-work .team-work-item .team-work-title {background:#3c66d7}
.page-apply .cnt .info .team-work .team-work-item .team-work-title,
.page-apply-2 .cnt .info .team-work .team-work-item .team-work-title,
.page-apply-3 .cnt .info .team-work .team-work-item .team-work-title {
  width: 149px;
  height: 36px;
  color: #fff;
  font-weight: bold;
  border: 1px solid #3c66d7;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  margin: 0 auto 32px auto;
}
.no-webp .page-apply .cnt .info .team-work .team-work-item .work-content, 
.no-webp .page-apply-2 .cnt .info .team-work .team-work-item .work-content, 
.no-webp .page-apply-3 .cnt .info .team-work .team-work-item .work-content {background:#fff}
.webp .page-apply .cnt .info .team-work .team-work-item .work-content, 
.webp .page-apply-2 .cnt .info .team-work .team-work-item .work-content, 
.webp .page-apply-3 .cnt .info .team-work .team-work-item .work-content {background:#fff}
.page-apply .cnt .info .team-work .team-work-item .work-content,
.page-apply-2 .cnt .info .team-work .team-work-item .work-content,
.page-apply-3 .cnt .info .team-work .team-work-item .work-content {
  position: relative;
  padding: 4px 0 0 0;
  text-align: left;
  width: 354px;
  height: 308px;
  -webkit-box-shadow: 0 0 16px 1px rgba(97, 190, 218, 0.24);
          box-shadow: 0 0 16px 1px rgba(97, 190, 218, 0.24);
  border-radius: 16px;
}
.no-webp .page-apply .cnt .info .team-work .team-work-item .work-content .upload, 
.no-webp .page-apply-2 .cnt .info .team-work .team-work-item .work-content .upload, 
.no-webp .page-apply-3 .cnt .info .team-work .team-work-item .work-content .upload {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1717px -1120px}
.webp .page-apply .cnt .info .team-work .team-work-item .work-content .upload, 
.webp .page-apply-2 .cnt .info .team-work .team-work-item .work-content .upload, 
.webp .page-apply-3 .cnt .info .team-work .team-work-item .work-content .upload {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1717px -1120px}
.no-webp .page-apply .cnt .info .team-work .team-work-item .work-content .upload, 
.no-webp .page-apply-2 .cnt .info .team-work .team-work-item .work-content .upload, 
.no-webp .page-apply-3 .cnt .info .team-work .team-work-item .work-content .upload {background-size:3203px 2581px}
.webp .page-apply .cnt .info .team-work .team-work-item .work-content .upload, 
.webp .page-apply-2 .cnt .info .team-work .team-work-item .work-content .upload, 
.webp .page-apply-3 .cnt .info .team-work .team-work-item .work-content .upload {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info .team-work .team-work-item .work-content .upload, 
.no-webp .page-apply-2 .cnt .info .team-work .team-work-item .work-content .upload, 
.no-webp .page-apply-3 .cnt .info .team-work .team-work-item .work-content .upload {background-position:-1717px -1120px}
.webp .page-apply .cnt .info .team-work .team-work-item .work-content .upload, 
.webp .page-apply-2 .cnt .info .team-work .team-work-item .work-content .upload, 
.webp .page-apply-3 .cnt .info .team-work .team-work-item .work-content .upload {background-position:-1717px -1120px}
.page-apply .cnt .info .team-work .team-work-item .work-content .upload,
.page-apply-2 .cnt .info .team-work .team-work-item .work-content .upload,
.page-apply-3 .cnt .info .team-work .team-work-item .work-content .upload {
  cursor: pointer;
width:340px;
height:192px;

  margin: 3px auto 0 auto;
}
.page-apply .cnt .info .team-work .team-work-item .work-content .img,
.page-apply-2 .cnt .info .team-work .team-work-item .work-content .img,
.page-apply-3 .cnt .info .team-work .team-work-item .work-content .img {
  width: 340px;
  height: 192px;
  display: block;
  margin: 3px auto 0 auto;
  border-radius: 16px;
}
.page-apply .cnt .info .team-work .team-work-item .work-content .no-photo,
.page-apply-2 .cnt .info .team-work .team-work-item .work-content .no-photo,
.page-apply-3 .cnt .info .team-work .team-work-item .work-content .no-photo {
  width: 350px;
  height: 195px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #3c66d7;
  font-size: 24px;
}
.page-apply .cnt .info .team-work .team-work-item .work-content .work-content-detail,
.page-apply-2 .cnt .info .team-work .team-work-item .work-content .work-content-detail,
.page-apply-3 .cnt .info .team-work .team-work-item .work-content .work-content-detail {
  color: #3c66d7;
  padding: 20px 0 0 7px;
}
.page-apply .cnt .info .team-work .team-work-item .work-content .work-content-detail .work-content-detail-title,
.page-apply-2 .cnt .info .team-work .team-work-item .work-content .work-content-detail .work-content-detail-title,
.page-apply-3 .cnt .info .team-work .team-work-item .work-content .work-content-detail .work-content-detail-title {
  font-weight: bold;
  font-size: 20px;
  padding: 0 0 10px 0;
}
.page-apply .cnt .info .team-work .team-work-item .work-content .work-content-detail .work-content-detail-intro,
.page-apply-2 .cnt .info .team-work .team-work-item .work-content .work-content-detail .work-content-detail-intro,
.page-apply-3 .cnt .info .team-work .team-work-item .work-content .work-content-detail .work-content-detail-intro,
.page-apply .cnt .info .team-work .team-work-item .work-content .work-content-detail .work-content-detail-time,
.page-apply-2 .cnt .info .team-work .team-work-item .work-content .work-content-detail .work-content-detail-time,
.page-apply-3 .cnt .info .team-work .team-work-item .work-content .work-content-detail .work-content-detail-time {
  font-size: 16px;
  line-height: 22px;
  padding: 0 0 0 10px;
}
.no-webp .page-apply .cnt .info .team-work .team-work-item .work-content .edit, 
.no-webp .page-apply-2 .cnt .info .team-work .team-work-item .work-content .edit, 
.no-webp .page-apply-3 .cnt .info .team-work .team-work-item .work-content .edit {background:#3c66d7}
.webp .page-apply .cnt .info .team-work .team-work-item .work-content .edit, 
.webp .page-apply-2 .cnt .info .team-work .team-work-item .work-content .edit, 
.webp .page-apply-3 .cnt .info .team-work .team-work-item .work-content .edit {background:#3c66d7}
.page-apply .cnt .info .team-work .team-work-item .work-content .edit,
.page-apply-2 .cnt .info .team-work .team-work-item .work-content .edit,
.page-apply-3 .cnt .info .team-work .team-work-item .work-content .edit {
  font-size: 16px;
  position: absolute;
  right: 20px;
  bottom: 13px;
  padding: 3px 12px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
}
.page-apply .cnt .info .apply-title,
.page-apply-2 .cnt .info .apply-title,
.page-apply-3 .cnt .info .apply-title {
  position: absolute;
  top: 18px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  font-size: 34px;
  color: #9b5b05;
}
.no-webp .page-apply .cnt .info .apply-title.xiaodui-title, 
.no-webp .page-apply-2 .cnt .info .apply-title.xiaodui-title, 
.no-webp .page-apply-3 .cnt .info .apply-title.xiaodui-title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1151px -1053px}
.webp .page-apply .cnt .info .apply-title.xiaodui-title, 
.webp .page-apply-2 .cnt .info .apply-title.xiaodui-title, 
.webp .page-apply-3 .cnt .info .apply-title.xiaodui-title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1151px -1053px}
.no-webp .page-apply .cnt .info .apply-title.xiaodui-title, 
.no-webp .page-apply-2 .cnt .info .apply-title.xiaodui-title, 
.no-webp .page-apply-3 .cnt .info .apply-title.xiaodui-title {background-size:3203px 2581px}
.webp .page-apply .cnt .info .apply-title.xiaodui-title, 
.webp .page-apply-2 .cnt .info .apply-title.xiaodui-title, 
.webp .page-apply-3 .cnt .info .apply-title.xiaodui-title {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info .apply-title.xiaodui-title, 
.no-webp .page-apply-2 .cnt .info .apply-title.xiaodui-title, 
.no-webp .page-apply-3 .cnt .info .apply-title.xiaodui-title {background-position:-1151px -1053px}
.webp .page-apply .cnt .info .apply-title.xiaodui-title, 
.webp .page-apply-2 .cnt .info .apply-title.xiaodui-title, 
.webp .page-apply-3 .cnt .info .apply-title.xiaodui-title {background-position:-1151px -1053px}
.page-apply .cnt .info .apply-title.xiaodui-title,
.page-apply-2 .cnt .info .apply-title.xiaodui-title,
.page-apply-3 .cnt .info .apply-title.xiaodui-title {
width:405px;
height:56px;

  top: -9px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}
.no-webp .page-apply .cnt .info .apply-title.small-title, 
.no-webp .page-apply-2 .cnt .info .apply-title.small-title, 
.no-webp .page-apply-3 .cnt .info .apply-title.small-title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1558px -1053px}
.webp .page-apply .cnt .info .apply-title.small-title, 
.webp .page-apply-2 .cnt .info .apply-title.small-title, 
.webp .page-apply-3 .cnt .info .apply-title.small-title {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1558px -1053px}
.no-webp .page-apply .cnt .info .apply-title.small-title, 
.no-webp .page-apply-2 .cnt .info .apply-title.small-title, 
.no-webp .page-apply-3 .cnt .info .apply-title.small-title {background-size:3203px 2581px}
.webp .page-apply .cnt .info .apply-title.small-title, 
.webp .page-apply-2 .cnt .info .apply-title.small-title, 
.webp .page-apply-3 .cnt .info .apply-title.small-title {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info .apply-title.small-title, 
.no-webp .page-apply-2 .cnt .info .apply-title.small-title, 
.no-webp .page-apply-3 .cnt .info .apply-title.small-title {background-position:-1558px -1053px}
.webp .page-apply .cnt .info .apply-title.small-title, 
.webp .page-apply-2 .cnt .info .apply-title.small-title, 
.webp .page-apply-3 .cnt .info .apply-title.small-title {background-position:-1558px -1053px}
.page-apply .cnt .info .apply-title.small-title,
.page-apply-2 .cnt .info .apply-title.small-title,
.page-apply-3 .cnt .info .apply-title.small-title {
width:242px;
height:56px;

  top: -9px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}
.no-webp .page-apply .cnt .info-personal, 
.no-webp .page-apply-2 .cnt .info-personal, 
.no-webp .page-apply-3 .cnt .info-personal {background:#dcf7ff}
.webp .page-apply .cnt .info-personal, 
.webp .page-apply-2 .cnt .info-personal, 
.webp .page-apply-3 .cnt .info-personal {background:#dcf7ff}
.page-apply .cnt .info-personal,
.page-apply-2 .cnt .info-personal,
.page-apply-3 .cnt .info-personal {
  width: 928px;
  -webkit-box-shadow: 0 0 15px 0 rgba(63, 99, 182, 0.08);
          box-shadow: 0 0 15px 0 rgba(63, 99, 182, 0.08);
  border-radius: 10px;
  margin: 35px auto 63px auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: flex-start;
      -ms-flex-line-pack: start;
          align-content: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 104px 0 40px 0;
  position: relative;
}
.no-webp .page-apply .cnt .info-personal .item, 
.no-webp .page-apply-2 .cnt .info-personal .item, 
.no-webp .page-apply-3 .cnt .info-personal .item {background:#fff}
.webp .page-apply .cnt .info-personal .item, 
.webp .page-apply-2 .cnt .info-personal .item, 
.webp .page-apply-3 .cnt .info-personal .item {background:#fff}
.page-apply .cnt .info-personal .item,
.page-apply-2 .cnt .info-personal .item,
.page-apply-3 .cnt .info-personal .item {
  width: 306px;
  height: 40px;
  margin: 0 0 19px 0;
  border-radius: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3c66d7;
  font-size: 24px;
}
.page-apply .cnt .info-personal .item:nth-child(1),
.page-apply-2 .cnt .info-personal .item:nth-child(1),
.page-apply-3 .cnt .info-personal .item:nth-child(1),
.page-apply .cnt .info-personal .item:nth-child(3),
.page-apply-2 .cnt .info-personal .item:nth-child(3),
.page-apply-3 .cnt .info-personal .item:nth-child(3) {
  margin: 0 67px 0 122px;
}
.page-apply .cnt .info-personal .item-value,
.page-apply-2 .cnt .info-personal .item-value,
.page-apply-3 .cnt .info-personal .item-value,
.page-apply .cnt .info-personal .item-value-2,
.page-apply-2 .cnt .info-personal .item-value-2,
.page-apply-3 .cnt .info-personal .item-value-2 {
  word-wrap: break-word;
}
.page-apply .cnt .info-personal .item-value.name,
.page-apply-2 .cnt .info-personal .item-value.name,
.page-apply-3 .cnt .info-personal .item-value.name {
  font-weight: bold;
}
.page-apply .cnt .info-personal .item-value-2,
.page-apply-2 .cnt .info-personal .item-value-2,
.page-apply-3 .cnt .info-personal .item-value-2 {
  color: #ff8585;
}
.page-apply .cnt .info-personal .item-label,
.page-apply-2 .cnt .info-personal .item-label,
.page-apply-3 .cnt .info-personal .item-label {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
  font-weight: bold;
}
.page-apply .cnt .info-personal .item-label::after,
.page-apply-2 .cnt .info-personal .item-label::after,
.page-apply-3 .cnt .info-personal .item-label::after {
  display: block;
  content: '\FF1A';
}
.page-apply .cnt .info .operations,
.page-apply-2 .cnt .info .operations,
.page-apply-3 .cnt .info .operations {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.no-webp .page-apply .cnt .info .operations .create-ranks, 
.no-webp .page-apply-2 .cnt .info .operations .create-ranks, 
.no-webp .page-apply-3 .cnt .info .operations .create-ranks {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2232px -1941px}
.webp .page-apply .cnt .info .operations .create-ranks, 
.webp .page-apply-2 .cnt .info .operations .create-ranks, 
.webp .page-apply-3 .cnt .info .operations .create-ranks {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2232px -1941px}
.no-webp .page-apply .cnt .info .operations .create-ranks, 
.no-webp .page-apply-2 .cnt .info .operations .create-ranks, 
.no-webp .page-apply-3 .cnt .info .operations .create-ranks {background-size:3203px 2581px}
.webp .page-apply .cnt .info .operations .create-ranks, 
.webp .page-apply-2 .cnt .info .operations .create-ranks, 
.webp .page-apply-3 .cnt .info .operations .create-ranks {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info .operations .create-ranks, 
.no-webp .page-apply-2 .cnt .info .operations .create-ranks, 
.no-webp .page-apply-3 .cnt .info .operations .create-ranks {background-position:-2232px -1941px}
.webp .page-apply .cnt .info .operations .create-ranks, 
.webp .page-apply-2 .cnt .info .operations .create-ranks, 
.webp .page-apply-3 .cnt .info .operations .create-ranks {background-position:-2232px -1941px}
.page-apply .cnt .info .operations .create-ranks,
.page-apply-2 .cnt .info .operations .create-ranks,
.page-apply-3 .cnt .info .operations .create-ranks {
  cursor: pointer;
width:344px;
height:90px;

}
.no-webp .page-apply .cnt .info .operations .create-ranks:hover, 
.no-webp .page-apply-2 .cnt .info .operations .create-ranks:hover, 
.no-webp .page-apply-3 .cnt .info .operations .create-ranks:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-590px -2172px}
.webp .page-apply .cnt .info .operations .create-ranks:hover, 
.webp .page-apply-2 .cnt .info .operations .create-ranks:hover, 
.webp .page-apply-3 .cnt .info .operations .create-ranks:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-590px -2172px}
.no-webp .page-apply .cnt .info .operations .create-ranks:hover, 
.no-webp .page-apply-2 .cnt .info .operations .create-ranks:hover, 
.no-webp .page-apply-3 .cnt .info .operations .create-ranks:hover {background-size:3203px 2581px}
.webp .page-apply .cnt .info .operations .create-ranks:hover, 
.webp .page-apply-2 .cnt .info .operations .create-ranks:hover, 
.webp .page-apply-3 .cnt .info .operations .create-ranks:hover {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info .operations .create-ranks:hover, 
.no-webp .page-apply-2 .cnt .info .operations .create-ranks:hover, 
.no-webp .page-apply-3 .cnt .info .operations .create-ranks:hover {background-position:-590px -2172px}
.webp .page-apply .cnt .info .operations .create-ranks:hover, 
.webp .page-apply-2 .cnt .info .operations .create-ranks:hover, 
.webp .page-apply-3 .cnt .info .operations .create-ranks:hover {background-position:-590px -2172px}
.page-apply .cnt .info .operations .create-ranks:hover,
.page-apply-2 .cnt .info .operations .create-ranks:hover,
.page-apply-3 .cnt .info .operations .create-ranks:hover {
width:344px;
height:90px;

}
.no-webp .page-apply .cnt .info .operations .join-ranks, 
.no-webp .page-apply-2 .cnt .info .operations .join-ranks, 
.no-webp .page-apply-3 .cnt .info .operations .join-ranks {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2578px -1941px}
.webp .page-apply .cnt .info .operations .join-ranks, 
.webp .page-apply-2 .cnt .info .operations .join-ranks, 
.webp .page-apply-3 .cnt .info .operations .join-ranks {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2578px -1941px}
.no-webp .page-apply .cnt .info .operations .join-ranks, 
.no-webp .page-apply-2 .cnt .info .operations .join-ranks, 
.no-webp .page-apply-3 .cnt .info .operations .join-ranks {background-size:3203px 2581px}
.webp .page-apply .cnt .info .operations .join-ranks, 
.webp .page-apply-2 .cnt .info .operations .join-ranks, 
.webp .page-apply-3 .cnt .info .operations .join-ranks {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info .operations .join-ranks, 
.no-webp .page-apply-2 .cnt .info .operations .join-ranks, 
.no-webp .page-apply-3 .cnt .info .operations .join-ranks {background-position:-2578px -1941px}
.webp .page-apply .cnt .info .operations .join-ranks, 
.webp .page-apply-2 .cnt .info .operations .join-ranks, 
.webp .page-apply-3 .cnt .info .operations .join-ranks {background-position:-2578px -1941px}
.page-apply .cnt .info .operations .join-ranks,
.page-apply-2 .cnt .info .operations .join-ranks,
.page-apply-3 .cnt .info .operations .join-ranks {
  cursor: pointer;
width:344px;
height:90px;

}
.no-webp .page-apply .cnt .info .operations .join-ranks:hover, 
.no-webp .page-apply-2 .cnt .info .operations .join-ranks:hover, 
.no-webp .page-apply-3 .cnt .info .operations .join-ranks:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-936px -2172px}
.webp .page-apply .cnt .info .operations .join-ranks:hover, 
.webp .page-apply-2 .cnt .info .operations .join-ranks:hover, 
.webp .page-apply-3 .cnt .info .operations .join-ranks:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-936px -2172px}
.no-webp .page-apply .cnt .info .operations .join-ranks:hover, 
.no-webp .page-apply-2 .cnt .info .operations .join-ranks:hover, 
.no-webp .page-apply-3 .cnt .info .operations .join-ranks:hover {background-size:3203px 2581px}
.webp .page-apply .cnt .info .operations .join-ranks:hover, 
.webp .page-apply-2 .cnt .info .operations .join-ranks:hover, 
.webp .page-apply-3 .cnt .info .operations .join-ranks:hover {background-size:3203px 2581px}
.no-webp .page-apply .cnt .info .operations .join-ranks:hover, 
.no-webp .page-apply-2 .cnt .info .operations .join-ranks:hover, 
.no-webp .page-apply-3 .cnt .info .operations .join-ranks:hover {background-position:-936px -2172px}
.webp .page-apply .cnt .info .operations .join-ranks:hover, 
.webp .page-apply-2 .cnt .info .operations .join-ranks:hover, 
.webp .page-apply-3 .cnt .info .operations .join-ranks:hover {background-position:-936px -2172px}
.page-apply .cnt .info .operations .join-ranks:hover,
.page-apply-2 .cnt .info .operations .join-ranks:hover,
.page-apply-3 .cnt .info .operations .join-ranks:hover {
width:344px;
height:90px;

}
.red {
  color: #fe0000;
}
.bottom {
  text-align: center;
  font-size: 24px;
  color: #fff;
  line-height: 44px;
  margin-top: 80px;
  letter-spacing: 4px;
}
.bottom b {
  font-size: 36px;
  font-weight: bold;
}
.no-webp .page-apply-2 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/bg-2_36fe7ab1.png) no-repeat center center;
  background-size: cover}
.webp .page-apply-2 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/bg-2_36fe7ab1.webp) no-repeat center center;
  background-size: cover}
.no-webp .page-apply-2 {background-size:cover}
.webp .page-apply-2 {background-size:cover}
.page-apply-2 {
  width: 100%;
  max-width: 1920px;
  height: 2135px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 450px;
}
.no-webp .page-apply-3 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/bg-3_77019744.png) no-repeat center center;
  background-size: cover}
.webp .page-apply-3 {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/bg-3_77019744.webp) no-repeat center center;
  background-size: cover}
.no-webp .page-apply-3 {background-size:cover}
.webp .page-apply-3 {background-size:cover}
.page-apply-3 {
  width: 100%;
  max-width: 1920px;
  height: 2400px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 450px;
}
.no-webp .mask {background:rgba(0, 0, 0, 0.5)}
.webp .mask {background:rgba(0, 0, 0, 0.5)}
.mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: auto;
  padding: 100px 0 0 0;
}
.high-mask {
  z-index: 999;
}
.no-webp .pop {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1116px -1120px}
.webp .pop {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1116px -1120px}
.no-webp .pop {background-size:3203px 2581px}
.webp .pop {background-size:3203px 2581px}
.no-webp .pop {background-position:-1116px -1120px}
.webp .pop {background-position:-1116px -1120px}
.pop {
width:599px;
height:433px;

  position: relative;
  margin: 0 auto;
  padding: 70px 0 0 0;
}
.no-webp .pop .close {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3132px -919px}
.webp .pop .close {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3132px -919px}
.no-webp .pop .close {background-size:3203px 2581px}
.webp .pop .close {background-size:3203px 2581px}
.no-webp .pop .close {background-position:-3132px -919px}
.webp .pop .close {background-position:-3132px -919px}
.pop .close {
width:23px;
height:23px;

  position: absolute;
  top: 10px;
  right: 8px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.pop .close:hover {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.pop .title {
  font-size: 24px;
  font-weight: bold;
  color: #1850cb;
  text-align: center;
  padding: 0 0 27px 0;
}
.pop .son-title {
  font-size: 22px;
  color: #1850cb;
  padding: 0 0 18px 0;
  font-weight: bold;
}
.pop .son-title .son-title-tip {
  font-size: 18px;
  font-weight: normal;
}
.pop .pop-content-wrap {
  height: calc(100% - 70px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pop .pop-content-wrap .delete-btn {
  cursor: pointer;
  text-decoration: underline;
  margin-left: 10px;
}
.pop .pop-content-wrap .ipt-cnt {
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: #333;
}
.pop .pop-content-wrap .ipt-cnt.noflex {
  display: block;
}
.pop .pop-content-wrap .ipt-cnt > span {
  margin: 0 18px;
}
.pop .pop-content-wrap .ipt-cnt > input {
  width: 500px;
  height: 46px;
  border-radius: 46px;
  border: none;
  text-indent: 24px;
  -webkit-box-shadow: inset 0 0 5px rgba(49, 77, 125, 0.21);
          box-shadow: inset 0 0 5px rgba(49, 77, 125, 0.21);
}
.pop .pop-content-wrap .ipt-cnt > input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.pop .pop-content-wrap .ipt-cnt > input::-moz-placeholder {
  color: #c1c1c1;
}
.pop .pop-content-wrap .ipt-cnt > input:-ms-input-placeholder {
  color: #c1c1c1;
}
.pop .pop-content-wrap .ipt-cnt > input::-ms-input-placeholder {
  color: #c1c1c1;
}
.pop .pop-content-wrap .ipt-cnt > input::placeholder {
  color: #c1c1c1;
}
.pop .pop-content-wrap .ipt-cnt .el-input__inner {
  width: 187px;
  height: 46px;
  border: none;
  color: #3c66d7;
  -webkit-box-shadow: inset 0 0 5px rgba(49, 77, 125, 0.21);
          box-shadow: inset 0 0 5px rgba(49, 77, 125, 0.21);
  border-radius: 46px;
  padding-left: 24px;
  font-size: 22px;
}
.pop .pop-content-wrap .ipt-cnt .el-input__suffix {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  right: 20px;
}
.no-webp .pop .pop-content-wrap .ipt-cnt .el-select .el-input .el-select__caret {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png) no-repeat;background-size:3203px 2581px;
background-position:-3132px -944px}
.webp .pop .pop-content-wrap .ipt-cnt .el-select .el-input .el-select__caret {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp) no-repeat;background-size:3203px 2581px;
background-position:-3132px -944px}
.no-webp .pop .pop-content-wrap .ipt-cnt .el-select .el-input .el-select__caret {background-size:3203px 2581px}
.webp .pop .pop-content-wrap .ipt-cnt .el-select .el-input .el-select__caret {background-size:3203px 2581px}
.no-webp .pop .pop-content-wrap .ipt-cnt .el-select .el-input .el-select__caret {background-position:-3132px -944px}
.webp .pop .pop-content-wrap .ipt-cnt .el-select .el-input .el-select__caret {background-position:-3132px -944px}
.pop .pop-content-wrap .ipt-cnt .el-select .el-input .el-select__caret {
width:19px;
height:17px;

}
.pop .pop-content-wrap .ipt-cnt .el-select .el-input .el-select__caret::before,
.pop .pop-content-wrap .ipt-cnt .el-select .el-input .el-select__caret::after {
  display: none;
}
.no-webp .pop .pop-content-wrap .ipt-cnt .upload-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png) no-repeat;background-size:3203px 2581px;
background-position:-2883px -1312px}
.webp .pop .pop-content-wrap .ipt-cnt .upload-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp) no-repeat;background-size:3203px 2581px;
background-position:-2883px -1312px}
.no-webp .pop .pop-content-wrap .ipt-cnt .upload-btn {background-size:3203px 2581px}
.webp .pop .pop-content-wrap .ipt-cnt .upload-btn {background-size:3203px 2581px}
.no-webp .pop .pop-content-wrap .ipt-cnt .upload-btn {background-position:-2883px -1312px}
.webp .pop .pop-content-wrap .ipt-cnt .upload-btn {background-position:-2883px -1312px}
.pop .pop-content-wrap .ipt-cnt .upload-btn {
width:176px;
height:46px;

}
.no-webp .pop .pop-content-wrap .ipt-cnt .upload-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png) no-repeat;background-size:3203px 2581px;
background-position:-2608px -2038px}
.webp .pop .pop-content-wrap .ipt-cnt .upload-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp) no-repeat;background-size:3203px 2581px;
background-position:-2608px -2038px}
.no-webp .pop .pop-content-wrap .ipt-cnt .upload-btn:hover {background-size:3203px 2581px}
.webp .pop .pop-content-wrap .ipt-cnt .upload-btn:hover {background-size:3203px 2581px}
.no-webp .pop .pop-content-wrap .ipt-cnt .upload-btn:hover {background-position:-2608px -2038px}
.webp .pop .pop-content-wrap .ipt-cnt .upload-btn:hover {background-position:-2608px -2038px}
.pop .pop-content-wrap .ipt-cnt .upload-btn:hover {
width:176px;
height:46px;

}
.pop .pop-content-wrap .ipt-cnt .upload-btn input {
  opacity: 0;
  width: 100%;
  height: 100%;
}
.pop .pop-content-wrap .ipt-cnt .upload-tips {
  font-size: 16px;
  margin-top: 4px;
}
.pop .pop-content-wrap .ipt-cnt .format-tips {
  margin-top: 4px;
  white-space: nowrap;
  font-size: 16px;
}
.pop .pop-content-wrap .work-item::-webkit-input-placeholder,
.pop .pop-content-wrap .work-textarea::-webkit-input-placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.pop .pop-content-wrap .work-item::-moz-placeholder,
.pop .pop-content-wrap .work-textarea::-moz-placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.pop .pop-content-wrap .work-item:-ms-input-placeholder,
.pop .pop-content-wrap .work-textarea:-ms-input-placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.pop .pop-content-wrap .work-item::-ms-input-placeholder,
.pop .pop-content-wrap .work-textarea::-ms-input-placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.pop .pop-content-wrap .work-item::placeholder,
.pop .pop-content-wrap .work-textarea::placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.no-webp .pop .pop-content-wrap .work-item {background:#daebfc}
.webp .pop .pop-content-wrap .work-item {background:#daebfc}
.pop .pop-content-wrap .work-item {
  padding: 0 0 0 15px;
  display: block;
  width: 680px;
  height: 51px;
  border: 1px solid #1850cb;
  border-radius: 10px;
  font-size: 20px;
  color: #1850cb;
}
.no-webp .pop .pop-content-wrap .work-textarea {background:#daebfc}
.webp .pop .pop-content-wrap .work-textarea {background:#daebfc}
.pop .pop-content-wrap .work-textarea {
  padding: 16px 0 0 15px;
  width: 680px;
  height: 145px;
  border: 1px solid #1850cb;
  border-radius: 10px;
  font-size: 20px;
  color: #1850cb;
}
.pop .pop-content-wrap .transfer-tip-wrap {
  padding: 0 0 50px 0;
}
.pop .pop-content-wrap .team-code-tip-wrap {
  padding: 0 0 50px 0;
  text-align: center;
}
.pop .pop-content-wrap .transfer-tip {
  padding: 0 14px;
  font-size: 20px;
  color: #1850cb;
}
.pop .pop-content-wrap .rank-code-wrap {
  padding: 38px 0 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pop .pop-content-wrap .rank-code {
  font-size: 26px;
  color: #1850cb;
  padding: 0 65px 0 0;
}
.no-webp .pop .pop-content-wrap .copy {background:#1850cb}
.webp .pop .pop-content-wrap .copy {background:#1850cb}
.pop .pop-content-wrap .copy {
  width: 99px;
  height: 39px;
  cursor: pointer;
  border-radius: 6px;
  color: #fff;
  font-size: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pop .pop-content-wrap .rank-name {
  width: 398px;
  height: 50px;
  border: 1px solid #1850cb;
  border-radius: 10px;
  padding: 0 0 0 10px;
  font-size: 20px;
  color: #1850cb;
}
.pop .pop-content-wrap .tip {
  padding: 13px 0 0 0;
  color: #e00;
  opacity: 0;
}
.pop .pop-content-wrap .tip.opacity {
  opacity: 1;
}
.pop .pop-operations {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.no-webp .pop .pop-operations .confirm {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2029px -2038px}
.webp .pop .pop-operations .confirm {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2029px -2038px}
.no-webp .pop .pop-operations .confirm {background-size:3203px 2581px}
.webp .pop .pop-operations .confirm {background-size:3203px 2581px}
.no-webp .pop .pop-operations .confirm {background-position:-2029px -2038px}
.webp .pop .pop-operations .confirm {background-position:-2029px -2038px}
.pop .pop-operations .confirm {
  cursor: pointer;
  font-size: 30px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(27, 135, 193, 0.35);
width:191px;
height:63px;

  display: -webkit-box;

  display: -webkit-flex;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 0 0 0;
}
.no-webp .pop .pop-operations .confirm:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2222px -2038px}
.webp .pop .pop-operations .confirm:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2222px -2038px}
.no-webp .pop .pop-operations .confirm:hover {background-size:3203px 2581px}
.webp .pop .pop-operations .confirm:hover {background-size:3203px 2581px}
.no-webp .pop .pop-operations .confirm:hover {background-position:-2222px -2038px}
.webp .pop .pop-operations .confirm:hover {background-position:-2222px -2038px}
.pop .pop-operations .confirm:hover {
width:191px;
height:63px;

}
.no-webp .pop.upload-pop {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1151px -0px}
.webp .pop.upload-pop {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1151px -0px}
.no-webp .pop.upload-pop {background-size:3203px 2581px}
.webp .pop.upload-pop {background-size:3203px 2581px}
.no-webp .pop.upload-pop {background-position:-1151px -0px}
.webp .pop.upload-pop {background-position:-1151px -0px}
.pop.upload-pop {
width:952px;
height:841px;

  -webkit-box-sizing: border-box;

          box-sizing: border-box;
  padding: 30px 0 0 70px;
}
.pop.upload-pop .title {
  padding: 0 0 19px 0;
}
.pop.upload-pop .apply-label {
  margin: 10px 0;
}
.pop.upload-pop .label-workName,
.pop.upload-pop .label-worksBrief,
.pop.upload-pop .label-mark {
  display: none;
}
.pop.upload-pop .err {
  display: none;
}
.pop.upload-pop .agreement {
  display: none;
}
.pop.upload-pop .leihuo-apply {
  width: 796px;
  margin-top: 0;
}
.pop.upload-pop .leihuo-apply .apply-item-workName,
.pop.upload-pop .leihuo-apply .apply-item-worksBrief {
  padding: 0 0 10px 0;
}
.pop.upload-pop .leihuo-apply > div {
  position: relative;
}
.pop.upload-pop .leihuo-apply .apply-item-workName.required:before,
.pop.upload-pop .leihuo-apply .apply-item-worksBrief.required:before,
.pop.upload-pop .leihuo-apply .apply-item-mark.required:before {
  content: '*';
  color: #f00;
  position: absolute;
  top: 18px;
  left: -18px;
}
.pop.upload-pop .leihuo-apply .apply-item-worksUrl.required:before,
.pop.upload-pop .leihuo-apply .apply-item-worksPackage.required:before,
.pop.upload-pop .leihuo-apply .apply-item-worksPrivate.required:before {
  content: '*';
  color: #f00;
  position: absolute;
  top: 8px;
  left: -18px;
}
.no-webp .pop.upload-pop .el-input input {background:#daebfc}
.webp .pop.upload-pop .el-input input {background:#daebfc}
.pop.upload-pop .el-input input {
  padding: 0 0 0 15px;
  display: block;
  width: 796px;
  height: 51px;
  border: 1px solid #1850cb;
  border-radius: 10px;
  font-size: 20px;
  color: #1850cb;
}
.pop.upload-pop .el-input input::-webkit-input-placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.pop.upload-pop .el-input input::-moz-placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.pop.upload-pop .el-input input:-ms-input-placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.pop.upload-pop .el-input input::-ms-input-placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.pop.upload-pop .el-input input::placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.no-webp .pop.upload-pop .el-textarea .el-textarea__inner {background:#daebfc}
.webp .pop.upload-pop .el-textarea .el-textarea__inner {background:#daebfc}
.pop.upload-pop .el-textarea .el-textarea__inner {
  padding: 16px 0 0 15px;
  width: 796px;
  height: 115px;
  border: 1px solid #1850cb;
  border-radius: 10px;
  font-size: 20px;
  color: #1850cb;
}
.pop.upload-pop .el-textarea .el-textarea__inner::-webkit-input-placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.pop.upload-pop .el-textarea .el-textarea__inner::-moz-placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.pop.upload-pop .el-textarea .el-textarea__inner:-ms-input-placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.pop.upload-pop .el-textarea .el-textarea__inner::-ms-input-placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.pop.upload-pop .el-textarea .el-textarea__inner::placeholder {
  color: #1850cb;
  opacity: 0.36;
}
.no-webp .pop.upload-pop .upload-video-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1980px -1053px}
.webp .pop.upload-pop .upload-video-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1980px -1053px}
.no-webp .pop.upload-pop .upload-video-btn {background-size:3203px 2581px}
.webp .pop.upload-pop .upload-video-btn {background-size:3203px 2581px}
.no-webp .pop.upload-pop .upload-video-btn {background-position:-1980px -1053px}
.webp .pop.upload-pop .upload-video-btn {background-position:-1980px -1053px}
.pop.upload-pop .upload-video-btn {
width:91px;
height:27px;

}
.no-webp .pop.upload-pop .upload-video-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1892px -1637px}
.webp .pop.upload-pop .upload-video-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1892px -1637px}
.no-webp .pop.upload-pop .upload-video-btn:hover {background-size:3203px 2581px}
.webp .pop.upload-pop .upload-video-btn:hover {background-size:3203px 2581px}
.no-webp .pop.upload-pop .upload-video-btn:hover {background-position:-1892px -1637px}
.webp .pop.upload-pop .upload-video-btn:hover {background-position:-1892px -1637px}
.pop.upload-pop .upload-video-btn:hover {
width:91px;
height:27px;

}
.pop.upload-pop .upload-video-btn .uploading {
  display: none;
}
.no-webp .pop.upload-pop .upload-video-btn .upload-video-bg {background:transparent}
.webp .pop.upload-pop .upload-video-btn .upload-video-bg {background:transparent}
.pop.upload-pop .upload-video-btn .upload-video-bg {
}
.pop.upload-pop .upload-video-btn .video-txt {
  display: none;
}
.pop.upload-pop .upload-video-btn .video-txt + input {
  width: 91px;
  height: 27px;
}
.pop.upload-pop .video-file-name {
  text-decoration: none;
}
.pop.upload-pop .apply-label {
  font-size: 22px;
  color: #1850cb;
  font-weight: bold;
}
.pop.upload-pop .apply-label .sub-label {
  font-size: 18px;
  font-weight: normal;
  color: inherit;
}
.pop.upload-pop .apply-img-list .upload-item {
  width: 151px;
  height: 79px;
  margin-bottom: 0;
  margin-right: 10px;
}
.no-webp .pop.upload-pop .apply-img-list .upload-btn {background:#dbeafc}
.webp .pop.upload-pop .apply-img-list .upload-btn {background:#dbeafc}
.pop.upload-pop .apply-img-list .upload-btn {
  width: 151px;
  height: 79px;
  border-radius: 8px;
  border: 1px solid #1850cb;
  margin: 0;
}
.pop.upload-pop .apply-img-list .upload-btn .leihuo-vote-iconfont {
  color: #fff;
}
.pop.upload-pop .apply-img-list .upload-btn p {
  display: none;
}
.pop.upload-pop .submit-cancel {
  display: none;
}
.no-webp .pop.upload-pop .submit {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2029px -2038px}
.webp .pop.upload-pop .submit {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2029px -2038px}
.no-webp .pop.upload-pop .submit {background-size:3203px 2581px}
.webp .pop.upload-pop .submit {background-size:3203px 2581px}
.no-webp .pop.upload-pop .submit {background-position:-2029px -2038px}
.webp .pop.upload-pop .submit {background-position:-2029px -2038px}
.pop.upload-pop .submit {
  cursor: pointer;
  font-size: 30px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(27, 135, 193, 0.35);
width:191px;
height:63px;

  display: -webkit-box;

  display: -webkit-flex;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 0 0 0;
}
.no-webp .pop.upload-pop .submit:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-2222px -2038px}
.webp .pop.upload-pop .submit:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-2222px -2038px}
.no-webp .pop.upload-pop .submit:hover {background-size:3203px 2581px}
.webp .pop.upload-pop .submit:hover {background-size:3203px 2581px}
.no-webp .pop.upload-pop .submit:hover {background-position:-2222px -2038px}
.webp .pop.upload-pop .submit:hover {background-position:-2222px -2038px}
.pop.upload-pop .submit:hover {
width:191px;
height:63px;

}
.pop.upload-pop .son-title {
  padding: 0 0 10px 0;
}
.pop.upload-pop .work-item {
  width: 796px;
}
.pop.upload-pop .work-textarea {
  width: 796px;
  height: 115px;
}
.pop.upload-pop .tips {
  height: 32px;
}
.no-webp .pop.upload-pop .ipt-cnt .upload-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1980px -1053px}
.webp .pop.upload-pop .ipt-cnt .upload-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1980px -1053px}
.no-webp .pop.upload-pop .ipt-cnt .upload-btn {background-size:3203px 2581px}
.webp .pop.upload-pop .ipt-cnt .upload-btn {background-size:3203px 2581px}
.no-webp .pop.upload-pop .ipt-cnt .upload-btn {background-position:-1980px -1053px}
.webp .pop.upload-pop .ipt-cnt .upload-btn {background-position:-1980px -1053px}
.pop.upload-pop .ipt-cnt .upload-btn {
width:91px;
height:27px;

}
.no-webp .pop.upload-pop .ipt-cnt .upload-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1892px -1637px}
.webp .pop.upload-pop .ipt-cnt .upload-btn:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1892px -1637px}
.no-webp .pop.upload-pop .ipt-cnt .upload-btn:hover {background-size:3203px 2581px}
.webp .pop.upload-pop .ipt-cnt .upload-btn:hover {background-size:3203px 2581px}
.no-webp .pop.upload-pop .ipt-cnt .upload-btn:hover {background-position:-1892px -1637px}
.webp .pop.upload-pop .ipt-cnt .upload-btn:hover {background-position:-1892px -1637px}
.pop.upload-pop .ipt-cnt .upload-btn:hover {
width:91px;
height:27px;

}
.pop.upload-pop .ipt-cnt .delete-btn {
  font-family: "leihuovoteiconfont" !important;
  font-size: 26px;
  text-decoration: none;
  width: 26px;
  height: 32px;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  margin-top: -7px;
}
.pop.upload-pop .ipt-cnt .delete-btn:before {
  content: "\E63C";
}
.pop.upload-pop .ipt-cnt .delete-btn:hover {
  color: #cda673;
}
.pop.upload-pop .close {
  top: 5px;
}
.pop.upload-pop .form-item {
  position: relative;
  padding: 0 0 12px 0;
}
.pop.upload-pop .form-item .red {
  color: #f00;
  position: absolute;
  left: -14px;
  top: 0;
}
.pop.upload-pop .photo-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.no-webp .pop.upload-pop .photo-list .photo-item {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1892px -1555px}
.webp .pop.upload-pop .photo-list .photo-item {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1892px -1555px}
.no-webp .pop.upload-pop .photo-list .photo-item {background-size:3203px 2581px}
.webp .pop.upload-pop .photo-list .photo-item {background-size:3203px 2581px}
.no-webp .pop.upload-pop .photo-list .photo-item {background-position:-1892px -1555px}
.webp .pop.upload-pop .photo-list .photo-item {background-position:-1892px -1555px}
.pop.upload-pop .photo-list .photo-item {
  position: relative;
width:152px;
height:80px;

  margin: 0 11px 0 0;
}
.pop.upload-pop .photo-list .photo-item:nth-child(5) {
  margin: 0;
}
.pop.upload-pop .photo-list .photo-item input {
  opacity: 0;
  width: 100%;
  height: 100%;
}
.pop.upload-pop .photo-list .photo-item img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 9px;
}
.no-webp .pop.upload-pop .photo-list .photo-item .photo-close {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3157px -919px}
.webp .pop.upload-pop .photo-list .photo-item .photo-close {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3157px -919px}
.no-webp .pop.upload-pop .photo-list .photo-item .photo-close {background-size:3203px 2581px}
.webp .pop.upload-pop .photo-list .photo-item .photo-close {background-size:3203px 2581px}
.no-webp .pop.upload-pop .photo-list .photo-item .photo-close {background-position:-3157px -919px}
.webp .pop.upload-pop .photo-list .photo-item .photo-close {background-position:-3157px -919px}
.pop.upload-pop .photo-list .photo-item .photo-close {
  position: absolute;
  top: 6px;
  right: 16px;
width:20px;
height:20px;

  cursor: pointer;
}
.no-webp .pop.work-detail-pop {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-0px -0px}
.webp .pop.work-detail-pop {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-0px -0px}
.no-webp .pop.work-detail-pop {background-size:3203px 2581px}
.webp .pop.work-detail-pop {background-size:3203px 2581px}
.no-webp .pop.work-detail-pop {background-position:-0px -0px}
.webp .pop.work-detail-pop {background-position:-0px -0px}
.pop.work-detail-pop {
  -webkit-transform: translate(-56px, 0);
          transform: translate(-56px, 0);
width:1149px;
height:1118px;

  -webkit-box-sizing: border-box;

          box-sizing: border-box;
  padding: 30px 0 0 70px;
}
.pop.work-detail-pop .pop-content-wrap {
  margin: 72px 0 0 44px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.pop.work-detail-pop .pop-content-wrap .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.pop.work-detail-pop .pop-content-wrap .top .vote-index {
  margin: -16px 0 0 0;
  font-family: 'NotoSansSC';
  font-weight: 700;
  width: 200px;
  font-size: 116px;
  color: #1850cb;
  padding: 0 29px 0 0;
  text-align: center;
}
.pop.work-detail-pop .pop-content-wrap .top .preview .video {
  width: 587px;
  height: 330px;
  border: 1px solid #255ace;
}
.pop.work-detail-pop .pop-content-wrap .top .preview .img {
  width: 587px;
  height: 330px;
  border: 1px solid #255ace;
}
.pop.work-detail-pop .pop-content-wrap .top .operations {
  font-size: 18px;
  color: #fff;
  padding: 0 0 0 30px;
}
.no-webp .pop.work-detail-pop .pop-content-wrap .top .operations .operation-item {background:#1850cb}
.webp .pop.work-detail-pop .pop-content-wrap .top .operations .operation-item {background:#1850cb}
.pop.work-detail-pop .pop-content-wrap .top .operations .operation-item {
  width: 160px;
  height: 40px;
  border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 20px 0;
  cursor: pointer;
}
.pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .icon {
  margin: 0 8px 0 0;
}
.no-webp .pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .forward {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3181px -865px}
.webp .pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .forward {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3181px -865px}
.no-webp .pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .forward {background-size:3203px 2581px}
.webp .pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .forward {background-size:3203px 2581px}
.no-webp .pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .forward {background-position:-3181px -865px}
.webp .pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .forward {background-position:-3181px -865px}
.pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .forward {
width:20px;
height:19px;

}
.no-webp .pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .download {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3178px -779px}
.webp .pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .download {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3178px -779px}
.no-webp .pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .download {background-size:3203px 2581px}
.webp .pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .download {background-size:3203px 2581px}
.no-webp .pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .download {background-position:-3178px -779px}
.webp .pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .download {background-position:-3178px -779px}
.pop.work-detail-pop .pop-content-wrap .top .operations .operation-item .download {
width:24px;
height:18px;

}
.pop.work-detail-pop .pop-content-wrap .work-list-wrap {
  position: relative;
  width: 669px;
  margin: 34px auto 0 auto;
}
.pop.work-detail-pop .pop-content-wrap .work-list-wrap .work-list {
  width: 669px;
  height: 86px;
  margin: 0 auto;
  overflow: hidden;
}
.pop.work-detail-pop .pop-content-wrap .work-list-wrap .work-list .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  width: 669px;
  margin: 0 auto;
}
.pop.work-detail-pop .pop-content-wrap .work-list-wrap .work-list .swiper-wrapper.center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pop.work-detail-pop .pop-content-wrap .work-list-wrap .work-list .swiper-wrapper .swiper-slide {
  height: 86px;
}
.pop.work-detail-pop .pop-content-wrap .work-list-wrap .work-list .swiper-wrapper .swiper-slide .detail-wrap-parent {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.pop.work-detail-pop .pop-content-wrap .work-list-wrap .work-list .swiper-wrapper .swiper-slide .detail-wrap-parent .detail-wrap {
  position: relative;
}
.pop.work-detail-pop .pop-content-wrap .work-list-wrap .work-list .swiper-wrapper .swiper-slide .detail-wrap-parent .detail-wrap .video,
.pop.work-detail-pop .pop-content-wrap .work-list-wrap .work-list .swiper-wrapper .swiper-slide .detail-wrap-parent .detail-wrap .img {
  width: 154px;
  height: 86px;
  margin: 0 16px 0 0;
  cursor: pointer;
  border: 1px solid #2b5cc8;
  position: relative;
}
.pop.work-detail-pop .pop-content-wrap .work-list-wrap .work-list .swiper-wrapper .swiper-slide .detail-wrap-parent .detail-wrap:last-child {
  margin: 0;
}
.no-webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .work-list .swiper-wrapper .swiper-slide .detail-wrap-parent .detail-wrap .video-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/video-play_1ddf4258.png) no-repeat center;
  background-size: 40px auto}
.webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .work-list .swiper-wrapper .swiper-slide .detail-wrap-parent .detail-wrap .video-btn {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/video-play_1ddf4258.webp) no-repeat center;
  background-size: 40px auto}
.no-webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .work-list .swiper-wrapper .swiper-slide .detail-wrap-parent .detail-wrap .video-btn {background-size:40px auto}
.webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .work-list .swiper-wrapper .swiper-slide .detail-wrap-parent .detail-wrap .video-btn {background-size:40px auto}
.pop.work-detail-pop .pop-content-wrap .work-list-wrap .work-list .swiper-wrapper .swiper-slide .detail-wrap-parent .detail-wrap .video-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(calc(-50% - 8px), -50%);
          transform: translate(calc(-50% - 8px), -50%);
  cursor: pointer;
}
.pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-prev,
.pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-next {
  cursor: pointer;
}
.no-webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-prev {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3132px -886px}
.webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-prev {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3132px -886px}
.no-webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-prev {background-size:3203px 2581px}
.webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-prev {background-size:3203px 2581px}
.no-webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-prev {background-position:-3132px -886px}
.webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-prev {background-position:-3132px -886px}
.pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  left: -60px;
width:29px;
height:31px;

}
.no-webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-next {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3132px -886px}
.webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-next {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3132px -886px}
.no-webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-next {background-size:3203px 2581px}
.webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-next {background-size:3203px 2581px}
.no-webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-next {background-position:-3132px -886px}
.webp .pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-next {background-position:-3132px -886px}
.pop.work-detail-pop .pop-content-wrap .work-list-wrap .swiper-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
  right: -60px;
width:29px;
height:31px;

}
.pop.work-detail-pop .pop-content-wrap .work-name,
.pop.work-detail-pop .pop-content-wrap .work-mark {
  color: #1850cb;
}
.pop.work-detail-pop .pop-content-wrap .work-name {
  text-align: center;
  font-size: 38px;
  font-weight: bold;
  padding: 56px 0 38px 0;
}
.pop.work-detail-pop .pop-content-wrap .work-mark {
  width: 846px;
  height: 80px;
  margin: 0 auto;
  font-size: 18px;
}
.pop.work-detail-pop .pop-content-wrap .bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pop.work-detail-pop .pop-content-wrap .bottom .vote-num {
  font-size: 35px;
  color: #f39314;
  letter-spacing: 0;
}
.pop.work-detail-pop .close {
  top: 14px;
  right: 14px;
}
.no-webp .pop.work-detail-pop .vote-prev {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1694px -2264px}
.webp .pop.work-detail-pop .vote-prev {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1694px -2264px}
.no-webp .pop.work-detail-pop .vote-prev {background-size:3203px 2581px}
.webp .pop.work-detail-pop .vote-prev {background-size:3203px 2581px}
.no-webp .pop.work-detail-pop .vote-prev {background-position:-1694px -2264px}
.webp .pop.work-detail-pop .vote-prev {background-position:-1694px -2264px}
.pop.work-detail-pop .vote-prev {
  cursor: pointer;
  position: absolute;
  left: -10px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
width:90px;
height:82px;

}
.no-webp .pop.work-detail-pop .vote-prev:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1970px -2264px}
.webp .pop.work-detail-pop .vote-prev:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1970px -2264px}
.no-webp .pop.work-detail-pop .vote-prev:hover {background-size:3203px 2581px}
.webp .pop.work-detail-pop .vote-prev:hover {background-size:3203px 2581px}
.no-webp .pop.work-detail-pop .vote-prev:hover {background-position:-1970px -2264px}
.webp .pop.work-detail-pop .vote-prev:hover {background-position:-1970px -2264px}
.pop.work-detail-pop .vote-prev:hover {
width:90px;
height:82px;

}
.no-webp .pop.work-detail-pop .vote-next {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1786px -2264px}
.webp .pop.work-detail-pop .vote-next {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1786px -2264px}
.no-webp .pop.work-detail-pop .vote-next {background-size:3203px 2581px}
.webp .pop.work-detail-pop .vote-next {background-size:3203px 2581px}
.no-webp .pop.work-detail-pop .vote-next {background-position:-1786px -2264px}
.webp .pop.work-detail-pop .vote-next {background-position:-1786px -2264px}
.pop.work-detail-pop .vote-next {
  cursor: pointer;
  position: absolute;
  right: -110px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
width:90px;
height:82px;

}
.no-webp .pop.work-detail-pop .vote-next:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1878px -2264px}
.webp .pop.work-detail-pop .vote-next:hover {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1878px -2264px}
.no-webp .pop.work-detail-pop .vote-next:hover {background-size:3203px 2581px}
.webp .pop.work-detail-pop .vote-next:hover {background-size:3203px 2581px}
.no-webp .pop.work-detail-pop .vote-next:hover {background-position:-1878px -2264px}
.webp .pop.work-detail-pop .vote-next:hover {background-position:-1878px -2264px}
.pop.work-detail-pop .vote-next:hover {
width:90px;
height:82px;

}
.post-pop {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.post-pop .poster {
  width: 697px;
  height: 911px;
  padding: 364px 0 0 0;
}
.post-pop .poster .poster-bg {
  width: 697px;
  height: 911px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.no-webp .post-pop .poster .img-wrap {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-1151px -843px}
.webp .post-pop .poster .img-wrap {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-1151px -843px}
.no-webp .post-pop .poster .img-wrap {background-size:3203px 2581px}
.webp .post-pop .poster .img-wrap {background-size:3203px 2581px}
.no-webp .post-pop .poster .img-wrap {background-position:-1151px -843px}
.webp .post-pop .poster .img-wrap {background-position:-1151px -843px}
.post-pop .poster .img-wrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
width:368px;
height:208px;

  margin: 0 auto 14px auto;
}
.post-pop .poster .img-wrap .img {
  width: 365px;
  height: 204px;
  display: block;
  margin: 0 auto;
  border-radius: 17px;
}
.post-pop .poster .work-name {
  font-weight: bold;
  position: relative;
  font-size: 26px;
  color: #1850cb;
  text-align: center;
  padding: 0 0 14px 0;
}
.post-pop .poster .work-mark {
  position: relative;
  height: 52px;
  font-size: 20px;
  color: #1850cb;
  text-align: center;
}
.post-pop .poster-bottom {
  position: relative;
  width: 548px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #1850cb;
  margin: 0 0 0 86px;
}
.post-pop .poster-bottom .left {
  width: calc(100% - 142px);
  text-align: left;
}
.post-pop .poster-bottom .left .vote-work {
  font-size: 26px;
  padding: 0 0 10px 0;
}
.post-pop .poster-bottom .left .vote-work .vote-work-num {
  font-size: 48px;
  font-weight: bold;
  padding: 0 6px;
  position: relative;
}
.no-webp .post-pop .poster-bottom .left .vote-work .vote-work-num:after {background:#1850cb}
.webp .post-pop .poster-bottom .left .vote-work .vote-work-num:after {background:#1850cb}
.post-pop .poster-bottom .left .vote-work .vote-work-num:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.post-pop .poster-bottom .left .vote-link {
  font-size: 16px;
  letter-spacing: 1px;
  word-break: break-all;
}
.no-webp .post-pop .poster-bottom .right {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-590px -2362px}
.webp .post-pop .poster-bottom .right {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-590px -2362px}
.no-webp .post-pop .poster-bottom .right {background-size:3203px 2581px}
.webp .post-pop .poster-bottom .right {background-size:3203px 2581px}
.no-webp .post-pop .poster-bottom .right {background-position:-590px -2362px}
.webp .post-pop .poster-bottom .right {background-position:-590px -2362px}
.post-pop .poster-bottom .right {
width:128px;
height:130px;

  padding: 15px 0 0 15px;
}
.no-webp .post-pop .download {background:#184fc7}
.webp .post-pop .download {background:#184fc7}
.post-pop .download {
  cursor: pointer;
  position: absolute;
  bottom: 96px;
  left: 85px;
  color: #fff;
  width: 136px;
  height: 36px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
}
.no-webp .post-pop .download .poster-download {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3132px -963px}
.webp .post-pop .download .poster-download {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3132px -963px}
.no-webp .post-pop .download .poster-download {background-size:3203px 2581px}
.webp .post-pop .download .poster-download {background-size:3203px 2581px}
.no-webp .post-pop .download .poster-download {background-position:-3132px -963px}
.webp .post-pop .download .poster-download {background-position:-3132px -963px}
.post-pop .download .poster-download {
width:16px;
height:19px;

  margin: 0 8px 0 0;
}
.no-webp .post-pop .close {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.png);background-size:3203px 2581px;
background-position:-3132px -754px}
.webp .post-pop .close {background:url(https://leihuo.res.netease.com/pc/zt/20220824161056/img/sprite-559de1_559de142.webp);background-size:3203px 2581px;
background-position:-3132px -754px}
.no-webp .post-pop .close {background-size:3203px 2581px}
.webp .post-pop .close {background-size:3203px 2581px}
.no-webp .post-pop .close {background-position:-3132px -754px}
.webp .post-pop .close {background-position:-3132px -754px}
.post-pop .close {
  cursor: pointer;
  position: absolute;
  top: -22px;
  right: -22px;
width:44px;
height:44px;

  -webkit-transition: all 0.2s;

  transition: all 0.2s;
}
.post-pop .close:hover {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

