/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        transform: translateZ(0)
    }
    40%,
    43% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    animation-name: bounce;
    transform-origin: center bottom
}

@keyframes flash {
    0%,
    50%,
    to {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

.flash {
    animation-name: flash
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        transform: scaleX(1)
    }
}

.pulse {
    animation-name: pulse
}

@keyframes rubberBand {
    0% {
        transform: scaleX(1)
    }
    30% {
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        transform: scale3d(1.05, .95, 1)
    }
    to {
        transform: scaleX(1)
    }
}

.rubberBand {
    animation-name: rubberBand
}

@keyframes shake {
    0%,
    to {
        transform: translateZ(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    animation-name: shake
}

@keyframes headShake {
    0% {
        transform: translateX(0)
    }
    6.5% {
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        transform: translateX(0)
    }
}

.headShake {
    animation-timing-function: ease-in-out;
    animation-name: headShake
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }
    40% {
        transform: rotate(-10deg)
    }
    60% {
        transform: rotate(5deg)
    }
    80% {
        transform: rotate(-5deg)
    }
    to {
        transform: rotate(0deg)
    }
}

.swing {
    transform-origin: top center;
    animation-name: swing
}

@keyframes tada {
    0% {
        transform: scaleX(1)
    }
    10%,
    20% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }
    to {
        transform: scaleX(1)
    }
}

.tada {
    animation-name: tada
}

@keyframes wobble {
    0% {
        transform: translateZ(0)
    }
    15% {
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }
    30% {
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }
    45% {
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }
    60% {
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }
    75% {
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }
    to {
        transform: translateZ(0)
    }
}

.wobble {
    animation-name: wobble
}

@keyframes jello {
    0%,
    11.1%,
    to {
        transform: translateZ(0)
    }
    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello {
    animation-name: jello;
    transform-origin: center
}

@keyframes heartBeat {
    0% {
        transform: scale(1)
    }
    14% {
        transform: scale(1.3)
    }
    28% {
        transform: scale(1)
    }
    42% {
        transform: scale(1.3)
    }
    70% {
        transform: scale(1)
    }
}

.heartBeat {
    animation-name: heartBeat;
    animation-duration: 1.3s;
    animation-timing-function: ease-in-out
}

@keyframes bounceIn {
    0%,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        transform: scaleX(1)
    }
}

.bounceIn {
    animation-duration: .75s;
    animation-name: bounceIn
}

@keyframes bounceInDown {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0)
    }
    75% {
        transform: translate3d(0, -10px, 0)
    }
    90% {
        transform: translate3d(0, 5px, 0)
    }
    to {
        transform: translateZ(0)
    }
}

.bounceInDown {
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0)
    }
    75% {
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        transform: translate3d(5px, 0, 0)
    }
    to {
        transform: translateZ(0)
    }
}

.bounceInLeft {
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        transform: translate3d(10px, 0, 0)
    }
    90% {
        transform: translate3d(-5px, 0, 0)
    }
    to {
        transform: translateZ(0)
    }
}

.bounceInRight {
    animation-name: bounceInRight
}

@keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    75% {
        transform: translate3d(0, 10px, 0)
    }
    90% {
        transform: translate3d(0, -5px, 0)
    }
    to {
        transform: translateZ(0)
    }
}

.bounceInUp {
    animation-name: bounceInUp
}

@keyframes bounceOut {
    20% {
        transform: scale3d(.9, .9, .9)
    }
    50%,
    55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    animation-duration: .75s;
    animation-name: bounceOut
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.bounceOutRight {
    animation-name: bounceOutRight
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    animation-name: bounceOutUp
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    animation-name: fadeIn
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInDown {
    animation-name: fadeInDown
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInLeft {
    animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInRight {
    animation-name: fadeInRight
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInUp {
    animation-name: fadeInUp
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0)
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0)
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0)
    }
}

.fadeOutRight {
    animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0)
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0)
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig
}

@keyframes flip {
    0% {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        animation-timing-function: ease-out
    }
    40% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        animation-timing-function: ease-out
    }
    50% {
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        animation-timing-function: ease-in
    }
    80% {
        transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in
    }
    to {
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    animation-name: flip
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotateX(-20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotateX(-5deg)
    }
    to {
        transform: perspective(400px)
    }
}

.flipInX {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipInX
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotateY(-20deg);
        animation-timing-function: ease-in
    }
    60% {
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }
    80% {
        transform: perspective(400px) rotateY(-5deg)
    }
    to {
        transform: perspective(400px)
    }
}

.flipInY {
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipInY
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    animation-duration: .75s;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px)
    }
    30% {
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }
    to {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    animation-duration: .75s;
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    animation-name: flipOutY
}

@keyframes lightSpeedIn {
    0% {
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        transform: skewX(-5deg)
    }
    to {
        transform: translateZ(0)
    }
}

.lightSpeedIn {
    animation-name: lightSpeedIn;
    animation-timing-function: ease-out
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }
    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    animation-name: lightSpeedOut;
    animation-timing-function: ease-in
}

@keyframes rotateIn {
    0% {
        transform-origin: center;
        transform: rotate(-200deg);
        opacity: 0
    }
    to {
        transform-origin: center;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateIn {
    animation-name: rotateIn
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
    to {
        transform-origin: left bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(45deg);
        opacity: 0
    }
    to {
        transform-origin: right bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
    to {
        transform-origin: left bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }
    to {
        transform-origin: right bottom;
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight
}

@keyframes rotateOut {
    0% {
        transform-origin: center;
        opacity: 1
    }
    to {
        transform-origin: center;
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    animation-name: rotateOut
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        transform-origin: left bottom;
        transform: rotate(45deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        transform-origin: right bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        transform-origin: left bottom;
        transform: rotate(-45deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    20%,
    60% {
        transform: rotate(80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    40%,
    80% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    animation-duration: 2s;
    animation-name: hinge
}

@keyframes jackInTheBox {
    0% {
        opacity: 0;
        transform: scale(.1) rotate(30deg);
        transform-origin: center bottom
    }
    50% {
        transform: rotate(-10deg)
    }
    70% {
        transform: rotate(3deg)
    }
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.jackInTheBox {
    animation-name: jackInTheBox
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate(-120deg)
    }
    to {
        opacity: 1;
        transform: translateZ(0)
    }
}

.rollIn {
    animation-name: rollIn
}

@keyframes rollOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate(120deg)
    }
}

.rollOut {
    animation-name: rollOut
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

.zoomIn {
    animation-name: zoomIn
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInDown {
    animation-name: zoomInDown
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInLeft {
    animation-name: zoomInLeft
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInRight {
    animation-name: zoomInRight
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInUp {
    animation-name: zoomInUp
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

.zoomOut {
    animation-name: zoomOut
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutDown {
    animation-name: zoomOutDown
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

.zoomOutRight {
    animation-name: zoomOutRight
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutUp {
    animation-name: zoomOutUp
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInDown {
    animation-name: slideInDown
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInLeft {
    animation-name: slideInLeft
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInRight {
    animation-name: slideInRight
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    to {
        transform: translateZ(0)
    }
}

.slideInUp {
    animation-name: slideInUp
}

@keyframes slideOutDown {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0)
    }
}

.slideOutDown {
    animation-name: slideOutDown
}

@keyframes slideOutLeft {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0)
    }
}

.slideOutLeft {
    animation-name: slideOutLeft
}

@keyframes slideOutRight {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0)
    }
}

.slideOutRight {
    animation-name: slideOutRight
}

@keyframes slideOutUp {
    0% {
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0)
    }
}

.slideOutUp {
    animation-name: slideOutUp
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.delay-1s {
    animation-delay: 1s
}

.animated.delay-2s {
    animation-delay: 2s
}

.animated.delay-3s {
    animation-delay: 3s
}

.animated.delay-4s {
    animation-delay: 4s
}

.animated.delay-5s {
    animation-delay: 5s
}

.animated.fast {
    animation-duration: .8s
}

.animated.faster {
    animation-duration: .5s
}

.animated.slow {
    animation-duration: 2s
}

.animated.slower {
    animation-duration: 3s
}

@media (prefers-reduced-motion:reduce),
(print) {
    .animated {
        animation-duration: 1ms!important;
        transition-duration: 1ms!important;
        animation-iteration-count: 1!important
    }
}

.aunon {
    font-family: aunon!important;
    font-size: 1rem;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.aunonlocation:before {
    content: "\E6EF"
}

.aunonphone:before {
    content: "\E6EE"
}

.aunonjian:before {
    content: "\E6EC"
}

.aunonjia:before {
    content: "\E6EB"
}

.aunoncheckbox2:before {
    content: "\E6E6"
}

.aunonyh:before {
    content: "\E6E7"
}

.aunongou:before {
    content: "\E6E8"
}

.aunonemail:before {
    content: "\E6E1"
}

.aunona:before {
    content: "\E6E2"
}

.aunonmessage:before {
    content: "\E6E3"
}

.aunonmessage2:before {
    content: "\E6E4"
}

.aunonphone2:before {
    content: "\E6E5"
}

.aunonmore:before {
    content: "\E6DC"
}

.aunonvideo:before {
    content: "\E6DD"
}

.aunonseach:before {
    content: "\E6DE"
}

.aunonP:before {
    content: "\E6DF"
}

.aunonuser:before {
    content: "\E6E0"
}

.aunoncheckbox:before {
    content: "\E6D7"
}

.aunonclose:before {
    content: "\E6D8"
}

.aunondownload:before {
    content: "\E6D9"
}

.aunonin:before {
    content: "\E6DA"
}

.aunonf:before {
    content: "\E6DB"
}

.aunonarrow-right:before {
    content: "\E6D2"
}

.aunonbirder:before {
    content: "\E6D3"
}

.aunonarrow:before {
    content: "\E6D5"
}

.aunoncamara:before {
    content: "\E6D6"
}

.aunonarrow-left:before {
    content: "\E6ED"
}

.aunonadress:before {
    content: "\E6CD"
}

.aunonarrow_left2:before {
    content: "\E6CF"
}

.aunonarrow_left:before {
    content: "\E6D0"
}

.aunonarrow_left-copy:before {
    content: "\E6EA"
}

.aunonarrow_up:before {
    content: "\E6D1"
}

.aunonarrow_up-copy:before {
    content: "\E6E9"
}

.hv-opacity {
    cursor: pointer;
    transition: opacity .3s
}

.hv-opacity:hover {
    opacity: .7
}

.hv-scale {
    cursor: pointer;
    overflow: hidden
}

.hv-scale img {
    transition: all .4s
}

.hv-scale:hover img {
    transform: scale(1.05)
}

body,
button,
h1,
h2,
h3,
h4,
h5,
h6,
html,
input,
li,
p,
section,
textarea,
ul {
    margin: 0;
    padding: 0
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
    -webkit-appearance: none
}

input {
    -webkit-appearance: none
}

input[type=number] {
    -moz-appearance: textfield
}

* {
    outline: 0
}

.wow {
    visibility: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400
}

body,
html {
    overflow-x: hidden;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

::-moz-selection {
    background: #66b821;
    color: #fff
}

::selection {
    background: #66b821;
    color: #fff
}

body,
button,
input,
textarea {
    font-family: Roboto, -apple-system, PingFang SC, Hiragino Sans GB, Microsoft YaHei UI, Microsoft YaHei, Source Han Sans CN, sans-serif;
    border: none;
    outline: none
}

body {
    line-height: 1;
    height: auto;
    overflow: hidden
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

.clearfix {
    height: 1%
}

.t-center {
    text-align: center!important
}

.t-right {
    text-align: right!important
}

.t-left {
    text-align: left!important
}

a,
body,
html {
    -webkit-tap-highlight-color: transparent
}

a {
    text-decoration: none;
    outline: none;
    -webkit-appearance: none
}

a,
img {
    -webkit-touch-callout: none
}

img {
    vertical-align: middle
}

.text-nowrap {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-wrap: normal!important;
    word-wrap: normal\0!important
}

.text-wrap-2 {
    -webkit-line-clamp: 2;
    line-clamp: 2
    /*!autoprefixer:off*/
}

.text-wrap-2,
.text-wrap-3 {
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical
}

.text-wrap-3 {
    -webkit-line-clamp: 3;
    line-clamp: 3
    /*!autoprefixer:off*/
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

.flex-center {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.fit-img {
    -o-object-fit: cover;
    object-fit: cover
}

.contain-img,
.fit-img {
    width: 100%;
    height: 100%
}

.contain-img {
    -o-object-fit: contain;
    object-fit: contain
}

.container {
    width: 85rem;
    max-width: 94%;
    margin: 0 auto
}

.container,
.relative,
.ui-banner {
    position: relative
}

.ui-banner {
    margin: 0;
    height: 31.25vw
}

.ui-banner img {
    margin: 0 1.25rem
}

.aunonseach {
    cursor: pointer
}

.bread-crumbs {
    padding: 1.875rem 0
}

.bread-crumbs .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center
}

.bread-crumbs .brc-item {
    font-size: .875rem;
    color: #999;
    text-transform: uppercase
}

.bread-crumbs span.separator {
    display: inline-block;
    margin: 0 .875rem;
    width: 1px;
    height: .85rem;
    background: #999;
    transform: rotate(15deg)
}

.ui-title {
    padding: 4rem 0 3.75rem;
    margin: 0 auto;
    width: 58.75rem;
    text-align: center
}

.ui-title .title {
    margin-bottom: .4375rem;
    font-weight: 600;
    font-size: 3.125rem;
    color: #000;
    line-height: 4.25rem;
    text-align: center;
    text-transform: uppercase
}

.ui-title .desc {
    font-size: 1.125rem;
    color: #333;
    text-align: center;
    line-height: 2.125rem
}

.ui-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.ui-row .ui-col-3 {
    width: 33.3333%;
    box-sizing: border-box
}

.ui-row .ui-col-4 {
    width: 25%;
    box-sizing: border-box
}

.filter-disabled {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none
}

.filter-box {
    position: relative;
    width: 16.875rem
}

.filter-box select {
    display: none
}

.filter-text {
    width: 14.375rem;
    height: 100%;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    padding: 0 1.875rem 0 .625rem;
    background: #fff;
    border: 1px solid #e6e6e6
}

.filter-text input {
    font-size: 14px
}

.filter-text .filter-title {
    width: calc(100% - 2.5rem);
    height: 36px;
    line-height: 36px;
    border: 0;
    background-color: transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 1rem;
    cursor: pointer
}

.filter-list {
    display: none;
    width: 16.875rem;
    max-height: 300px;
    background-color: #fff;
    font-size: 14px;
    position: absolute;
    top: 37px;
    left: 0;
    z-index: 19;
    border: 1px solid #e6e6e6;
    overflow: auto;
    box-sizing: border-box
}

.filter-list li.filter-null a {
    color: #d2d2d2
}

.filter-list li a {
    display: block;
    padding: 0 11px;
    line-height: 42px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    color: #555
}

.filter-list li:hover {
    background-color: #f2f2f2
}

.filter-list li.filter-selected a {
    display: block;
    color: #72bd2f
}

.filter-list li.filter-disabled {
    background-color: #fff
}

.filter-list li.filter-disabled a {
    display: block;
    color: #d2d2d2
}

.filter-list li.filter-disabled:hover a {
    cursor: not-allowed!important;
    background-color: #fff
}

.icon-filter-arrow {
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.25rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #666
}

.icon-filter-arrow.filter-show {
    transform: translateY(-50%) rotate(-180deg)!important
}

.filter-list li {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center
}

.filter-list li .aunon {
    color: transparent;
    font-size: 1.625rem;
    width: 1rem
}

.filter-list li.filter-selected .aunon {
    color: #72bd2f
}

.filter-list::-webkit-scrollbar {
    width: 4px;
    height: 4px
}

.filter-list::-webkit-scrollbar-track {
    background: #fff
}

.filter-list::-webkit-scrollbar-thumb {
    background: #cbcbcb
}

.hvr-photo {
    overflow: hidden
}

.hvr-photo .img,
.hvr-photo img {
    transition: all 1s ease-in-out
}

.hvr-photo:hover .img,
.hvr-photo:hover img {
    transform: scale(1.05)
}

input,
textarea {
    color: #333
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #999
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #999
}

#zoom {
    z-index: 99990;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)"
}

#zoom .content {
    z-index: 99991;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: auto;
    margin: 0 !important;
    background: #fff no-repeat 50% 50%;
    padding: 0;
    transform: translate(-50%, -50%);
    box-shadow: -20px 20px 20px rgba(0, 0, 0, .3);
    border-radius: 4px
}

#zoom .content.loading {
    background-image: url(data:image/gif;base64,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)
}

#zoom img {
    width: 100%;
    height: auto;
    display: block;
    max-width: none;
    background: #ececec;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .25)
}

#zoom .close {
    z-index: 99993;
    position: absolute;
    top: 0;
    right: 0;
    width: 49px;
    height: 49px;
    cursor: pointer;
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADEAAAAxBAMAAACBslwvAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAeUExURQAAAKqqqgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALZ3XUMAAAAKdFJOU4DAgoqWnoSQnKAhGbZ3AAAAh0lEQVQ4y2NgGAW0AWoK6AwoYDI3hDAYzY1QZZQ9BAXADEEJZxRNTCaBgoJgLYKCISia2CoEBcGagJREGYYeQbAWND0Myq5gTUBCFNUeqCYsWqCasGiBacKiBaYJUwvI4ROBMjPKGIjXg9senG7D7R+cYYA73AiENdb4wR2neNIB7rQzCqgGACk0HP32lrxtAAAAAElFTkSuQmCC) no-repeat 50% 50%;
    opacity: 1;
    filter: alpha(opacity=100);
    border-radius: 0 0 0 4px
}

#zoom .next,
#zoom .previous {
    z-index: 99992;
    position: absolute;
    top: 50%;
    overflow: hidden;
    display: block;
    width: 49px;
    height: 49px;
    margin-top: -25px
}

#zoom .previous {
    left: 0;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGIAAAAxBAMAAADTkWFkAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAeUExURQAAAKqqqgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALZ3XUMAAAAKdFJOU4DAgoqWnoSQnKAhGbZ3AAAAl0lEQVRIx2NgGAWjYPABpiQsgmoKeHQIF2PKMpkb4tbAKNhihCGo7CEogFOHoKCoM7olTCaBgoK4rRAUbE9AE2SrAIoK4LQClx2CuK0IweIPV5yWYLUCnyU4rMBjCQ4rcFuC0wqclgAFJTGCFhbAE7FZQrodpPuDjLAiPT7IiHPS0xUZaZf0/EFGHiQ9n5NRloyCUTBQAAALlB+MoEydTAAAAABJRU5ErkJggg==) no-repeat 0 0;
    border-radius: 0 4px 4px 0
}

#zoom .next {
    right: 0;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGIAAAAxBAMAAADTkWFkAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAeUExURQAAAKqqqgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALZ3XUMAAAAKdFJOU4DAgoqWnoSQnKAhGbZ3AAAAl0lEQVRIx2NgGAWjYPABpiQsgmoKeHQIF2PKMpkb4tbAKNhihCGo7CEogFOHoKCoM7olTCaBgoK4rRAUbE9AE2SrAIoK4LQClx2CuK0IweIPV5yWYLUCnyU4rMBjCQ4rcFuC0wqclgAFJTGCFhbAE7FZQrodpPuDjLAiPT7IiHPS0xUZaZf0/EFGHiQ9n5NRloyCUTBQAAALlB+MoEydTAAAAABJRU5ErkJggg==) no-repeat 100% 0;
    border-radius: 4px 0 0 4px
}

#zoom .close:hover {
    background-color: #da4f49
}

#zoom .next:hover,
#zoom .previous:hover {
    background-color: #08c
}

.check-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center
}

.check-box .aunoncheckbox,
.check-box input[type=checkbox] {
    display: none
}

.check-box .aunoncheckbox2 {
    display: inline-block
}

.check-box .checkbox-text {
    padding-top: .2rem;
    line-height: 1
}

.a2a_menu {
    transform: translateY(10px)
}

a.a2a_i .a2a_svg,
a.a2a_more .a2a_svg {
    background: #a7a39f!important
}

@media screen and (max-width:1800px) {
    html {
        font-size: 15px
    }
}

@media screen and (max-width:1680px) {
    html {
        font-size: 14px
    }
}

@media screen and (max-width:1560px) {
    html {
        font-size: 13px
    }
}

@media screen and (max-width:1440px) {
    html {
        font-size: 13px
    }
}

@media screen and (max-width:1200px) {
    html {
        font-size: 12px
    }
}

@media screen and (max-width:800px) {
    html {
        font-size: 20px
    }
    html .bread-crumbs {
        display: none
    }
    .hvr-photo:hover .img,
    .hvr-photo:hover img {
        transform: none
    }
}

@media screen and (max-width:600px) {
    html {
        font-size: 20px
    }
}

@media screen and (max-width:440px) {
    html {
        font-size: 17.65px
    }
}

@media screen and (max-width:375px) {
    html {
        font-size: 16px
    }
    .a2a_menu {
        transform: translate(10%, 1rem)
    }
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical>.swiper-wrapper {
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0)
}

.swiper-container-multirow>.swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    -ms-flex-align: start;
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-container-3d {
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal>.swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical>.swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: 50%;
    background-repeat: no-repeat
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");
    left: 10px;
    right: auto
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");
    right: 10px;
    left: auto
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")
}

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: opacity .3s;
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff
}

.swiper-container-vertical>.swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: top .2s, -webkit-transform .2s;
    transition: transform .2s, top .2s;
    transition: transform .2s, top .2s, -webkit-transform .2s
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: left .2s, -webkit-transform .2s;
    transition: transform .2s, left .2s;
    transition: transform .2s, left .2s, -webkit-transform .2s
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: right .2s, -webkit-transform .2s;
    transition: transform .2s, right .2s;
    transition: transform .2s, right .2s, -webkit-transform .2s
}

.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, .25);
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-container-horizontal>.swiper-pagination-progressbar,
.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical>.swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-progressbar.swiper-pagination-white {
    background: hsla(0, 0%, 100%, .25)
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000
}

.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, .25)
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, .1)
}

.swiper-container-horizontal>.swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical>.swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s steps(12) infinite
}

.swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")
}

@keyframes swiper-preloader-spin {
    to {
        transform: rotate(1turn)
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next+.swiper-slide,
.swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    filter: blur(50px);
    z-index: 0
}

.swiper-container-flip {
    overflow: visible
}

.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-container-coverflow .swiper-wrapper {
    -ms-perspective: 1200px
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-modal-dialog,
.vjs-button>.vjs-icon-placeholder:before,
.vjs-modal-dialog .vjs-modal-dialog-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.vjs-button>.vjs-icon-placeholder:before {
    text-align: center
}

@font-face {
    font-family: VideoJS;
    src: url(data:application/font-woff;charset=utf-8;base64,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) format("woff");
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-play-control .vjs-icon-placeholder,
.vjs-icon-play {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-big-play-button .vjs-icon-placeholder:before,
.video-js .vjs-play-control .vjs-icon-placeholder:before,
.vjs-icon-play:before {
    content: "\F101"
}

.vjs-icon-play-circle {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-play-circle:before {
    content: "\F102"
}

.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder,
.vjs-icon-pause {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-play-control.vjs-playing .vjs-icon-placeholder:before,
.vjs-icon-pause:before {
    content: "\F103"
}

.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder,
.vjs-icon-volume-mute {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before,
.vjs-icon-volume-mute:before {
    content: "\F104"
}

.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder,
.vjs-icon-volume-low {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-mute-control.vjs-vol-1 .vjs-icon-placeholder:before,
.vjs-icon-volume-low:before {
    content: "\F105"
}

.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder,
.vjs-icon-volume-mid {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-mute-control.vjs-vol-2 .vjs-icon-placeholder:before,
.vjs-icon-volume-mid:before {
    content: "\F106"
}

.video-js .vjs-mute-control .vjs-icon-placeholder,
.vjs-icon-volume-high {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-mute-control .vjs-icon-placeholder:before,
.vjs-icon-volume-high:before {
    content: "\F107"
}

.video-js .vjs-fullscreen-control .vjs-icon-placeholder,
.vjs-icon-fullscreen-enter {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before,
.vjs-icon-fullscreen-enter:before {
    content: "\F108"
}

.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder,
.vjs-icon-fullscreen-exit {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before,
.vjs-icon-fullscreen-exit:before {
    content: "\F109"
}

.vjs-icon-square {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-square:before {
    content: "\F10A"
}

.vjs-icon-spinner {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-spinner:before {
    content: "\F10B"
}

.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js .vjs-subtitles-button .vjs-icon-placeholder,
.vjs-icon-subtitles {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js.video-js:lang(en-AU) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-GB) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-IE) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js.video-js:lang(en-NZ) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js .vjs-subtitles-button .vjs-icon-placeholder:before,
.vjs-icon-subtitles:before {
    content: "\F10C"
}

.video-js .vjs-captions-button .vjs-icon-placeholder,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder,
.vjs-icon-captions {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-captions-button .vjs-icon-placeholder:before,
.video-js:lang(en) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.video-js:lang(fr-CA) .vjs-subs-caps-button .vjs-icon-placeholder:before,
.vjs-icon-captions:before {
    content: "\F10D"
}

.video-js .vjs-chapters-button .vjs-icon-placeholder,
.vjs-icon-chapters {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-chapters-button .vjs-icon-placeholder:before,
.vjs-icon-chapters:before {
    content: "\F10E"
}

.vjs-icon-share {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-share:before {
    content: "\F10F"
}

.vjs-icon-cog {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-cog:before {
    content: "\F110"
}

.video-js .vjs-play-progress,
.video-js .vjs-volume-level,
.vjs-icon-circle,
.vjs-seek-to-live-control .vjs-icon-placeholder {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-play-progress:before,
.video-js .vjs-volume-level:before,
.vjs-icon-circle:before,
.vjs-seek-to-live-control .vjs-icon-placeholder:before {
    content: "\F111"
}

.vjs-icon-circle-outline {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-circle-outline:before {
    content: "\F112"
}

.vjs-icon-circle-inner-circle {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-circle-inner-circle:before {
    content: "\F113"
}

.vjs-icon-hd {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-hd:before {
    content: "\F114"
}

.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder,
.vjs-icon-cancel {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-control.vjs-close-button .vjs-icon-placeholder:before,
.vjs-icon-cancel:before {
    content: "\F115"
}

.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder,
.vjs-icon-replay {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-play-control.vjs-ended .vjs-icon-placeholder:before,
.vjs-icon-replay:before {
    content: "\F116"
}

.vjs-icon-facebook {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-facebook:before {
    content: "\F117"
}

.vjs-icon-gplus {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-gplus:before {
    content: "\F118"
}

.vjs-icon-linkedin {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-linkedin:before {
    content: "\F119"
}

.vjs-icon-twitter {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-twitter:before {
    content: "\F11A"
}

.vjs-icon-tumblr {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-tumblr:before {
    content: "\F11B"
}

.vjs-icon-pinterest {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-pinterest:before {
    content: "\F11C"
}

.video-js .vjs-descriptions-button .vjs-icon-placeholder,
.vjs-icon-audio-description {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-descriptions-button .vjs-icon-placeholder:before,
.vjs-icon-audio-description:before {
    content: "\F11D"
}

.video-js .vjs-audio-button .vjs-icon-placeholder,
.vjs-icon-audio {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-audio-button .vjs-icon-placeholder:before,
.vjs-icon-audio:before {
    content: "\F11E"
}

.vjs-icon-next-item {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-next-item:before {
    content: "\F11F"
}

.vjs-icon-previous-item {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.vjs-icon-previous-item:before {
    content: "\F120"
}

.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder,
.vjs-icon-picture-in-picture-enter {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js .vjs-picture-in-picture-control .vjs-icon-placeholder:before,
.vjs-icon-picture-in-picture-enter:before {
    content: "\F121"
}

.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder,
.vjs-icon-picture-in-picture-exit {
    font-family: VideoJS;
    font-weight: 400;
    font-style: normal
}

.video-js.vjs-picture-in-picture .vjs-picture-in-picture-control .vjs-icon-placeholder:before,
.vjs-icon-picture-in-picture-exit:before {
    content: "\F122"
}

.video-js {
    display: block;
    vertical-align: top;
    box-sizing: border-box;
    color: #fff;
    background-color: #000;
    position: relative;
    padding: 0;
    font-size: 10px;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    font-family: Arial, Helvetica, sans-serif;
    word-break: normal
}

.video-js:-moz-full-screen {
    position: absolute
}

.video-js:-webkit-full-screen {
    width: 100%!important;
    height: 100%!important
}

.video-js[tabindex="-1"] {
    outline: none
}

.video-js *,
.video-js :after,
.video-js :before {
    box-sizing: inherit
}

.video-js ul {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    list-style-position: outside;
    margin: 0
}

.video-js.vjs-4-3,
.video-js.vjs-16-9,
.video-js.vjs-fluid {
    width: 100%;
    max-width: 100%;
    height: 0
}

.video-js.vjs-16-9 {
    padding-top: 56.25%
}

.video-js.vjs-4-3 {
    padding-top: 75%
}

.video-js.vjs-fill,
.video-js .vjs-tech {
    width: 100%;
    height: 100%
}

.video-js .vjs-tech {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover
}

body.vjs-full-window {
    padding: 0;
    margin: 0;
    height: 100%
}

.vjs-full-window .video-js.vjs-fullscreen {
    position: fixed;
    overflow: hidden;
    z-index: 1000;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0
}

.video-js.vjs-fullscreen:not(.vjs-ios-native-fs) {
    width: 100%!important;
    height: 100%!important;
    padding-top: 0!important
}

.video-js.vjs-fullscreen.vjs-user-inactive {
    cursor: none
}

.vjs-hidden {
    display: none!important
}

.vjs-disabled {
    opacity: .5;
    cursor: default
}

.video-js .vjs-offscreen {
    height: 1px;
    left: -9999px;
    position: absolute;
    top: 0;
    width: 1px
}

.vjs-lock-showing {
    display: block!important;
    opacity: 1;
    visibility: visible
}

.vjs-no-js {
    padding: 20px;
    color: #fff;
    background-color: #000;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    width: 300px;
    height: 150px;
    margin: 0 auto
}

.vjs-no-js a,
.vjs-no-js a:visited {
    color: #66a8cc
}

.video-js .vjs-big-play-button {
    font-size: 3em;
    line-height: 2.5em;
    height: 2.5em;
    width: 2.5em;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    cursor: pointer;
    opacity: 1;
    border: .06666em solid #fff;
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .7);
    border-radius: 50%;
    transition: all .4s
}

.vjs-big-play-centered .vjs-big-play-button {
    top: 50%;
    left: 50%;
    margin-top: -.81666em;
    margin-left: -1.5em
}

.video-js .vjs-big-play-button:focus,
.video-js:hover .vjs-big-play-button {
    border-color: #fff;
    background-color: #73859f;
    background-color: rgba(115, 133, 159, .5);
    transition: all 0s
}

.vjs-controls-disabled .vjs-big-play-button,
.vjs-error .vjs-big-play-button,
.vjs-has-started .vjs-big-play-button,
.vjs-using-native-controls .vjs-big-play-button {
    display: none
}

.vjs-has-started.vjs-paused.vjs-show-big-play-button-on-pause .vjs-big-play-button {
    display: block
}

.video-js button {
    background: none;
    border: none;
    color: inherit;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-transform: none;
    text-decoration: none;
    transition: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.vjs-control .vjs-button {
    width: 100%;
    height: 100%
}

.video-js .vjs-control.vjs-close-button {
    cursor: pointer;
    height: 3em;
    position: absolute;
    right: 0;
    top: .5em;
    z-index: 2
}

.video-js .vjs-modal-dialog {
    background: rgba(0, 0, 0, .8);
    background: linear-gradient(180deg, rgba(0, 0, 0, .8), hsla(0, 0%, 100%, 0));
    overflow: auto
}

.video-js .vjs-modal-dialog>* {
    box-sizing: border-box
}

.vjs-modal-dialog .vjs-modal-dialog-content {
    font-size: 1.2em;
    line-height: 1.5;
    padding: 20px 24px;
    z-index: 1
}

.vjs-menu-button {
    cursor: pointer
}

.vjs-menu-button.vjs-disabled {
    cursor: default
}

.vjs-workinghover .vjs-menu-button.vjs-disabled:hover .vjs-menu {
    display: none
}

.vjs-menu .vjs-menu-content {
    display: block;
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    overflow: auto
}

.vjs-menu .vjs-menu-content>* {
    box-sizing: border-box
}

.vjs-scrubbing .vjs-control.vjs-menu-button:hover .vjs-menu {
    display: none
}

.vjs-menu li {
    list-style: none;
    margin: 0;
    padding: .2em 0;
    line-height: 1.4em;
    font-size: 1.2em;
    text-align: center;
    text-transform: lowercase
}

.js-focus-visible .vjs-menu li.vjs-menu-item:hover,
.vjs-menu li.vjs-menu-item:focus,
.vjs-menu li.vjs-menu-item:hover {
    background-color: #73859f;
    background-color: rgba(115, 133, 159, .5)
}

.js-focus-visible .vjs-menu li.vjs-selected:hover,
.vjs-menu li.vjs-selected,
.vjs-menu li.vjs-selected:focus,
.vjs-menu li.vjs-selected:hover {
    background-color: #fff;
    color: #2b333f
}

.vjs-menu li.vjs-menu-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 2em;
    padding: 0;
    margin: 0 0 .3em;
    font-weight: 700;
    cursor: default
}

.vjs-menu-button-popup .vjs-menu {
    display: none;
    position: absolute;
    bottom: 0;
    width: 10em;
    left: -3em;
    height: 0;
    margin-bottom: 1.5em;
    border-top-color: rgba(43, 51, 63, .7)
}

.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .7);
    position: absolute;
    width: 100%;
    bottom: 1.5em;
    max-height: 15em
}

.vjs-layout-tiny .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 5em
}

.vjs-layout-small .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 10em
}

.vjs-layout-medium .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 14em
}

.vjs-layout-huge .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content,
.vjs-layout-x-large .vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    max-height: 25em
}

.vjs-menu-button-popup .vjs-menu.vjs-lock-showing,
.vjs-workinghover .vjs-menu-button-popup.vjs-hover .vjs-menu {
    display: block
}

.video-js .vjs-menu-button-inline {
    transition: all .4s;
    overflow: hidden
}

.video-js .vjs-menu-button-inline:before {
    width: 2.222222222em
}

.video-js .vjs-menu-button-inline.vjs-slider-active,
.video-js .vjs-menu-button-inline:focus,
.video-js .vjs-menu-button-inline:hover,
.video-js.vjs-no-flex .vjs-menu-button-inline {
    width: 12em
}

.vjs-menu-button-inline .vjs-menu {
    opacity: 0;
    height: 100%;
    width: auto;
    position: absolute;
    left: 4em;
    top: 0;
    padding: 0;
    margin: 0;
    transition: all .4s
}

.vjs-menu-button-inline.vjs-slider-active .vjs-menu,
.vjs-menu-button-inline:focus .vjs-menu,
.vjs-menu-button-inline:hover .vjs-menu {
    display: block;
    opacity: 1
}

.vjs-no-flex .vjs-menu-button-inline .vjs-menu {
    display: block;
    opacity: 1;
    position: relative;
    width: auto
}

.vjs-no-flex .vjs-menu-button-inline.vjs-slider-active .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:focus .vjs-menu,
.vjs-no-flex .vjs-menu-button-inline:hover .vjs-menu {
    width: auto
}

.vjs-menu-button-inline .vjs-menu-content {
    width: auto;
    height: 100%;
    margin: 0;
    overflow: hidden
}

.video-js .vjs-control-bar {
    display: none;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3em;
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .7)
}

.vjs-has-started .vjs-control-bar {
    display: -ms-flexbox;
    display: flex;
    visibility: visible;
    opacity: 1;
    transition: visibility .1s, opacity .1s
}

.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
    visibility: visible;
    opacity: 0;
    transition: visibility 1s, opacity 1s
}

.vjs-controls-disabled .vjs-control-bar,
.vjs-error .vjs-control-bar,
.vjs-using-native-controls .vjs-control-bar {
    display: none!important
}

.vjs-audio.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
    opacity: 1;
    visibility: visible
}

.vjs-has-started.vjs-no-flex .vjs-control-bar {
    display: table
}

.video-js .vjs-control {
    position: relative;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 4em;
    -ms-flex: none;
    flex: none
}

.vjs-button>.vjs-icon-placeholder:before {
    font-size: 1.8em;
    line-height: 1.67
}

.video-js .vjs-control:focus,
.video-js .vjs-control:focus:before,
.video-js .vjs-control:hover:before {
    text-shadow: 0 0 1em #fff
}

.video-js .vjs-control-text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.vjs-no-flex .vjs-control {
    display: table-cell;
    vertical-align: middle
}

.video-js .vjs-custom-control-spacer {
    display: none
}

.video-js .vjs-progress-control {
    cursor: pointer;
    -ms-flex: auto;
    flex: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-width: 4em;
    -ms-touch-action: none;
    touch-action: none
}

.video-js .vjs-progress-control.disabled {
    cursor: default
}

.vjs-live .vjs-progress-control {
    display: none
}

.vjs-liveui .vjs-progress-control {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.vjs-no-flex .vjs-progress-control {
    width: auto
}

.video-js .vjs-progress-holder {
    -ms-flex: auto;
    flex: auto;
    transition: all .2s;
    height: .3em
}

.video-js .vjs-progress-control .vjs-progress-holder {
    margin: 0 10px
}

.video-js .vjs-progress-control:hover .vjs-progress-holder {
    font-size: 1.6666666667em
}

.video-js .vjs-progress-control:hover .vjs-progress-holder.disabled {
    font-size: 1em
}

.video-js .vjs-progress-holder .vjs-load-progress,
.video-js .vjs-progress-holder .vjs-load-progress div,
.video-js .vjs-progress-holder .vjs-play-progress {
    position: absolute;
    display: block;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 0
}

.video-js .vjs-play-progress {
    background-color: #fff
}

.video-js .vjs-play-progress:before {
    font-size: .9em;
    position: absolute;
    right: -.5em;
    top: -.3333333333em;
    z-index: 1
}

.video-js .vjs-load-progress {
    background: rgba(115, 133, 159, .5)
}

.video-js .vjs-load-progress div {
    background: rgba(115, 133, 159, .75)
}

.video-js .vjs-time-tooltip {
    background-color: #fff;
    background-color: hsla(0, 0%, 100%, .8);
    border-radius: .3em;
    color: #000;
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    padding: 6px 8px 8px;
    pointer-events: none;
    position: absolute;
    top: -3.4em;
    visibility: hidden;
    z-index: 1
}

.video-js .vjs-progress-holder:focus .vjs-time-tooltip {
    display: none
}

.video-js .vjs-progress-control:hover .vjs-progress-holder:focus .vjs-time-tooltip,
.video-js .vjs-progress-control:hover .vjs-time-tooltip {
    display: block;
    font-size: .6em;
    visibility: visible
}

.video-js .vjs-progress-control.disabled:hover .vjs-time-tooltip {
    font-size: 1em
}

.video-js .vjs-progress-control .vjs-mouse-display {
    display: none;
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #000;
    z-index: 1
}

.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
    z-index: 0
}

.video-js .vjs-progress-control:hover .vjs-mouse-display {
    display: block
}

.video-js.vjs-user-inactive .vjs-progress-control .vjs-mouse-display {
    visibility: hidden;
    opacity: 0;
    transition: visibility 1s, opacity 1s
}

.video-js.vjs-user-inactive.vjs-no-flex .vjs-progress-control .vjs-mouse-display {
    display: none
}

.vjs-mouse-display .vjs-time-tooltip {
    color: #fff;
    background-color: #000;
    background-color: rgba(0, 0, 0, .8)
}

.video-js .vjs-slider {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 0 .45em;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #73859f;
    background-color: rgba(115, 133, 159, .5)
}

.video-js .vjs-slider.disabled {
    cursor: default
}

.video-js .vjs-slider:focus {
    text-shadow: 0 0 1em #fff;
    box-shadow: 0 0 1em #fff
}

.video-js .vjs-mute-control {
    cursor: pointer;
    -ms-flex: none;
    flex: none
}

.video-js .vjs-volume-control {
    cursor: pointer;
    margin-right: 1em;
    display: -ms-flexbox;
    display: flex
}

.video-js .vjs-volume-control.vjs-volume-horizontal {
    width: 5em
}

.video-js .vjs-volume-panel .vjs-volume-control {
    visibility: visible;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin-left: -1px
}

.video-js .vjs-volume-panel {
    transition: width 1s
}

.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active,
.video-js .vjs-volume-panel .vjs-volume-control:active,
.video-js .vjs-volume-panel:active .vjs-volume-control,
.video-js .vjs-volume-panel:focus .vjs-volume-control {
    visibility: visible;
    opacity: 1;
    position: relative;
    transition: visibility .1s, opacity .1s, height .1s, width .1s, left 0s, top 0s
}

.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-horizontal,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-horizontal,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-horizontal,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-horizontal {
    width: 5em;
    height: 3em;
    margin-right: 0
}

.video-js .vjs-volume-panel.vjs-hover .vjs-mute-control~.vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel.vjs-hover .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel .vjs-volume-control.vjs-slider-active.vjs-volume-vertical,
.video-js .vjs-volume-panel .vjs-volume-control:active.vjs-volume-vertical,
.video-js .vjs-volume-panel:active .vjs-volume-control.vjs-volume-vertical,
.video-js .vjs-volume-panel:focus .vjs-volume-control.vjs-volume-vertical {
    left: -3.5em;
    transition: left 0s
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-hover,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js .vjs-volume-panel.vjs-volume-panel-horizontal:active {
    width: 10em;
    transition: width .1s
}

.video-js .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-mute-toggle-only {
    width: 4em
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
    height: 8em;
    width: 3em;
    left: -3000em;
    transition: visibility 1s, opacity 1s, height 1s 1s, width 1s 1s, left 1s 1s, top 1s 1s
}

.video-js .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
    transition: visibility 1s, opacity 1s, height 1s 1s, width 1s, left 1s 1s, top 1s 1s
}

.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-horizontal {
    width: 5em;
    height: 3em;
    visibility: visible;
    opacity: 1;
    position: relative;
    transition: none
}

.video-js.vjs-no-flex .vjs-volume-control.vjs-volume-vertical,
.video-js.vjs-no-flex .vjs-volume-panel .vjs-volume-control.vjs-volume-vertical {
    position: absolute;
    bottom: 3em;
    left: .5em
}

.video-js .vjs-volume-panel {
    display: -ms-flexbox;
    display: flex
}

.video-js .vjs-volume-bar {
    margin: 1.35em .45em
}

.vjs-volume-bar.vjs-slider-horizontal {
    width: 5em;
    height: .3em
}

.vjs-volume-bar.vjs-slider-vertical {
    width: .3em;
    height: 5em;
    margin: 1.35em auto
}

.video-js .vjs-volume-level {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff
}

.video-js .vjs-volume-level:before {
    position: absolute;
    font-size: .9em
}

.vjs-slider-vertical .vjs-volume-level {
    width: .3em
}

.vjs-slider-vertical .vjs-volume-level:before {
    top: -.5em;
    left: -.3em
}

.vjs-slider-horizontal .vjs-volume-level {
    height: .3em
}

.vjs-slider-horizontal .vjs-volume-level:before {
    top: -.3em;
    right: -.5em
}

.video-js .vjs-volume-panel.vjs-volume-panel-vertical {
    width: 4em
}

.vjs-volume-bar.vjs-slider-vertical .vjs-volume-level {
    height: 100%
}

.vjs-volume-bar.vjs-slider-horizontal .vjs-volume-level {
    width: 100%
}

.video-js .vjs-volume-vertical {
    width: 3em;
    height: 8em;
    bottom: 8em;
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .7)
}

.video-js .vjs-volume-horizontal .vjs-menu {
    left: -2em
}

.vjs-poster {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-color: #000;
    cursor: pointer;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%
}

.vjs-has-started .vjs-poster {
    display: none
}

.vjs-audio.vjs-has-started .vjs-poster {
    display: block
}

.vjs-using-native-controls .vjs-poster {
    display: none
}

.video-js .vjs-live-control {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex: auto;
    flex: auto;
    font-size: 1em;
    line-height: 3em
}

.vjs-no-flex .vjs-live-control {
    display: table-cell;
    width: auto;
    text-align: left
}

.video-js.vjs-liveui .vjs-live-control,
.video-js:not(.vjs-live) .vjs-live-control {
    display: none
}

.video-js .vjs-seek-to-live-control {
    cursor: pointer;
    -ms-flex: none;
    flex: none;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 100%;
    padding-left: .5em;
    padding-right: .5em;
    font-size: 1em;
    line-height: 3em;
    width: auto;
    min-width: 4em
}

.vjs-no-flex .vjs-seek-to-live-control {
    display: table-cell;
    width: auto;
    text-align: left
}

.video-js.vjs-live:not(.vjs-liveui) .vjs-seek-to-live-control,
.video-js:not(.vjs-live) .vjs-seek-to-live-control {
    display: none
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge {
    cursor: auto
}

.vjs-seek-to-live-control .vjs-icon-placeholder {
    margin-right: .5em;
    color: #888
}

.vjs-seek-to-live-control.vjs-control.vjs-at-live-edge .vjs-icon-placeholder {
    color: red
}

.video-js .vjs-time-control {
    -ms-flex: none;
    flex: none;
    font-size: 1em;
    line-height: 3em;
    min-width: 2em;
    width: auto;
    padding-left: 1em;
    padding-right: 1em
}

.video-js .vjs-current-time,
.video-js .vjs-duration,
.vjs-live .vjs-time-control,
.vjs-no-flex .vjs-current-time,
.vjs-no-flex .vjs-duration {
    display: none
}

.vjs-time-divider {
    display: none;
    line-height: 3em
}

.vjs-live .vjs-time-divider {
    display: none
}

.video-js .vjs-play-control {
    cursor: pointer
}

.video-js .vjs-play-control .vjs-icon-placeholder {
    -ms-flex: none;
    flex: none
}

.vjs-text-track-display {
    position: absolute;
    bottom: 3em;
    left: 0;
    right: 0;
    top: 0;
    pointer-events: none
}

.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
    bottom: 1em
}

.video-js .vjs-text-track {
    font-size: 1.4em;
    text-align: center;
    margin-bottom: .1em
}

.vjs-subtitles {
    color: #fff
}

.vjs-captions {
    color: #fc6
}

.vjs-tt-cue {
    display: block
}

video::-webkit-media-text-track-display {
    transform: translateY(-3em)
}

.video-js.vjs-user-inactive.vjs-playing video::-webkit-media-text-track-display {
    transform: translateY(-1.5em)
}

.video-js .vjs-fullscreen-control,
.video-js .vjs-picture-in-picture-control {
    cursor: pointer;
    -ms-flex: none;
    flex: none
}

.vjs-playback-rate .vjs-playback-rate-value,
.vjs-playback-rate>.vjs-menu-button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.vjs-playback-rate .vjs-playback-rate-value {
    pointer-events: none;
    font-size: 1.5em;
    line-height: 2;
    text-align: center
}

.vjs-playback-rate .vjs-menu {
    width: 4em;
    left: 0
}

.vjs-error .vjs-error-display .vjs-modal-dialog-content {
    font-size: 1.4em;
    text-align: center
}

.vjs-error .vjs-error-display:before {
    color: #fff;
    content: "X";
    font-family: Arial, Helvetica, sans-serif;
    font-size: 4em;
    left: 0;
    line-height: 1;
    margin-top: -.5em;
    position: absolute;
    text-shadow: .05em .05em .1em #000;
    text-align: center;
    top: 50%;
    vertical-align: middle;
    width: 100%
}

.vjs-loading-spinner {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .85;
    text-align: left;
    border: 6px solid rgba(43, 51, 63, .7);
    box-sizing: border-box;
    background-clip: padding-box;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    visibility: hidden
}

.vjs-seeking .vjs-loading-spinner,
.vjs-waiting .vjs-loading-spinner {
    display: block;
    animation: vjs-spinner-show 0s linear .3s forwards
}

.vjs-loading-spinner:after,
.vjs-loading-spinner:before {
    content: "";
    position: absolute;
    margin: -6px;
    box-sizing: inherit;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    opacity: 1;
    border: inherit;
    border-color: transparent;
    border-top-color: #fff
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:before {
    animation: vjs-spinner-spin 1.1s cubic-bezier(.6, .2, 0, .8) infinite, vjs-spinner-fade 1.1s linear infinite
}

.vjs-seeking .vjs-loading-spinner:before,
.vjs-waiting .vjs-loading-spinner:before {
    border-top-color: #fff
}

.vjs-seeking .vjs-loading-spinner:after,
.vjs-waiting .vjs-loading-spinner:after {
    border-top-color: #fff;
    animation-delay: .44s
}

@keyframes vjs-spinner-show {
    to {
        visibility: visible
    }
}

@keyframes vjs-spinner-spin {
    to {
        transform: rotate(1turn)
    }
}

@keyframes vjs-spinner-fade {
    0% {
        border-top-color: #73859f
    }
    20% {
        border-top-color: #73859f
    }
    35% {
        border-top-color: #fff
    }
    60% {
        border-top-color: #73859f
    }
    to {
        border-top-color: #73859f
    }
}

.vjs-chapters-button .vjs-menu ul {
    width: 24em
}

.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
    vertical-align: middle;
    display: inline-block;
    margin-bottom: -.1em
}

.video-js .vjs-subs-caps-button+.vjs-menu .vjs-captions-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
    font-family: VideoJS;
    content: "\F10D";
    font-size: 1.5em;
    line-height: inherit
}

.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder {
    vertical-align: middle;
    display: inline-block;
    margin-bottom: -.1em
}

.video-js .vjs-audio-button+.vjs-menu .vjs-main-desc-menu-item .vjs-menu-item-text .vjs-icon-placeholder:before {
    font-family: VideoJS;
    content: " \F11D";
    font-size: 1.5em;
    line-height: inherit
}

.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-control,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-control,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-audio-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-captions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-chapters-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-current-time,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-descriptions-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-duration,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-playback-rate,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-remaining-time,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-subtitles-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-time-divider,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-control {
    display: none
}

.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-volume-panel.vjs-volume-panel-horizontal:hover,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal.vjs-slider-active,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:active,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small .vjs-volume-panel.vjs-volume-panel-horizontal:hover {
    width: auto
}

.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-subs-caps-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-live) .vjs-subs-caps-button,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small:not(.vjs-liveui) .vjs-subs-caps-button {
    display: none
}

.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-custom-control-spacer,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-custom-control-spacer {
    -ms-flex: auto;
    flex: auto;
    display: block
}

.video-js:not(.vjs-fullscreen).vjs-layout-tiny.vjs-no-flex .vjs-custom-control-spacer,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui.vjs-no-flex .vjs-custom-control-spacer {
    width: auto
}

.video-js:not(.vjs-fullscreen).vjs-layout-tiny .vjs-progress-control,
.video-js:not(.vjs-fullscreen).vjs-layout-x-small.vjs-liveui .vjs-progress-control {
    display: none
}

.vjs-modal-dialog.vjs-text-track-settings {
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .75);
    color: #fff;
    height: 70%
}

.vjs-text-track-settings .vjs-modal-dialog-content {
    display: table
}

.vjs-text-track-settings .vjs-track-settings-colors,
.vjs-text-track-settings .vjs-track-settings-controls,
.vjs-text-track-settings .vjs-track-settings-font {
    display: table-cell
}

.vjs-text-track-settings .vjs-track-settings-controls {
    text-align: right;
    vertical-align: bottom
}

@supports (display:grid) {
    .vjs-text-track-settings .vjs-modal-dialog-content {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
        padding: 20px 24px 0
    }
    .vjs-track-settings-controls .vjs-default-button {
        margin-bottom: 20px
    }
    .vjs-text-track-settings .vjs-track-settings-controls {
        grid-column: 1/-1
    }
    .vjs-layout-small .vjs-text-track-settings .vjs-modal-dialog-content,
    .vjs-layout-tiny .vjs-text-track-settings .vjs-modal-dialog-content,
    .vjs-layout-x-small .vjs-text-track-settings .vjs-modal-dialog-content {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr
    }
}

.vjs-track-setting>select {
    margin-right: 1em;
    margin-bottom: .5em
}

.vjs-text-track-settings fieldset {
    margin: 5px;
    padding: 3px;
    border: none
}

.vjs-text-track-settings fieldset span {
    display: inline-block
}

.vjs-text-track-settings fieldset span>select {
    max-width: 7.3em
}

.vjs-text-track-settings legend {
    color: #fff;
    margin: 0 0 5px
}

.vjs-text-track-settings .vjs-label {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    display: block;
    margin: 0 0 5px;
    padding: 0;
    border: 0;
    height: 1px;
    width: 1px;
    overflow: hidden
}

.vjs-track-settings-controls button:active,
.vjs-track-settings-controls button:focus {
    outline-style: solid;
    outline-width: medium;
    background-image: linear-gradient(0deg, #fff 88%, #73859f)
}

.vjs-track-settings-controls button:hover {
    color: rgba(43, 51, 63, .75)
}

.vjs-track-settings-controls button {
    background-color: #fff;
    background-image: linear-gradient(-180deg, #fff 88%, #73859f);
    color: #2b333f;
    cursor: pointer;
    border-radius: 2px
}

.vjs-track-settings-controls .vjs-default-button {
    margin-right: 1em
}

@media print {
    .video-js>:not(.vjs-tech):not(.vjs-poster) {
        visibility: hidden
    }
}

.vjs-resize-manager {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: -1000
}

.js-focus-visible .video-js :focus:not(.focus-visible),
.video-js .vjs-menu :focus:not(:focus-visible),
.video-js :focus:not(:focus-visible) {
    outline: none;
    background: none
}

.product-container {
    position: relative;
    height: auto;
    overflow: hidden;
    padding: 6.25rem 1.25rem 0;
    background-color: #fff
}

.product-container .product-banner {
    height: 37.375rem;
    width: 120rem;
    max-width: 100%;
    margin: 0 auto
}

.product-container .product-banner.single-banner {
    height: 37.375rem
}

.product-container .product-banner .product-banner-wraper {
    width: 85rem;
    height: 37.375rem;
    margin: 0 auto;
    position: relative
}

.product-container .product-banner .product-banner-wraper .product-banner-notes {
    position: absolute;
    width: 35.75rem;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.product-container .product-banner .product-banner-wraper .product-banner-notes h1 {
    /* height: 3.125rem; */
    font-size: 2.5rem;
    font-family: Roboto;
    color: #333;
    line-height: 3.125rem;
    margin-bottom: 1.5625rem;
    font-weight: 600
}

.product-container .product-banner .product-banner-wraper .product-banner-notes .desc {
    font-size: 1.125rem;
    font-family: Roboto;
    color: #777;
    line-height: 2.25rem
}

.product-container .product-banner .product-banner-wraper .product-banner-photo img {
    width: 100%;
    height: 32.5rem;
    -o-object-fit: cover;
    object-fit: cover
}

.product-container .product-swiper {
    margin: 0 -1.25rem;
    background: #fff;
    padding-top: 4.375rem
}

.product-container .product-swiper .product-swiper-box {
    padding-bottom: 4rem
}

.product-container .product-swiper .product-swiper-item {
    width: 25.625rem;
    height: 17.5rem;
    overflow: hidden
}

.product-container .product-swiper .product-swiper-item+.product-swiper-item {
    margin-left: 1rem
}

.product-container .product-swiper .product-swiper-item .photo {
    display: inline-block;
    width: 100%;
    height: 100%
}

.product-container .product-swiper .product-swiper-item .photo img {
    width: 100%;
    height: 100%
}

.product-container .product-swiper .swiper-scrollbar {
    background: #f9f9f9;
    height: .25rem;
    bottom: .0625rem;
    border-radius: 0
}

.product-container .product-swiper .swiper-scrollbar .swiper-scrollbar-drag {
    background: #da251c;
    height: .375rem;
    top: -.0625rem;
    border-radius: 0
}

.product-container .product-swiper .ui-title {
    padding: 6.25rem 5rem 0
}

.product-container .product-swiper .ui-title .title {
    height: 3.75rem;
    font-size: 2.25rem;
    font-family: Roboto;
    color: #000;
    line-height: 3.75rem;
    font-weight: 600
}

.product-container .product-swiper .ui-title .desc {
    width: 51.5625rem;
    margin: 0 auto;
    height: 2.215rem;
    font-size: 1.125rem;
    font-family: Roboto;
    color: #666;
    line-height: 2.215rem;
    margin-bottom: 5.625rem;
    margin-top: 0
}

.product-container .product-swiper .awards-banner {
    width: 85rem;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 4.375rem
}

.product-container .product-swiper .awards-banner .swiper-container {
    width: 100%;
    height: 100%
}

.product-container .product-swiper .awards-banner .swiper-container .swiper-slide {
    width: 26.875rem;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 32.5rem
}

.product-container .product-swiper .awards-banner .swiper-container .swiper-slide img {
    height: 100%;
    width: auto
}

.product-container .product-swiper .awards-banner .swiper-container .swiper-slide-active,
.product-container .product-swiper .awards-banner .swiper-container .swiper-slide-duplicate-active {
    transform: scale(1)
}

.product-container .product-swiper .awards-banner .swiper-container .swiper-pagination-bullets {
    bottom: 0
}

.product-container .product-swiper .awards-banner .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet {
    width: .3125rem;
    height: .3125rem;
    margin: .3125rem .5rem;
    background: #000;
    opacity: .8
}

.product-container .product-swiper .awards-banner .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet-active {
    width: .6875rem;
    height: .6875rem;
    margin: 0 .5rem;
    background: transparent;
    border: 1px solid #000
}

.product-container .product-swiper .product-flexslider {
    margin: 0 1.25rem;
    background: #f9f9f9;
    padding-bottom: 4.375rem
}

.product-container .product-swiper .product-flexslider .ui-title {
    padding: 3.125rem 5rem 0
}

.product-container .product-swiper .product-flexslider .ui-title .title {
    margin-bottom: 2.25rem;
    font-weight: 600
}

.product-container .product-swiper .product-flexslider .flexslider-container {
    position: relative;
    width: 85rem;
    margin: 0 auto
}

.product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper {
    width: 70rem;
    margin: 0 auto;
    overflow: hidden
}

.product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .flexslider-video {
    position: relative;
    width: 70rem;
    height: 40rem
}

.product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .flexslider-video video {
    display: inline-block;
    width: 100%;
    height: 100%
}

.product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .flexslider-video>img {
    display: inline-block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .flexslider-video .icon-play {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
    cursor: pointer
}

.product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .flexslider-video .icon-play img {
    width: 100%;
    height: 100%
}

.product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .title {
    margin: 1.875rem .625rem .9375rem;
    height: 2.375rem;
    font-size: 1.875rem;
    font-family: Roboto;
    color: #333;
    line-height: 2.375rem;
    font-weight: 600
}

.product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .desc {
    margin: 0 .625rem;
    font-size: 1.125rem;
    font-family: Roboto;
    color: #666;
    line-height: 1.75rem
}

.product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .swiper-pagination {
    display: none
}

.product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .swiper-button-next,
.product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .swiper-button-prev {
    background: none;
    width: 3.25rem;
    height: 3.25rem;
    background: transparent;
    border: .09375rem solid #333;
    border-radius: 50%;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    top: 18.375rem;
    margin-top: 0
}

.product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .swiper-button-next .aunon,
.product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .swiper-button-prev .aunon {
    font-size: 1rem;
    font-weight: 600;
    color: #555
}

.product-container .product-introduce {
    margin: 0 -1.25rem;
    background: #fff;
    padding-top: 3.125rem
}

.product-container .product-introduce .product-introduce-wraper {
    margin: 0 1.25rem;
    padding: 1.25rem 0
}

.product-container .product-introduce .product-introduce-wraper .product-introduce-box {
    width: 85rem;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.product-container .product-introduce .product-introduce-wraper .product-introduce-notes,
.product-container .product-introduce .product-introduce-wraper .product-introduce-photo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center
}

.product-container .product-introduce .product-introduce-wraper .product-introduce-notes {
    width: 29.25rem;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: .625rem
}

.product-container .product-introduce .product-introduce-wraper .product-introduce-notes .title {
    font-size: 1.875rem;
    font-family: Roboto;
    color: #333;
    line-height: 3rem;
    margin-bottom: 1rem;
    font-weight: 600
}

.product-container .product-introduce .product-introduce-wraper .product-introduce-notes .desc {
    width: 29.25rem;
    font-size: 1.125rem;
    font-family: Roboto;
    color: #777;
    line-height: 2rem
}

.product-container .product-introduce .product-introduce-wraper .product-introduce-photo {
    width: 40.625rem;
    height: 26.875rem
}

.product-container .product-introduce .product-introduce-wraper .product-introduce-photo img {
    width: 100%;
    height: 100%
}

.product-container .product-introduce .product-introduce-wraper:nth-child(2n) {
    background: #f9f9f9
}

.product-container .product-introduce .product-introduce-wraper:nth-child(2n) .product-introduce-box {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.product-container .product-introduce .product-introduce-wraper:nth-child(2n) .product-introduce-notes {
    margin-right: 3.5rem
}

.product-container .product-introduce .carousel-container {
    position: relative;
    width: 85rem;
    padding-top: 9.375rem;
    margin: 0 auto
}

.product-container .product-introduce .carousel-container .swiper-carousel {
    width: 85rem;
    overflow: hidden;
    margin: 0 auto
}

.product-container .product-introduce .carousel-container .swiper-carousel .carousel-item.center {
    margin: 0 1rem
}

.product-container .product-introduce .carousel-container .swiper-carousel .carousel-item {
    width: 26.875rem;
    overflow: hidden
}

.product-container .product-introduce .carousel-container .swiper-carousel .carousel-item .decs {
    font-size: 1.125rem;
    font-family: Roboto;
    color: #666;
    line-height: 1.75rem;
    padding: 1.5625rem .625rem 0
}

.product-container .product-introduce .carousel-container .swiper-carousel .carousel-item .photo {
    height: 20rem;
    overflow: hidden
}

.product-container .product-introduce .carousel-container .swiper-carousel .carousel-item .photo img {
    width: 100%;
    height: 100%
}

.product-container .product-introduce .carousel-container .swiper-button-next,
.product-container .product-introduce .carousel-container .swiper-button-prev {
    top: 20.5rem;
    background: none;
    width: 3.25rem;
    height: 3.25rem;
    background: transparent;
    border: 1px solid #333;
    border-radius: 50%;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    top: 21rem;
    transform: translateY(-50%)
}

.product-container .product-introduce .carousel-container .swiper-button-next .aunon,
.product-container .product-introduce .carousel-container .swiper-button-prev .aunon {
    font-size: 1rem;
    font-weight: 500;
    color: #000
}

.product-container .product-introduce .carousel-container .swiper-button-prev {
    left: -6.375rem
}

.product-container .product-introduce .carousel-container .swiper-button-next {
    right: -6.375rem
}

.product-container .product-introduce .carousel-container .swiper-button-next.swiper-button-disabled,
.product-container .product-introduce .carousel-container .swiper-button-prev.swiper-button-disabled {
    display: none
}

.product-container .product-introduce .carousel-container:hover .swiper-button-next,
.product-container .product-introduce .carousel-container:hover .swiper-button-prev {
    opacity: 1
}

.product-container .product-introduce .type-container {
    width: 85rem;
    margin: 0 auto
}

.product-container .product-introduce .type-container .ui-title {
    padding: 7.5rem 0 3.125rem
}

.product-container .product-introduce .type-container .ui-title .title {
    font-size: 2.25rem;
    line-height: 3rem;
    font-weight: 600
}

.product-container .product-introduce .type-container .ui-title .desc {
    font-size: 1.125rem;
    color: #777;
    line-height: 2.125rem
}

.product-container .product-introduce .type-container .tabs-container {
    height: 2.625rem;
    border-bottom: 1px solid #d8d8d8
}

.product-container .product-introduce .type-container .tabs-container .tabs-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center
}

.product-container .product-introduce .type-container .tabs-container .tabs-inner .tabs-item {
    width: 13.4375rem;
    height: 2.625rem;
    line-height: 2rem;
    text-align: center;
    font-size: 1.125rem;
    font-family: Roboto;
    color: #777;
    border-bottom: 1px solid transparent;
    cursor: pointer
}

.product-container .product-introduce .type-container .tabs-container .tabs-inner .tabs-item.active {
    color: #000;
    font-weight: 600;
    border-bottom: 2px solid #da251c
}

.product-container .product-introduce .type-container .tabs-container .tabs-inner .tabs-item.empty {
    color: #bbb
}

.product-container .product-introduce .type-container .tabs-content {
    position: relative;
    height: auto;
    overflow: hidden
}

.product-container .product-introduce .type-container .tabs-content .tab-section {
    height: auto;
    overflow: hidden;
    display: none
}

.product-container .product-introduce .type-container .tabs-content .tab-section.active {
    display: block
}

.product-container .product-introduce .type-container .type-grid {
    height: auto;
    overflow: hidden;
    margin: 0 2.75rem
}

.product-container .product-introduce .type-container .type-grid .type-grid-content,
.product-container .product-introduce .type-container .type-grid .type-grid-header {
    height: auto;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-item,
.product-container .product-introduce .type-container .type-grid .type-grid-header .type-grid-item {
    height: auto;
    overflow: hidden
}

.product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-item .type-grid-inner,
.product-container .product-introduce .type-container .type-grid .type-grid-header .type-grid-item .type-grid-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-item .type-grid-inner .inner-item-1,
.product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-item .type-grid-inner .type-grid-inner-item,
.product-container .product-introduce .type-container .type-grid .type-grid-header .type-grid-item .type-grid-inner .inner-item-1,
.product-container .product-introduce .type-container .type-grid .type-grid-header .type-grid-item .type-grid-inner .type-grid-inner-item {
    -ms-flex: 1;
    flex: 1
}

.product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-item .type-grid-inner .inner-item-2,
.product-container .product-introduce .type-container .type-grid .type-grid-header .type-grid-item .type-grid-inner .inner-item-2 {
    -ms-flex: 2;
    flex: 2
}

.product-container .product-introduce .type-container .type-grid .type-grid-content .grid-item-1,
.product-container .product-introduce .type-container .type-grid .type-grid-header .grid-item-1 {
    -ms-flex: 1;
    flex: 1
}

.product-container .product-introduce .type-container .type-grid .type-grid-content .grid-item-6,
.product-container .product-introduce .type-container .type-grid .type-grid-header .grid-item-6 {
    -ms-flex: 6;
    flex: 6
}

.product-container .product-introduce .type-container .type-grid .type-grid-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid #f7f7f6
}

.product-container .product-introduce .type-container .type-grid .type-grid-header .grid-item-1,
.product-container .product-introduce .type-container .type-grid .type-grid-header .type-grid-inner-item {
    padding: 2.75rem 0 2rem;
    line-height: 1;
    font-size: 1rem;
    color: #999;
    text-align: center
}

.product-container .product-introduce .type-container .type-grid .type-grid-content {
    min-height: 7.5rem
}

.product-container .product-introduce .type-container .type-grid .type-grid-content .grid-item-1,
.product-container .product-introduce .type-container .type-grid .type-grid-content .grid-item-1 .type-photo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.product-container .product-introduce .type-container .type-grid .type-grid-content .grid-item-1 .type-photo {
    width: 7.5rem;
    height: 7.5rem;
    overflow: hidden
}

.product-container .product-introduce .type-container .type-grid .type-grid-content .grid-item-1 .type-photo img {
    height: 100%;
    width: auto
}

.product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-inner-item {
    min-height: 7.5rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-inner-item .inner-text,
.product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-inner-item .inner-title {
    line-height: 1.4;
    text-align: center;
    font-size: 1rem;
    color: #000
}

.product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-inner-item .inner-text span,
.product-container .product-introduce .type-container .type-grid .type-grid-content:nth-child(n+6) {
    display: none
}

.product-container .product-introduce .type-container .type-grid .type-grid-content.show {
    display: -ms-flexbox!important;
    display: flex!important
}

.product-container .product-introduce .type-container .colors-and-materials {
    height: auto;
    overflow: hidden;
    padding: 0 3.125rem
}

.product-container .product-introduce .type-container .colors-and-materials .accordion {
    height: auto;
    overflow: hidden
}

.product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding: 2.5rem 0 1.8125rem;
    border-top: 1px solid #f7f7f6;
    cursor: pointer
}

.product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-header .title {
    font-size: 1rem;
    color: #999;
    line-height: 1;
    font-weight: 300
}

.product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-header .title:hover {
    color: #da251c;
}

.product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-header .aunonarrow_up {
    display: inline-block;
    transform: rotate(-180deg);
    font-size: 1.625rem;
    color: #333;
    cursor: pointer;
    transition: all .2s ease-in-out
}

.product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-header .shrink {
    display: none
}

.product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-content {
    height: 12.375rem;
    overflow: hidden;
    margin: 0 -1.375rem 1.25rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-content .c-m-item {
    display: inline-block;
    float: left;
    width: 7.5rem;
    height: auto;
    overflow: hidden;
    margin: 0 1.34rem 2.8125rem
}

.product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-content .c-m-item .c-m-photo {
    width: 7.5rem;
    height: 7.5rem;
    overflow: hidden;
    margin-bottom: 1.25rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-content .c-m-item .c-m-photo img {
    width: 100%
}

.product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-content .c-m-item .desc {
    font-size: 12px;
    color: #000;
    line-height: 1
}

.product-container .product-introduce .type-container .colors-and-materials .accordion.open .accordion-header .aunonarrow_up {
    transform: rotate(0)
}

.product-container .product-introduce .type-container .colors-and-materials .accordion.open .accordion-content {
    height: auto
}

.product-container .product-introduce .type-container .type-load-more {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    padding: 1.5rem 0 3.75rem
}

.product-container .product-introduce .type-container .type-load-more a {
    width: 10rem;
    font-size: .75rem;
    border: 1px solid #da251c;
    color: #000;
    line-height: 2.5rem;
    text-align: center
}

.product-container .product-introduce .designer-container {
    margin: 13rem 1.25rem 0;
    background: #f9f9f9
}

.product-container .product-introduce .designer-container .designer-inner {
    width: 85rem;
    height: 28.125rem;
    padding-bottom: 5.625rem;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.product-container .product-introduce .designer-container .designer-inner .designer-photo {
    position: relative;
    height: 28.125rem;
    width: 33.75rem
}

.product-container .product-introduce .designer-container .designer-inner .designer-photo img {
    position: absolute;
    width: 33.75rem;
    left: 0;
    bottom: 0;
    cursor: pointer
}

.product-container .product-introduce .designer-container .designer-inner .designer-intro {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    width: 45.625rem;
    padding-left: 5.625rem
}

.product-container .product-introduce .designer-container .designer-inner .designer-intro .title {
    font-size: 2.25rem;
    font-family: Roboto;
    color: #000;
    line-height: 2rem;
    font-weight: 600
}

.product-container .product-introduce .designer-container .designer-inner .designer-intro .name {
    font-size: 1.375rem;
    font-family: Roboto;
    font-weight: 500;
    color: #303030;
    line-height: 2rem;
    padding: 1.275rem 0 2.1875rem
}

.product-container .product-introduce .designer-container .designer-inner .designer-intro .desc {
    font-size: 1.125rem;
    font-family: Roboto;
    color: #777;
    line-height: 2.125rem;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    /*!autoprefixer:off*/
    -webkit-box-orient: vertical
}

.product-container .product-introduce .recommend-container {
    width: 85rem;
    margin: 0 auto
}

.product-container .product-introduce .recommend-container .ui-title {
    padding: 7.5rem 0 3.3125rem
}

.product-container .product-introduce .recommend-container .ui-title .title {
    font-size: 2.25rem;
    height: 2rem;
    line-height: 2rem;
    margin: 0;
    font-weight: 600
}

.product-container .product-introduce .recommend-container .recommend-wraper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 8.75rem
}

.product-container .product-introduce .recommend-container .recommend-wraper .recommend-item {
    width: 17.1875rem;
    height: 24.375rem
}

.product-container .product-introduce .recommend-container .recommend-wraper .recommend-item .recommend-photo {
    width: 100%;
    height: 19rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: end;
    align-items: flex-end;
    overflow: hidden
}

.product-container .product-introduce .recommend-container .recommend-wraper .recommend-item .recommend-title {
    text-align: center;
    font-size: 1.5rem;
    font-family: Roboto;
    color: #000;
    line-height: 2.25rem;
    padding-top: 2.125rem
}

.product-container .product-introduce .recommend-container .recommend-wraper .swiper-pagination {
    display: none
}

.product-banner-tabs {
    height: 4.375rem;
    padding-bottom: 4.375rem;
    width: 85rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2
}

.product-banner-tabs .tabs-item {
    background: #fff;
    -ms-flex: 1;
    flex: 1;
    height: 4.375rem;
    text-align: center;
    line-height: 4.375rem;
    border-bottom: 2px solid transparent;
    font-size: 1.25rem;
    font-family: Roboto;
    color: #333;
    cursor: pointer;
    font-weight: 500
}

.product-banner-tabs .tabs-item.mid-border {
    border-left: .1875rem solid #f2f2f2;
    border-right: .1875rem solid #f2f2f2
}

.product-banner-tabs .tabs-item.active {
    color: #da251c;
    border-bottom: 2px solid #da251c;
    font-weight: 600
}

.product-banner-tabs .tabs-item.empty {
    color: #bbb
}

.product-box {
    position: relative;
    margin: 0 -1.25rem;
    height: 50rem
}

.product-box .pro-bg-banner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120rem;
    max-width: 100%;
    height: 50rem;
    -o-object-fit: cover;
    object-fit: cover
}

.swiper-recommend {
    width: 100%
}

.designer-list {
    height: auto;
    overflow: hidden;
    padding: 2.0625rem 0 0;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.designer-list .designer-item {
    position: relative;
    float: left;
    width: 15.9375rem;
    overflow: hidden;
    margin: 0 .625rem 2.5rem
}

.designer-list .designer-item .designer-photo {
    position: relative;
    width: 15.9375rem;
    height: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    background: #f9f9f8
}

.designer-list .designer-item .designer-photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer
}

.designer-list .designer-item .designer-photo .swiper-img {
    display: none
}

.designer-list .designer-item .designer-photo .tool-bar {
    position: absolute;
    height: 2.875rem;
    left: 0;
    right: 0;
    bottom: -2.875rem;
    background: #f9f9f8;
    padding: 0 .625rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.designer-list .designer-item .designer-photo .tool-bar .download-check {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    font-size: .875rem;
    color: #777;
    cursor: pointer
}

.designer-list .designer-item .designer-photo .tool-bar .download-check .aunon {
    color: #da251c;
    font-size: .75rem;
    margin-right: .625rem
}

.designer-list .designer-item .designer-photo .tool-bar .download-btn {
    cursor: pointer;
    color: #666;
    font-size: .875rem
}

.designer-list .designer-item .designer-photo.pdf-photo img {
    height: auto;
    width: 100%
}

.designer-list .designer-item .desc,
.designer-list .designer-item .title {
    padding-left: .625rem
}

.designer-list .designer-item .title {
    font-size: 1.125rem;
    color: #000;
    font-weight: 500;
    line-height: 1;
    padding-top: 1.125rem;
    padding-bottom: .875rem
}

.designer-list .designer-item .desc {
    font-size: .875rem;
    color: #999;
    line-height: 1
}

.designer-list .designer-item.selected .designer-photo .tool-bar,
.designer-list .designer-item:hover .designer-photo .tool-bar {
    bottom: 0
}

.designer-list .emtpy-text {
    padding-top: 10.625rem;
    text-align: center
}

.designer-list .emtpy-text .title {
    font-size: 1.875rem;
    color: #000;
    line-height: 1
}

.mobile-,
.mobile-flex {
    display: none
}

.pc-flex {
    display: -ms-flexbox;
    display: flex
}

@media screen and (max-width:1200px) {
    .awards-banner,
    .carousel-container,
    .designer-inner,
    .flexslider-container,
    .product-banner,
    .product-introduce-box,
    .recommend-container,
    .type-container {
        max-width: 92%
    }
    .swiper-carousel {
        width: 100%
    }
    .product-container .product-introduce .recommend-container .recommend-wraper .recommend-item {
        width: 20vw
    }
    .product-container .product-introduce .product-introduce-wraper .product-introduce-notes {
        width: 35%
    }
    .product-container .product-introduce .product-introduce-wraper .product-introduce-photo {
        width: 47%
    }
    .product-container .product-introduce .carousel-container .swiper-button-next {
        right: 1.875rem
    }
    .product-container .product-introduce .carousel-container .swiper-button-prev {
        left: 1.875rem
    }
    .product-container .product-introduce .carousel-container .swiper-carousel {
        width: 100%
    }
    .product-container .product-introduce .designer-container .designer-inner .designer-intro {
        width: calc(100% - 39.375rem)
    }
}

@media screen and (max-width:1000px) {
    .product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper,
    .product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .flexslider-video,
    .swiper-recommend {
        width: 100%
    }
}

@media screen and (max-width:800px) {
    .product-container .product-introduce .designer-container .designer-inner .designer-intro {
        width: auto
    }
    .product-container .product-introduce .type-container .type-grid .type-grid-content,
    .product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-inner-item {
        min-height: 0
    }
    .pc- {
        display: none
    }
    .pc-flex {
        display: none!important
    }
    .mobile-flex {
        display: -ms-flexbox;
        display: flex
    }
    .product-container {
        padding-top: 3.25rem;
        padding-bottom: 1.25rem
    }
    .product-container .product-banner {
        position: relative;
        width: 100%;
        height: auto;
        padding: 2rem 0 2.25rem;
        max-width: 100%
    }
    .product-container .product-banner.single-banner {
        height: auto;
        padding-top: 3rem
    }
    .product-container .product-banner .product-banner-wraper {
        width: 100%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        overflow: hidden
    }
    .product-container .product-banner .product-banner-wraper .product-banner-notes {
        width: 100%;
        text-align: center;
        position: static;
        transform: none
    }
    .product-container .product-banner .product-banner-wraper .product-banner-notes h1 {
        height: auto;
        font-size: 1.4375rem;
        line-height: 1.625rem;
        margin-bottom: .625rem;
        font-weight: 600
    }
    .product-container .product-banner .product-banner-wraper .product-banner-notes .desc {
        padding: 0 4vw;
        font-size: .875rem;
        color: #555;
        line-height: 1.5rem
    }
    .product-container .product-banner .product-banner-wraper .product-banner-photo img {
        height: 15rem;
        width: auto
    }
    .product-container .product-swiper {
        padding: 1.875rem 0 0
    }
    .product-container .product-swiper .product-swiper-box {
        padding-bottom: 2rem
    }
    .product-container .product-swiper .product-swiper-item {
        width: 14.645rem;
        height: 10rem
    }
    .product-container .product-swiper .swiper-scrollbar {
        border-radius: 0;
        background: #f5f4f3;
        height: .125rem;
        bottom: .0625rem
    }
    .product-container .product-swiper .swiper-scrollbar .swiper-scrollbar-drag {
        border-radius: 0;
        width: 5.875rem!important;
        height: .25rem;
        top: -.0625rem;
        cursor: pointer
    }
    .product-container .product-swiper .ui-title {
        width: 100%;
        padding: 3.5rem 0 0
    }
    .product-container .product-swiper .ui-title .title {
        height: auto;
        font-size: 1.4375rem;
        line-height: 1.625rem;
        margin-bottom: .625rem
    }
    .product-container .product-swiper .ui-title .desc {
        width: 85vw;
        height: auto;
        font-size: .875rem;
        line-height: 1.5rem;
        margin-bottom: 0
    }
    .product-container .product-swiper .awards-banner {
        width: 100%;
        padding-bottom: 2.1875rem;
        max-width: none
    }
    .product-container .product-swiper .awards-banner .swiper-container {
        padding: 2rem 0
    }
    .product-container .product-swiper .awards-banner .swiper-container .swiper-slide {
        height: 16rem
    }
    .product-container .product-swiper .awards-banner .swiper-container .swiper-slide img {
        height: 100%;
        width: 100%;
        -o-object-fit: contain;
        object-fit: contain
    }
    .product-container .product-swiper .product-flexslider {
        margin: 0;
        padding-bottom: 1.6875rem
    }
    .product-container .product-swiper .product-flexslider .ui-title {
        width: 100%;
        padding: 2.865rem 0 0
    }
    .product-container .product-swiper .product-flexslider .ui-title .title {
        height: auto;
        font-size: 1.4375rem;
        line-height: 1.625rem;
        margin-bottom: 1.875rem
    }
    .product-container .product-swiper .product-flexslider .flexslider-container {
        width: 100%;
        max-width: none
    }
    .product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper {
        width: calc(100% - 2.25rem);
        height: auto;
        padding-bottom: 2.5rem
    }
    .product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .swiper-button-next,
    .product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .swiper-button-prev {
        display: none
    }
    .product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .flexslider-video {
        width: 100%;
        height: 12.1875rem;
        overflow: hidden
    }
    .product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .flexslider-video .icon-play {
        width: 2.5rem;
        height: 2.5rem;
        cursor: pointer
    }
    .product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .flexslider-video .icon-play img {
        width: 100%;
        height: 100%
    }
    .product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .title {
        height: auto;
        margin: 1.375rem 0 .375rem;
        font-size: 1.125rem;
        color: #333;
        line-height: 1.375rem;
        text-align: center
    }
    .product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .desc {
        font-size: .875rem;
        color: #999;
        line-height: 1.25rem;
        height: 2.5rem;
        text-align: center;
        padding-bottom: 0;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        /*!autoprefixer:off*/
        -webkit-box-orient: vertical
    }
    .product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .swiper-pagination {
        display: block
    }
    .product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .swiper-pagination-bullets {
        bottom: 0
    }
    .product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
        width: .3125rem;
        height: .3125rem;
        margin: .3125rem .4375rem;
        background: #000;
        opacity: .8
    }
    .product-container .product-swiper .product-flexslider .flexslider-container .flexslider-swiper .swiper-pagination-bullets .swiper-pagination-bullet-active {
        width: .6875rem;
        height: .6875rem;
        margin: 0 .1875rem;
        background: transparent;
        border: 1px solid #000
    }
    .product-container .product-introduce {
        padding: 0
    }
    .product-container .product-introduce .product-introduce-wraper {
        padding: 1.875rem 1.125rem;
        margin: 0
    }
    .product-container .product-introduce .product-introduce-wraper .product-introduce-box {
        width: 100%;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .product-container .product-introduce .product-introduce-wraper .product-introduce-notes {
        width: auto;
        padding: .625rem 0 0
    }
    .product-container .product-introduce .product-introduce-wraper .product-introduce-notes .title {
        font-size: 1.125rem;
        color: #333;
        height: 1.75rem;
        overflow: hidden;
        line-height: 1.75rem;
        margin-bottom: .375rem;
        font-weight: 500
    }
    .product-container .product-introduce .product-introduce-wraper .product-introduce-notes .desc {
        width: auto;
        font-size: .875rem;
        color: #999;
        line-height: 1.375rem;
        text-overflow: -o-ellipsis-lastline;
        overflow: hidden
    }
    .product-container .product-introduce .product-introduce-wraper .product-introduce-photo {
        width: 100%;
        height: 13.9375rem;
        overflow: hidden
    }
    .product-container .product-introduce .product-introduce-wraper:nth-child(2n) .product-introduce-box {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
    .product-container .product-introduce .product-introduce-wraper:nth-child(2n) .product-introduce-notes {
        width: auto;
        padding: .625rem 0 0;
        margin-right: 0
    }
    .product-container .product-introduce .carousel-container {
        width: 100vw;
        padding: 2.1875rem 0
    }
    .product-container .product-introduce .carousel-container .swiper-button-next,
    .product-container .product-introduce .carousel-container .swiper-button-prev {
        display: none
    }
    .product-container .product-introduce .carousel-container .swiper-carousel {
        width: 100%
    }
    .product-container .product-introduce .carousel-container .swiper-carousel .carousel-item {
        margin: 0;
        width: 16.875rem
    }
    .product-container .product-introduce .carousel-container .swiper-carousel .carousel-item .photo {
        width: 16.875rem;
        height: 12.5rem
    }
    .product-container .product-introduce .carousel-container .swiper-carousel .carousel-item .photo img {
        width: 100%
    }
    .product-container .product-introduce .carousel-container .swiper-carousel .carousel-item .decs {
        font-size: .875rem;
        height: 2.6rem;
        overflow: hidden;
        color: #666;
        line-height: 1.5rem;
        padding: .625rem 0
    }
    .product-container .product-introduce .type-container {
        width: 100vw;
        max-width: 100%;
        padding: 0
    }
    .product-container .product-introduce .type-container .ui-title {
        width: 100%;
        padding: 2.1875rem 0
    }
    .product-container .product-introduce .type-container .ui-title .title {
        font-size: 1.5rem;
        color: #000;
        line-height: 1.875rem;
        margin-bottom: 4rem 0 2.1875rem
    }
    .product-container .product-introduce .type-container .ui-title .desc {
        font-size: .875rem;
        color: #555;
        line-height: 1.25rem
    }
    .product-container .product-introduce .type-container .tabs-container {
        width: 100%;
        overflow-x: auto;
        height: auto;
        overflow-y: hidden;
        background: #f3f2f0;
        border: none;
        border-top: 1px solid #fafaf9;
        border-bottom: 1px solid #fafaf9
    }
    .product-container .product-introduce .type-container .tabs-container::-webkit-scrollbar {
        display: none;
        width: 0
    }
    .product-container .product-introduce .type-container .tabs-container .tabs-inner {
        -ms-flex-pack: justify;
        justify-content: space-between;
        white-space: nowrap
    }
    .product-container .product-introduce .type-container .tabs-container .tabs-inner .tabs-item {
        padding: 1rem 1.25rem;
        font-size: .875rem;
        color: #666;
        line-height: 1.125rem;
        height: auto;
        border: none;
        position: relative
    }
    .product-container .product-introduce .type-container .tabs-container .tabs-inner .tabs-item:not(:first-child):before {
        content: "";
        display: block;
        width: 1px;
        height: 120%;
        position: absolute;
        top: 50%;
        left: 0;
        background-color: #ddd;
        transform: translateY(-50%) scale(.5)
    }
    .product-container .product-introduce .type-container .tabs-container .tabs-inner .tabs-item.active {
        color: #da251c;
        border: none;
        background: #fff
    }
    .product-container .product-introduce .type-container .tabs-container .tabs-inner .tabs-item.empty {
        color: #bbb
    }
    .product-container .product-introduce .type-container .tabs-content .tab-section {
        padding-bottom: 1.25rem
    }
    .product-container .product-introduce .type-container .type-grid {
        margin: 1.25rem;
        padding-bottom: 0
    }
    .product-container .product-introduce .type-container .type-grid .type-grid-header {
        display: none
    }
    .product-container .product-introduce .type-container .type-grid .type-grid-content {
        border-bottom: .0125rem solid #f9f9f8;
        padding: .75rem 0;
        min-height: 0
    }
    .product-container .product-introduce .type-container .type-grid .type-grid-content:last-child {
        border: none
    }
    .product-container .product-introduce .type-container .type-grid .type-grid-content .grid-item-1 {
        -ms-flex: none;
        flex: none
    }
    .product-container .product-introduce .type-container .type-grid .type-grid-content .grid-item-1 .type-photo {
        width: 6.875rem;
        height: 6.875rem;
        margin-right: 1.375rem
    }
    .product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-inner-item {
        -ms-flex-pack: left;
        justify-content: left
    }
    .product-container .product-introduce .type-container .type-grid .type-grid-content .grid-item-6 {
        -ms-flex: 1;
        flex: 1
    }
    .product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-item .type-grid-inner {
        height: 100%;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center
    }
    .product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-item .type-grid-inner .inner-item-1,
    .product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-item .type-grid-inner .inner-item-2 {
        -ms-flex: none;
        flex: none
    }
    .product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-item .type-grid-inner .inner-item-1 .inner-title,
    .product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-item .type-grid-inner .inner-item-2 .inner-title {
        font-size: 1rem;
        height: 2.25rem;
        line-height: 2.25rem;
        overflow: hidden;
        text-align: left
    }
    .product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-item .type-grid-inner .inner-item-1 .inner-text,
    .product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-item .type-grid-inner .inner-item-2 .inner-text {
        font-size: .75rem;
        color: #888;
        line-height: 1.25rem;
        text-align: left
    }
    .product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-item .type-grid-inner .inner-item-1 .inner-text span,
    .product-container .product-introduce .type-container .type-grid .type-grid-content .type-grid-item .type-grid-inner .inner-item-2 .inner-text span {
        display: inline-block;
        width: 1.5rem
    }
    .product-container .product-introduce .type-container .colors-and-materials {
        height: auto;
        overflow: hidden;
        padding: 0 .9375rem 2.5rem
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion {
        height: auto;
        overflow: hidden
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-header {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
        padding: 1.5rem 0 1.25rem;
        border: none
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-header .title {
        font-size: .875rem;
        color: #999;
        line-height: 1;
        font-weight: 300
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-header .aunonarrow_up {
        color: #999;
        font-size: 1.25rem
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-header .shrink {
        display: block;
        position: relative;
        width: .75rem;
        height: .75rem;
        margin-right: .3125rem;
        cursor: pointer
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-header i.shrink:before {
        width: .65rem;
        height: .125rem
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-header i.shrink:after,
    .product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-header i.shrink:before {
        content: "";
        background: #999;
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%)
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-header i.shrink:after {
        width: .125rem;
        height: .65rem
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-content {
        height: 0;
        overflow: hidden;
        margin: 0 -.46875rem -.625rem
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-content .c-m-item {
        display: inline-block;
        width: 4.5875rem;
        overflow: hidden;
        margin: 0 .46875rem .9375rem
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-content .c-m-item .c-m-photo {
        width: 4.5875rem;
        height: 4.5875rem;
        overflow: hidden;
        margin: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-content .c-m-item .c-m-photo img {
        width: 100%
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-content .c-m-item .desc {
        font-size: .75rem;
        padding-top: .5rem
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion.open .accordion-header .aunonarrow_up {
        transform: rotate(0)
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion.open .accordion-header i.shrink:after {
        opacity: 0
    }
    .product-container .product-introduce .type-container .colors-and-materials .accordion.open .accordion-content {
        height: auto
    }
    .product-container .product-introduce .type-container .type-load-more {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0;
        padding: 1.5rem 0 3.75rem
    }
    .product-container .product-introduce .type-container .type-load-more a {
        width: 10rem;
        font-size: .75rem;
        border: 1px solid #da251c;
        color: #000;
        line-height: 2.5rem;
        text-align: center
    }
    .product-container .product-introduce .designer-container {
        padding: 0 1.25rem;
        margin: 0
    }
    .product-container .product-introduce .designer-container .designer-inner {
        width: 100%;
        max-width: none;
        height: auto;
        overflow: hidden;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-bottom: 1.5rem
    }
    .product-container .product-introduce .designer-container .designer-inner .title {
        font-size: 1.5rem;
        color: #000;
        line-height: 1.625rem;
        padding: 2.875rem 0 1.875rem;
        text-align: center;
        font-weight: 500
    }
    .product-container .product-introduce .designer-container .designer-inner .designer-photo {
        width: 100%;
        height: auto;
        overflow: hidden
    }
    .product-container .product-introduce .designer-container .designer-inner .designer-photo img {
        position: relative;
        width: 100%
    }
    .product-container .product-introduce .designer-container .designer-inner .designer-intro {
        padding: 0
    }
    .product-container .product-introduce .designer-container .designer-inner .designer-intro .name {
        padding: 1rem 0 .4375rem;
        font-size: 1.125rem;
        color: #303030;
        line-height: 1.375rem
    }
    .product-container .product-introduce .designer-container .designer-inner .designer-intro .desc {
        font-size: .9375rem;
        color: #999;
        line-height: 1.625rem
    }
    .product-container .product-introduce .recommend-container {
        width: 100vw;
        max-width: none
    }
    .product-container .product-introduce .recommend-container .ui-title {
        width: 100vw;
        margin: 0;
        padding: 0
    }
    .product-container .product-introduce .recommend-container .ui-title .title {
        font-size: 1.5rem;
        color: #000;
        line-height: 1.625rem;
        padding: 2.875rem 0 1.875rem;
        font-weight: 500
    }
    .product-container .product-introduce .recommend-container .recommend-wraper {
        width: 100vw;
        height: auto;
        overflow: hidden;
        padding-bottom: 5rem
    }
    .product-container .product-introduce .recommend-container .recommend-wraper .swiper-recommend {
        position: relative;
        width: 100vw;
        height: auto;
        overflow: hidden;
        padding-bottom: 4rem
    }
    .product-container .product-introduce .recommend-container .recommend-wraper .swiper-recommend .recommend-item {
        height: auto;
        overflow: hidden
    }
    .product-container .product-introduce .recommend-container .recommend-wraper .swiper-recommend .recommend-item .recommend-photo {
        height: 10rem;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center
    }
    .product-container .product-introduce .recommend-container .recommend-wraper .swiper-recommend .recommend-item .recommend-photo img {
        height: 8rem;
        width: auto
    }
    .product-container .product-introduce .recommend-container .recommend-wraper .swiper-recommend .recommend-item .recommend-title {
        padding-top: 1.5rem;
        text-align: center;
        font-size: 1rem;
        color: #000;
        line-height: 1.5rem
    }
    .product-container .product-introduce .recommend-container .recommend-wraper .swiper-recommend .swiper-pagination {
        display: block
    }
    .product-container .product-introduce .recommend-container .recommend-wraper .swiper-recommend .swiper-pagination-bullets {
        bottom: 0
    }
    .product-container .product-introduce .recommend-container .recommend-wraper .swiper-recommend .swiper-pagination-bullets .swiper-pagination-bullet {
        width: .3125rem;
        height: .3125rem;
        margin: .3125rem .4375rem;
        background: #000;
        opacity: .8
    }
    .product-container .product-introduce .recommend-container .recommend-wraper .swiper-recommend .swiper-pagination-bullets .swiper-pagination-bullet-active {
        width: .6875rem;
        height: .6875rem;
        margin: 0 .1875rem;
        background: transparent;
        border: 1px solid #000
    }
    .designer-list {
        padding: .9375rem 1.125rem 0;
        margin: 0;
        min-height: 26rem
    }
    .designer-list .designer-item {
        width: 100%;
        height: auto;
        margin: 0 0 2.5rem
    }
    .designer-list .designer-item .designer-photo {
        width: 100%;
        height: auto;
        overflow: hidden;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center
    }
    .designer-list .designer-item .designer-photo.pdf-photo img {
        height: auto
    }
    .designer-list .designer-item .designer-photo .tool-bar {
        display: none
    }
    .designer-list .designer-item .title {
        font-size: 1.0625rem
    }
    .designer-list .designer-item .mobile-download {
        position: absolute;
        width: 1.3rem;
        height: 1.3rem;
        font-size: 1.25rem;
        right: .625rem;
        bottom: 0;
        color: #716f6a
    }
    .designer-list .emtpy-text {
        padding-top: 0
    }
    .designer-list .emtpy-text .title {
        font-size: .9375rem;
        color: #000
    }
    .designer-list .emtpy-text .desc {
        font-size: .8125rem;
        color: #9f9f9f;
        line-height: 1;
        margin-bottom: 3.4375rem
    }
    .product-box {
        position: relative;
        margin: 0 -1.25rem;
        height: 27.5rem
    }
    .product-box .pro-bg-banner {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 55rem;
        max-width: 100%;
        height: 27.5rem;
        -o-object-fit: cover;
        object-fit: cover
    }
    .product-banner-tabs {
        height: auto;
        position: static;
        padding: 0;
        transform: none;
        margin: 0 -1.25rem;
        width: auto
    }
    .product-banner-tabs .tabs-item {
        font-size: .875rem;
        height: 3rem;
        line-height: 3rem;
        font-weight: 400;
        color: #999;
        cursor: pointer
    }
    .product-banner-tabs .tabs-item.active,
    .product-banner-tabs .tabs-item.mid-border {
        border-width: .0625rem
    }
    .product-banner-tabs .tabs-item.empty {
        color: #bbb
    }
}

.resources-swiper {
    position: fixed;
    width: 100%;
    top: 6.25rem;
    left: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -999;
    display: none;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.resources-swiper.pop-resources-swiper {
    display: -ms-flexbox;
    display: flex;
    z-index: 99;
    background: rgba(0, 0, 0, .3)
}

.resources-swiper .resources-swiper-container {
    position: relative;
    background: #fff
}

.resources-swiper .resources-swiper-container .close-resources-swiper {
    position: absolute;
    top: .625rem;
    right: .625rem;
    height: 2.5rem;
    width: 2.5rem;
    text-align: center;
    line-height: 2.5rem;
    font-size: 1.125rem;
    color: #85827d;
    cursor: pointer
}

.resources-swiper .resources-swiper-container .resources-container {
    height: calc(100% - 11.875rem);
    margin: 4.0625rem 10rem 0;
    overflow: hidden
}

.resources-swiper .resources-swiper-container .resources-container .resources-photo {
    position: relative;
    height: 100%
}

.resources-swiper .resources-swiper-container .resources-container .resources-photo img {
    display: inline-block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.resources-swiper .resources-swiper-container .resources-container .swiper-pagination {
    display: none
}

.resources-swiper .resources-swiper-container .resources-container .swiper-button-next,
.resources-swiper .resources-swiper-container .resources-container .swiper-button-prev {
    background: none;
    width: 3.25rem;
    height: 3.25rem;
    background: transparent;
    border: .09375rem solid #666;
    border-radius: 50%;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
    top: 22.1875rem
}

.resources-swiper .resources-swiper-container .resources-container .swiper-button-next .aunon,
.resources-swiper .resources-swiper-container .resources-container .swiper-button-prev .aunon {
    font-size: 1rem;
    font-weight: 600;
    color: #666
}

.resources-swiper .resources-swiper-container .resources-container .swiper-button-prev {
    left: 3.75rem
}

.resources-swiper .resources-swiper-container .resources-container .swiper-button-next {
    right: 3.75rem
}

.resources-swiper .resources-swiper-container .resource-intro {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    height: 7.8125rem;
    padding: 0 10rem
}

.resources-swiper .resources-swiper-container .resource-intro .resource-info .title {
    font-size: 1.125rem;
    color: #000;
    line-height: 1;
    padding-bottom: .9375rem
}

.resources-swiper .resources-swiper-container .resource-intro .resource-info .desc {
    font-size: .875rem;
    color: #999;
    line-height: 1
}

.resources-swiper .resources-swiper-container .resource-intro .download {
    font-size: 1rem;
    color: #000;
    cursor: pointer
}

.resources-swiper .resources-swiper-container .resource-intro .download .aunon {
    font-size: .9375rem;
    margin-left: 1rem
}

@media screen and (max-width:800px) {
    .resources-swiper {
        top: 3.25rem
    }
    .resources-swiper .resources-swiper-container {
        height: auto!important
    }
    .resources-swiper .resources-swiper-container .close-resources-swiper {
        top: .25rem;
        right: .25rem;
        color: #000;
        font-size: 1.0625rem
    }
    .resources-swiper .resources-swiper-container .resources-container {
        margin: 3rem .9375rem 0
    }
    .resources-swiper .resources-swiper-container .resources-container .swiper-button-next,
    .resources-swiper .resources-swiper-container .resources-container .swiper-button-prev {
        display: none
    }
    .resources-swiper .resources-swiper-container .resources-container .resources-photo {
        height: auto;
        overflow: hidden
    }
    .resources-swiper .resources-swiper-container .resources-container .resources-photo img {
        height: 12.8125rem
    }
    .resources-swiper .resources-swiper-container .resources-container .swiper-pagination {
        display: block
    }
    .resources-swiper .resources-swiper-container .resources-container .swiper-pagination-bullets {
        bottom: auto;
        top: 16.75rem
    }
    .resources-swiper .resources-swiper-container .resources-container .swiper-pagination-bullets .swiper-pagination-bullet {
        width: .1875rem;
        height: .1875rem;
        margin: .1875rem .4375rem;
        background: #000;
        opacity: .8
    }
    .resources-swiper .resources-swiper-container .resources-container .swiper-pagination-bullets .swiper-pagination-bullet-active {
        width: .5625rem;
        height: .5625rem;
        margin: 0 .1875rem;
        background: transparent;
        border: 1px solid #000
    }
    .resources-swiper .resources-swiper-container .resource-intro {
        height: auto;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        padding: 3.75rem 0 3rem
    }
    .resources-swiper .resources-swiper-container .resource-intro .resource-info {
        padding-bottom: 1.625rem
    }
    .resources-swiper .resources-swiper-container .resource-intro .download {
        height: 2.5rem;
        width: 9.6875rem;
        border: .0625rem solid #da251c;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: .8125rem
    }
    .resources-swiper .resources-swiper-container .resource-intro .download .aunon {
        font-size: .75rem
    }
}

.footer {
    width: 100vw;
    padding-top: 5.625rem;
    margin: 0 auto;
    background: #f9f9f9
}

.footer .footer-container {
    width: 85rem;
    margin: 0 auto
}

.footer .footer-container .footer-main,
.footer .footer-container .footer_bottom {
    height: auto
}

.footer .footer-container .footer-main {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.footer .footer-container .footer-main .footer_main-map {
    -ms-flex: 0 0 calc(100% - 22rem);
    flex: 0 0 calc(100% - 22rem);
    width: calc(100% - 22rem);
    justify-content: space-between;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row
}

.footer .footer-container .footer-main .footer_main-map .footer_main-block.flex-block-2 {
    -ms-flex: 2;
    flex: 2
}

.footer .footer-container .footer-main .footer_main-map .footer_main-block.flex-block-3 {
    -ms-flex: 3;
    flex: 3
}

.footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav-link,
.footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav-title {
    font-size: 1rem;
    font-family: Roboto;
    color: #000;
    line-height: 1.875rem;
    margin-bottom: 1rem;
    white-space: nowrap
}

.footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav-link {
    display: block
}

.footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav-link i {
    display: none
}

.footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav {
    height: auto
}

.footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav a {
    display: block;
    font-size: .875rem;
    font-family: Roboto;
    color: #777;
    line-height: 2.2rem
}

.footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav a:hover {
    color: #000
}

.footer .footer-container .footer-main .footer_main-map .footer_main-block .mobile- {
    display: none
}

.footer .footer-container .footer-main .footer_aside-contact {
    width: 17.5rem
}

.footer .footer-container .footer-main .footer_aside-contact .footer_aside-block {
    margin-bottom: 2rem
}

.footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .footer_nav-title {
    font-size: 1rem;
    color: #999;
    margin-bottom: 1.25rem
}

.footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .title-1 {
    font-size: 1.375rem;
    font-family: Roboto;
    color: #000;
    line-height: 1.875rem
}

.footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .footer_nav-note {
    display: block;
    color: #777;
    font-size: 1rem;
    line-height: 2rem;
    margin-bottom: 1rem
}

.footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-input {
    position: relative;
    height: 2.25rem;
    background: #fff
}

.footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-input span {
    position: absolute;
    top: 0;
    right: 0;
    line-height: 2.25rem;
    padding: 0 1rem;
    background: #72bd2f;
    font-size: .75rem;
    color: #fff;
    cursor: pointer
}

.footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-input input {
    display: block;
    background: transparent;
    font-size: .85rem;
    height: 2.25rem;
    line-height: 2.25rem;
    padding: 0 1rem
}

.footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-input ::-webkit-input-placeholder {
    font-size: .875rem;
    color: #dfdfdf
}

.footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-input :-moz-placeholder,
.footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-input ::-moz-placeholder {
    font-size: .875rem;
    color: #dfdfdf
}

.footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-input :-ms-input-placeholder {
    font-size: .875rem;
    color: #dfdfdf
}

.footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-icons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-bottom: .625rem
}

.footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-icons .qr-dialog-box {
    padding: 0 1.25rem .625rem 0
}

.footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-icons .qr-dialog-box i {
    font-size: 1.25rem;
    color: silver
}

.footer .footer-container .footer_bottom {
    font-size: .875rem;
    font-family: Roboto;
    font-weight: 400;
    color: #aaa;
    line-height: 1.375rem;
    text-align: right;
    padding: 3.125rem 0 1.25rem
}

.footer .footer-container .footer_bottom a {
    color: #aaa
}

@media screen and (max-width:1040px) {
    .footer .footer-container {
        width: 96%
    }
    .footer .footer-container .footer-main .footer_main-map .footer_main-block {
        margin-right: 4.8rem
    }
}

@media screen and (max-width:900px) {
    .footer .footer-container {
        width: 98%
    }
    .footer .footer-container .footer-main .footer_main-map .footer_main-block {
        margin-right: 4.5rem
    }
}

@media screen and (max-width:800px) {
    .footer {
        width: calc(100% - 2.5rem);
        margin: 0 auto;
        padding: 1.125rem 1.125rem 0
    }
    .footer .footer-container {
        width: 100%;
        margin: 0;
        padding: 0
    }
    .footer .footer-container .footer-main {
        -ms-flex-direction: column;
        flex-direction: column
    }
    .footer .footer-container .footer-main .footer_main-map {
        height: auto;
        overflow: hidden;
        -ms-flex-direction: column;
        flex-direction: column
    }
    .footer .footer-container .footer-main .footer_main-map .footer_main-block {
        border-bottom: 1px solid #f3f2f0;
        margin-right: 0
    }
    .footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav-link {
        position: relative;
        height: 3.125rem;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
        font-size: .875rem;
        font-family: Roboto;
        color: #555;
        font-weight: 500;
        margin: 0;
        border-top: 1px solid #f3f2f0
    }
    .footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav-link i {
        position: absolute;
        display: block;
        top: 50%;
        right: .5rem;
        width: .75rem;
        height: .75rem;
        transform: translateY(-50%);
        font-size: .625rem;
        line-height: 1
    }
    .footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav-link i.aunon {
        color: #888;
        font-weight: 700
    }
    .footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav-title {
        position: relative;
        height: 3rem;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
        font-size: .875rem;
        font-family: Roboto;
        color: #555;
        font-weight: 500;
        margin: 0;
        cursor: pointer
    }
    .footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav-title i {
        position: absolute;
        display: block;
        top: 50%;
        right: .6rem;
        width: .625rem;
        height: .625rem;
        transform: translateY(-50%)
    }
    .footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav-title i:after,
    .footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav-title i:before {
        content: "";
        background: #aaa;
        border-radius: 0;
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%)
    }
    .footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav-title i:before {
        width: .625rem;
        height: .0625rem
    }
    .footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav-title i:after {
        width: .0625rem;
        height: .625rem
    }
    .footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav-title.current i:after {
        opacity: 0
    }
    .footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav {
        display: none;
        padding: 0 0 1rem 1.25rem
    }
    .footer .footer-container .footer-main .footer_main-map .footer_main-block .footer_nav a {
        display: block;
        width: 100%;
        line-height: 2.15rem;
        font-size: .875rem;
        color: #333
    }
    .footer .footer-container .footer-main .footer_aside-contact {
        width: 18.75rem;
        margin: 0 auto
    }
    .footer .footer-container .footer-main .footer_aside-contact .footer_aside-block {
        margin: 0
    }
    .footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .footer_nav-title {
        padding: 1.875rem 0 1.25rem;
        text-align: center;
        margin: 0;
        font-size: .875rem;
        color: #555;
        font-weight: 500
    }
    .footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .title-1 {
        padding: 2.8125rem 0 .125rem;
        font-weight: 700;
        font-size: .875rem;
        color: #555;
        line-height: 1.4375rem
    }
    .footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-input {
        height: 2.75rem
    }
    .footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-input input {
        height: 2.75rem;
        line-height: 2.75rem
    }
    .footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-input span {
        line-height: 2.75rem
    }
    .footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .footer_nav-note {
        padding: 0 0 1.25rem;
        margin: 0;
        font-size: .6875rem;
        color: #aaa;
        text-align: center;
        line-height: 1rem
    }
    .footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-icons {
        -ms-flex-pack: center;
        justify-content: center
    }
    .footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-icons .qr-dialog-box {
        padding: .625rem
    }
    .footer .footer-container .footer-main .footer_aside-contact .footer_aside-block .contact-icons .qr-dialog-box i {
        font-weight: 700;
        color: rgba(0, 0, 0, .9)
    }
    .footer .footer-container .footer_bottom {
        text-align: center;
        font-size: .75rem;
        padding-bottom: .75rem
    }
    .pc- {
        display: none!important
    }
}

.mobile- {
    display: none
}

.header {
    position: fixed;
    height: 6.25rem;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 3.75rem;
    background: #fff;
    z-index: 100;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-bottom: 1px solid #f4f4f4;
    transition: all .1s ease-in
}

.header.opacity-header {
    background: hsla(0, 0%, 100%, .5);
    border-bottom: 1px solid transparent;
    transition: all .3s ease-in-out
}

.header.opacity-header.active {
    background: #fff
}

.header.nav-hover {
    background: #fff;
    border-bottom: 1px solid #f4f4f4
}

.header .header-logo,
.header .header-oper {
    width: auto
}

.header .header-logo {
    position: absolute;
    left: 3.75rem;
    top: 50%;
    transform: translateY(-50%)
}

.header .header-logo img {
    width: 6.875rem
}

.header .header-oper {
    position: absolute;
    right: 3.75rem;
    top: 50%;
    transform: translateY(-50%);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    align-items: center
}

.header .header-oper .aunon {
    font-size: 1.25rem;
    color: #666
}

.header .header-oper .header-oper-item {
    position: relative;
    height: 6.25rem;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-left: .65rem
}

.header .header-oper .header-oper-item,
.header .header-oper .header-oper-item span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.header .header-oper .header-oper-item span {
    font-size: .875rem;
    color: #666;
    letter-spacing: 0;
    padding-top: .1rem;
    margin-left: .375rem
}

.header .header-oper .header-oper-item span .line {
    display: inline-block;
    height: .75rem;
    margin: 0 .375rem;
    transform: rotate(15deg);
    border-left: .0625rem solid #666
}

.header .header-oper .header-oper-item.language {
    cursor: pointer
}

.header .header-oper .header-oper-item.language span {
    color: #999
}

.header .header-oper .header-oper-item.language.drop .language-list {
    display: block
}

.header .header-oper .header-oper-item .language-list {
    position: absolute;
    width: 5.5rem;
    left: 50%;
    transform: translateX(-50%);
    top: 6.8rem;
    background: #fff;
    box-shadow: 0 2px 10px 0 hsla(0, 1%, 41%, .1);
    padding: .625rem 0;
    display: none
}

.header .header-oper .header-oper-item .language-list .arrow-up {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    top: -1.5rem;
    font-size: 2.5rem;
    z-index: 999
}

.header .header-oper .header-oper-item .language-list .language-item {
    font-size: 1rem;
    line-height: 2.5rem;
    text-align: center;
    font-family: Roboto;
    color: #333
}

.header .header-oper .header-oper-item .language-list .language-item:hover {
    background: #f0f0f0;
    cursor: pointer
}

.header .header-oper .header-oper-item .language-list .language-item.check {
    color: #8c8984
}

.header .header-oper .search-item {
    position: relative;
    cursor: pointer
}

.header .header-oper .search-item input {
    display: none;
    width: 15rem;
    height: 2.265rem;
    padding: .3675rem .5rem;
    background: #f9f9f9;
    font-size: 1rem
}

.header .header-nav {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 80rem;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 10rem
}

.header .header-nav .nav-item {
    font-size: 1.25rem;
    color: #333;
    margin: 0 1.25rem
}

.header .header-nav .nav-item.active {
    font-weight: 600
}

.header .header-nav .nav-search {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.header .header-nav .nav-search .search-inner {
    position: relative;
    width: 100%;
    height: 6.25rem;
    background: #fff;
    font-size: 1rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center
}

.header .header-nav .nav-search .search-inner input {
    height: 3.25rem;
    line-height: 3.25rem;
    -ms-flex: 1;
    flex: 1;
    background: transparent;
    box-shadow: none;
    padding: 1.5rem 4rem;
    font-size: 1.25rem
}

.header .header-nav .nav-search .search-inner i {
    position: absolute;
    font-size: 1.25rem;
    line-height: 3rem;
    cursor: pointer;
    color: #666;
    top: 50%;
    transform: translateY(-50%)
}

.header .header-nav .nav-search .search-inner i.aunonseach {
    left: 1rem
}

.header .header-nav .nav-search .search-inner i.aunonclose {
    right: 1rem
}

.header.searching {
    background-color: #fff!important
}

.header.searching .header-nav .nav-search {
    display: -ms-flexbox;
    display: flex
}

.header.searching .header-oper {
    display: none
}

.autocomplete-mask {
    position: fixed;
    top: 6.25rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 9998;
    display: none
}

.autocomplete-suggestions {
    background: #fff;
    overflow: auto;
    padding: .65rem 0
}

.autocomplete-suggestions .autocomplete-suggestion {
    font-size: 1.125rem;
    padding: .85rem 4rem;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 300
}

.autocomplete-suggestions .autocomplete-selected {
    background: #f0f0f0
}

.autocomplete-suggestions .autocomplete-suggestions strong {
    font-weight: 400;
    color: #39f
}

.autocomplete-suggestions .autocomplete-group {
    padding: 2px 5px
}

.autocomplete-suggestions .autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000
}

@media screen and (max-width:1560px) {
    .header .header-nav .nav-item {
        margin: 0 1.65rem
    }
    .header .header-oper .header-oper-item {
        margin-left: .75rem
    }
    .header .header-oper .header-oper-item span {
        font-size: .9375rem
    }
}

@media screen and (max-width:1440px) {
    .header .header-nav .nav-item {
        margin: 0 .875rem
    }
    .header .header-oper .header-oper-item {
        margin-left: .65rem
    }
    .header .header-oper .header-oper-item span {
        margin-left: .125rem;
        font-size: .9275rem
    }
}

@media screen and (max-width:1370px) {
    .header .header-logo {
        left: 2rem
    }
    .header .header-oper {
        right: 2rem
    }
    .header .header-oper .header-oper-item {
        margin-left: .35rem
    }
    .header .header-nav {
        width: 75rem
    }
    .header .header-nav .nav-item {
        margin: 0 .875rem
    }
}

@media screen and (max-width:1280px) {
    .header .header-nav {
        width: 62.5rem
    }
    .header .header-nav .nav-item {
        margin: 0 1.1rem
    }
    .header .header-oper .header-oper-item {
        margin-left: 1rem
    }
    .header .header-oper .header-oper-item span {
        display: none
    }
}

@media screen and (max-width:1200px) {
    .header {
        padding: 0 1.25rem
    }
    .header .header-logo {
        width: 16rem
    }
    .header .header-oper .header-oper-item span {
        display: none
    }
    .header .header-nav .nav-item {
        margin: 0 1rem
    }
}

@media screen and (max-width:1024px) {
    .header .header-nav .nav-item {
        margin: 0 1rem
    }
    .header-oper .header-oper-item span {
        display: none
    }
}

@media screen and (max-width:800px) {
    .mobile- {
        display: block
    }
    .header {
        height: 3.25rem;
        background: #fff
    }
    .header .pc- {
        display: none
    }
    .header .menu-icon {
        width: 3.75rem;
        height: 3.25rem;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        cursor: pointer;
        position: absolute;
        -ms-flex-pack: center;
        justify-content: center;
        top: 0;
        left: 0
    }
    .header .menu-icon .aunon {
        font-size: 1.25rem
    }
    .header .header-logo {
        left: 50%;
        transform: translate(-50%, -50%);
        -ms-flex: 1;
        flex: 1;
        text-align: center
    }
    .header .header-logo img {
        width: 4.25rem
    }
    .header .header-oper {
        width: auto;
        height: 3.25rem;
        position: absolute;
        top: 50%;
        right: 1.125rem
    }
    .header .header-oper .header-oper-item {
        height: 3.25rem
    }
    .header .header-oper .header-oper-item .aunon {
        font-size: 1.25rem;
        color: #000
    }
}

.pop-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 99;
    background: #fff;
    z-index: 9999;
    display: none
}

.pop-container .pop-header {
    position: relative;
    height: 6.25rem;
    padding: 0 3.75rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #f4f4f4
}

.pop-container .pop-header .pop-logo,
.pop-container .pop-header .pop-logo img {
    width: 6.875rem
}

.pop-container .pop-header .pop-oper {
    position: absolute;
    width: 6.875rem;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%)
}

.pop-container .pop-header .pop-oper .close-pop-model {
    height: 2.5rem;
    width: 2.5rem;
    text-align: center;
    line-height: 2.5rem;
    font-size: 1.25rem;
    cursor: pointer
}

.pop-container .pop-header .pop-search {
    position: relative;
    -ms-flex: 1;
    flex: 1;
    height: 3rem
}

.pop-container .pop-header .pop-search .pop-search-inner {
    position: relative;
    width: 60%;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 0 .5rem
}

.pop-container .pop-header .pop-search .pop-search-inner input {
    display: block;
    height: 3rem;
    line-height: 3rem;
    background: transparent;
    width: 100%
}

.pop-container .pop-header .pop-search .pop-search-inner .aunon {
    position: absolute;
    right: .5rem;
    font-size: 1.25rem;
    top: 50%;
    transform: translateY(-50%)
}

.pop-container .pop-content {
    padding: 1.25rem
}

.pop-container .pop-content .search-wraper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    padding: .4375rem 0;
    border-bottom: 1px solid #a9a5a0
}

.pop-container .pop-content .search-wraper .aunon {
    color: #000;
    font-size: 1.125rem;
    margin-right: .875rem;
    cursor: pointer
}

.pop-container .pop-content .search-wraper input {
    width: 75vw;
    -ms-flex: 1;
    flex: 1;
    background: transparent;
    font-size: 1rem;
    line-height: 1.375rem;
    font-family: Roboto;
    color: #000;
    font-weight: 500
}

.pop-container .pop-content .quick-links {
    padding: 1.25rem
}

.pop-container .pop-content .quick-links a {
    display: block;
    line-height: 1.625;
    padding: .625rem 0;
    font-size: 1rem;
    color: #666
}

@media screen and (max-width:1200px) {
    .pop-container .pop-header {
        padding: 0 1.25rem
    }
}

@media screen and (max-width:800px) {
    .pop-container .pop-header {
        height: 3.25rem
    }
    .pop-container .pop-header .pop-logo,
    .pop-container .pop-header .pop-logo img {
        width: 4.25rem
    }
    .pop-container .pop-header .pop-oper {
        width: 1.25rem
    }
    .pop-container .pop-header .pop-oper .close-pop-model {
        font-size: 1rem;
        height: 1.5rem;
        width: 1.5rem;
        line-height: 1.5rem
    }
    .pop-container .pop-header .pop-search {
        height: 2rem
    }
    .pop-container .pop-header .pop-search .pop-search-inner input {
        height: 2rem;
        line-height: 2rem
    }
    .pop-container .pop-header .pop-search .pop-search-inner .aunon {
        font-size: 1rem
    }
}

@media screen and (max-width:500px) {
    .pop-container .pop-header .pop-oper {
        width: 1.25rem
    }
    .pop-container .pop-header .pop-search .pop-search-inner {
        width: 70%
    }
}

.mobile-menu {
    position: fixed;
    width: 100vw;
    top: 0;
    left: -100vw;
    bottom: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, .3);
    z-index: 999
}

.mobile-menu .mobile-menu-container {
    width: 90vw;
    height: 100vh;
    overflow: hidden;
    background: #fff
}

.mobile-menu .mobile-menu-container .mobile-menu-header {
    height: 3.25rem;
    padding: 0 1.25rem
}

.mobile-menu .mobile-menu-container .mobile-menu-header .menu-icon {
    height: 3.25rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

.mobile-menu .mobile-menu-container .mobile-menu-header .menu-icon .aunon {
    font-size: 1.25rem
}

.mobile-menu .mobile-menu-container .mobile-menu-content {
    padding: 0 1.25rem;
    height: calc(100% - 3.25rem);
    overflow: auto
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item {
    display: block;
    border-bottom: .0625rem solid #f7f7f6
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-title {
    display: block;
    width: 100%;
    height: 3.2rem;
    position: relative;
    box-sizing: border-box;
    cursor: pointer
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-title span {
    font-size: 1rem;
    color: #333;
    line-height: 3.25rem;
    font-weight: 500
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-title i {
    position: absolute;
    display: block;
    top: 50%;
    right: 0;
    width: .625rem;
    height: .625rem;
    transform: translateY(-50%)
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-title i.shrink:after,
.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-title i.shrink:before {
    content: "";
    background: #555;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-title i.shrink:before {
    width: .625rem;
    height: .0625rem
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-title i.shrink:after {
    width: .0625rem;
    height: .625rem
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-title.current i:after {
    opacity: 0
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-title i.arrow-right {
    margin-right: .125rem
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-title i.arrow-right:after {
    content: "";
    position: absolute;
    width: .425rem;
    height: .425rem;
    left: 50%;
    top: 50%;
    border-width: .0625rem .0625rem 0 0;
    border-color: rgba(0, 0, 0, .65);
    border-style: solid;
    transform: translate(-50%, -50%) rotate(45deg)
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-content {
    display: none;
    padding: 0 0 .5rem 1.25rem
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-content a {
    display: block;
    width: 100%;
    line-height: 2.25rem;
    font-size: .9375rem;
    color: #333
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-content .menu-comtent-inner {
    margin-left: -1.25rem;
    padding: .5rem 0
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-content .menu-comtent-inner .inner-photo img {
    width: 100%
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-content .menu-comtent-inner a {
    position: relative;
    background: #f9f9f9;
    height: 3.25rem;
    padding: 0 1.25rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    width: auto
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-content .menu-comtent-inner a span {
    font-size: .9375rem;
    font-family: Roboto;
    color: #333;
    line-height: 1rem
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-content .menu-comtent-inner a i.arrow-right {
    position: absolute;
    display: block;
    top: 50%;
    right: 1.25rem;
    width: .75rem;
    height: .75rem;
    transform: translateY(-50%)
}

.mobile-menu .mobile-menu-container .mobile-menu-content .menu-item .menu-content .menu-comtent-inner a i.arrow-right:after {
    content: "";
    position: absolute;
    width: .325rem;
    height: .325rem;
    left: 50%;
    top: 50%;
    border-width: .15rem .15rem 0 0;
    border-color: #555;
    border-style: solid;
    transform: translate(-50%, -50%) rotate(45deg)
}

.mobile-menu .mobile-menu-container .mobile-menu-content .sub-menu-item {
    display: block
}

.mobile-menu .mobile-menu-container .mobile-menu-content .sub-menu-item .sub-menu-title {
    display: block;
    width: 100%;
    height: 2.75rem;
    position: relative;
    box-sizing: border-box;
    cursor: pointer
}

.mobile-menu .mobile-menu-container .mobile-menu-content .sub-menu-item .sub-menu-title span {
    font-size: .9375rem;
    color: #333;
    line-height: 2.75rem
}

.mobile-menu .mobile-menu-container .mobile-menu-content .sub-menu-item .sub-menu-content {
    display: none;
    padding-left: 1.25rem
}

.mobile-menu .mobile-menu-container .mobile-menu-content .sub-menu-item .sub-menu-content a {
    display: block;
    width: 100%;
    height: 2.15rem;
    line-height: 2.15rem;
    font-size: .875rem;
    color: #666
}

.model-mesk {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: -999;
    display: none;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.model-mesk.pop-model {
    display: -ms-flexbox;
    display: flex;
    z-index: 999;
    background: rgba(0, 0, 0, .3)
}

.model-mesk .model-container {
    width: 32.5rem;
    height: 33.125rem;
    background: #fff
}

.model-mesk .model-container.success-container {
    height: 29.125rem
}

.model-mesk .model-container .model-header {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 4rem 0 2.8125rem
}

.model-mesk .model-container .model-header .model-title {
    font-size: 2.375rem;
    font-family: Roboto;
    color: #000;
    font-weight: 500
}

.model-mesk .model-container .model-header .close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    height: 2.5rem;
    width: 2.5rem;
    text-align: center;
    line-height: 2.5rem;
    font-size: 1rem;
    cursor: pointer
}

.model-mesk .model-container .model-content {
    height: auto;
    padding: 0 5rem
}

.model-mesk .model-container .model-content .forgot-form,
.model-mesk .model-container .model-content .success-form {
    display: none
}

.model-mesk .model-container .model-content .form-item {
    position: relative;
    height: auto;
    padding-bottom: 1.75rem
}

.model-mesk .model-container .model-content .form-item.pb16 {
    padding-bottom: 1rem
}

.model-mesk .model-container .model-content .form-item.pb25 {
    padding-bottom: 1.5625rem
}

.model-mesk .model-container .model-content .form-item .form-label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.model-mesk .model-container .model-content .form-item .form-label .form-link,
.model-mesk .model-container .model-content .form-item .form-label .form-text {
    font-family: Roboto;
    color: #000;
    font-size: 1.125rem;
    margin-bottom: .625rem
}

.model-mesk .model-container .model-content .form-item .form-label .form-text {
    color: #000
}

.model-mesk .model-container .model-content .form-item .form-label .form-link {
    color: #da251c;
    cursor: pointer;
    font-size: .875rem
}

.model-mesk .model-container .model-content .form-item .form-control {
    height: 3rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    border: 1px solid #ccc;
    overflow: hidden
}

.model-mesk .model-container .model-content .form-item .form-control input {
    width: 100%;
    height: 1.9375rem;
    padding: .5rem 1rem;
    font-size: 1.125rem;
    font-weight: 300
}

.model-mesk .model-container .model-content .form-item .form-error {
    position: absolute;
    font-size: .75rem;
    color: red;
    bottom: .5rem;
    left: 0
}

.model-mesk .model-container .model-content .form-item .forgot-success,
.model-mesk .model-container .model-content .form-item .forgot-title {
    font-size: 1.25rem;
    font-family: Roboto;
    color: #000;
    font-weight: 500
}

.model-mesk .model-container .model-content .form-item .forgot-title {
    padding: 0 0 .9375rem;
    border-bottom: 1px solid #f4f3f2;
    font-weight: 500
}

.model-mesk .model-container .model-content .form-item .forgot-success {
    padding-top: .9375rem
}

.model-mesk .model-container .model-content .form-item .forgot-success .aunon {
    color: #000;
    margin-right: .625rem
}

.model-mesk .model-container .model-content .form-item .forgot-desc {
    font-size: 1.125rem;
    font-family: Roboto;
    color: #999;
    line-height: 1.75rem;
    padding: .875rem 0 .4375rem
}

.model-mesk .model-container .model-content .form-item .login-btn,
.model-mesk .model-container .model-content .form-item .send-btn {
    width: 100%;
    height: 3.25rem;
    line-height: 3.35rem;
    font-size: 1.125rem;
    font-family: Roboto;
    color: #fff;
    background: #da251c;
    cursor: pointer
}

.model-mesk .model-container .model-content .form-note {
    text-align: center;
    font-size: .875rem;
    font-family: Roboto;
    color: #9999;
    line-height: 1.125rem;
    padding-top: -.5rem
}

.model-mesk .model-container .model-content .form-note a,
.model-mesk .model-container .model-content .form-note span {
    color: #da251c;
    cursor: pointer
}

@media screen and (max-width:800px) {
    .model-mesk {
        top: 3.25rem;
        border-top: 1px solid #f4f4f4
    }
    .model-mesk .model-container {
        height: 100%;
        width: 100%
    }
    .model-mesk .model-container.success-container {
        height: 100%
    }
    .model-mesk .model-container .model-header {
        padding: 2.8125rem 0 2.1875rem
    }
    .model-mesk .model-container .model-header .model-title {
        font-size: 1.625rem;
        font-family: Roboto;
        color: #000;
        font-weight: 500
    }
    .model-mesk .model-container .model-header .close-btn {
        position: absolute;
        top: -3.25rem;
        right: 0;
        background: #fff;
        width: 3.25rem;
        height: 3.2rem;
        line-height: 3.25rem
    }
    .model-mesk .model-container .model-content {
        padding: 0 1.125rem
    }
    .model-mesk .model-container .model-content .form-item.pb25 {
        padding-bottom: .9375rem
    }
    .model-mesk .model-container .model-content .form-item .form-label .form-text {
        font-size: 1rem;
        font-weight: 400
    }
    .model-mesk .model-container .model-content .form-item .form-control {
        height: 2.625rem;
        border-color: #e8e7e4
    }
    .model-mesk .model-container .model-content .form-item .form-control input {
        height: 1.625rem;
        font-size: .75rem
    }
    .model-mesk .model-container .model-content .form-item .forgot-desc,
    .model-mesk .model-container .model-content .form-item .forgot-success,
    .model-mesk .model-container .model-content .form-item .forgot-title {
        font-size: 1rem
    }
}

.navigation-down {
    position: fixed;
    top: 6.25rem;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 99;
    background: rgba(0, 0, 0, .2);
    display: none
}

.navigation-down .nav-down-menu {
    width: 100%;
    height: 28.75rem;
    margin: 0;
    background: #fff;
    display: none;
    position: absolute;
    top: 0
}

.navigation-down .nav-down-menu .navigation-down-inner {
    width: 85rem;
    max-width: 92%;
    position: relative;
    padding: 2.5rem 0;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.navigation-down .nav-down-menu .navigation-down-inner .inner-4 {
    width: 23.75rem
}

.navigation-down .nav-down-menu .navigation-down-inner .inner-4 img {
    width: 100%
}

.navigation-down .nav-down-menu .navigation-down-inner .nav-inner-title {
    display: block;
    font-size: 1.25rem;
    font-family: Roboto;
    color: #000;
    margin-bottom: 1.675rem;
    font-weight: 500
}

.navigation-down .nav-down-menu .navigation-down-inner .photo-title {
    margin-top: 1.25rem;
    margin-bottom: 0
}

.navigation-down .nav-down-menu .navigation-down-inner .nav-inner-link {
    display: block;
    font-size: 1.125rem;
    font-family: Roboto;
    color: #666;
    line-height: 2.625rem
}

.navigation-down .nav-down-menu .navigation-down-inner .photo-link-title {
    display: block;
    font-size: 1rem;
    font-family: Roboto;
    color: #555;
    height: 1.25rem;
    margin-top: .75rem
}

.navigation-down .nav-down-menu .navigation-down-inner .nav-inner-item {
    width: 25.5rem !important;
}

.navigation-down .nav-down-menu .navigation-down-inner .nav-inner-item ul {
    display: flex;
    flex-wrap: wrap;
}

.navigation-down .nav-down-menu .navigation-down-inner .nav-inner-item ul li {
    width: 12.75rem;
}

.navigation-down #solution .navigation-down-inner .nav-inner-item ul li:nth-of-type(1) {
    width: 100%;
}

.navigation-down .nav-down-menu .navigation-down-inner .nav-inner-item a:hover .nav-inner-link,
.navigation-down .nav-down-menu .navigation-down-inner .nav-inner-item a:hover .photo-link-title {
    color: #72bd2f
}

#resources .nav-inner-item:first-child {
    width: 17.3125rem
}

#resources .nav-inner-item:nth-child(2) {
    width: 25.5rem
}

#resources .nav-inner-item:nth-child(2) li {
    display: inline-block;
    float: left;
    width: 12.75rem
}

#resources .nav-inner-item:nth-child(2) li:first-child {
    width: 25.5rem
}

.product-container .product-introduce .type-container .colors-and-materials .accordion .accordion-content .c-m-item .desc {
    word-break: break-all;
}

.video-js button {
    background: none;
    border: none;
    color: inherit;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    text-transform: none;
    text-decoration: none;
    transition: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.video-js .vjs-big-play-button {
    font-size: 3em;
    line-height: 2.5em;
    height: 2.5em;
    width: 2.5em;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    cursor: pointer;
    opacity: 1;
    border: .06666em solid #fff;
    background-color: #2b333f;
    background-color: rgba(43, 51, 63, .7);
    border-radius: 50%;
    transition: all .4s;
}

.awards-banner {
    padding: 5rem 0 3.125rem;
    text-align: center;
}

.awards-banner .banner_tit {
    line-height: 1;
    font-weight: 600;
}

.awards-banner .banner_desc {
    padding: 1rem 0 2.5rem;
    line-height: 1.6;
    max-width: 826px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.more_btn {
    width: 15rem;
    height: 3.25rem;
    margin: 2rem auto 1rem;
    line-height: 3.25rem;
    border: 1px solid #da251c;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: .875rem;
    font-family: "Roboto";
    background-color: #da251c;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.more_btn span {
    margin-top: .2rem;
}

.more_btn i {
    font-weight: 500;
    margin-left: .5rem;
}

.showMore1 {
    width: 180px;
    height: 36px;
    margin: 1rem auto 0;
    line-height: 36px;
    border: 1px solid #da251c;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: .875rem;
    font-family: "Roboto";
    color: #da251c;
    text-align: center;
    cursor: pointer;
}

.flexslider-container .flexslider-video {
    position: relative;
    height: 40rem;
    width: 100%;
}

.product-flexslider {
    width: 70rem;
    max-width: 92vw;
    margin-left: auto;
    margin-right: auto;
}

.bread-crumbs {
    position: relative;
    z-index: 3;
}

.product-container .product-swiper {
    margin-bottom: 4.125rem;
}

.product-container .product-wraper .product-header .title {
    font-weight: 600;
    text-transform: uppercase;
}

.product-container .tabs-content .two_title {
    height: auto;
    overflow: hidden;
    padding: 40px 3.125rem;
}

.product-container .tabs-content .two_title ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.product-container .tabs-content .two_title ul li {
    font-size: 1rem;
    font-family: "Roboto";
    font-weight: 500;
    color: #333333;
    margin-right: 2rem;
    margin-bottom: 0.7rem;
    position: relative;
    cursor: pointer;
}

.product-container .tabs-content .two_title ul li::after {
    content: '';
    position: absolute;
    top: -0.1875rem;
    right: -1.0625rem;
    width: .0625rem;
    height: 1.375rem;
    background: #999999;
}

.product-container .tabs-content .two_title ul li:last-child::after {
    display: none;
}

.product-container .tabs-content .two_title ul .list_active {
    color: #6FBA2C;
}

@media(max-width: 800px) {
    .product-banner-tabs .tabs-item {
        height: auto !important;
        padding: 10px 0 !important;
        line-height: 1.5 !important;
    }
    #zoom .content {
        width: 100vw !important;
        max-width: 100vw !important;
    }
    .product-container .product-introduce .designer-container .designer-inner .designer-intro .desc {
        -webkit-line-clamp: 100;
    }
    .flexslider-container .flexslider-video {
        height: 12.1875rem;
        overflow: hidden;
    }
    .product-banner-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
    .video-js .vjs-big-play-button {
        width: 2em;
        height: 2em;
        line-height: 2em;
    }
    .product-banner-tabs .tabs-item {
        position: relative;
        font-size: 15px;
    }
    .product-banner-tabs .tabs-item:after {
        width: 1px;
        height: 32px;
        content: "";
        display: block;
        top: 8px;
        right: 0;
        background: #F2F2F2;
        position: absolute;
    }
    .product-banner-tabs .tabs-item:last-child:after {
        display: none;
    }
    /* .product-banner-tabs .tabs-item {
		flex: 0 0 auto;
		margin: 0 .5em;
	} */
    .product-container .tabs-content .two_title {
        padding: 25px 1.125rem;
    }
    .product-container .tabs-content .two_title ul li {
        font-size: 0.8rem;
        font-family: "Roboto";
        font-weight: 500;
        color: #333333;
        margin-right: 0.6rem;
        margin-bottom: 0.7rem;
        position: relative;
    }
    .product-container .tabs-content .two_title ul li::after {
        content: '';
        position: absolute;
        top: -0.0875rem;
        right: -0.3rem;
        width: .0625rem;
        height: 0.875rem;
        background: #999999;
    }
    .product-container .tabs-content .two_title ul li:last-child::after {
        display: none;
    }
}