/*!
 * 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
    }
}


@keyframes hvr-ripple-out {
    to {
        top: -12px;
        right: -12px;
        bottom: -12px;
        left: -12px;
        opacity: 0
    }
}

.hvr-ripple-out {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative
}

.hvr-ripple-out:before {
    content: "";
    position: absolute;
    border: 6px solid #e1e1e1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    animation-duration: 1s
}

.hvr-ripple-out:active:before,
.hvr-ripple-out:focus:before,
.hvr-ripple-out:hover:before {
    animation-name: hvr-ripple-out
}

@keyframes hvr-ripple-in {
    to {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        opacity: 1
    }
}

.hvr-ripple-in {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative
}

.hvr-ripple-in:before {
    content: "";
    position: absolute;
    border: 4px solid #e1e1e1;
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
    animation-duration: 1s
}

.hvr-ripple-in:active:before,
.hvr-ripple-in:focus:before,
.hvr-ripple-in:hover:before {
    animation-name: hvr-ripple-in
}

.hvr-float-shadow {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    transition-duration: .3s;
    transition-property: transform
}

.hvr-float-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .35) 0, transparent 80%);
    transition-duration: .3s;
    transition-property: transform, opacity
}

.hvr-float-shadow:active,
.hvr-float-shadow:focus,
.hvr-float-shadow:hover {
    transform: translateY(-5px);
    opacity: .8
}

.hvr-float-shadow:active:before,
.hvr-float-shadow:focus:before,
.hvr-float-shadow:hover:before {
    opacity: 1;
    transform: translateY(5px)
}

.hvr-float {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out
}

.hvr-float:active,
.hvr-float:focus,
.hvr-float:hover {
    transform: translateY(-8px)
}

.hvr-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    transition-property: color;
    transition-duration: .5s
}

.hvr-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #66b821;
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition-property: transform;
    transition-duration: .5s;
    transition-timing-function: ease-out
}

.hvr-bounce-to-right:active,
.hvr-bounce-to-right:focus,
.hvr-bounce-to-right:hover {
    color: #fff
}

.hvr-bounce-to-right:active:before,
.hvr-bounce-to-right:focus:before,
.hvr-bounce-to-right:hover:before {
    transform: scaleX(1);
    transition-timing-function: cubic-bezier(.52, 1.64, .37, .66)
}

.hvr-grow-shadow {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    transition-duration: .3s;
    transition-property: box-shadow, transform
}

.hvr-grow-shadow:active,
.hvr-grow-shadow:focus,
.hvr-grow-shadow:hover {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, .5);
    transform: scale(1.1)
}

@media screen and (max-width:800px) {
    .hvr-float-shadow:active,
    .hvr-float-shadow:active:before,
    .hvr-float-shadow:focus,
    .hvr-float-shadow:focus:before,
    .hvr-float-shadow:hover:before,
    hvr-float-shadow:hover {
        transform: none;
        opacity: 1
    }
    .hvr-float:active,
    .hvr-float:focus,
    .hvr-float:hover {
        transform: none
    }
    .hvr-bounce-to-right:active,
    .hvr-bounce-to-right:focus,
    .hvr-bounce-to-right:hover {
        color: #fff
    }
    .hvr-bounce-to-right:active:before,
    .hvr-bounce-to-right:focus:before,
    .hvr-bounce-to-right:hover:before {
        transform: none
    }
    .hvr-grow-shadow:active,
    .hvr-grow-shadow:focus,
    .hvr-grow-shadow:hover {
        box-shadow: 0;
        transform: none
    }
}

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 {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow-x: hidden;
    background: #fff
}

body,
button,
input,
textarea {
    font-family: -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
}

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!important
}

.text-wrap-2 {
    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
}

.pc- {
    display: block!important
}

.pc-flex {
    display: -ms-flexbox!important;
    display: flex!important
}

.pc-inline {
    display: inline-block!important
}

.mobile-,
.mobile-flex,
.mobile-inline {
    display: none!important
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

.page.bg-grey {
    background: #f9f9f9
}

.flex-center {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.wrap {
    width: 100%
}

.wrap .container {
    width: 81.4%;
    max-width: 1560px;
    margin: 0 auto
}

.bg-grey {
    background: #4e4e4e
}

@keyframes fadeInUpMini {
    0% {
        opacity: 0;
        transform: translate3d(0, 30%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInUpMini {
    animation-name: fadeInUpMini
}

@keyframes zoomInMini {
    0% {
        opacity: 0;
        transform: scale3d(.8, .8, .8)
    }
    50% {
        opacity: 1
    }
}

.zoomInMini {
    animation-name: zoomInMini
}

@keyframes fadeInLeftMini {
    0% {
        opacity: 0;
        transform: translate3d(-15%, 15%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeftMini {
    animation-name: fadeInLeftMini
}

@keyframes fadeInRightMini {
    0% {
        opacity: 0;
        transform: translate3d(15%, 15%, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRightMini {
    animation-name: fadeInRightMini
}

@keyframes fadeInLeft2 {
    0% {
        opacity: 0;
        transform: translate3d(-15%, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInLeft2 {
    animation-name: fadeInLeft2
}

@keyframes fadeInRight2 {
    0% {
        opacity: 0;
        transform: translate3d(15%, 0, 0)
    }
    to {
        opacity: 1;
        transform: none
    }
}

.fadeInRight2 {
    animation-name: fadeInRight2
}

.banner-text {
    position: absolute
}

.banner-text.black .banner-title {
    color: #000
}

.banner-text.black .banner-desc {
    color: #7a7a7a
}

.banner-text .banner-title {
    font-size: 2.5rem;
    line-height: 1.4;
    color: #fff
}

.banner-text .banner-desc {
    font-size: 1.25rem;
    margin-top: 10px;
    color: #fff;
    font-weight: 200
}

.fit-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.ui-tabs {
    width: 100%;
    overflow-x: auto;
    padding: 30px 0 0;
    border-bottom: 1px solid #eee;
    overflow-y: hidden
}

.ui-tabs::-webkit-scrollbar {
    display: none;
    width: 0
}

.ui-tabs .main {
    width: auto;
    white-space: nowrap
}

.ui-tabs .ui-tab {
    display: inline-block;
    margin-right: 3.645vw;
    width: auto;
    cursor: pointer;
    padding-bottom: 30px;
    position: relative;
    transition: opacity .2s ease-in-out;
    box-sizing: border-box
}

.ui-tabs .ui-tab span {
    font-size: 1rem;
    color: #777;
    letter-spacing: 0;
    text-align: center
}

.ui-tabs .ui-tab.active {
    border-bottom: 2px solid #66b821
}

.ui-tabs .ui-tab.active span {
    font-size: 1rem;
    color: #282828;
    letter-spacing: 0;
    text-align: center
}

.ui-tabs .ui-tab:last-child {
    margin-right: 0
}

.ui-tabs .ui-tab:hover {
    opacity: .7
}

.sec-header.fixed {
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 5
}

.sec-header {
    width: 100%;
    height: 80px;
    background: #fff
}

.sec-header .container {
    height: 80px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.sec-header .title {
    font-size: 1.25rem;
    color: #000;
    letter-spacing: 0;
    font-weight: 500;
    margin-left: 50px
}

.sec-header .case__tabs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.sec-header .case__tabs .case-tab {
    display: inline-block;
    margin-right: 50px;
    font-size: .875rem;
    color: #4e4e4e;
    cursor: pointer;
    transition: opacity .3s ease-in-out;
    position: relative
}

.sec-header .case__tabs .case-tab:hover {
    opacity: .7
}

.sec-header .case__tabs .case-tab.active {
    color: #66b821;
    cursor: default
}

.sec-header .case__tabs .case-tab.active:hover {
    opacity: 1
}

.sec-header .case__tabs .case-tab-btn {
    background: #66b821;
    border-radius: 2px;
    font-size: .75rem;
    padding: 0 20px;
    height: 27px;
    cursor: pointer;
    line-height: 27px;
    color: #fff;
    transition: opacity .3s ease-in-out
}

.sec-header .case__tabs .case-tab-btn:hover {
    opacity: .7
}

.sec-header .case__tabs.is-line .case-tab.active:after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 1px;
    background: #66b821;
    bottom: -16px;
    left: 50%;
    transform: translate(-50%)
}

.search-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 222;
    background: #fff;
    display: none
}

.search-container .search-title .title {
    height: 90px;
    line-height: 90px;
    font-size: 1.375rem;
    color: #999;
    letter-spacing: 0
}

.search-container .search-list .search-item {
    height: 64px;
    margin: 8px 0
}

.search-container .search-list .search-item:nth-child(2n - 1) {
    background: #f9f9f9
}

.search-container .search-list .search-item:first-child {
    margin-top: 0
}

.search-container .search-list .search-item .main {
    height: 64px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.search-container .search-list .search-item .main .l1 {
    font-size: 1rem;
    color: #000;
    letter-spacing: 0;
    width: 10.78125vw;
    transition: all .3s ease-in-out
}

.search-container .search-list .search-item .main .l2 {
    font-size: .75rem;
    color: #92969d;
    letter-spacing: 0;
    width: 19vw;
    transition: all .3s ease-in-out
}

.search-container .search-list .search-item .main .l3 {
    width: 142px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: .875rem;
    color: #282828;
    transition: all .3s ease-in-out;
    border: 1px solid #999;
    box-sizing: border-box;
    border-radius: 4px;
    cursor: pointer
}

.search-container .search-list .search-item .main:hover .l1,
.search-container .search-list .search-item .main:hover .l2 {
    color: #66b821
}

.search-container .search-list .search-item .main:hover .l3 {
    color: #66b821;
    border-color: #66b821
}

.search-container .search__header {
    height: 100px;
    border-bottom: 1px solid #eee
}

.search-container .search__header .main {
    height: 100px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center
}

.search-container .search__header .search-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex: 1;
    flex: 1
}

.search-container .search__header .search-box .iconfont {
    color: 0
}

.search-container .search__header .search-box .search-input {
    height: 25px;
    line-height: 25px;
    font-size: 1.125rem;
    outline: 0;
    margin-left: 10px;
    width: 60%
}

.search-container .search__header .search-right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    text-align: right
}

.search-container .search__header .search-btn {
    display: -ms-flexbox;
    display: flex;
    width: 100px;
    height: 40px;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1rem;
    color: #fff;
    margin-right: 28px;
    background: #66b821;
    border-radius: 2px;
    cursor: pointer;
    transition: opacity .3s ease-in-out
}

.search-container .search__header .search-btn:hover {
    opacity: .7
}

.search-container .search__header .search-close {
    display: inline-block;
    width: 33px;
    height: 33px;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: #f9f9f9;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: opacity .3s ease-in-out
}

.search-container .search__header .search-close .iconfont {
    font-size: .75rem
}

.search-container .search__header .search-close:hover {
    opacity: .7
}

.search-container .main {
    width: 60.885vw;
    margin: 0 auto
}

.img-preview-container {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 19;
    background: rgba(0, 0, 0, .9)
}

.img-preview-container .preview-slide {
    width: 100vw;
    height: 100vh
}

.img-preview-container .preview-slide .preview-img {
    position: absolute;
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px
}

.img-preview-container .preview-close {
    position: absolute;
    right: 40px;
    top: 40px;
    cursor: pointer;
    outline: 0;
    transition: opacity .3s ease-in-out;
    z-index: 88
}

.img-preview-container .preview-close:hover {
    opacity: .7
}

.img-preview-container .preview-close .iconfont {
    color: #fff
}

.img-preview-container .preview-prev {
    position: absolute;
    left: 40px;
    top: 50%;
    cursor: pointer;
    outline: 0;
    transition: opacity .3s ease-in-out;
    transform: translateY(-50%);
    z-index: 88
}

.img-preview-container .preview-prev:hover {
    opacity: .7
}

.img-preview-container .preview-prev.swiper-button-disabled {
    display: none
}

.img-preview-container .preview-prev .iconfont {
    color: #fff
}

.img-preview-container .preview-next {
    position: absolute;
    right: 40px;
    top: 50%;
    cursor: pointer;
    outline: 0;
    transition: opacity .3s ease-in-out;
    transform: translateY(-50%);
    z-index: 88
}

.img-preview-container .preview-next.swiper-button-disabled {
    display: none
}

.img-preview-container .preview-next:hover {
    opacity: .7
}

.img-preview-container .preview-next .iconfont {
    color: #fff
}

.img-preview-container .prev-intro {
    width: 60vw;
    position: absolute;
    bottom: 40px;
    color: #fff;
    text-align: center;
    left: 20vw;
    font-size: 1rem
}

.ui-pagination {
    width: 100%;
    height: 12px;
    position: absolute;
    right: auto;
    top: auto;
    left: 0!important;
    bottom: -5vw!important;
    z-index: 4;
    text-align: center
}

.ui-pagination .swiper-pagination-bullet {
    width: 8px!important;
    height: 8px!important;
    border-radius: 4px;
    box-sizing: border-box;
    background: #d8d8d8;
    margin: 0 4px!important;
    position: relative;
    opacity: 1
}

.ui-pagination .swiper-pagination-bullet-active {
    background: #393939
}

.photo-container .swiper-slide {
    width: 100%!important
}

.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)
}

.ui-pageing {
    margin: 1.5625vw auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.ui-pageing .page-prev {
    color: #000;
    padding: 0 10px;
    margin: 0 10px;
    font-size: 1rem;
    cursor: pointer
}

.ui-pageing .page-prev:hover {
    opacity: .7
}

.ui-pageing .page-prev.hidden {
    color: #ccc
}

.ui-pageing .page-prev.hidden:hover {
    opacity: 1
}

.ui-pageing .page-next {
    color: #000;
    padding: 0 10px;
    margin: 0 10px;
    font-size: 1rem;
    cursor: pointer
}

.ui-pageing .page-next:hover {
    opacity: .7
}

.ui-pageing .page-next.hidden {
    color: #ccc
}

.ui-pageing .page-next.hidden:hover {
    opacity: 1
}

.ui-pageing .ui-page-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.ui-pageing .ui-page-content .page-input {
    padding: 0;
    height: 36px;
    line-height: 16px;
    box-sizing: border-box;
    font-size: 1rem;
    width: 32px;
    text-align: center;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #000
}

.ui-pageing .ui-page-content .rt {
    font-size: 1rem;
    margin: 0 10px;
    color: #aaa
}

.ui-pageing .ui-page-content .total-page {
    font-size: 1rem;
    color: #aaa
}

.vhidden {
    visibility: hidden
}

@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
    }
    .wrap {
        width: 100%
    }
    .wrap .container {
        width: 88%
    }
    .sec-header.fixed {
        top: 66px
    }
}

@media screen and (max-width:1200px) {
    html {
        font-size: 12px
    }
    .wrap {
        width: 100%
    }
    .wrap .container {
        width: 90%
    }
}

@media screen and (max-width:800px) {
    html {
        font-size: 16px
    }
    body {
        overflow-x: hidden
    }
    .pc-,
    .pc-flex,
    .pc-inline {
        display: none!important
    }
    .mobile- {
        display: block!important
    }
    .mobile-flex {
        display: -ms-flexbox!important;
        display: flex!important
    }
    .mobile-inline {
        display: inline-block!important
    }
    .ui-tabs {
        width: 100%;
        overflow-x: auto;
        padding: 0;
        background: #fff;
        box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .04);
        border-radius: 4px;
        font-size: 14px;
        color: #777;
        letter-spacing: 0
    }
    .ui-tabs .main {
        padding: 0 6.4vw
    }
    .ui-tabs .ui-tab {
        display: inline-block;
        margin-right: 38px;
        cursor: pointer;
        padding: 14px 0 12px;
        line-height: 20px;
        position: relative;
        box-sizing: border-box
    }
    .ui-tabs .ui-tab,
    .ui-tabs .ui-tab span {
        font-size: 14px;
        color: #777;
        letter-spacing: 0;
        text-align: center
    }
    .ui-tabs .ui-tab.active {
        border-bottom: none;
        position: relative
    }
    .ui-tabs .ui-tab.active span {
        font-size: 14px;
        color: #000;
        letter-spacing: 0;
        text-align: center
    }
    .ui-tabs .ui-tab.active:after {
        content: "";
        display: block;
        width: 32px;
        height: 2px;
        background: #66b821;
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translate(-50%);
        z-index: 3
    }
    .ui-tabs .ui-tab:last-child {
        margin-right: 6.4vw
    }
    .ui-tabs .ui-tab:hover {
        opacity: .7
    }
    .sec-header.fixed {
        top: 50px
    }
    .sec-header {
        height: 48px
    }
    .sec-header .container {
        height: 48px;
        padding: 0 4vw
    }
    .sec-header .title {
        font-family: PingFangSC-Medium;
        font-size: 16px;
        color: #282828;
        letter-spacing: 0;
        margin-left: 0
    }
    .sec-header .y-btn {
        width: 78px;
        height: 28px;
        border-radius: 4px;
        background: #66b821;
        text-align: center;
        font-size: 12px;
        color: #fff;
        line-height: 28px
    }
    .ui-pagination {
        width: 100%;
        height: 12px;
        position: absolute;
        right: auto;
        top: auto;
        left: 0!important;
        bottom: -5vw!important;
        z-index: 4;
        text-align: center
    }
    .ui-pagination .swiper-pagination-bullet {
        width: 6px!important;
        height: 6px!important;
        border-radius: 3px;
        box-sizing: border-box;
        background: #d8d8d8;
        margin: 0 4px!important;
        position: relative;
        opacity: 1
    }
    .ui-pagination .swiper-pagination-bullet-active {
        background: #393939
    }
    .photo-container .swiper-slide {
        width: 100%!important
    }
    .vhidden {
        display: none
    }
}

/*.header {*/
/*    width: 100%;*/
/*    height: 88px;*/
/*    background: transparent;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    z-index: 111;*/
/*    box-sizing: border-box;*/
/*    transition: background-color .6s ease-in-out, border .6s ease-in-out*/
/*}*/

/*.header .container {*/
/*    height: 55px;*/
/*    display: -ms-flexbox;*/
/*    -ms-flex-pack: justify;*/
/*    -ms-flex-align: center;*/
/*    align-items: flex-end;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    position: relative*/
/*}*/

/*.header .left-icon,*/
/*.header .right-icon {*/
/*    display: none*/
/*}*/

/*.header .brand {*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -ms-flex-align: end;*/
/*    align-items: flex-end;*/
/*    position: relative*/
/*}*/

/*.header .brand h1 {*/
/*    padding-left: 10px;*/
/*    border-left: 1px solid #fff;*/
/*    font-size: 1rem;*/
/*    margin-left: 14px;*/
/*    color: #fff;*/
/*    font-weight: 500*/
/*}*/

/*.header .navbar .nav-item a {*/
/*    color: #fff;*/
/*    margin-left: 50px;*/
/*    transition: all .2s ease-in-out*/
/*}*/

/*.header .navbar .nav-item a.active,*/
/*.header .navbar .nav-item a:hover {*/
/*    color: #66b821*/
/*}*/

/*.header .logo {*/
/*    opacity: 1*/
/*}*/

/*.header .logo,*/
/*.header .logo_green {*/
    /*width:109px;*/max-height:30px;
/*    transition: opacity .3s ease-in-out*/
/*}*/

/*.header .logo_green {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    opacity: 0*/
/*}*/

/*.header-height {*/
/*    width: 100%;*/
/*    height: 100px*/
/*}*/

/*.menu-box {*/
/*    display: none*/
/*}*/

/*.header.deep .logo {*/
/*    opacity: 0!important*/
/*}*/

/*.header.deep .logo_green {*/
/*    opacity: 1!important*/
/*}*/

/*.header.deep .brand h1 {*/
/*    border-left-color: #92969d;*/
/*    color: #92969d*/
/*}*/

/*.header.deep .navbar .nav-item a {*/
/*    color: #282828*/
/*}*/

/*.header.deep .navbar .nav-item a.active,*/
/*.header.deep .navbar .nav-item a:hover {*/
/*    color: #66b821*/
/*}*/

/*.header.grey .logo {*/
/*    opacity: 1!important*/
/*}*/

/*.header.grey .logo_green {*/
/*    opacity: 0!important*/
/*}*/

/*.header.current {*/
/*    background: #f1f1f1;*/
/*    border-bottom: 1px solid #eee*/
/*}*/

/*.header.current .logo {*/
/*    opacity: 0*/
/*}*/

/*.header.current .logo_green {*/
/*    position: absolute;*/
/*    opacity: 1*/
/*}*/

/*.header.current .brand {*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -ms-flex-align: end;*/
/*    align-items: flex-end;*/
/*    position: relative;*/
/*    filter: brightness(0);*/
/*}*/

/*.header.current .brand h1 {*/
/*    border-left-color: #92969d;*/
/*    color: #92969d*/
/*}*/

/*.header.current .navbar .nav-item a {*/
/*    color: #333;*/
/*}*/

/*.header.current .navbar .nav-item a.active,*/
/*.header.current .navbar .nav-item a:hover {*/
/*    color: #000;*/
/*}*/

/*.header.hide,*/
/*.mob-search-box {*/
/*    display: none*/
/*}*/

/*.header.fixed {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0*/
/*}*/

/*@media screen and (max-width:1440px) {*/
/*    .header,*/
/*    .header-height,*/
/*    .header .container {*/
/*        height: 66px*/
/*    }*/
/*}*/

/*@media screen and (max-width:1200px) {*/
/*    .header,*/
/*    .header-height,*/
/*    .header .container {*/
/*        height: 66px*/
/*    }*/
/*}*/
/*@media screen and (max-width:1050px) {*/
/*    .brand-title{*/
/*        display:none;*/
/*    }*/
/*}*/

/*@media screen and (max-width:800px) {*/
/*    .header,*/
/*    .header-height {*/
/*        height: 50px*/
/*    }*/
/*    .header {*/
/*        position: fixed;*/
/*        top: 0;*/
/*        left: 0*/
/*    }*/
/*    .header .container {*/
/*        height: 50px;*/
/*        width: 94vw*/
/*    }*/
/*    .header .navbar {*/
/*        display: none;*/
/*        position: absolute*/
/*    }*/
/*    .header .left-icon {*/
/*        width: 20px;*/
/*        height: 20px;*/
/*        position: relative;*/
/*        display: block;*/
/*        padding: 10px;*/
/*        left: 0;*/
/*        cursor: pointer*/
/*    }*/
/*    .header .left-icon span {*/
/*        display: block;*/
/*        width: 16px;*/
/*        height: 1px;*/
/*        border-radius: 1px;*/
/*        background: #fff;*/
/*        position: absolute;*/
/*        transform-origin: 0 0;*/
/*        transition: all .3s ease-in-out*/
/*    }*/
/*    .header .left-icon span:first-child {*/
/*        top: 13px;*/
/*        left: 12px*/
/*    }*/
/*    .header .left-icon span:nth-child(2) {*/
/*        top: 19px;*/
/*        left: 12px;*/
/*        opacity: 1*/
/*    }*/
/*    .header .left-icon span:last-child {*/
/*        top: 25px;*/
/*        left: 12px*/
/*    }*/
/*    .header .right-icon {*/
/*        width: 20px;*/
/*        height: 20px;*/
/*        display: -ms-flexbox;*/
/*        display: flex;*/
/*        -ms-flex-pack: center;*/
/*        justify-content: center;*/
/*        -ms-flex-align: center;*/
/*        align-items: center;*/
/*        color: #fff;*/
/*        padding: 10px;*/
/*        position: relative;*/
/*        right: 0;*/
/*        font-size: 18px;*/
/*        cursor: pointer*/
/*    }*/
/*    .header .right-icon .icon_close {*/
/*        display: none;*/
/*        font-size: 12px*/
/*    }*/
/*    .header .right-icon.current .icon_search {*/
/*        display: none*/
/*    }*/
/*    .header .right-icon.current .icon_close {*/
/*        display: block*/
/*    }*/
/*    .header .brand img {*/
/*        width: 68px;*/
/*        height: 18px*/
/*    }*/
/*    .header .brand h1 {*/
/*        font-size: 12px;*/
/*        color: #fff;*/
/*        margin-left: 8px*/
/*    }*/
/*    .header.current {*/
/*        border-bottom: none*/
/*    }*/
/*    .header.current .left-icon span {*/
/*        background-color: #282828*/
/*    }*/
/*    .header.current .right-icon {*/
/*        color: #282828*/
/*    }*/
/*    .header .left-icon.current span {*/
/*        background-color: #282828*/
/*    }*/
/*    .header .left-icon.current span:first-child {*/
/*        top: 12px;*/
/*        left: 13px;*/
/*        width: 21px;*/
/*        transform: rotate(45deg)*/
/*    }*/
/*    .header .left-icon.current span:nth-child(2) {*/
/*        opacity: 0*/
/*    }*/
/*    .header .left-icon.current span:last-child {*/
/*        top: 27px;*/
/*        width: 21px;*/
/*        transform: rotate(-45deg)*/
/*    }*/
/*    .header .left-icon.hide,*/
/*    .header .right-icon.hide {*/
/*        visibility: hidden*/
/*    }*/
/*    .menu-box {*/
/*        position: fixed;*/
/*        width: 100%;*/
/*        height: 100%;*/
/*        top: 0;*/
/*        left: 0;*/
/*        z-index: 106;*/
/*        background: #fff;*/
/*        overflow-y: auto*/
/*    }*/
/*    .menu-box .main {*/
/*        width: 86.68vw;*/
/*        margin: 60px auto 50px*/
/*    }*/
/*    .menu-box .menu-item {*/
/*        display: block;*/
/*        border-bottom: 1px solid #f1f1f1*/
/*    }*/
/*    .menu-box .menu-title {*/
/*        display: block;*/
/*        width: 100%;*/
/*        height: 55px;*/
/*        position: relative;*/
/*        box-sizing: border-box;*/
/*        cursor: pointer*/
/*    }*/
/*    .menu-box .menu-title span {*/
/*        font-size: 14px;*/
/*        color: #282828;*/
/*        line-height: 55px*/
/*    }*/
/*    .menu-box .menu-title i {*/
/*        position: absolute;*/
/*        display: block;*/
/*        top: 50%;*/
/*        right: 0;*/
/*        width: 12px;*/
/*        height: 12px;*/
/*        transition: all .3s ease-in-out;*/
/*        transform: translateY(-50%)*/
/*    }*/
/*    .menu-box .menu-title i:before {*/
/*        width: 12px;*/
/*        height: 1px*/
/*    }*/
/*    .menu-box .menu-title i:after,*/
/*    .menu-box .menu-title i:before {*/
/*        content: "";*/
/*        background: #777;*/
/*        border-radius: 1px;*/
/*        display: block;*/
/*        position: absolute;*/
/*        left: 50%;*/
/*        top: 50%;*/
/*        transform: translate(-50%, -50%)*/
/*    }*/
/*    .menu-box .menu-title i:after {*/
/*        width: 1px;*/
/*        height: 12px*/
/*    }*/
/*    .menu-box .menu-title.current i:after {*/
/*        opacity: 0*/
/*    }*/
/*    .menu-box .menu-content {*/
/*        display: none*/
/*    }*/
/*    .menu-box .menu-content a {*/
/*        display: block;*/
/*        width: 100%;*/
/*        height: 37px;*/
/*        line-height: 37px;*/
/*        font-size: 13px;*/
/*        color: #666*/
/*    }*/
/*    .mob-search-box {*/
/*        display: none;*/
/*        position: fixed;*/
/*        width: 100%;*/
/*        height: 100%;*/
/*        top: 0;*/
/*        left: 0;*/
/*        z-index: 106;*/
/*        background: #fff*/
/*    }*/
/*    .mob-search-box .main {*/
/*        width: 86.68vw;*/
/*        margin: 60px auto 50px*/
/*    }*/
/*    .mob-search-box .m-search-main {*/
/*        height: 46px;*/
/*        display: -ms-flexbox;*/
/*        display: flex;*/
/*        -ms-flex-align: center;*/
/*        align-items: center;*/
/*        border-bottom: 1px #dcdcdc*/
/*    }*/
/*    .mob-search-box .m-search-main input {*/
/*        -ms-flex: 1;*/
/*        flex: 1;*/
/*        margin-left: 10px;*/
/*        font-size: 14px;*/
/*        outline: 0;*/
/*        color: #777*/
/*    }*/
/*    .mob-search-box .m-search-main .iconfont {*/
/*        color: #282828*/
/*    }*/
/*    .mob-search-box .m-search-btn {*/
/*        height: 11.2vw;*/
/*        width: 100%;*/
/*        display: -ms-flexbox;*/
/*        display: flex;*/
/*        -ms-flex-pack: center;*/
/*        justify-content: center;*/
/*        -ms-flex-align: center;*/
/*        align-items: center;*/
/*        text-align: center;*/
/*        background: #666;*/
/*        cursor: pointer;*/
/*        border-radius: 4px;*/
/*        font-size: 14px;*/
/*        color: #fff;*/
/*        margin: 14px 0 28px*/
/*    }*/
/*    .mob-search-box .quick-enter {*/
/*        font-size: 13px;*/
/*        color: #aaa;*/
/*        margin-bottom: 5px*/
/*    }*/
/*    .mob-search-box .m-search-item {*/
/*        width: 100%;*/
/*        height: 55px;*/
/*        position: relative;*/
/*        box-sizing: border-box;*/
/*        border-bottom: 1px solid #f1f1f1;*/
/*        display: -ms-flexbox;*/
/*        display: flex;*/
/*        -ms-flex-pack: justify;*/
/*        justify-content: space-between;*/
/*        -ms-flex-align: center;*/
/*        align-items: center;*/
/*        cursor: pointer*/
/*    }*/
/*    .mob-search-box .m-search-item span {*/
/*        font-size: 14px;*/
/*        color: #282828*/
/*    }*/
/*    .mob-search-box .m-search-item i {*/
/*        color: #999;*/
/*        font-size: 13px*/
/*    }*/
/*    .header.grey {*/
/*        background: #333!important*/
/*    }*/
/*    .header.grey,*/
/*    .header.grey .brand-title {*/
/*        color: #fff!important*/
/*    }*/
/*    .header.grey .left-icon span {*/
/*        background: #fff!important*/
/*    }*/
/*    .header.grey .right-icon {*/
/*        color: #fff!important*/
/*    }*/
/*}*/

.footer {
    font-size: 30px;
    background: #000;
    padding-top: 40px;
    position: relative;
    z-index: 5
}

.footer .footer__nav-title {
    font-size: 14px;
    color: #fff
}

.footer .footer__nav {
    margin-top: 30px
}

.footer .footer__nav a {
    display: block;
    font-size: 12px;
    color: #ccc;
    letter-spacing: 0;
    line-height: 26px;
    transition: opacity .3s ease-in-out
}

.footer .footer__nav a:hover {
    opacity: .7
}

.footer__main-map {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-align: start;
    align-items: flex-start
}

.footer__main-map .footer__main-block {
    -ms-flex: 1;
    flex: 1
}

.footer__main {
    display: -ms-flexbox;
    display: flex
}

.footer__aside-contact {
    width: 230px;
}

.footer__aside-contact .footer__aside-block .phone {
    display: block;
    font-size: 27px;
    color: #fff;
    letter-spacing: 0;
    line-height: 38px;
    margin-top: 30px;
    transition: opacity .3s ease-in-out;
    cursor: pointer;
    margin-bottom: 70px;
    font-family: DINPro-Regular;
    font-weight: 600;
}

.footer__aside-contact .footer__aside-block .phone:hover {
    opacity: .7
}

.footer__aside-contact .footer__aside-block .contact-span {
    font-size: 12px;
    color: #ccc;
    letter-spacing: 0;
    margin-top: 2px;
    margin-bottom: 20px
}

.footer__aside-contact .contact-icons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px
}

.footer__aside-contact .contact-icons .iconfont {
    width: 33.33%;
    color: #fff;
    margin-bottom: 25px;
    transition: opacity .3s ease-in-out;
    cursor: pointer
}

.footer__aside-contact .contact-icons .iconfont:hover {
    opacity: .7
}

.footer__bottom {
    padding: 30px 0;
    font-size: 12px;
    color: #ddd;
    transition: opacity .3s ease-in-out;
    font-weight: 200
}

.footer__bottom span:first-child {
    margin-right: 10px
}

.footer__bottom span:last-child {
    margin-left: 10px
}

.footer__bottom a {
    font-size: 12px;
    margin: 0 3px;
    color: #ddd;
    transition: opacity .3s ease-in-out;
    font-weight: 200
}

.footer__bottom a:hover {
    opacity: .7
}

.qr-dialog-box.iconfont:hover {
    opacity: 1!important
}

.qr-dialog-box {
    position: relative
}

.qr-dialog-box .qr-dialog {
    display: none;
    position: absolute;
    padding: 6px 10px;
    bottom: 25px;
    width: 120px;
    height: 134px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 4px;
    left: 10px;
    transform: translate(-50%)
}

.qr-dialog-box .qr-dialog .qr-dialog-title {
    display: block;
    width: 100%;
    font-size: 12px;
    color: #1a1a1a;
    letter-spacing: 0;
    margin-top: 5px;
    line-height: 1.4;
    text-align: center
}

.qr-dialog-box .qr-dialog .arrow {
    width: 0;
    height: 0;
    border-width: 6px;
    border-style: solid;
    border-color: #fff transparent transparent;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translate(-50%)
}

.qr-dialog-box .qr-dialog-img {
    width: 100px
}

.qr-mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6)
}

.qr-mask .mob-qr-dialog {
    width: 72vw;
    padding: 5.867vw;
    box-sizing: border-box;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.qr-mask .mob-qr-dialog .icon_close {
    position: absolute;
    padding: 10px;
    top: -35px;
    right: -30px;
    color: #fff
}

.qr-mask .mob-qr-dialog .title {
    font-size: .9375rem;
    color: #282828;
    line-height: 1.4;
    margin-bottom: 5.6vw
}

.qr-mask .mob-qr-dialog .qr-code {
    width: 47.73vw;
    margin: 0 auto 4.8vw
}

.qr-mask .mob-qr-dialog .desc {
    font-size: .75rem;
    color: #66b821;
    position: relative;
    line-height: 1.5;
    margin-bottom: 7.467vw
}

.qr-mask .mob-qr-dialog .desc:after {
    content: "";
    display: block;
    width: 1em;
    height: 1px;
    background-color: #66b821;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%)
}

.qr-mask .mob-qr-dialog .tips {
    font-family: PingFangSC-Regular;
    font-size: .75rem;
    color: #aaa;
    line-height: 1.4
}

@media screen and (max-width:800px) {
    .footer {
        padding-top: 0
    }
    .footer .footer-backtop {
        width: 100%;
        height: 50px;
        cursor: pointer;
        background: #4e4e4e;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 12px;
        color: #f9f9f9;
        letter-spacing: 0
    }
    .footer .footer-backtop .iconfont {
        transform: rotate(-90deg) scale(.7);
        margin-left: 3px
    }
    .footer .footer-backtop:hover {
        opacity: .7
    }
    .footer .footer__nav-title {
        height: 56px;
        box-sizing: border-box;
        font-size: 12px;
        color: #dcdcdc;
        letter-spacing: 0;
        line-height: 56px;
        width: 100%;
        cursor: pointer;
        position: relative
    }
    .footer .footer__nav-title:after {
        width: 12px;
        height: 1px;
        right: 0
    }
    .footer .footer__nav-title:after,
    .footer .footer__nav-title:before {
        content: "";
        display: block;
        border-radius: 1px;
        background: #dcdcdc;
        position: absolute;
        top: 50%;
        transform: translateY(-50%)
    }
    .footer .footer__nav-title:before {
        width: 1px;
        height: 12px;
        right: 5.5px
    }
    .footer .footer__nav {
        margin-top: 0;
        display: none
    }
    .footer .footer__nav a {
        display: block;
        width: 100%;
        height: 37px;
        line-height: 37px;
        font-size: 13px;
        color: #dcdcdc
    }
    .footer .footer__nav a:hover {
        opacity: .7
    }
    .footer__main,
    .footer__main-map,
    .footer__main-map .footer__main-block.active {
        display: block
    }
    .footer__main-map .footer__main-block.active .footer__nav-title:before {
        display: none
    }
    .footer__mob-contact {
        margin-top: 37px
    }
    .footer__mob-contact .footer-contact-item {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 18px
    }
    .footer__mob-contact .footer-contact-item .footer-left {
        width: 7em;
        font-size: 12px;
        color: #fff;
        letter-spacing: 0
    }
    .footer__mob-contact .footer-contact-item .footer-right {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center
    }
    .footer__mob-contact .footer-contact-item .footer-right .iconfont {
        color: #bebebe
    }
    .footer__mob-contact .footer-contact-item .footer-ct a,
    .footer__mob-contact .footer-contact-item .footer-ct span {
        opacity: .9;
        font-size: 18px;
        color: #66b821;
        letter-spacing: 0;
        margin-left: 5px
    }
    .footer__mob-contact .footer-contact-item .footer-link .iconfont {
        font-size: 1.25rem;
        margin-right: 4.8vw
    }
    .footer-mob__bottom {
        padding-top: 15px;
        padding-bottom: 20px
    }
    .footer-mob__bottom p {
        opacity: .8;
        font-size: 12px;
        color: #fff;
        letter-spacing: 0;
        margin-bottom: 9px
    }
    .footer-mob__bottom p a:first-child {
        margin-left: 0
    }
    .footer-mob__bottom a {
        opacity: .8;
        font-size: 12px;
        color: #fff;
        margin: 0 6px
    }
    .footer-mob__bottom span {
        display: block;
        font-size: 11px;
        color: hsla(0, 0%, 100%, .51);
        letter-spacing: 0;
        margin-bottom: 6px
    }
}

.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='%2366B821'/%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='%2366B821'/%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
}

.pro-container {
    margin: 0 auto;
    width: 69.27%
}

.pro-tabs.current {
    padding-top: 0;
    box-shadow: 2px 0 4px rgba(0, 0, 0, .15);
    top: 80px
}

.pro-tabs.current .pro-container {
    transform: scale(.8)
}

.pro-tj-container {
    margin: 6.25vw auto 0;
    width: 69.27%
}

.pro-tj-container .pro-tj-title {
    font-size: 1.5rem;
    color: #000;
    letter-spacing: 0;
    text-align: justify;
    line-height: 1.3333;
    margin-bottom: 1.5625vw
}

.pro-tj-container .pro-list__main .pro-item {
    width: 16.77vw
}

.swiper-button-disabled .iconfont {
    color: #999
}

.pro-tabs {
    width: 100vw;
    transition: all .6s ease-in-out;
    position: fixed;
    background: #fff;
    z-index: 6;
    top: 100px
}

.pro-tabs .pro-container {
    padding: 3.125vw 0 1vw;
    -ms-flex-align: center;
    transition: all .6s ease-in-out
}

.pro-tabs .pro-container,
.pro-tabs .pro-tab {
    height: 56px;
    display: -ms-flexbox;
    display: flex;
    align-items: center
}

.pro-tabs .pro-tab {
    -ms-flex: 1;
    flex: 1;
    border-left: 1px solid #eee;
    box-sizing: border-box;
    cursor: pointer;
    transition: all .2s ease-in-out
}

.pro-tabs .pro-tab,
.pro-tabs .pro-tab .photo {
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center
}

.pro-tabs .pro-tab .photo {
    width: 35%;
    height: 40px;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-right: 5px
}

.pro-tabs .pro-tab .photo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto
}

.pro-tabs .pro-tab .info {
    font-size: 1rem;
    color: #000;
    letter-spacing: 0
}

.pro-tabs .pro-tab:hover {
    opacity: .7
}

.pro-tabs .pro-tab:first-child {
    border: none
}

.pro-tabs .pro-tab.active {
    position: relative
}

.pro-tabs .pro-tab.active:after {
    content: "";
    display: block;
    width: 80%;
    background: #66b821;
    height: 1px;
    position: absolute;
    left: 10%;
    bottom: -.2vw
}

.pro-container .pro-list:last-child {
    border: none
}

.pro-container.cate-container {
    width: 72vw;
    margin-top: 2.5vw
}

.main-box {
    margin-top: calc(6.5vw + 150px)
}

.pro-list {
    padding-bottom: 2.1vw;
    border-bottom: 1px solid #eee;
    margin-bottom: 3.646vw
}

.pro-list .pro-list__header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1.667vw
}

.pro-list .pro-list__header .title {
    font-size: 2.125rem;
    color: #282828;
    letter-spacing: 2px
}

.pro-list .pro-list__header .more {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    transition: opacity .3s ease-in-out
}

.pro-list .pro-list__header .more span {
    font-size: 1rem;
    color: #000;
    margin-right: 8px
}

.pro-list .pro-list__header .more i {
    transform: scale(.7);
    color: #000
}

.pro-list .pro-list__header .more:hover {
    opacity: .7
}

.pro-list .pro-list__main {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.pro-list .pro-list__main .item {
    width: 31.57%;
    margin-bottom: 3.125vw;
    position: relative
}

.pro-list .pro-list__main .item .swiper-slide {
    overflow: hidden!important
}

.pro-list .pro-list__main .item:after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    width: 0;
    background: #eee;
    transition: all .5s ease-in-out
}

.pro-list .pro-list__main .item .photo {
    display: block;
    width: 100%;
    height: 16.40625vw;
    background-size: cover!important;
    background-color: #f9f9f9;
    transition: all .5s ease-in-out
}

.pro-list .pro-list__main .item .photo.de {
    height: 20.3125vw
}

.pro-list .pro-list__main .item .info {
    padding: 1.3vw 5px
}

.pro-list .pro-list__main .item .info .title {
    font-size: 1.375rem;
    color: #000;
    letter-spacing: 0;
    line-height: 1.4;
    transition: all .5s ease-in-out
}

.pro-list .pro-list__main .item .info .desc {
    font-size: .875rem;
    color: #777;
    letter-spacing: 0;
    margin-top: 8px;
    line-height: 1.4;
    transition: all .5s ease-in-out
}

.pro-list .pro-list__main .item:hover .photo {
    transform: scale(1.05)
}

.pro-list .pro-list__main .item:hover .info .desc,
.pro-list .pro-list__main .item:hover .info .title {
    transform: translateY(-5px)
}

.pro-list .pro-list__main .item:hover:after {
    width: 100%
}

.cate-banner {
    position: relative
}

.cate-banner .banner-text {
    position: absolute;
    left: 28.64vw;
    top: 40%
}

.pro-cate-main {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 4vw
}

.pro-cate-main .left {
    width: 13.072vw
}

.pro-cate-main .right {
    width: 56.25vw
}

.pro-cate-main .pro-list .item {
    width: 48.15%
}

.pro-cate-main .filter-box {
    box-sizing: border-box;
    padding: 1.25vw 1.5625vw;
    background: #f9f9f9;
    position: relative;
    width: 13.072vw
}

.pro-cate-main .filter-box:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    border-width: 15px;
    border-style: solid;
    border-color: transparent #72bc2f #72bc2f transparent
}

.pro-cate-main .filter-title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 12px
}

.pro-cate-main .filter-title .title {
    font-weight: 700;
    font-size: 1rem;
    color: #282828
}

.pro-cate-main .filter-title .clear {
    font-size: .875rem;
    color: #4e4e4e;
    text-decoration: underline;
    cursor: pointer;
    transition: opacity .3s ease-in-out
}

.pro-cate-main .filter-title .clear:hover {
    opacity: .7
}

.pro-cate-main .filter-t {
    padding: 10px 0;
    border-top: 1px solid #ccc
}

.pro-cate-main .filter-t .filter {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    height: 28px;
    cursor: pointer
}

.pro-cate-main .filter-t .filter .title {
    font-weight: 700;
    font-size: 1rem;
    color: #282828
}

.pro-cate-main .filter-t .filter .iconfont {
    font-size: .75rem;
    transition: all .4s ease-in-out;
    transform: rotate(-90deg)
}

.pro-cate-main .filter-t.current .filter .iconfont {
    transform: rotate(90deg)
}

.filter-main {
    padding: 10px 0
}

.filter-main .item {
    box-sizing: border-box;
    width: 100%;
    height: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 5px 0;
    cursor: pointer
}

.filter-main .item .check-box {
    width: 12px;
    height: 12px;
    border-radius: 1px;
    background: #fff;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .07);
    margin-right: 14px;
    position: relative
}

.filter-main .item span {
    font-size: .875rem;
    color: #777;
    transition: opacity .3s ease-in-out
}

.filter-main .item:hover span {
    opacity: .7
}

.filter-main .item.active .check-box:after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #92969d;
    border-radius: 1px
}

.filter-main .item.active span {
    color: #000
}

.goods-more {
    width: 8.021vw;
    height: 2.3vw;
    border: 1px solid #666;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px auto;
    border-radius: 2px;
    transition: all .3s ease-in-out
}

.goods-more span {
    font-size: .875rem;
    color: #282828;
    letter-spacing: 0;
    text-align: center
}

.goods-more .icon_arr_right {
    font-size: .875rem;
    margin-left: 15px;
    color: #282828;
    transform: scale(.7)
}

.goods-more:hover {
    opacity: .7
}

.goods-more.hide {
    display: none
}

.pro-cate-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 3.02vw
}

.pro-cate-header .title {
    padding-left: 1.41vw;
    font-size: 2.125rem;
    color: #000
}

.pro-cate-header .search-box {
    width: 360px;
    height: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background: #f9f9f9;
    border-radius: 4px;
    box-sizing: border-box
}

.pro-cate-header .search-box .input-box {
    height: 30px;
    line-height: 28px;
    background: #f9f9f9;
    border: none;
    outline: 0;
    margin: 0 20px;
    -ms-flex: 1;
    flex: 1;
    min-width: 10px
}

.pro-cate-header .search-box .search-cate {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.pro-cate-header .search-box .search-cate .item {
    background: #e9e9e9;
    border-radius: 1px;
    width: 60px;
    height: 20px;
    font-size: .75rem;
    color: #aaa;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out
}

.pro-cate-header .search-box .search-cate .item:hover {
    color: #fff;
    background: #72bc2f
}

.pro-cate-header .search-box .search-cate .item.active:hover {
    opacity: 1
}

.pro-cate-header .search-box .search-cate .item+.item {
    margin-left: 9px
}

.pro-cate-header .search-box .iconfont {
    margin: 0 20px 0 11px;
    cursor: pointer
}

.page-detail {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 100px;
}

@media(max-width: 1440px) {
    .page-detail {
        padding-top: 65px;
    }
}

.pro-page-1{
    width: 100%;
    background-color: #F9FAFC;
    position: relative;
    overflow: hidden;
    padding: 50px 0 60px;
}

.pro-page-1 .pro-detail-box2 {
    /* width: 75vw;
	height: auto; */
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /* max-height: 75vh;
	position: absolute;
	top: calc(50% + 20px);
	left: 12.5vw;
	margin-top: -19.271vw */
}
.pro-detail-box2 h1{
    font-size: 52px;
    color: #000;
    text-align: center;
    margin-bottom: 35px;
    width: 100%;
}
.pro-page-1 .pro-detail-box2 .detail-photo,
.pro-page-1 .pro-detail-box2 .photos {
    width: 41.146vw;
    height: 96px;
    max-height: 75vh;
}

.pro-page-1 .pro-detail-box2 .detail-photo {
    background-size: cover!important
}

.pro-aside {
    width: 5.2vw;
    height: 100%;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 16;
    transition: all .3s ease-in-out
}

.pro-aside.current {
    box-shadow: -10px 0 10px -6px rgba(0, 0, 0, .06)
}

.pro-aside .pro-aside-box {
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 53.8vh;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%)
}

.pro-aside .pro-aside-box .pro-icon {
    cursor: pointer;
    transition: opacity .3s ease-in-out
}

.pro-aside .pro-aside-box .pro-icon .iconfont {
    font-size: 1.875rem;
    color: #282828
}

.pro-aside .pro-aside-box .pro-icon:hover {
    opacity: .7
}

.pro-aside .pro-aside-box .i-detail {
    font-size: .75rem;
    color: #121212;
    text-align: center;
    line-height: 25px;
    transition: opacity .3s ease-in-out;
    cursor: pointer;
    width: 100%
}

.pro-aside .pro-aside-box .i-detail:hover {
    opacity: .7
}

.pro-aside .pro-aside-box .icon-mouse {
    display: block;
    width: 18px;
    margin: 10px auto 0
}

.p-detail.show {
    display: block
}

.p-detail {
    width: 100%;
    height: 100%;
    position: static;
    top: 0;
    right: 0;
    z-index: 12;
    background: transparent;
}

.p-detail .p-detail-box {
    /* width: 63.4375vw;
	height: 100vh;
	position: absolute;
	overflow-y: auto;
	right: 0;
	top: 0;
	z-index: 13;
	background: #fff; */
    box-shadow: -20px 0 30px -14px rgba(0, 0, 0, .18)
}

.p-d-main {
    /* width: 50vw; */
    padding: 10.26vw 0 8vw 4.9vw
}

.p-d-main .info {
    width: 33.33vw;
    margin-left: 3.854vw;
    margin-bottom: 2.4vw
}

.p-d-main .info .title {
    font-size: 2.125rem;
    color: #262626;
    margin-bottom: 1.2vw
}

.p-d-main .info .desc {
    font-weight: 200;
    font-size: 1rem;
    color: #282828;
    text-align: justify;
    line-height: 2
}

.p-d-main .info+.d-photo {
    margin-bottom: 3.125vw;
    border-radius: 4px;
    overflow: hidden
}

.p-d-main .p-d__block {
    margin-bottom: 3.125vw
}

.p-d-main .p-d__block .content {
    width: 42.8125vw;
    margin-left: 3.854vw
}

.p-d-main .p-d__block .content p {
    font-weight: 200;
    font-size: 1rem;
    color: #282828;
    text-align: justify;
    line-height: 2
}

.p-d-main .intro {
    width: 42.8125vw;
    margin-left: 3.854vw;
    margin-bottom: 1.5625vw
}

.p-d-main .intro .title {
    font-size: 1.5rem;
    color: #000
}

.p-d-main .intro .desc {
    font-weight: 200;
    font-size: 1rem;
    color: #282828;
    text-align: justify;
    line-height: 2;
    margin-top: 5px
}

.p-d-main .intro.large {
    margin-bottom: 3.125vw
}

.pro-detail-info {
    width: calc(40% - 3rem);
    flex: 0 0 calc(40% - 3rem);
    box-sizing: border-box;
}

.pro-detail-info .title {
    margin-top: 1vw;
    font-size: 2.125rem;
    color: #000
}

.pro-detail-info .desc {
    margin-top: .8vw;
    font-size: 1rem;
    color: #000;
    text-align: justify;
    letter-spacing:2px;
    line-height: 2;
    font-weight: 500;
}

.pro-detail-info .params-box {
    margin-top: 2.6vw
}

.pro-detail-info .params-box .params-item {
    display: -ms-flexbox;
    display: flex
}

.pro-detail-info .params-box .params-item .key {
    width: 3em;
    padding: 1.146vw 0;
    border-bottom: 1px solid #000;
    font-size: 1rem;
    color: #000;
    line-height: 1.4;
    font-weight: 500;
}

.pro-detail-info .params-box .params-item .value {
    width: calc(100% - 4em);
    word-break: break-all;
    margin-left: .65vw;
    padding: 1.146vw 0;
    border-bottom: 1px solid #dcdcdc
}

.pro-detail-info .params-box .params-item .value span {
    font-size: 0.8rem;
    word-break: break-all;
    color: #333;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-right: .5vw
}

.pro-detail-info .params-box .params-item:first-child .key {
    border-top: 1px solid #000
}

.pro-detail-info .params-box .params-item:first-child .value {
    border-top: 1px solid #dcdcdc
}

.pro-detail-info .material-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 6vw;
    overflow: hidden
}

.pro-detail-info .material-box .mater-item {
    display: inline-block
}

.material-box {
    margin-top: 2.65vw
}

.material-box .mater-item {
    width: 2.3vw;
    height: 2.3vw;
    margin-right: 1.042vw;
    margin-bottom: 1.042vw;
    background: #ececec;
    border: 2px solid transparent;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity .3s ease-in-out
}

.material-box .mater-item:hover {
    opacity: .7
}

.material-box .mater-item img {
    width: calc(2.3vw - 3px);
    height: calc(2.3vw - 3px);
    border: 1px solid #fff;
    border-radius: 50%;
    overflow: hdiden
}

.material-box .mater-item.active,
.material-box .mater-item.active img {
    border-color: #ececec
}

.btn-box {
    margin-top: 1.042vw
}

.btn-box,
.btn-box .pd-btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.btn-box .pd-btn {
    width: 41.2%;
    margin-right: 7.5%;
    height: 3.4375vw;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 2px;
    transition: opacity .3s ease-in-out;
    cursor: pointer
}

.btn-box .pd-btn:hover {
    opacity: .7
}

.btn-box .pd-btn .iconfont {
    font-size: 1.042vw
}

.btn-box .pd-btn span {
    font-size: 1.042vw;
    margin-left: 12px
}

.btn-box .pd-btn:last-child {
    margin-right: 0
}

.btn-box .btn-zx {
    background: #282828
}

.btn-box .btn-zx .iconfont,
.btn-box .btn-zx span {
    color: #fff
}

.btn-box .btn-contact {
    background: #eee
}

.btn-box .btn-contact .iconfont,
.btn-box .btn-contact span {
    color: #282828
}

.p-params {
    margin-left: 3.854vw
}

.p-params .item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1.4vw
}

.p-params .item:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: hsla(0, 0%, 68%, .6);
    margin-right: 1.25vw
}

.p-params .item .key {
    width: 7em;
    margin-right: 1.5em;
    font-weight: 700;
    font-size: 1rem;
    color: #5f5f5f;
    line-height: 1.4
}

.p-params .item .val {
    -ms-flex: 1;
    flex: 1;
    font-size: 1rem;
    color: #727272;
    letter-spacing: 0;
    line-height: 1.4
}

.size-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	margin-bottom: 40px;
}

.size-box {
    /* width: calc(25% - 27px);
    flex: 0 0 calc(25% - 27px);
	margin-right: 35px; */
    width: calc(100% / 5);
    transition-duration: .3s;
}
@media(max-width: 800px){
    .size-box{
    width: calc(45%);
    transition-duration: .3s;
    margin-right: 5%;
    }
    
}
.size-box:hover {
    transform: translateY(-10px);
}

.size-box:nth-child(4n) {
    margin-right: 0;
}

.size-box .size-info {
    margin-top: 5px
}

.size-box .size-info .tit {
    font-size: 16px;
    line-height: 1;
    color: #000;
    margin: 30px auto 18px;
}

.size-box .size-info .desc p {
    font-size: 12px;
    color: #333;
    line-height: 1.5
}

.met-block {
    width: 9.8vw;
    margin-right: 2.604vw;
    margin-bottom: 2.604vw
}

.met-block .tit {
    font-size: 18px;
    color: #333;
    line-height: 1.45;
    margin-top: .9375vw;
}

.color-block {
    width: 112px;
    display: inline-block;
    margin-right: 29px;
    transition-duration: .3s;
    margin-bottom: 40px;
}

.color-block:hover {
    transform: translateY(-10px);
}

.color-block:nth-child(7n) {
    /*margin-right: 0;*/
}

.color-block .color-block-photo {
    width: 112px;
    height: 112px;
    background-size: cover!important
}

.color-block .tit {
    font-size: 12px;
    color: #727272;
    line-height: 1.45;
    text-align: center;
    margin-top: 12px;
}

.d-swiper-photo {
    position: relative;
    margin-bottom: 3.46875vw
}

.detail-pagination {
    width: 100%;
    height: 12px;
    position: absolute;
    right: auto;
    top: auto;
    left: 0!important;
    bottom: -2vw!important;
    z-index: 4;
    text-align: center
}

.detail-pagination .swiper-pagination-bullet {
    width: 8px!important;
    height: 8px!important;
    border-radius: 4px;
    box-sizing: border-box;
    background: #d8d8d8;
    margin: 0 4px!important;
    position: relative;
    opacity: 1
}

.detail-pagination .swiper-pagination-bullet-active {
    background: #393939
}

.detail-n-p-box {
    width: 50px;
    height: 108px;
    background: #fff;
    box-shadow: 2px 2px 6px -1px rgba(0, 0, 0, .1);
    border-radius: 25px;
    overflow: hidden;
    position: absolute;
    right: -30px;
    top: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-direction: column;
    flex-direction: column;
    transform: translateY(-50%);
    z-index: 88
}

.detail-n-p-box .detail-button-next {
    width: 54px;
    height: 44px
}

.detail-n-p-box .detail-button-next,
.detail-n-p-box .detail-button-prev {
    cursor: pointer;
    outline: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center
}

.detail-n-p-box .detail-button-prev {
    width: 50px;
    height: 50px
}

.pm-tabs {
    margin: 4.685vw auto 3.5vw;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    align-items: center
}

.pm-tabs .pm-tab {
    margin-right: 60px;
    font-size: 24px;
    color: #000;
    position: relative;
    cursor: pointer;
}

.pm-tabs .pm-tab.active {
    font-size: 30px;
    font-weight: 700;
    color: #000;
}

.pm-tabs .pm-tab.active:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -12px;
    left: 0;
    transform: translateY(-50%);
    width: 2.5em;
    height: 3px;
    background: #000;
}

.pro-page-2 {
    margin: 66px auto 0;
}

.pm-more {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 7.1875vw
}

.pm-more .pm-item {
    -ms-flex: 1;
    flex: 1;
    width: 100%;
    height: 19.53125vw;
    position: relative;
    cursor: pointer;
    margin: 0 5px
}

.pm-more .pm-item:hover .pm-mask {
    display: block
}

.pm-more .pm-item .tips {
    width: 1.25vw;
    position: absolute;
    left: 0;
    top: 0
}

.pm-more .pm-item .tips img {
    width: 100%
}

.pm-more .photo {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-size: cover!important
}

.pm-more .pm-mask {
    background: #849f99;
    display: none
}

.pm-more .pm-mask,
.pm-more .pm-mask .mask-box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.pm-more .pm-mask .mask-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center
}

.pm-more .pm-mask .title {
    font-weight: 500;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 0
}

.pm-more .pm-mask .desc {
    font-size: 1rem;
    color: #fff;
    margin-top: 16px;
    text-align: center
}

.pm-more .pm-mask .iconfont {
    position: absolute;
    color: #fff;
    bottom: 2.4vw;
    left: 50%;
    transform: translate(-50%) scale(.6);
    font-size: 5px
}

.pm-more.block-2 {
    display: none
}

.pm-footer {
    text-align: center;
    position: relative;
    margin-bottom: 5vw;
    font-size: .875rem;
    color: #727272
}

.pm-footer:before {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background: #979797;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translate(-50%)
}

.photo-pagination {
    width: 100%;
    height: 2px;
    position: absolute;
    right: auto;
    top: auto;
    left: 0!important;
    bottom: 30px!important;
    z-index: 4;
    text-align: center
}

.photo-pagination .swiper-pagination-bullet {
    width: 2.6vw!important;
    height: 2px!important;
    box-sizing: border-box;
    background: #92979e;
    margin: 0 5px!important;
    position: relative;
    opacity: 1;
    border-radius: 0!important
}

.photo-pagination .swiper-pagination-bullet-active {
    background: #72bc2f
}

/*.swiper-slide {*/
/*    overflow: auto!important*/
/*}*/

.animated.slideInRight,
.animated.slideOutRight {
    animation-duration: .5s
}

.pro-pagination {
    width: 27px!important;
    height: 38.542vw;
    position: absolute;
    left: -4.3vw!important;
    top: 50%;
    right: auto!important;
    bottom: auto!important;
    transform: translateY(-50%);
    z-index: 4;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    outline: 0
}

.pro-pagination .swiper-pagination-bullet {
    width: 27px!important;
    height: 27px!important;
    border-radius: 14px;
    box-sizing: border-box;
    border: 1px solid transparent;
    background: transparent;
    margin: 3px 0!important;
    position: relative;
    outline: 0;
    opacity: 1
}

.pro-pagination .swiper-pagination-bullet:before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background: #92969d;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.pro-pagination .swiper-pagination-bullet-active {
    border-color: #66b821
}

.pro-pagination .swiper-pagination-bullet-active:before {
    background: #66b821
}

.mob-filter-dialog {
    display: none
}

.search-result {
    width: 69.27%;
    margin: calc(4vw + 100px) auto 0
}

.search-result span {
    font-size: 1rem;
    color: #4e4e4e;
    letter-spacing: 0;
    text-align: justify;
    line-height: 2
}
.pro-page-3{
    padding:70px 0;
}
.pro-page-3 .desc{
    font-weight: 200;
    font-size: 1.125rem;
    color: #000;
    margin-top: 13px;
}
.pro-page-3 img{
    border-radius: 4px;
    width: 100%;
    max-width: 100%;
}
.header .container{
    align-items: center;
}
.proInfo_list1 .item{
    height: auto!important;
}
@media screen and (max-width:1440px) {
    .pro-page-1 .pro-detail-box2 {
        top: calc(50% + 13px)
    }
    .pro-tabs.current {
        top: 46px
    }
    .material-box {
        margin-top: 3vw
    }
    .search-result {
        margin-top: calc(4vw + 66px)
    }
    .pro-tabs {
        top: 66px
    }
    .pro-detail-info .title {
        font-size: 26px;
        margin-top: 0
    }
    .pro-detail-info .desc {
        margin-top: .8vw;
        font-size: 14px
    }
    .pro-detail-info .params-box {
        margin-top: 2.6vw
    }
    .pro-detail-info .params-box .params-item {
        display: -ms-flexbox;
        display: flex
    }
    .pro-detail-info .params-box .params-item .key,
    .pro-detail-info .params-box .params-item .value span {
        font-size: 13px
    }
    .pro-detail-info .material-box {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: 6vw;
        overflow: hidden
    }
    .pro-detail-info .material-box .mater-item {
        display: inline-block
    }
}

@media screen and (max-width:1280) {
    .pro-page-1 .pro-detail-box2 {
        width: 70vw;
        max-height: 70vh;
        left: 15vw
    }
    .pro-detail-info .desc {
        margin-top: .8vw;
        font-size: 12px
    }
    .pro-detail-info .params-box {
        margin-top: 2.6vw
    }
    .pro-detail-info .params-box .params-item {
        display: -ms-flexbox;
        display: flex
    }
    .pro-detail-info .params-box .params-item .key,
    .pro-detail-info .params-box .params-item .value span {
        font-size: 12px
    }
    .pro-detail-info .material-box {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: 3.3vw;
        overflow: hidden
    }
    .pro-detail-info .material-box .mater-item {
        display: inline-block
    }
}

@media screen and (max-width:1200px) {
    .search-result {
        margin-top: calc(4vw + 66px)
    }
}

@media screen and (max-width:800px) {
    .search-result {
        width: 90vw;
        margin: 70px auto 20px;
        text-align: center
    }
    .search-result span {
        font-size: 1rem;
        color: #4e4e4e;
        letter-spacing: 0;
        text-align: justify;
        line-height: 2
    }
    .pro-mob-tabs {
        margin-top: 50px;
        background: #f9f9f9;
        overflow-x: auto;
        height: 120px
    }
    .pro-mob-tabs::-webkit-scrollbar {
        display: none;
        width: 0
    }
    .pro-mob-tabs .mob-container {
        width: auto;
        white-space: nowrap
    }
    .pro-mob-tabs .mob-container .pro-tab {
        display: inline-block;
        margin: 0 18px;
        height: 70px;
        margin-top: 25px;
        text-align: center;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        cursor: pointer;
        transition: all .2s ease-in-out;
        width: 60px
    }
    .pro-mob-tabs .mob-container .pro-tab .photo {
        width: 60px;
        height: 38px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        opacity: .7
    }
    .pro-mob-tabs .mob-container .pro-tab .photo img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto
    }
    .pro-mob-tabs .mob-container .pro-tab .info {
        font-size: 12px;
        color: #777;
        margin-top: 16px
    }
    .pro-mob-tabs .mob-container .pro-tab.active {
        position: relative
    }
    .pro-mob-tabs .mob-container .pro-tab.active .photo {
        opacity: 1
    }
    .pro-mob-tabs .mob-container .pro-tab.active .info {
        color: #000
    }
    .p-list .p-item {
        padding: 12.8vw 8vw 9.6vw;
        text-align: center;
        background: #fff;
        cursor: pointer
    }
    .p-list .p-item .p-title {
        font-weight: 500;
        font-size: 22px;
        color: #000;
        line-height: 1.3
    }
    .p-list .p-item .p-desc {
        font-size: 14px;
        color: #999;
        line-height: 1.5;
        margin-top: 5px
    }
    .p-list .p-item .link-box {
        text-align: center;
        margin-top: 20px
    }
    .p-list .p-item .link-box .more {
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-align: center;
        align-items: center;
        cursor: pointer;
        color: #66b821;
        margin: 0 7px;
        font-size: 13px
    }
    .p-list .p-item .link-box .more i {
        color: #66b821;
        font-size: 10px;
        margin-left: 3px;
        transform: scale(.7)
    }
    .p-list .p-item .p-photo {
        margin: 15px 0 8px;
        display: block
    }
    .p-list .p-item .p-photo img {
        width: 100%;
        border-radius: 4px
    }
    .p-list .p-item .p-more-photo {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: end;
        align-items: flex-end
    }
    .p-list .p-item .p-more-photo .item {
        width: calc(33.3% - 5px)
    }
    .p-list .p-item .p-more-photo .item img {
        width: 100%;
        border-radius: 4px
    }
    .p-list .p-item .p-more-photo .item span {
        text-align: center;
        font-size: 13px;
        color: #aaa;
        letter-spacing: 0;
        margin-top: 20px
    }
    .p-list .p-item:nth-child(2n) {
        background: #f9f9f9
    }
    .mob-cate-header {
        height: 48px;
        background: #fff;
        box-shadow: 0 4px 7px 0 rgba(0, 0, 0, .05);
        padding: 0 5vw
    }
    .mob-cate-header .main {
        -ms-flex-pack: justify;
        justify-content: space-between
    }
    .mob-cate-header .main,
    .mob-cate-header .title {
        height: 48px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center
    }
    .mob-cate-header .title {
        font-weight: 500;
        font-size: 16px;
        color: #282828;
        cursor: pointer
    }
    .mob-cate-header .filter {
        font-size: 14px;
        color: #282828;
        height: 48px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        cursor: pointer
    }
    .mob-cate-header .icon-filter {
        width: 13px;
        height: 13px;
        background: url(../25f2b4edc0da468ba76bc447c1c8a740.html) no-repeat 50%;
        background-size: 13px 13px;
        margin-left: 3px
    }
    .mob-cate-header .icon-list-method {
        margin-left: 5px
    }
    .mob-cate-header .icon-list-method.type-1 {
        width: 14px;
        height: 14px;
        background: url(../450d70b751864ca79892122ec0f50d90.html) no-repeat 50%;
        background-size: 14px 14px
    }
    .mob-cate-header .icon-list-method.type-2 {
        width: 15px;
        height: 14px;
        background: url(../27353247272c4f95847bb1f4185dde8e.html) no-repeat 50%;
        background-size: 15px 14px
    }
    .mob-list {
        margin: 5vw;
        background: #fff
    }
    .mob-list .mob-item {
        display: -ms-flexbox;
        display: flex
    }
    .mob-list.type-1 .mob-item {
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 40px
    }
    .mob-list.type-1 .photo {
        width: 100%;
        height: 56vw;
        margin-bottom: 28px;
        border-radius: 4px;
        background-size: cover!important
    }
    .mob-list.type-1 .info {
        text-align: center
    }
    .mob-list.type-1 .info .title {
        font-weight: 500;
        font-size: 18px;
        color: #000;
        margin-bottom: 6px;
        line-height: 1.5
    }
    .mob-list.type-1 .info .desc {
        font-size: 13px;
        color: #aaa;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.5
    }
    .mob-list.type-1 .info .more {
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-align: center;
        align-items: center
    }
    .mob-list.type-1 .info .more span {
        font-size: 12px;
        color: #000
    }
    .mob-list.type-1 .info .more i {
        margin-left: 3.5px;
        transform: scale(.7);
        color: #000
    }
    .mob-list.type-2 .mob-item {
        margin-bottom: 20px;
        -ms-flex-align: center;
        align-items: center
    }
    .mob-list.type-2 .photo {
        width: 46.133vw;
        height: 34.667vw;
        border-radius: 4px;
        margin-right: 10px;
        background-size: cover!important
    }
    .mob-list.type-2 .info {
        -ms-flex: 1;
        flex: 1
    }
    .mob-list.type-2 .info .title {
        font-weight: 500;
        font-size: 15px;
        color: #000;
        margin-bottom: 8px;
        line-height: 1.5
    }
    .mob-list.type-2 .info .desc {
        font-size: 12px;
        color: #aaa;
        line-height: 1.5;
        margin-bottom: 17px
    }
    .mob-list.type-2 .more {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center
    }
    .mob-list.type-2 .more span {
        font-size: 12px;
        color: #000
    }
    .mob-list.type-2 .more i {
        margin-left: 3.5px;
        transform: scale(.7);
        color: #000
    }
    .mob-filter-dialog {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        background: rgba(40, 40, 40, .6);
        z-index: 30;
        cursor: pointer
    }
    .mob-filter-dialog .mob-filter-box {
        width: 75vw;
        height: 100%;
        position: absolute;
        right: 0;
        top: 0;
        background: #fff;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 3.467vw 2.667vw
    }
    .mob-filter-dialog .mob-filter__main {
        -ms-flex: 1;
        flex: 1;
        overflow-y: auto;
        padding-top: 40px
    }
    .mob-filter-dialog .mob-filter__footer {
        height: 68px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 13px
    }
    .mob-filter-dialog .mob-filter__footer .m-f_btn {
        width: 48%;
        height: 42px;
        border-radius: 4px;
        cursor: pointer;
        line-height: 42px;
        text-align: center
    }
    .mob-filter-dialog .mob-filter__footer .btn-reset {
        font-size: 14px;
        color: #777;
        background: #f9f9f9
    }
    .mob-filter-dialog .mob-filter__footer .btn-submit {
        font-size: 14px;
        color: #fff;
        background: #66b821
    }
    .mob-filter-dialog .m-content {
        margin-bottom: 30px
    }
    .mob-filter-dialog .m-content .m-t {
        font-weight: 500;
        font-size: 14px;
        color: #000;
        margin-bottom: 15px
    }
    .mob-filter-dialog .m-content .m-filter .m-filter__block:nth-child(2n) {
        float: right
    }
    .mob-filter-dialog .m-content .m-filter__block {
        width: 48%;
        height: 42px;
        border-radius: 4px;
        cursor: pointer;
        line-height: 42px;
        text-align: center;
        float: left;
        background: #f9f9f9;
        margin-bottom: 10px;
        font-size: 14px;
        color: #777;
        letter-spacing: 0;
        position: relative;
        overflow: hidden
    }
    .mob-filter-dialog .m-content .m-filter__block.active {
        background: rgba(102, 184, 33, .15)
    }
    .mob-filter-dialog .m-content .m-filter__block.active:after {
        content: "";
        width: 0;
        height: 0;
        position: absolute;
        right: 0;
        bottom: 0;
        border-width: 4px;
        border-style: solid;
        border-color: transparent #72bc2f #72bc2f transparent
    }
    .pro-page-3{
        padding:55px 0;
    }
}
@media(max-width:640px){
    .pro-page-3{
        padding:40px 0;
    }    
}
.phone-icon img{
    filter: brightness(0.155)!important;
}
.nav-phone{
    right: 0rem!important;
}