﻿@keyframes bounce {

    from,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, -4px, 0);
    }
}

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

@keyframes flash {

    from,
    50%,
    to {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.flash {
    animation-name: flash;
}


@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    animation-name: pulse;
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1);
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, .95, 1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    animation-name: rubberBand;
}

@keyframes shake {

    from,
    to {
        transform: translate3d(0, 0, 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: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

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

@keyframes tada {
    from {
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    animation-name: tada;
}

@keyframes wobble {
    from {
        transform: none;
    }

    15% {
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    to {
        transform: none;
    }
}

.wobble {
    animation-name: wobble;
}

@keyframes jello {

    from,
    11.1%,
    to {
        transform: none;
    }

    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(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

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

@keyframes bounceIn {

    from,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    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: scale3d(1, 1, 1);
    }
}

.bounceIn {
    animation-name: bounceIn;
}

@keyframes bounceInDown {

    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    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: none;
    }
}

.bounceInDown {
    animation-name: bounceInDown;
}

@keyframes bounceInLeft {

    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    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: none;
    }
}

.bounceInLeft {
    animation-name: bounceInLeft;
}

@keyframes bounceInRight {

    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        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: none;
    }
}

.bounceInRight {
    animation-name: bounceInRight;
}

@keyframes bounceInUp {

    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    from {
        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: translate3d(0, 0, 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-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 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -50%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

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

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig;
}

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

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

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

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig;
}

@keyframes flip {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        animation-timing-function: ease-out;
    }

    40% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        animation-timing-function: ease-out;
    }

    50% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        animation-timing-function: ease-in;
    }

    80% {
        transform: perspective(400px) scale3d(.95, .95, .95);
        animation-timing-function: ease-in;
    }

    to {
        transform: perspective(400px);
        animation-timing-function: ease-in;
    }
}

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

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        transform: perspective(400px);
    }
}

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

@keyframes flipInY {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        transform: perspective(400px);
    }
}

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

@keyframes flipOutX {
    from {
        transform: perspective(400px);
    }

    30% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    to {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

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

@keyframes flipOutY {
    from {
        transform: perspective(400px);
    }

    30% {
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    to {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

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

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

    60% {
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        transform: skewX(-5deg);
        opacity: 1;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

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

@keyframes lightSpeedOut {
    from {
        opacity: 1;
    }

    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

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

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

    to {
        transform-origin: center;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    animation-name: rotateIn;
}

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

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft;
}

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

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight;
}

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

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft;
}

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

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight;
}

@keyframes rotateOut {
    from {
        transform-origin: center;
        opacity: 1;
    }

    to {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
    from {
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
    from {
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
    from {
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
    from {
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight;
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    20%,
    60% {
        transform: rotate3d(0, 0, 1, 80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

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

    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    animation-name: hinge;
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        transform: scale(0.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;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.rollIn {
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    animation-name: rollOut;
}

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

    50% {
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomIn;
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInDown {
    animation-name: zoomInDown;
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInLeft {
    animation-name: zoomInLeft;
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInRight {
    animation-name: zoomInRight;
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomInUp {
    animation-name: zoomInUp;
}

@keyframes zoomOut {
    from {
        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(0.550, 0.055, 0.675, 0.190);
    }

    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 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(0.550, 0.055, 0.675, 0.190);
    }

    to {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomOutUp {
    animation-name: zoomOutUp;
}

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

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    animation-name: slideInDown;
}

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

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    animation-name: slideInLeft;
}

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

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    animation-name: slideInRight;
}

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

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    animation-name: slideInUp;
}

@keyframes slideOutDown {
    from {
        transform: translate3d(0, 0, 0);
    }

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

.slideOutDown {
    animation-name: slideOutDown;
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0);
    }

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

.slideOutLeft {
    animation-name: slideOutLeft;
}

@keyframes slideOutRight {
    from {
        transform: translate3d(0, 0, 0);
    }

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

.slideOutRight {
    animation-name: slideOutRight;
}

@keyframes slideOutUp {
    from {
        transform: translate3d(0, 0, 0);
    }

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

.slideOutUp {
    animation-name: slideOutUp;
}





@font-face {
    font-family: dincond_medium;
    src: url(../fonts/dincond-medium-webfont.eot);
    src: url(../fonts/dincond-medium-webfont.eot?#iefix) format('embedded-opentype'),
        url(../fonts/dincond-medium-webfont.woff2) format('woff2'),
        url(../fonts/dincond-medium-webfont.woff) format('woff'),
        url(../fonts/dincond-medium-webfont.ttf) format('truetype'),
        url(../fonts/dincond-medium-webfont.svg#dincond-mediumalternateRg) format('svg');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: "iconfont";
    src: url('../fonts/iconfont.eot');
    src: url('../fonts/iconfont.eot') format('embedded-opentype'), url('../fonts/iconfont.woff') format('woff'), url('../fonts/iconfont.ttf') format('truetype'), url('../fonts/iconfont.svg') format('svg')
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.icon-next:before {
    content: "\e601"
}

.icon-next2:before {
    content: "\e636"
}

.icon-prev2:before {
    content: "\e637"
}

.icon-prev1:before {
    content: "\e648"
}

.icon-next1:before {
    content: "\e655"
}

.icon-prev:before {
    content: "\e606"
}

@font-face {
    font-family: Pe-icon-7-stroke;
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/pe-icon-7-stroke.eot');
    src: url('../fonts/pe-icon-7-stroke.eot') format('embedded-opentype'),
        url('../fonts/pe-icon-7-stroke.woff') format('woff'),
        url('../fonts/pe-icon-7-stroke.ttf') format('truetype'),
        url('../fonts/pe-icon-7-stroke.svg') format('svg')
}

[class*=" pe-"],
[class^=pe-] {
    position: relative;
    display: inline-block;
    font-family: Pe-icon-7-stroke;
    font-style: normal;
    font-weight: 400;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    text-rendering： auto;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.pe-album:before {
    content: "\e6aa"
}

.pe-arc:before {
    content: "\e6ab"
}

.pe-back-2:before {
    content: "\e6ac"
}

.pe-bandaid:before {
    content: "\e6ad"
}

.pe-car:before {
    content: "\e6ae"
}

.pe-diamond:before {
    content: "\e6af"
}

.pe-door-lock:before {
    content: "\e6b0"
}

.pe-eyedropper:before {
    content: "\e6b1"
}

.pe-female:before {
    content: "\e6b2"
}

.pe-gym:before {
    content: "\e6b3"
}

.pe-hammer:before {
    content: "\e6b4"
}

.pe-headphones:before {
    content: "\e6b5"
}

.pe-helm:before {
    content: "\e6b6"
}

.pe-hourglass:before {
    content: "\e6b7"
}

.pe-leaf:before {
    content: "\e6b8"
}

.pe-magic-wand:before {
    content: "\e6b9"
}

.pe-male:before {
    content: "\e6ba"
}

.pe-map-2:before {
    content: "\e6bb"
}

.pe-next-2:before {
    content: "\e6bc"
}

.pe-paint-bucket:before {
    content: "\e6bd"
}

.pe-pendrive:before {
    content: "\e6be"
}

.pe-photo:before {
    content: "\e6bf"
}

.pe-piggy:before {
    content: "\e6c0"
}

.pe-plugin:before {
    content: "\e6c1"
}

.pe-refresh-2:before {
    content: "\e6c2"
}

.pe-rocket:before {
    content: "\e6c3"
}

.pe-settings:before {
    content: "\e6c4"
}

.pe-shield:before {
    content: "\e6c5"
}

.pe-smile:before {
    content: "\e6c6"
}

.pe-usb:before {
    content: "\e6c7"
}

.pe-vector:before {
    content: "\e6c8"
}

.pe-wine:before {
    content: "\e6c9"
}

.pe-cloud-upload:before {
    content: "\e68a"
}

.pe-cash:before {
    content: "\e68c"
}

.pe-close:before {
    content: "\e680"
}

.pe-bluetooth:before {
    content: "\e68d"
}

.pe-cloud-download:before {
    content: "\e68b"
}

.pe-way:before {
    content: "\e68e"
}

.pe-close-circle:before {
    content: "\e681"
}

.pe-id:before {
    content: "\e68f"
}

.pe-angle-up:before {
    content: "\e682"
}

.pe-wristwatch:before {
    content: "\e690"
}

.pe-angle-up-circle:before {
    content: "\e683"
}

.pe-world:before {
    content: "\e691"
}

.pe-angle-right:before {
    content: "\e684"
}

.pe-volume:before {
    content: "\e692"
}

.pe-angle-right-circle:before {
    content: "\e685"
}

.pe-users:before {
    content: "\e693"
}

.pe-angle-left:before {
    content: "\e686"
}

.pe-user-female:before {
    content: "\e694"
}

.pe-angle-left-circle:before {
    content: "\e687"
}

.pe-up-arrow:before {
    content: "\e695"
}

.pe-angle-down:before {
    content: "\e688"
}

.pe-switch:before {
    content: "\e696"
}

.pe-angle-down-circle:before {
    content: "\e689"
}

.pe-scissors:before {
    content: "\e697"
}

.pe-wallet:before {
    content: "\e600"
}

.pe-safe:before {
    content: "\e698"
}

.pe-volume2:before {
    content: "\e601"
}

.pe-volume1:before {
    content: "\e602"
}

.pe-voicemail:before {
    content: "\e603"
}

.pe-video:before {
    content: "\e604"
}

.pe-user:before {
    content: "\e605"
}

.pe-upload:before {
    content: "\e606"
}

.pe-unlock:before {
    content: "\e607"
}

.pe-umbrella:before {
    content: "\e608"
}

.pe-trash:before {
    content: "\e609"
}

.pe-tools:before {
    content: "\e60a"
}

.pe-timer:before {
    content: "\e60b"
}

.pe-ticket:before {
    content: "\e60c"
}

.pe-target:before {
    content: "\e60d"
}

.pe-sun:before {
    content: "\e60e"
}

.pe-study:before {
    content: "\e60f"
}

.pe-stopwatch:before {
    content: "\e610"
}

.pe-star:before {
    content: "\e611"
}

.pe-speaker:before {
    content: "\e612"
}

.pe-signal:before {
    content: "\e613"
}

.pe-shuffle:before {
    content: "\e614"
}

.pe-shopbag:before {
    content: "\e615"
}

.pe-share:before {
    content: "\e616"
}

.pe-server:before {
    content: "\e617"
}

.pe-search:before {
    content: "\e618"
}

.pe-film:before {
    content: "\e6a5"
}

.pe-science:before {
    content: "\e619"
}

.pe-disk:before {
    content: "\e6a6"
}

.pe-ribbon:before {
    content: "\e61a"
}

.pe-repeat:before {
    content: "\e61b"
}

.pe-refresh:before {
    content: "\e61c"
}

.pe-add-user:before {
    content: "\e6a9"
}

.pe-refresh-cloud:before {
    content: "\e61d"
}

.pe-paperclip:before {
    content: "\e69c"
}

.pe-radio:before {
    content: "\e61e"
}

.pe-note2:before {
    content: "\e69d"
}

.pe-print:before {
    content: "\e61f"
}

.pe-network:before {
    content: "\e69e"
}

.pe-prev:before {
    content: "\e620"
}

.pe-mute:before {
    content: "\e69f"
}

.pe-power:before {
    content: "\e621"
}

.pe-medal:before {
    content: "\e6a0"
}

.pe-portfolio:before {
    content: "\e622"
}

.pe-like2:before {
    content: "\e6a1"
}

.pe-plus:before {
    content: "\e623"
}

.pe-left-arrow:before {
    content: "\e6a2"
}

.pe-play:before {
    content: "\e624"
}

.pe-key:before {
    content: "\e6a3"
}

.pe-plane:before {
    content: "\e625"
}

.pe-joy:before {
    content: "\e6a4"
}

.pe-photo-gallery:before {
    content: "\e626"
}

.pe-pin:before {
    content: "\e69b"
}

.pe-phone:before {
    content: "\e627"
}

.pe-plug:before {
    content: "\e69a"
}

.pe-pen:before {
    content: "\e628"
}

.pe-right-arrow:before {
    content: "\e699"
}

.pe-paper-plane:before {
    content: "\e629"
}

.pe-delete-user:before {
    content: "\e6a7"
}

.pe-paint:before {
    content: "\e62a"
}

.pe-bottom-arrow:before {
    content: "\e6a8"
}

.pe-notebook:before {
    content: "\e62b"
}

.pe-note:before {
    content: "\e62c"
}

.pe-next:before {
    content: "\e62d"
}

.pe-news-paper:before {
    content: "\e62e"
}

.pe-musiclist:before {
    content: "\e62f"
}

.pe-music:before {
    content: "\e630"
}

.pe-mouse:before {
    content: "\e631"
}

.pe-more:before {
    content: "\e632"
}

.pe-moon:before {
    content: "\e633"
}

.pe-monitor:before {
    content: "\e634"
}

.pe-micro:before {
    content: "\e635"
}

.pe-menu:before {
    content: "\e636"
}

.pe-map:before {
    content: "\e637"
}

.pe-map-marker:before {
    content: "\e638"
}

.pe-mail:before {
    content: "\e639"
}

.pe-mail-open:before {
    content: "\e63a"
}

.pe-mail-open-file:before {
    content: "\e63b"
}

.pe-magnet:before {
    content: "\e63c"
}

.pe-loop:before {
    content: "\e63d"
}

.pe-look:before {
    content: "\e63e"
}

.pe-lock:before {
    content: "\e63f"
}

.pe-lintern:before {
    content: "\e640"
}

.pe-link:before {
    content: "\e641"
}

.pe-like:before {
    content: "\e642"
}

.pe-light:before {
    content: "\e643"
}

.pe-less:before {
    content: "\e644"
}

.pe-keypad:before {
    content: "\e645"
}

.pe-junk:before {
    content: "\e646"
}

.pe-info:before {
    content: "\e647"
}

.pe-home:before {
    content: "\e648"
}

.pe-help2:before {
    content: "\e649"
}

.pe-help1:before {
    content: "\e64a"
}

.pe-graph3:before {
    content: "\e64b"
}

.pe-graph2:before {
    content: "\e64c"
}

.pe-graph1:before {
    content: "\e64d"
}

.pe-graph:before {
    content: "\e64e"
}

.pe-global:before {
    content: "\e64f"
}

.pe-gleam:before {
    content: "\e650"
}

.pe-glasses:before {
    content: "\e651"
}

.pe-gift:before {
    content: "\e652"
}

.pe-folder:before {
    content: "\e653"
}

.pe-flag:before {
    content: "\e654"
}

.pe-filter:before {
    content: "\e655"
}

.pe-file:before {
    content: "\e656"
}

.pe-expand1:before {
    content: "\e657"
}

.pe-exapnd2:before {
    content: "\e658"
}

.pe-edit:before {
    content: "\e659"
}

.pe-drop:before {
    content: "\e65a"
}

.pe-drawer:before {
    content: "\e65b"
}

.pe-download:before {
    content: "\e65c"
}

.pe-display2:before {
    content: "\e65d"
}

.pe-display1:before {
    content: "\e65e"
}

.pe-diskette:before {
    content: "\e65f"
}

.pe-date:before {
    content: "\e660"
}

.pe-cup:before {
    content: "\e661"
}

.pe-culture:before {
    content: "\e662"
}

.pe-crop:before {
    content: "\e663"
}

.pe-credit:before {
    content: "\e664"
}

.pe-copy-file:before {
    content: "\e665"
}

.pe-config:before {
    content: "\e666"
}

.pe-compass:before {
    content: "\e667"
}

.pe-comment:before {
    content: "\e668"
}

.pe-coffee:before {
    content: "\e669"
}

.pe-cloud:before {
    content: "\e66a"
}

.pe-clock:before {
    content: "\e66b"
}

.pe-check:before {
    content: "\e66c"
}

.pe-chat:before {
    content: "\e66d"
}

.pe-cart:before {
    content: "\e66e"
}

.pe-camera:before {
    content: "\e66f"
}

.pe-call:before {
    content: "\e670"
}

.pe-calculator:before {
    content: "\e671"
}

.pe-browser:before {
    content: "\e672"
}

.pe-box2:before {
    content: "\e673"
}

.pe-box1:before {
    content: "\e674"
}

.pe-bookmarks:before {
    content: "\e675"
}

.pe-bicycle:before {
    content: "\e676"
}

.pe-bell:before {
    content: "\e677"
}

.pe-battery:before {
    content: "\e678"
}

.pe-ball:before {
    content: "\e679"
}

.pe-back:before {
    content: "\e67a"
}

.pe-attention:before {
    content: "\e67b"
}

.pe-anchor:before {
    content: "\e67c"
}

.pe-albums:before {
    content: "\e67d"
}

.pe-alarm:before {
    content: "\e67e"
}

.pe-airplay:before {
    content: "\e67f"
}

@font-face {
    font-family: 'Web Icons';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/web-icons.eot');
    src: url('../fonts/web-icons.eot') format('embedded-opentype'), url('../fonts/web-icons.woff2') format('woff2'), url('../fonts/web-icons.woff') format('woff'), url('../fonts/web-icons.ttf') format('truetype'), url('../fonts/web-icons.svg') format('svg')
}

[class*=' wb-'],
[class^=wb-] {
    font-family: 'Web Icons';
    font-weight: 400;
    font-style: normal;
    position: relative;
    display: inline-block;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    text-rendering: auto;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.wb-dashboard:before {
    content: ''
}

.wb-inbox:before {
    content: ''
}

.wb-cloud:before {
    content: ''
}

.wb-bell:before {
    content: ''
}

.wb-book:before {
    content: ''
}

.wb-bookmark:before {
    content: ''
}

.wb-tag:before {
    content: ''
}

.wb-library:before {
    content: ''
}

.wb-share:before {
    content: ''
}

.wb-reply:before {
    content: ''
}

.wb-refresh:before {
    content: ''
}

.wb-move:before {
    content: ''
}

.wb-chat:before {
    content: ''
}

.wb-chat-working:before {
    content: ''
}

.wb-chat-text:before {
    content: ''
}

.wb-chat-group:before {
    content: ''
}

.wb-envelope:before {
    content: ''
}

.wb-envelope-open:before {
    content: ''
}

.wb-user:before {
    content: ''
}

.wb-user-circle:before {
    content: ''
}

.wb-users:before {
    content: ''
}

.wb-user-add:before {
    content: ''
}

.wb-grid-9:before {
    content: ''
}

.wb-grid-4:before {
    content: ''
}

.wb-menu:before {
    content: ''
}

.wb-layout:before {
    content: ''
}

.wb-fullscreen:before {
    content: ''
}

.wb-fullscreen-exit:before {
    content: ''
}

.wb-expand:before {
    content: ''
}

.wb-contract:before {
    content: ''
}

.wb-arrow-expand:before {
    content: ''
}

.wb-arrow-shrink:before {
    content: ''
}

.wb-desktop:before {
    content: ''
}

.wb-mobile:before {
    content: ''
}

.wb-signal:before {
    content: ''
}

.wb-power:before {
    content: ''
}

.wb-more-horizontal:before {
    content: ''
}

.wb-more-vertical:before {
    content: ''
}

.wb-globe:before {
    content: ''
}

.wb-map:before {
    content: ''
}

.wb-flag:before {
    content: ''
}

.wb-pie-chart:before {
    content: ''
}

.wb-stats-bars:before {
    content: ''
}

.wb-pluse:before {
    content: ''
}

.wb-home:before {
    content: ''
}

.wb-shopping-cart:before {
    content: ''
}

.wb-payment:before {
    content: ''
}

.wb-briefcase:before {
    content: ''
}

.wb-search:before {
    content: ''
}

.wb-zoom-in:before {
    content: ''
}

.wb-zoom-out:before {
    content: ''
}

.wb-download:before {
    content: ''
}

.wb-upload:before {
    content: ''
}

.wb-sort-asc:before {
    content: ''
}

.wb-sort-des:before {
    content: ''
}

.wb-graph-up:before {
    content: ''
}

.wb-graph-down:before {
    content: ''
}

.wb-replay:before {
    content: ''
}

.wb-edit:before {
    content: ''
}

.wb-pencil:before {
    content: ''
}

.wb-rubber:before {
    content: ''
}

.wb-crop:before {
    content: ''
}

.wb-eye:before {
    content: ''
}

.wb-eye-close:before {
    content: ''
}

.wb-image:before {
    content: ''
}

.wb-gallery:before {
    content: ''
}

.wb-video:before {
    content: ''
}

.wb-camera:before {
    content: ''
}

.wb-folder:before {
    content: ''
}

.wb-clipboard:before {
    content: ''
}

.wb-order:before {
    content: ''
}

.wb-file:before {
    content: ''
}

.wb-copy:before {
    content: ''
}

.wb-add-file:before {
    content: ''
}

.wb-print:before {
    content: ''
}

.wb-calendar:before {
    content: ''
}

.wb-time:before {
    content: ''
}

.wb-trash:before {
    content: ''
}

.wb-plugin:before {
    content: ''
}

.wb-extension:before {
    content: ''
}

.wb-memory:before {
    content: ''
}

.wb-settings:before {
    content: ''
}

.wb-scissor:before {
    content: ''
}

.wb-wrench:before {
    content: ''
}

.wb-hammer:before {
    content: ''
}

.wb-lock:before {
    content: ''
}

.wb-unlock:before {
    content: ''
}

.wb-volume-low:before {
    content: ''
}

.wb-volume-high:before {
    content: ''
}

.wb-volume-off:before {
    content: ''
}

.wb-pause:before {
    content: ''
}

.wb-play:before {
    content: ''
}

.wb-stop:before {
    content: ''
}

.wb-musical:before {
    content: ''
}

.wb-random:before {
    content: ''
}

.wb-reload:before {
    content: ''
}

.wb-loop:before {
    content: ''
}

.wb-text:before {
    content: ''
}

.wb-bold:before {
    content: ''
}

.wb-italic:before {
    content: ''
}

.wb-underline:before {
    content: ''
}

.wb-format-clear:before {
    content: ''
}

.wb-text-type:before {
    content: ''
}

.wb-table:before {
    content: ''
}

.wb-attach-file:before {
    content: ''
}

.wb-paperclip:before {
    content: ''
}

.wb-link-intact:before {
    content: ''
}

.wb-link:before {
    content: ''
}

.wb-link-broken:before {
    content: ''
}

.wb-indent-increase:before {
    content: ''
}

.wb-indent-decrease:before {
    content: ''
}

.wb-align-justify:before {
    content: ''
}

.wb-align-left:before {
    content: ''
}

.wb-align-center:before {
    content: ''
}

.wb-align-right:before {
    content: ''
}

.wb-list-numbered:before {
    content: ''
}

.wb-list-bulleted:before {
    content: ''
}

.wb-list:before {
    content: ''
}

.wb-emoticon:before {
    content: ''
}

.wb-quote-right:before {
    content: ''
}

.wb-code:before {
    content: ''
}

.wb-code-working:before {
    content: ''
}

.wb-code-unfold:before {
    content: ''
}

.wb-chevron-right:before {
    content: ''
}

.wb-chevron-left:before {
    content: ''
}

.wb-chevron-left-mini:before {
    content: ''
}

.wb-chevron-right-mini:before {
    content: ''
}

.wb-chevron-up:before {
    content: ''
}

.wb-chevron-down:before {
    content: ''
}

.wb-chevron-up-mini:before {
    content: ''
}

.wb-chevron-down-mini:before {
    content: ''
}

.wb-arrow-left:before {
    content: ''
}

.wb-arrow-right:before {
    content: ''
}

.wb-arrow-up:before {
    content: ''
}

.wb-arrow-down:before {
    content: ''
}

.wb-dropdown:before {
    content: ''
}

.wb-dropup:before {
    content: ''
}

.wb-dropright:before {
    content: ''
}

.wb-dropleft:before {
    content: ''
}

.wb-sort-vertical:before {
    content: ''
}

.wb-triangle-left:before {
    content: ''
}

.wb-triangle-right:before {
    content: ''
}

.wb-triangle-down:before {
    content: ''
}

.wb-triangle-up:before {
    content: ''
}

.wb-check-circle:before {
    content: ''
}

.wb-check:before {
    content: ''
}

.wb-check-mini:before {
    content: ''
}

.wb-close:before {
    content: ''
}

.wb-close-mini:before {
    content: ''
}

.wb-plus-circle:before {
    content: ''
}

.wb-plus:before {
    content: ''
}

.wb-minus-circle:before {
    content: ''
}

.wb-minus:before {
    content: ''
}

.wb-alert-circle:before {
    content: ''
}

.wb-alert:before {
    content: ''
}

.wb-help-circle:before {
    content: ''
}

.wb-help:before {
    content: ''
}

.wb-info-circle:before {
    content: ''
}

.wb-info:before {
    content: ''
}

.wb-warning:before {
    content: ''
}

.wb-heart:before {
    content: ''
}

.wb-heart-outline:before {
    content: ''
}

.wb-star:before {
    content: ''
}

.wb-star-half:before {
    content: ''
}

.wb-star-outline:before {
    content: ''
}

.wb-thumb-up:before {
    content: ''
}

.wb-thumb-down:before {
    content: ''
}

.wb-small-point:before {
    content: ''
}

.wb-medium-point:before {
    content: ''
}

.wb-large-point:before {
    content: ''
}

/* 返回顶部 */

.srcotop {
    width: 100%;
    height: 60px;
    background: #F3F4F5 url("../images/top1.png") no-repeat center;
    cursor: pointer;
    -webkit-transition: 0.4s;
    -moz-transition: 0.4s;
    -ms-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.srcotop:hover {
    background: #EF730F url("../images/top2.png") no-repeat center;
}

/* 滚动条 */
html:not(.isMobile) *::-webkit-scrollbar {
    width: 6px;
    background: #fff;
}

html:not(.isMobile) *::-webkit-scrollbar-thumb {
    background-color: #EF730F;

}

ul,
li {
    padding: 0px;
    list-style: none;
}

.cover {
    height: 100%;
}

.onlinebox {
    z-index: 9999 !important;
}

.load {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    right: 0px;
    bottom: 0px;
    overflow: hidden;
    z-index: 20000;
    margin: 0 !important;
    background-color: #ffffff;

}

.ball-scale-multiple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40px, -40px);
}

.ball-scale-multiple>div {
    background-color: #EF730F;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0;
    margin: 0;
    width: 80px;
    height: 80px;
    -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
    animation: ball-scale-multiple 1s 0s linear infinite;
}

.ball-scale-multiple>div:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.ball-scale-multiple>div:nth-child(3) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

@keyframes ball-scale-multiple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

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

.line-scale-pulse-out {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.line-scale-pulse-out>div {
    background-color: #EF730F;
    width: 4px;
    height: 35px;
    border-radius: 2px;
    margin: 2px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: inline-block;
    -webkit-animation: line-scale-pulse-out 0.9s 0s infinite cubic-bezier(.85, .25, .37, .85);
    animation: line-scale-pulse-out 0.9s 0s infinite cubic-bezier(.85, .25, .37, .85);
}

.line-scale-pulse-out>div:nth-child(1),
.line-scale-pulse-out>div:nth-child(5) {
    -webkit-animation-delay: 0.4s !important;
    animation-delay: 0.4s !important;
}

.line-scale-pulse-out>div:nth-child(2),
.line-scale-pulse-out>div:nth-child(4) {
    -webkit-animation-delay: 0.2s !important;
    animation-delay: 0.2s !important;
}

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

    50% {
        -webkit-transform: scaley(0.4);
        transform: scaley(0.4);
    }

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

.line-spin-fade-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-15px, -15px);
}

.line-spin-fade-loader>div {
    background-color: #EF730F;
    width: 4px;
    height: 35px;
    border-radius: 2px;
    margin: 2px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    width: 5px;
    height: 15px;
}

.line-spin-fade-loader>div:nth-child(1) {
    top: 20px;
    left: 0;
    -webkit-animation: line-spin-fade-loader 1.2s 0.12s infinite ease-in-out;
    animation: line-spin-fade-loader 1.2s 0.12s infinite ease-in-out;
}

.line-spin-fade-loader>div:nth-child(2) {
    top: 13.63636px;
    left: 13.63636px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: line-spin-fade-loader 1.2s 0.24s infinite ease-in-out;
    animation: line-spin-fade-loader 1.2s 0.24s infinite ease-in-out;
}

.line-spin-fade-loader>div:nth-child(3) {
    top: 0;
    left: 20px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-animation: line-spin-fade-loader 1.2s 0.36s infinite ease-in-out;
    animation: line-spin-fade-loader 1.2s 0.36s infinite ease-in-out;
}

.line-spin-fade-loader>div:nth-child(4) {
    top: -13.63636px;
    left: 13.63636px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: line-spin-fade-loader 1.2s 0.48s infinite ease-in-out;
    animation: line-spin-fade-loader 1.2s 0.48s infinite ease-in-out;
}

.line-spin-fade-loader>div:nth-child(5) {
    top: -20px;
    left: 0;
    -webkit-animation: line-spin-fade-loader 1.2s 0.6s infinite ease-in-out;
    animation: line-spin-fade-loader 1.2s 0.6s infinite ease-in-out;
}

.line-spin-fade-loader>div:nth-child(6) {
    top: -13.63636px;
    left: -13.63636px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: line-spin-fade-loader 1.2s 0.72s infinite ease-in-out;
    animation: line-spin-fade-loader 1.2s 0.72s infinite ease-in-out;
}

.line-spin-fade-loader>div:nth-child(7) {
    top: 0;
    left: -20px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-animation: line-spin-fade-loader 1.2s 0.84s infinite ease-in-out;
    animation: line-spin-fade-loader 1.2s 0.84s infinite ease-in-out;
}

.line-spin-fade-loader>div:nth-child(8) {
    top: 13.63636px;
    left: -13.63636px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-animation: line-spin-fade-loader 1.2s 0.96s infinite ease-in-out;
    animation: line-spin-fade-loader 1.2s 0.96s infinite
}

@-webkit-keyframes line-spin-fade-loader {
    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

@keyframes line-spin-fade-loader {
    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
    }
}

/* 头部导航 */
.met-head {
    position: fixed;
    right: 0;
    left: 0;
    padding: 0 95px 0 40px;
    right: 5px;
    top: 0;
    z-index: 1500;
    width: 100%;
    height: 75px;
    line-height: 75px;
    border-bottom: 1px solid;
    border-color: #ffffff;
}

.nav-logo {
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    font-size: 0;
    max-width: 60%;
    z-index: 3
}

.nav-logo img {
    height: 100%;
    padding: 10px 0;
}

.nav-box {
    float: right;
    overflow: hidden;
    position: relative;
    z-index: 2
}

.nav-box ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 3999px
}

.nav-box ul li {
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    white-space: nowrap;
    cursor: pointer
}

.nav-box ul li a {
    display: block;
    position: relative;
    color: #ffffff;
}

.nav-box ul li a:after {
    content: '';
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background: #ffffff;
    transition: all .6s ease
}

.nav-box ul li a b {
    display: block;
    padding: 0 25px;
    font-weight: normal;
    position: relative;
    z-index: 2;
    color: #ffffff;
    transition: color .3s;
    -moz-transition: color .3s;
    -ms-transition: color .3s;
    -o-transition: color .3s;
    -webkit-transition: color .3s;
    font-size: 15px
}

.nav-box ul li.active a:after {
    width: 100%
}


/* 子栏目 */

.zlm_nav {
    width: 100%;
    height: 75px;
    background-color: #fff;
    border-bottom: 1px solid #E4EAEC;
    box-sizing: border-box;
}

.zlm_ulBox {
    height: 75px;
    margin: 0 auto;
    line-height: 75px;
    display: flex;
    justify-content: center;
}

.zlm_ulBox ul {
    margin: 0 auto;

}

.zlm_ulBox ul li {
    float: left;
}

.zlm_ulBox ul li a {
    line-height: 75px;
    padding: 0 20px;
    font-size: 16px;
    display: block;
    text-decoration: none;
    color: #444444;
}

.zlm_ul1 {
    /*width: 500px;*/
    height: 75px;
    float: left;
    margin: 0 auto;
    /*margin-right: 400px;*/
}

.zlm_ul1 .active {
    /* border-bottom: 4px solid #EF730F; */
    background-color: #EF730F;
    color: #fff;
}

.zlm_ul1 li:hover a {
    background-color: #EF730F;
    color: #FFF;
}



@media (max-width: 750px) {

    .zlm_nav {
        height: 3rem;
        top: .5rem;
    }

    .zlm_ulBox {
        width: 100%;
        height: 3rem;
        line-height: 3rem;
    }

    .zlm_ulBox ul {

        display: flex;
        justify-content: center;

    }

    .zlm_ulBox ul li a {
        line-height: 3rem;
        padding: 0 .4rem;
        font-size: 1rem;
    }

    .zlm_ul1 {
        height: 100%;
        width: 100%;
        overflow: hidden;
    }

    .zlm_ul1 .active {
        /* border-bottom: 2px solid #EF730F; */
        background-color: #EF730F;
        color: #FFF;
    }

}

@media (max-width:440px) {
    .zlm_nav2 {
        height: 2rem;
    }

    .zlm_ulBox2 {
        height: 2rem;
        text-align: center;
    }

    .zlm_ulBox2 ul li {
        display: inline-block;
        float: none;
    }
}

@media (max-width:350px) {
    .zlm_ulBox ul li a {
        padding: 0 .15rem;
    }
}


/*尾部 begin*/
.link-wrap {
    width: 100%;
    background: #96999C;}


.link-wrap .inner {
    overflow: hidden;
    margin: 0 auto;
    padding-top: 35px;
    width: 1310px;
    height: 330px;
    color: #fff
}

.link-wrap .sub {
    display: block;
    color: #fff;

    font-size: 18px;
}

.link-wrap .linktxt {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin: 0 auto;
}


.link-wrap .link-item {
    float: left;
    width: 750px;
    border-right: 1px solid #88878A;
}

.link-wrap .link-right {
    float: right;
    width: 500px;
    height: 295px;
}

.link-wrap .link-info2,
.link-wrap .link-info {
    float: left;
    height: 295px;
    /*border-right: 1px solid #88878A;*/
    font-size: 12px;
}

.link-wrap .link-info ul {
    float: left;
    margin: 25px 0 0 0;
    padding: 0;
}

.link-wrap .link-info ul li {
    margin: 0;
    padding: 0;
}

.link-wrap .link-info ul li a {
    display: inline-block;
    height: 28px;
    color: #fff;
    font-size: 14px;
    line-height: 28px;
    -webkit-transition: color .2s ease-out;
    transition: color .2s ease-out；
}

.link-wrap .link-info ul li a:hover {
    color: #fff;
}

.link-info li {
    float: left;
    width: 100%;
}

.link-wrap .link-info2 {
    padding-left: 48px;
}

.link-wrap .link-info2 .fl {
    box-sizing: border-box;
    padding-left: 4px;
    width: 100px;
}

.link-info .link-ul-uil {
    width: 240px
}

.link-info .link-ul-uis {
    width: 110px;
}

.link-wrap .link-code {
    float: left;
    /* padding-left: 24px; */
    width: 210px;
}

.link-wrap .link-code-outer {
    margin-top: 33px;
    margin-right: 100px;
}

.link-wrap .link-code li img,
.link-wrap .link-code-outer {
    display: block;
    width: 125px;
    height: 125px;
}

.link-wrap .link-tel {
    float: left;
    width: 270px;
}

.link-tel .tel-phone {
    margin-top: 15px;
    font-size: 48px;
    line-height: 48px;
    /* font-weight: 600; */
    color: #fff;
    font-family: dincond_medium;
}

.link-tel .tel-phone img {
    width: 50px;
    margin-bottom: 20px;
    margin-left: -10px;
}

.link-tel .tel-time {
    margin-bottom: 22px;
    color: #fff;
    font-size: 13px;
    line-height: 24px;
}

.link-tel .biz-time {
    margin-bottom: 22px;
    color: #fff;
    font-size: 14px;
    line-height: 32px;

}

.link-tel .biz-time span {
    font-size: 24px;
    font-family: dincond_medium;
}

.link-tel .js-link-custom-service {
    display: inline-block;
    overflow: hidden;
    width: 100px;
    height: 36px;
    border-radius: 2px;
    background: #db3939;
    background: -moz-linear-gradient(left, #db3939 0%, #f64444 100%);
    background: -webkit-linear-gradient(left, #db3939 0%, #f64444 100%);
    background: linear-gradient(to right, #db3939 0%, #f64444 100%);
    color: #fff;
    font-size: 15px;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#db3939', endColorstr='#f64444', GradientType=1);
}

.link-tel .js-link-custom-service span {
    display: block;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.link-tel .js-link-custom-service em {
    display: block;
    padding: 4px 20px;
    height: 36px;
    line-height: 24px
}

.link-tel .js-link-custom-service i {
    display: inline-block;
    margin-right: 8px;
    background-position: -60px 0;
    vertical-align: sub
}

.link-tel a:hover span {
    margin-top: -36px
}

.link-wrap .inner-list {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0 auto;
    padding-top: 16px;
    padding-bottom: 12px;
    width: 1310px;
    border-top: 1px solid #88878A;
    color: #fff;
    font-size: 13px;
    line-height: 24px;
}

.link-wrap .inner-list>span,
.link-wrap .inner-list>a {
    float: left;
    margin-bottom: 5px;
}

.link-wrap .inner-list>.sub {
    position: absolute;
    top: 19px;
    left: 0;
    width: 75px;
}

.link-wrap .inner-list>a {
    margin: 0 10px 5px;
    color: #fff;
    -webkit-transition: color .2s ease-out;
    transition: color .2s ease-out
}

.link-wrap .inner-list>a:hover {
    color: #fff
}

.link-wrap .inner-list .rl200 {
    margin-left: 220px;
}

/*末尾 公司信息*/
.footer-wrap {
    width: 100%;
    background: #F3F4F5;
}

.footer-wrap .inner {
    overflow: hidden;
    margin: 0 auto;
    width: 1310px;
    height: 60px;
    color: #444444;
    font-size: 12px;
    line-height: 60px;
}

.footer-wrap .Copyright {
    float: left;
    color: #444444;
}

.footer-wrap .Copyright span {
    margin-left: 20px
}

.footer-wrap .Copyright span a {
    color: #444444;
}

.footer-wrap .record {
    float: right;
}

.footer-wrap .record img {
    vertical-align: sub
}

.footer-wrap .record span {
    margin-left: 5px;
    color: #444444;
}

.shengming {
    padding: 15px;
    border: 1px #999999;
    background: #fafafa;
    font-size: 12px;
    margin: 20px auto 40px;
    color: #999999;
    line-height: 20px;
}

.state {
    width: 100%;
    height: 145px;
    position: relative;
}

.state_bo {
    width: 100%;
    margin: auto;
    line-height: 36px;
    height: 115px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.state_bo:hover {
    -moz-box-shadow: 1px 1px 3px 2px #ededed;
    -webkit-box-shadow: 1px 1px 3px 2px #ededed;
    box-shadow: 1px 1px 3px 2px #ededed;
}

.state_box {
    width: 215px;
    height: 60px;
    border-right: 1px solid #e4e4e4;
    float: left;
    margin-top: 20px;
}

.state_bo .state_box:last-child {
    border-right: none;
}

.state_box p {
    color: #0656a2;
    text-align: center;
    position: relative;
}

.state_box p span {
    display: inline-block;
}

.state_box p span:hover {
    color: #EF730F;
}

.pageJ {
    width: 1198px;
    background: #FFF;
    border: #e4e4e4 solid 1px;
    overflow: hidden;
    margin-bottom: 20px;
}

.pageJ .diva {
    width: 1118px;
    height: 80px;
    font-size: 20px;
    line-height: 80px;
    padding: 0px 40px 0px 32px;
    font-weight: bold;
    border-bottom: #e4e4e4 solid 1px;
    float: left;
    overflow: hidden;
    border-left: #0656a2 solid 8px
}

.pageJ .p20 {
    padding: 40px 40px;
}

.pageJ .p201 {
    width: 1118px;
    height: 60px;
    padding: 40px 40px;
    margin-bottom: 40px;
}

.pageJ .table {
    width: 1118px;
    text-align: center;
    overflow: hidden;
    color: #999;
    font-size: 16px;
    margin: 40px 40px 10px 40px;
    border-spacing: 0;
    border-collapse: collapse;
    position: relative;
}

.pageJ .table td {
    width: 85px;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
    padding: 4px 4px 4px 5px;
    border-bottom: #E4E4e4 1px solid;
    word-break: break-all;
    word-wrap: break-word;
    transition: 0.8s;
}

.pageJ .table .w110 {
    width: 130px;
}

.pageJ .table .w90 {
    width: 90px;
}

.pageJ .table .w112 {
    width: 106px;
    padding: 4px 8px 4px 0px;
    margin-left: -6px;
}

.pageJ .table .lfline {
    border-left: #E4E4e4 1px solid;
}

.pageJ .table .h30 {
    line-height: 24px;
    vertical-align: middle;
    display: table-cell;
    vertical-align: inherit;
    padding-top: 10px;
}

.pageJ .table .w140 {
    width: 135px;
}

.pageJ .table .w150 {
    width: 160px;
}

.pageJ .table .w325 {
    width: 293px;
    padding: 4px 10px 4px 10px;
    display: table-cell;
    vertical-align: inherit;
}

.pageJ .table .rl {
    text-align: left;
}

.pageJ .table img {
    width: 90px;
    height: 50px;
    padding: 5px 5px 5px 5px;
    border-radius: 4px;
    float: left;
}

.pageJ .table .thead {
    line-height: 30px;
}

.pageJ .table .f14 {
    font-size: 14px;
    line-height: 20px;
}

.pageJ .table .f20 {
    font-size: 18px;
    line-height: 60px;
    padding-right: 10px;
}

.pageJ .table .ztjc {
    font-weight: 700;
}

.pageJ .table .bgds {
    background-color: #f8f8f8;
}

.pageJ .table tr:hover {
    background-color: #f8f8f8;
}

.pageJ .table a {
    background-color: #666;
    padding: 8px 16px;
    color: #fff;
    font-size: 14px;
    border-radius: 2px;
    font-weight: 700;
}

.pageJ .table a:hover {
    background-color: #0656a2;
}

.pageJ ul li dt {
    width: 120px;
    font-size: 16px;
}

.pageJ .table td em {
    font-size: 12px;
    color: #999;
    /*margin-left:4px;*/
    display: block;
}

.pageJ ul li dd {
    width: 370px;
    font-size: 16px;
    overflow: hidden;
}

.pageJ ul::affter {
    clear: both;
}

.pageJ p {
    width: 1180px;
    padding: 10px 40px 40px;
    color: #999;
    line-height: 24px;
    font-size: 14px;
}

.pageK {
    width: 1198px;
    background: #FFF;
    border: #e4e4e4 solid 1px;
    overflow: hidden;
    margin-bottom: 20px;
}

.pageK .diva {
    width: 1118px;
    height: 80px;
    font-size: 20px;
    line-height: 80px;
    padding: 0px 40px 0px 32px;
    font-weight: bold;
    border-bottom: #e4e4e4 solid 1px;
    float: left;
    overflow: hidden;
    border-left: #0656a2 solid 8px;
}

.pageK .diva span {
    width: 300px;
    overflow: hidden;
    float: right;
    text-align: right;
    font-size: 16px;
    background: url(../img/img31.png) no-repeat right;
    padding-right: 14px;
}

.pageK .comlist {
    width: 1166px;
    overflow: hidden;
    position: relative;
    margin: 30px auto;
    z-index: 1;
}

.pageK .comlist ul {
    margin: 20px 5px;
}

.pageK .comlist li {
    float: left;
    width: 190px;
    height: 80px;
    margin: 20px;
    line-height: 80px;
    text-align: center;
}

.pageK .comlist img {
    overflow: hidden;
    width: 194px;
    height: 84px;
    display: block;
}

.pageK .comlist a {
    border: 1px solid #eee;
    display: block;
    width: 194px;
    height: 84x;
}

.pageK .comlist a:hover {
    border: 1px solid #eee;
    -moz-box-shadow: 2px 2px 4px 3px #eee;
    -webkit-box-shadow: 2px 2px 4px 3px #eee;
    box-shadow: 2px 2px 4px 3px #eee;
}

.pageK .comlist a:hover img {
    display: none
}

.pageK .comlist span {
    display: none;
}

.pageK .comlist a:hover span {
    padding: 10px 15px;
    width: 190px;
    font-size: 16px;
    display: block;
    line-height: 24px;
    height: 64px;
    vertical-align: middle;
    display: table-cell;
    vertical-align: middle;
    background: #0656a2;
    color: #fff;
}
}

.pageK ul li dl {
    font-size: 16px;
    float: left;
}

.pageK ul li dt {
    font-size: 16px;
    font-weight: 700;
    display: inline;
}

.pageK ul li dd {
    font-size: 20px;
    color: #EF730F;
    display: inline;
}

.pageH {
    width: 1198px;
    background: #FFF;
    border: #e4e4e4 solid 1px;
    overflow: hidden;
    margin-bottom: 20px;
}

.pageH .diva {
    width: 1118px;
    height: 80px;
    font-size: 20px;
    line-height: 80px;
    padding: 0px 40px 0px 32px;
    font-weight: bold;
    border-bottom: #e4e4e4 solid 1px;
    float: left;
    overflow: hidden;
    border-left: #0656a2 solid 8px
}

.pageH .diva span {
    width: 300px;
    overflow: hidden;
    float: right;
    text-align: right;
    font-size: 16px;
    background: url(../img/img31.png) no-repeat right;
    padding-right: 14px;
}

.pageH ul {
    width: 1118px;
    float: left;
    overflow: hidden;
    padding: 20px 40px;
}

.pageH ul li {
    width: 1118px;
    height: auto;
    line-height: 32px;
    float: left;
    overflow: hidden;
}

.pageH ul li dl {
    font-size: 16px;
    float: left;
}

.pageH ul li dt {
    font-size: 16px;
    font-weight: 700;
    display: inline;
}

.pageH ul li dd {
    font-size: 20px;
    color: #EF730F;
    display: inline;
}

.pageH .dongtai1 {
    width: 530px;
    height: auto;
    float: right;
    border-bottom: 1px solid #eee
}

.pageH .dongtai1 .you {
    width: 390px;
    height: auto;
    float: right;
    padding-right: 20px;
}

.pageH .dongtai1 .you h1 {
    font-size: 18px;
    height: 20px;
    font-weight: 700;
    color: #666;
    padding-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pageH .dongtai1 .you h2 {
    font-size: 14px;
    color: #999;
    padding-bottom: 10px;
    padding-top: 10px;
}

.pageH .shijian1 {
    width: 100%;
    height: 100px;
    border-top: 1px solid #eee;
    box-sizing: border-box;
    padding-top: 10px;
}

.clear {
    clear: both;
}

.pageH .dongtai {
    width: 600px;
    height: auto;
    float: left;
}

.pageH .dongtai img {
    width: 580px;
    height: 260px;
    margin-left: 20px;
}

.pageH .dongtai p {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #666;
    margin: 20px 20px;
}

.pageH .shijian {
    width: 100%;
    margin-top: 20px;
}

.pageH .zuo {
    float: left;
    width: 100px;
    border-right: 1px solid #eee;
    height: 48px;
}

.pageH .zuo h1 {
    color: #999;
    font-size: 26px;
    font-weight: 400;
    line-height: 24px;
    text-align: center
}

.pageH .zuo h2 {
    color: #666;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
}

.pageH .shijian p {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    float: right;
    width: 468px;
    text-indent: 0;
    margin: 0;
}

.pageH .chakan {
    width: 100%;
    margin: auto;
}

.pageH .chakan span {
    display: block;
    width: 770px;
    height: 50px;
    line-height: 50px;
    text-align: right;
    background: url(../img/img31.png) no-repeat right;
    margin: auto;
    background-color: #fff;
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 20px;
    float: left;
}

/*==典型用户==*/
.company_cont {
    padding-left: 5px;
    padding-bottom: 20px;
    overflow: hidden;
}

.company_cont li {
    float: left;
    margin: 10px 26px;
}

.logo_list li.last {}

.logo_list img {
    border: 1px solid #eaeaea;
    width: 188px;
    height: 68px;
}

.wrap66 {
    width: 6rem;
    background: #2e3238;
    overflow: hidden;
    padding: 0.24rem 0.2rem;
    color: #FFF;
    text-align: center;
    font-size: 0.24rem;
    line-height: 0.6rem;
    margin-bottom: 1rem;
}

.wrap66 span {
    color: #999;
    text-align: center;
    font-size: 0.18rem;
    padding: 0.6rem 0rem;
    line-height: 0.3rem;
}

#wrap11 {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    overflow: hidden;
    width: 100%;
}

.wrap11 {
    width: 6.4rem;
    height: 1rem;
    overflow: hidden;
    background-color: #515151;
}

.wrap11 .diva {
    width: 2.8rem;
    float: left;
    padding: 0.14rem 0rem 0rem 0.2rem;
    color: #FFF;
}

.wrap11 .diva dl {
    float: left;
    color: #FFF;
    font-size: 0.2rem;
}

.wrap11 .diva dl a {
    float: left;
    color: #FFF;
    font-size: 0.2rem;
}

.wrap11 .diva dd {
    float: left;
    font-size: 0.32rem;
    color: #FFF;
    font-weight: 700;
}

.wrap11 .diva dd a {
    float: left;
    font-size: 0.32rem;
    color: #FFF;
}

.wrap11 .divb {
    width: 3.4rem;
    height: 1rem;
    float: left;
    background: #363636;
}

.wrap11 .divb dd {
    width: 1.66rem;
    height: 1rem;
    float: left;
    border-left: 0.01rem solid #515151;
    color: #fff;
    text-align: center;
    font-size: 0.24rem;
}

.wrap11 .divb dd a {
    width: 1.66rem;
    height: 1rem;
    color: #fff;
    display: block;
}

.wrap11 .divb dd img {
    width: 0.32rem;
    height: 0.32rem;
    color: #fff;
    display: block;
    margin: 0.17rem 0rem 0.05rem 0.67rem;
}

.foot_info_met_11_4 {
    line-height: 1.8;
    background-color: #F3F4F5;
}

.foot_info_met_11_4.met-page {
    height: auto !important;
    overflow: visible;
}

.foot_info_met_11_4 p {
    margin-bottom: 0px;
    color: #96999C;
}

.foot_info_met_11_4 .left {
    float: none;
    text-align: center;
    width: 100%;
}

.foot_info_met_11_4 .breadcrumb-item,
.foot_info_met_11_4 .breadcrumb-item::before {
    color: #96999C;
}

.foot_info_met_11_4 .breadcrumb-item span:hover {
    color: #96999C;
}

.foot_info_met_11_4 .breadcrumb-item span {
    color: #96999C;
}

.foot_info_met_11_4 .powered_by_metinfo {
    font-size: 12px;
    color: #96999C;
}

.foot_info_met_11_4 .right {
    float: none;
    width: 100%;
    text-align: center;
}

.foot_info_met_11_4 .right p img {
    max-width: 100%;
    height: auto !important;
}

.foot_info_met_11_4 .right .social i {
    font-size: 20px;
    margin-right: 5px;
    color: #96999C;
}

.foot_info_met_11_4 .right .social i:hover {
    color: #EF730F;
}

.foot_info_met_11_4 .inline-block {
    padding: 0 3px;
    cursor: pointer;
}

.foot_info_met_11_4 .btn-cntotc {
    color: #96999C;
}

.foot_info_met_11_4 .btn-cntotc:hover {
    color: #96999C;
}


.met-page {
    width: 100%;
    height: 100% !important;
    position: relative;
    background-size: cover;
    overflow: hidden;
    background-position: center top;
    transition: visibility 0s 0.5s;
    z-index: 2;
    padding-top: 75px;
}

.p-y-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}


/* 侧边栏 */
.nav-side {
    width: 32px;
    height: 32px;
    position: fixed;
    right: 40px;
    top: 22.5px;
    cursor: pointer;
    z-index: 1501;
    transition: all ease 0.6s;
    -moz-transition: all ease 0.6s;
    -ms-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    -webkit-transition: all ease 0.6s
}

.nav-side hr {
    height: 1px;
    background: #444444;
    background: #ffffff;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    position: absolute;
    transition: all ease 0.6s;
    -moz-transition: all ease 0.6s;
    -ms-transition: all ease 0.6s;
    -o-transition: all ease 0.6s;
    -webkit-transition: all ease 0.6s
}

.nav-side hr:nth-child(1) {
    width: 20px;
    top: 8px;
    right: 5px;
    left: 5px
}

.nav-side hr:nth-child(2) {
    width: 20px;
    top: 50%;
    left: 5px;
    margin-top: -1px;
    opacity: 1;
    right: 5px
}

.nav-side hr:nth-child(3) {
    width: 20px;
    bottom: 8px;
    right: 5px;
    left: 5px
}

.side-box {
    position: fixed;
    width: 300px;
    right: 0;
    height: 100%;
    z-index: 1501;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    top: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%)
}

.side-box .side-cut {
    height: 100%
}

.side-box .side-cut .side-shadow {
    width: 3999px;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    z-index: 99;
    top: 0;
    right: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    -webkit-transition: .3s
}

.side-box .side-cut .side-nav {
    height: 100%;
    background: #ffffff;
    z-index: 1000;
    position: relative;
}

.side-box .side-cut .side-nav .side-close {
    float: right;
    font-size: 50px;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    color: #8c8c8c;
}

.side-box .side-cut .side-nav .logo-2 {
    padding: 30px 30px 20px 20px;
    text-align: left;
}

.side-box .side-cut .side-nav .logo-2 img {
    width: 100%;
    max-width: 200px;
    opacity: 0;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    transform: translateY(100%);
}

.side-box .navlist {
    min-height: 100%;
    margin-bottom: 70px
}

.side-box .navlist .side-foot {
    padding: 30px 30px 25px 30px;
    text-align: left;
    overflow: hidden
}

.side-box .navlist .side-foot .side-qrcode {
    width: 140px;
    height: 140px;
}

.side-box .navlist .side-foot .side-qrcode img {
    width: 100%;
    height: 100% opacity:0;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    transform: translateY(100%);
}

.side-box .navlist .side-foot .side-phone {
    font-size: 16px;
    letter-spacing: -1px;
    text-align: left;
    color: #444444;
    border-bottom: 1px solid;
    border-color: #8c8c8c;
    border- margin-top: 20px;
    opacity: 0;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    transform: translateY(100%);
    padding-top: 20px;
}

.side-box .navlist .side-foot .side-phone a {
    color: #444444;
}

.side-box .navlist .side-foot .side-text {
    text-align: left;
    margin-top: 15px;
    color: #8c8c8c;
    opacity: 0;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    transform: translateY(100%);
    font-size: 12px;
}

.side-box .navlist li .link {
    border-bottom: 1px solid;
    border-color: #e4eaec;
}

.side-box .navlist li a {
    color: #444444;
}

.side-box .navlist li a.link {
    transition: all .4s ease;
    font-size: 16px;
    color: #444444;
    width: 100%;
    display: block;
    text-align: left;
    padding: 12px 30px;
    height: 50px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.side-box .navlist li a.link:hover,
.side-box .nav-item.open .link {
    background-color: #EF730F;
    color: #fff;
}

.side-box .navlist li a.link:hover .nav-plus:before,
.side-box .nav-item.open .nav-plus:before {
    background-color: #fff;
}

.side-box .navlist li a.link:hover .nav-plus:after,
.side-box .nav-item.open .nav-plus:after {
    background-color: #fff;
}

.side-box .navlist li a.link b {
    font-weight: 500;
}

.side-box .navlist .nav-shop {
    margin-bottom: 15px
}

.side-box .navlist .nav-shop .btn {
    height: 40px;
    line-height: 26px;
    padding: 6px 20px;
    color: #fff
}

.side-box .navlist .nav-shop .btn:hover {
    background: #fff;
    color: #333
}

.side-box .navlist .nav-shop .btn-primary {
    background: #EF730F
}

.side-box .navlist2 li {
    position: relative
}

.side-box .navlist2 li a {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 14px;
    padding: 0 30px;
    display: block;
    color: #444444;
    height: 38px;
    line-height: 38px;
    font-weight: normal;
    text-align: left
}

.side-box .navlist2 .navlist3 {
    padding-left: 20px;
}

.side-box .navlist2 .navlist3 a {
    color: #8c8c8c;
}

.side-box .navlist2 li a.active {
    color: #EF730F;
}

.side-box .navlist2.open {
    opacity: 1;
    visibility: visible
}

.side-box .nav-item {
    position: relative;
    padding: 0;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    transform: translateY(100%);
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
    transition: all 0.8s ease;
    opacity: 0
}

.side-box .nav-item .nav-plus:before {
    position: absolute;
    top: 50%;
    content: " ";
    right: 20px;
    margin-top: -1px;
    width: 10px;
    height: 2px;
    background-color: #8c8c8c;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
}

.side-box .nav-item .nav-plus::after {
    position: absolute;
    top: 50%;
    content: " ";
    right: 20px;
    margin-top: -1px;
    width: 10px;
    height: 2px;
    background-color: #8c8c8c;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
}

.side-box .nav-item.open {
    height: auto
}

.side-box .nav-item.open .nav-plus:before {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

.side-box .nav-item .fa {
    position: relative;
    left: 10px
}

/* 会员 */
.side-box .nav-user {
    padding: 20px 30px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.side-box .nav-user .btn-outline.btn-primary {
    border-color: #8c8c8c;
}

.side-box .nav-user .btn-outline.btn-primary:hover,
.side-box .nav-user .btn-outline.btn-success:hover {
    background-color: #EF730F;

}

.side-box .nav-user .btn-outline.btn-success {
    border-color: #8c8c8c;
}

.side-box .nav-user .user-info {
    border-color: #444444;
    background-color: #ffffff;
}

.side-box .nav-user .user-info .dropdown-item:hover,
.dropdown-item.active {
    background: #EF730F !important;
    background:  !important;
}

.met-head-shop .dropdown-menu li a {
    color: #76838f !important;
}

.met-head-shop li {
    line-height: 30px;
}

/* 语言 */
.side-box .met-langlist {
    padding: 20px 30px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.side-box .met-langlist span {
    color: #444444;
}

.side-box .met-langlist .inline-block {
    position: relative;
}

.side-box .met-langlist .dropdown-menu {
    border-color: #444444;
    background-color: #ffffff;

}

.side-box .met-langlist .btn-outline.btn-default {
    color: #444444;
    border-color: #8c8c8c;

}

.side-box .met-langlist .dropdown-item:hover,
.dropdown-item.active {
    color: #fff;
    background: #EF730F !important;

}

.side-box .met-langlist .btn-outline.btn-default.active,
.btn-outline.btn-default:active,
.side-box .met-langlist .btn-outline.btn-default:focus,
.side-box .met-langlist .btn-outline.btn-default:hover,
.side-box .met-langlist .open>.btn-outline.btn-default.dropdown-toggle {
    background-color: #EF730F;
    border-color: #fff;
}

.side-box .met-langlist .btn-outline.btn-default.active span,
.btn-outline.btn-default:active span,
.side-box .met-langlist .btn-outline.btn-default:focus span,
.side-box .met-langlist .btn-outline.btn-default:hover span,
.side-box .met-langlist .open>.btn-outline.btn-default.dropdown-toggle span {
    color: #fff;
}

/* 侧边栏点击 */
body.open {
    overflow: hidden
}

body.open .side-box {
    transform: translateX(0)
}

body.open .side-box .side-nav {
    overflow: auto
}

body.open .side-box .side-nav .logo-2 img {
    opacity: 1;
    transform: translateY(0)
}

body.open .side-box .side-shadow {
    opacity: 1;
    visibility: visible
}

body.open .nav-item {
    opacity: 1;
    transform: translateY(0)
}

body.open .nav-side {
    border: none
}

body.open .side-box .navlist .side-foot .side-qrcode img {
    opacity: 1;
    transform: translateY(0)
}

body.open .side-box .navlist .side-foot .side-phone {
    opacity: 1;
    transform: translateY(0)
}

body.open .side-box .navlist .side-foot .side-text {
    opacity: 1;
    transform: translateY(0)
}

body.open .nav-side hr:nth-child(1) {
    width: 100%;
    top: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    -webkit-transform-origin: center;
    right: 0;
    left: 0
}

body.open .nav-side hr:nth-child(2) {
    opacity: 0;
    left: -50%
}

body.open .nav-side hr:nth-child(3) {
    width: 100%;
    bottom: 50%;
    margin-bottom: 0px;
    transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform-origin: center;
    -moz-transform-origin: center;
    -ms-transform-origin: center;
    -o-transform-origin: center;
    -webkit-transform-origin: center;
    right: 0;
    left: 0
}

/* 全屏滚动 */
.met-box {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1198;
    overflow: hidden;
}

.met-box .met-wrapper {
    width: 100%;
    height: 100%;
    will-change: transform;
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
}

.met-page {
    width: 100%;
    height: 100% !important;
    position: relative;
    background-size: cover;
    overflow: hidden;
    background-position: center top;
    transition: visibility 0s 0.5s;
    z-index: 2;
    padding-top: 75px;
}

.nav-bg {
    background: #ffffff;
}

.nav-bg .nav-li a b {
    color: #444444;
}

.nav-bg .nav-box .nav-ul .active a:after {
    background-color: #EF730F;
}

.nav-logo .logo-2 {
    display: none;
}

.nav-bg .logo-1 {
    display: none;
}

.nav-bg .logo-2 {
    display: block;
}

.side-bg hr {
    background-color: #444444;
}


@media (min-width:768px) {
    .p-t-75 {
        padding-top: 75px;
    }
}

@media (max-width:767px) {
    .p-t-75 {
        padding-top: 60px;
    }

    .nav-side {
        width: 32px;
        height: 32px;
        right: 15px;
        top: 15px;
    }

    .met-head {
        padding: 0 58px 0 15px;
        height: 60px;
        line-height: 60px;
    }
}


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

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

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

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


/* 轮播图 */
.hide {
    display: none;
}

.met-video {
    position: fixed;
    top: 0;
    left: 0;
    right: 0px;
    bottom: 0px;
    overflow: hidden;
    z-index: -999999;
}

.met-video video {
    position: relative;
    z-index: -99999;
    object-fit: cover;
}

.banner_met_11_6.met-page {
    padding-top: 0 !important;
}

.banner_met_11_6 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    height: 700px;
}

.banner_met_11_6 .banner {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 4
}

.banner_met_11_6 .banner .banner-warpper {
    width: 1000%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    transition-timing-function: ease
}

.banner_met_11_6 .banner .banner-item {
    width: 10%;
    height: 100%;
    float: left;
    margin: 0;
    padding: 0;
    list-style: none;
    display: block;
    overflow: hidden;
    position: relative;
    background: center no-repeat;
    background-size: cover;
    height: 950px;
}

.banner_met_11_6 .banner-text {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.banner_met_11_6 .banner-text .container {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.banner_met_11_6 .banner-text .containerlx {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


.banner_met_11_6 .banner-text h3,
.banner_met_11_6 .banner-text p {
    color: #ffffff;
}

.banner_met_11_6 .banner-text h3 {
    margin: 0;
    font-size: 72px;
    font-weight: 700;
}

.banner_met_11_6 .banner-text p {
    font-size: 28px;
    margin: 0;
    text-shadow: none;
    font-weight: 100;
}

.banner_met_11_6 .banner-text p span {
    font-size: 56px;
    font-weight: 600;

}


.banner_met_11_6 .banner-text .banner-icon {
    font-size: 16px;
}

.banner_met_11_6 .banner-text .banner-icon .pe-mail {
    font-size: 24px;
    position: relative;
    top: 3px;
}

.banner_met_11_6 .banner-text .line {
    width: 100px;
    height: 4px;
    background-color: #EF730F;
    display: inline-block;
    margin: 0 auto;


}

.banner_met_11_6 .banner-text.p-4 {
    text-align: center;
}

.banner_met_11_6 .banner-text.p-4 .line {
    display: block;
}

.banner_met_11_6 .banner-text.p-0 {
    text-align: left;
}

.banner_met_11_6 .banner-text.p-1 {
    text-align: right;
}

.banner_met_11_6 .banner-text.p-0 .line {
    margin: 0;
}

.banner_met_11_6 .more {
    border: 1px solid;
    border-color: #ffffff;
    color: #ffffff;
    overflow: hidden;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 200ms;
    -moz-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 200ms;
    -ms-transition: all 0.6s cubic-beziercubic-bezier(0.77, 0, 0.175, 1) 200ms;
    -o-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 200ms;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 200ms;
    width: 160px;
    cursor: pointer;
    margin-top: 20px;
    transition-duration: 1s;
}

.banner_met_11_6 .more span {
    display: block;
    width: 100%;
    position: relative;
    text-align: center;
    height: 40px;
    line-height: 40px;
    -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 100ms;
    -moz-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 100ms;
    -ms-transition: all 0.6s cubic-beziercubic-bezier(0.77, 0, 0.175, 1) 100ms;
    -o-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 100ms;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 100ms;
    color: #ffffff;
}

.banner_met_11_6 .more span:after {
    content: attr(data-title);
    position: absolute;
    height: 40px;
    top: 0px;
    left: 0px;
    right: 0;
    color: transparent;
    transform: translate(0, 100%);
    -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 200ms;
    -moz-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 200ms;
    -ms-transition: all 0.6s cubic-beziercubic-bezier(0.77, 0, 0.175, 1) 200ms;
    -o-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 200ms;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 200ms;
}

.banner_met_11_6 .more:hover {
    border-color: #EF730F;
    background-color: #EF730F;

}

.banner_met_11_6 .more:hover span {
    transform: translate(0, -100%);
}

.banner_met_11_6 .more:hover span:after {
    background-color: #EF730F;
    color: #fff;
}

.banner_met_11_6 .banner-next {
    z-index: 99;
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: pointer;
    text-align: center;
    color: #ffffff;
}

.banner_met_11_6 .banner-next span {
    display: block;
}

.banner_met_11_6 .banner-next .next-text {
    -webkit-animation: fadeInDown 2s infinite;
    -moz-animation: fadeInDown 2s infinite;
    -o-animation: fadeInDown 2s infinite;
    -ms-animation: fadeInDown 2s infinite;
    animation: fadeInDown 2s infinite;
    position: relative;
    top: 35px;
}

.banner_met_11_6 .banner-next .next-icon {
    font-size: 64px;
}

.banner_met_11_6 .banner-ctrl {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    z-index: 99
}

.banner_met_11_6 .banner-ctrl .left {
    position: absolute;
    font-size: 72px;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer
}

.banner_met_11_6 .banner-ctrl .right {
    position: absolute;
    font-size: 72px;
    color: #fff;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer
}

.banner_met_11_6.banner-ny-h {
    min-height: 200px;
    height: 200px;
}

.banner_met_11_6.banner-ny-h .banner-item {
    min-height: 200px;
}

.banner_met_11_6.banner-ny-h .banner-next {
    display: none
}

.banner_met_11_6.banner-ny-h .banner-ctrl {
    display: none
}

.banner_met_11_6.banner-ny-h .banner-text .title {
    font-size: 24px;
    height: auto;
    color: #fff;
    -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
    -moz-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
    -ms-transition: all 0.6s cubic-beziercubic-bezier(0.77, 0, 0.175, 1) 0ms;
    -o-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0ms;
    font-family: dincond_medium;
    text-transform: uppercase;
text-shadow: 1px 1px 4px #666;	
}

.banner_met_11_6.banner-ny-h .banner-text .subtitle {
    margin-top: 15px;
    font-size: 18px;
    -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 400ms;
    -moz-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 400ms;
    -ms-transition: all 0.6s cubic-beziercubic-bezier(0.77, 0, 0.175, 1) 400ms;
    -o-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 400ms;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1) 400ms
}

@media (max-width:479px) {
    .banner_met_11_6 .banner-text h3 {
        font-size: 16px
    }

    .banner_met_11_6 .banner-text p {
        margin-top: 10px;
        font-size: 20px
    }
}

@media (max-width:991px) {
    .met-video .video-bg {
        height: 100%;
        top: 0;
        position: absolute;
        width: 100%;
        left: 0;
    }

    .banner_met_11_6 .banner-text h3 {
        font-size: 20px
    }

    .banner_met_11_6 .banner-text p {
        font-size: 30px
    }

    .banner_met_11_6.banner-ny-h {
        min-height: 200px;
        height: 200px;
    }

    .banner_met_11_6.banner-ny-h .banner-item {
        min-height: 200px;
    }

    .banner_met_11_6.banner-ny-h .banner-text .title {
        font-size: 26px;
        color: #FFF;
    }

    .banner_met_11_6.banner-ny-h .banner-text .subtitle {
        font-size: 18px;
    }
}

@media (max-width:767px) {
    .banner_met_11_6-ny {
        height: 90px
    }

    .banner_met_11_6-ny h1,
    .banner_met_11_6-ny h2 {
        font-size: 26px
    }

    .banner_met_11_6 {
        height: 500px;
    }

    .banner_met_11_6.banner-ny-h {
        height: 150px
    }

    .banner_met_11_6.banner-ny-h .banner-text .title {
        /* margin-bottom: -10px; */
        padding: 0;
        font-size: 24px;
        height: auto;
        color: #FFF;
        /* margin-top:10px; */

    }

    .banner_met_11_6.banner-ny-h .banner-text .subtitle {
        margin-top: 15px;
        font-size: 16px
    }

    .banner_met_11_6 .banner-text .container {
        width: 100%
    }

    .banner_met_11_6 .banner-text.p-5 .container .banner-text-con {
        width: 100%
    }

    .banner_met_11_6 .banner-text h3 {
        font-size: 18px;
        margin-left: 40px;
        margin-right: 30px;

    }

    .banner_met_11_6 .banner-text p {
        margin-top: 10px;
        font-size: 24px;
        margin-left: 40px;
        margin-right: 30px;

    }

    .banner_met_11_6 .banner-text p span {
        font-size: 42px;
        font-weight: 600;

    }

    .banner_met_11_6 .banner-text .btn-more {
        margin-top: 20px;
        font-size: 16px
    }

    .banner_met_11_6 .more {
        font-size: 14px;
    }


    .banner_met_11_6 .banner-text.p-2 .line {
        margin-left: 40px;
    }

    .banner_met_11_6 .banner-text.p-3 .line {
        margin-left: 40px;
    }

    .banner_met_11_6 .banner-next {
        bottom: 10px;
    }

}

/* 内页轮播 */
.banner_met_11_6-ny {
    background-color: #ffffff;
    height: 120px;
}

.banner_met_11_6-ny h1 {
    margin: 0px;
    padding: 10px 30px;
    font-size: 35px;
    text-shadow: none;
    color: #444444;
}

.subcolumn_nav_met_11_4 {
    text-align: center;
    background: #ffffff;
    border-bottom: 1px solid;
    border-color: #8c8c8c;

}

.overflow-visible {
    overflow: visible !important;
}

.subcolumn_nav_met_11_4 .subcolumn_nav_met_11_4-ul {
    padding: 0;
    list-style: none;
    margin: 0;
    text-align: center;
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.subcolumn_nav_met_11_4 .subcolumn_nav_met_11_4-ul>li {
    white-space: nowrap;
    display: inline-block;
    float: none
}

.subcolumn_nav_met_11_4 .subcolumn_nav_met_11_4-ul>li a.link {
    text-decoration: none;
    display: block;
    margin: 0 5px;
    font-size: 16px;
    line-height: 75px;
    text-align: center;
    padding: 0 20px;
    height: 75px;
    color: #444444;
    -webkit-transition: all .6s cubic-bezier(.165, .84, .44, 1) 0ms;
    transition: all .6s cubic-bezier(.165, .84, .44, 1) 0ms;
    position: relative;
    font-weight: 300;
}

.subcolumn_nav_met_11_4 .subcolumn_nav_met_11_4-ul>li a.link:active,
.subcolumn_nav_met_11_4 .subcolumn_nav_met_11_4-ul>li a.link:focus,
.subcolumn_nav_met_11_4 .subcolumn_nav_met_11_4-ul>li a.link:hover {
    text-decoration: none
}

.subcolumn_nav_met_11_4 .subcolumn_nav_met_11_4-ul>li a.link:hover,
.subcolumn_nav_met_11_4 .subcolumn_nav_met_11_4-ul>li a.link.active {
    color: #EF730F;
}

.subcolumn_nav_met_11_4 .subcolumn_nav_met_11_4-ul>li>ul>li>a.active {
    color: #EF730F !important;
    color:  !important;
}

.subcolumn_nav_met_11_4 .subcolumn_nav_met_11_4-ul>li a.active:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    right: 0;
    height: 1px;
    background: #EF730F;
    background: ;
}

.subcolumn_nav_met_11_4 .subcolumn_nav_met_11_4-ul>li .dropdown-menu {
    top: 40px
}

.subcolumn_nav_met_11_4 .product-search:first-child {
    margin-top: 10px
}

.subcolumn_nav_met_11_4 .product-search .form-group {
    max-width: 500px;
}

.subcolumn_nav_met_11_4 .input-search .form-control {
    border-radius: 0;
}

.subcolumn_nav_met_11_4 .form-control.focus,
.form-control:focus {
    border-color: #EF730F;
    border-
}

.subcolumn_nav_met_11_4 .subcolumn-nav-location {
    float: left;
    font-size: 12px;
    padding: 10px 0
}

.subcolumn_nav_met_11_4 .subcolumn-nav-location .location {
    color: #444444;
}

.subcolumn_nav_met_11_4 .subcolumn-nav-location li {
    line-height: 30px;
    float: left
}

.subcolumn_nav_met_11_4 .subcolumn-nav-location a {
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    line-height: 30px;
    text-align: center;
    color: #444444;
    -webkit-transition: all .6s cubic-bezier(.165, .84, .44, 1) 0ms;
    transition: all .6s cubic-bezier(.165, .84, .44, 1) 0ms
}

.subcolumn_nav_met_11_4 .subcolumn-nav-location a:active,
.subcolumn_nav_met_11_4 .subcolumn-nav-location a:focus,
.subcolumn_nav_met_11_4 .subcolumn-nav-location a:hover {
    text-decoration: none
}

.subcolumn_nav_met_11_4 .subcolumn-nav-location a:hover {
    color: #EF730F;
}

.subcolumn_nav_met_11_4 .subcolumn-nav-location .fa {
    padding: 0 10px
}

.subcolumn_nav_met_11_4 .subcolumn-nav {}

.subcolumn_nav_met_11_4 .subcolumn-nav .dropdown-menu a {
    color: #444444 !important;

}

.subcolumn_nav_met_11_4 .subcolumn-nav .dropdown-menu a:hover {
    color: #EF730F !important;

}

@media (max-width:767px) {
    .subcolumn_nav_met_11_4 .row {
        margin: 0
    }

    .subcolumn_nav_met_11_4 .subcolumn-nav {
        height: 75px;
        float: none
    }

    .subcolumn_nav_met_11_4 .subcolumn-nav-location {
        float: none
    }
}


@media (max-width:767px) {
    .foot_info_met_11_4 .left {
        float: none;
        text-align: center;
        width: 100%;
    }

    .foot_info_met_11_4 .right {
        float: none;
        text-align: center;
        width: 100%;
    }

    .foot_info_met_11_4 .breadcrumb-item {
        display: inline-block;
        float: none;
    }
}

.product_list_detail_met_16_1.pagetype1 {
    background: #ffffff;
}

.product_list_detail_met_16_1.pagetype1 {
    background: #ffffff;
}

.product_list_detail_met_16_1 .section {
    padding: 15px 0;
    background: #fff;
}

.product_list_detail_met_16_1 .met-showproduct-body {
    background: #ffffff;
}

.product_list_detail_met_16_1 .content .met-editor,
.product_list_detail_met_16_1 .content .product-para {
    padding: 30px;
}


.product_list_detail_met_16_1 .product-para li {}



@media (max-width:767px) {

    .product_list_detail_met_16_1 .content .met-editor,
    .product_list_detail_met_16_1 .content .product-para {
        padding: 15px;
    }
}

/* 图片切换列表 */
.product_list_detail_met_16_1 .slick-prev:before,
.slick-next:before {
    display: none;
}

.product_list_detail_met_16_1 .slick-prev {
    left: 25px;
}

.product_list_detail_met_16_1 .slick-next {
    right: 25px;
}

.product_list_detail_met_16_1 #met-imgs-slick {
    min-height: 150px;
    text-align: center;
}

.product_list_detail_met_16_1 #met-imgs-slick.slick-dotted {
    padding-bottom: 80px;
}

.product_list_detail_met_16_1 #met-imgs-slick.slick-slider:not(.slick-fade) .slick-slide {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}

.product_list_detail_met_16_1 #met-imgs-slick.fngallery.slick-fade .slick-slide:not(.slick-active) {
    visibility: hidden;
}

.product_list_detail_met_16_1 #met-imgs-slick.fngallery .slick-slide a,
#met-imgs-slick.fngallery .slick-slide img {
    cursor: zoom-in;
}

.lg-outer .iconfont {
    display: none;
}

.product_list_detail_met_16_1 #met-imgs-slick .slick-slide {
    float: none;
    display: block;
}

.product_list_detail_met_16_1 #met-imgs-slick.slick-initialized .slick-slide {
    float: left;
    display: block;
}

@media screen\0 {

    .product_list_detail_met_16_1 #met-imgs-slick.fngallery .slick-slide a,
    #met-imgs-slick.fngallery .slick-slide img {
        cursor: url(https://gsp0.baidu.com/5aAHeD3nKhI2p27j8IqW0jdnxx1xbK/tb/img/frs/cur_zin.cur?t=1489493164029), pointer;
    }
}

.product_list_detail_met_16_1 #met-imgs-slick .slick-slide a {
    display: inline-block;
}

.product_list_detail_met_16_1 #met-imgs-slick .slick-slide img {
    max-height: 700px;
    display: inline;
}


.product_list_detail_met_16_1 #met-imgs-slick .slick-img-cover {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1000;
}

.product_list_detail_met_16_1 #met-imgs-slick .swiper-navtab {
    width: 100%;
    height: 69px;
    position: absolute;
    left: 0;
    bottom: 0;
    cursor: grab;
}

.product_list_detail_met_16_1 #met-imgs-slick .swiper-navtab .slick-dots {
    bottom: 5px;
}

.product_list_detail_met_16_1 #met-imgs-slick .slick-dots {
    height: 64px;
    bottom: 0;
    z-index: 2;
}

.product_list_detail_met_16_1 #met-imgs-slick .slick-dots li {
    width: 60px;
    height: 60px;
    margin: 0 0 0 10px;
    border: 2px solid #ddd;
    opacity: 0.7;
}

.product_list_detail_met_16_1 #met-imgs-slick .slick-dots li:first-child {
    margin: 0;
}

.product_list_detail_met_16_1 #met-imgs-slick .slick-dots li.slick-active {
    border-color: #EF730F;
    border-
}

.product_list_detail_met_16_1 #met-imgs-slick .slick-dots li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_list_detail_met_16_1 #met-imgs-slick.slick-slider .slick-arrow {
    height: calc(100% - 80px);
}

.product_list_detail_met_16_1 #met-imgs-slick .slick-arrow {
    width: 15%;
    height: 100%;
    top: 0;
    transform: translate(0, 0);
    z-index: 999;
}

.product_list_detail_met_16_1 #met-imgs-slick .slick-arrow.slick-prev {
    text-align: left;
}

.product_list_detail_met_16_1 #met-imgs-slick .slick-arrow.slick-next {
    text-align: right;
}

.product_list_detail_met_16_1 #met-imgs-slick .slick-arrow i {
    font-size: 50px;
    color: #999;
}

@media (max-width:767px) {
    .product_list_detail_met_16_1 #met-imgs-slick.slick-slider .slick-arrow {
        height: calc(100% - 60px);
    }

    .product_list_detail_met_16_1 #met-imgs-slick.slick-dotted {
        padding-bottom: 60px;
    }

    .product_list_detail_met_16_1 #met-imgs-slick .swiper-navtab {
        height: 47px;
    }

    .product_list_detail_met_16_1 #met-imgs-slick .slick-dots {
        height: 42px;
    }

    .product_list_detail_met_16_1 #met-imgs-slick .slick-dots li {
        width: 40px;
        height: 40px;
        margin-left: 5px;
        border-width: 1px;
    }


    .srcotop {
        height: 3.5rem;
    }

}



/* HTML5自适应 */

.f-13 {
    font-size: 13px
}

.f-14 {
    font-size: 14px
}

.f-15 {
    font-size: 15px
}

.f-16 {
    font-size: 16px
}

.f-18 {
    font-size: 18px
}

.f-20 {
    font-size: 20px;
}

.f-22 {
    font-size: 22px;
}

.f-24 {
    font-size: 24px;
}

.f-28 {
    font-size: 28px;
}

.f-30 {
    font-size: 30px;
}

.f-36 {
    font-size: 36px;
}

.f-40 {
    font-size: 40px
}

.f-46 {
    font-size: 46px
}

.f-56 {
    font-size: 56px
}

.f-68 {
    font-size: 68px;
}

.f-72 {
    font-size: 72px;
}

.f-80 {
    font-size: 80px;
}

/*字体颜色*/
.col-f {
    color: #2d2d2d;
}

.col-9 {
    color: #999;
}

.col-8 {
    color: #888;
}

.col-6 {
    color: #666;
	padding:10px 30px;
}

.col-4 {
    color: #444;
}

.col-3 {
    color: #333;
}

.col-a5 {
    color: #a5a5a5;
}

.col-2a {
    color: #2a2a2a;
}

.col-hs {
    color: #ef730f;
}

.left1(left:50px; ) .left1.active {
    left: 100px;
}

/*背景颜色*/
.b-bg-f {
    background-color: rgba(255, 255, 255, 0.95)
}

.b-bg-h {
    background-color: rgba(0, 0, 0, 0.8)
}

.b-col-f {
    background: #fff;
}

.b-col-hs {
    background: #ec5151;
}

.b-col-huis {
    background: #F3F4F5;
}

.b-col-huis2 {
    background: #f6f7fb;
}

/*位置*/
.ftx03 {
    color: #ec5051;
}

.oh {
    overflow: hidden;
}

.fl {
    float: left
}

.fr {
    float: right
}

.fc {
    padding-left: 40px;
}

.p-a {
    position: absolute;
    #position: absolute;
    _position: absolute
}

.p-r {
    position: relative;
    #position: relative;
    _position: relative
}

.p-f {
    position: fixed;
    #position: fixed;
    _position: fixed
}

.text-c {
    text-align: center;
    display: block;
}

.text-r {
    text-align: right;
    display: block;
}

.text-l {
    text-align: left;
    display: block;
}

.db {
    display: block;
}

.di {
    display: inline-block
}

.margin-b15 {
    margin-bottom: 7px;
}

.margin-b25 {
    margin-bottom: 18px;
}

.margin-b46 {
    margin-bottom: 40px;
}

.margin-b {
    margin-bottom: 30px;
}

.margin-t11 {
    margin-top: 110px;
}

.margin-25 {
    margin: 10px 0;
}

.margin-20 {
    margin: 20px 0;
}

.margin-30 {
    margin: 30px 0;
}

.margin-t1 {
    margin-top: 6px;
}

.margin-t3 {
    margin-top: 15px;
}
.margin-t120 {
    margin-top: 120px;
}


.margin-t3-1 {
    margin-top: 30px;
}

.margin-t4 {
    margin-top: 40px;
}

.margin-t5 {
    margin-top: 50px
}

.margin-t6 {
    margin-top: 60px
}

.margin-t9 {
    margin-top: 90px;
    *margin-top: 180px
}

.margin-l3 {
    margin-left: 30px;
}

.margin-l5 {
    margin-left: 50px;
}

.margin-l6 {
    margin-left: 60px;
}

.padding-l3 {
    padding-left: 20px;
}

.padding-l1 {
    padding-left: 10px;
    *padding-left: -40px;
}

.padding-a {
    padding-top: 120px;
    padding-bottom: 40px;
}

.padding-t09-title {
    padding-top: 80px;
}

.padding-09 {
    padding: 90px 0;
}

.padding-09a {
    padding: 90px;
}

.padding-09a {
    padding: 50px 0px 120px 0px;
}

.padding-09-title {
    padding: 40px 0 40px 0;
}

.padding-06 {
    padding: 50px;
}

.padding-06a {
    padding: 50px 0;
}

.padding-t06a {
    padding-top: 40px;
}

.padding-t03 {
    padding-top: 30px;
}

.padding-09-06 {
    padding: 80px 0 50px;
}

.padding-06-09 {
    padding: 50px 0 80px;
}

.padding-03-06 {
    padding: 30px 0 60px;
}

.padding-t04 {
    padding-top: 30px;
}

.padding-04 {
    padding: 30px;
}

.padding-0-02 {
    padding: 0 25px;
}

.padding-03 {
    padding: 20px;
}

.padding-b90 {
    padding-bottom: 90px;
}

.padding-03-01 {
    padding: 30px 0 15px 0
}

.p-all {
    padding: 30px 30px 10px 30px;
}

.p-alla {
    padding: 0px 30px 30px 30px;
}

.p-allb {
    padding: 40px 40px 10px 40px;
}

.p-allb1 {
    padding: 0px 40px 40px 40px;
}

.m-t400 {
    height: 300px;
}

.n-index-padding-all {
    margin: 0 auto;
    padding-top: 90px;
    padding-bottom: 90px;
}

/*边框线*/
.border-t {
    border-bottom: 1px solid #e6e6e6;
}

.l-bor {
    border-right: 1px solid #e6e6e6;
}

.index-box3 {
    border: 1px solid #e6e6e6;
    background: #fff;
}

.index-box3:hover {
    box-shadow: 0px 0px 16px rgba(240, 240, 240, 1);
    border: 1px solid #f0f0f0;
}

.border-f {
    border-bottom: 1px solid #fff;
    margin: 0 auto;
}

.br {
    border-radius: 5px
}

/*栅格化*/
.ect-w1 {
    width: 10%
}

.ect-w2 {
    width: 20%
}

.ect-w2-5 {
    width: 25%;
    width: 24.96%\9
}

.ect-w3 {
    width: 33.325%;
}

.ect-w4 {
    width: 40%;
}

.ect-w35 {
    width: 35%;
}


.ect-w5 {
    width: 50%;
    width: 49.8%\9;
}

.ect-w6-1 {
    width: 60%;
}

.ect-w6-5 {
    width: 65%;
}

.ect-w65 {
    width: 65%;
}

.ect-w6 {
    width: 70%;
}

.ect-w8 {
    width: 80%;
}

.ect-w9 {
    width: 90%;
}

.ect-h10 {
    height: 100%
}

.ect-w1-5 {
    width: 15%
}

.ect-w7-9 {
    width: 79%
}

.ect-w8-5 {
    width: 85%
}

.ect-w10 {
    width: 100%;
}

.ect-w9-6 {
    width: 95%;
}

.ect-w7 {
    width: 14.2%
}

.ect-w6-2 {
    width: 16%;
}

.ect-w3-1 {
    width: 33.25%;
}

.ect-w3-2 {
    width: 29%;
}

.ect-w5-1 {
    width: 42.5%;
}

.clearfix:after {
    display: block;
    clear: both;
    content: "";
    visibility: hidden;
    height: 0
}

.clearfix {
    zoom: 1;
}

/*兼容ie透明度*/
.an-show {
    opacity: 0;
    filter: alpha(opacity=0);
    moz-transition: 1s ease;
    -o-transition: 1s ease;
    -webkit-transition: 1s ease;
    position: absolute
}

.an-show.active {
    opacity: 1;
    filter: alpha(opacity=100);
    display: block;
    -moz-transition: 1s ease;
    -o-transition: 1s ease;
    -webkit-transition: 1s ease;
}

.an-show-1 {
    opacity: 1;
    filter: alpha(opacity=100);
    display: block;
    -moz-transition: 1s ease;
    -o-transition: 1s ease;
    -webkit-transition: 1s ease;
}

.an-show-1.active {
    opacity: 0;
    filter: alpha(opacity=0);
    moz-transition: 1s ease;
    -o-transition: 1s ease;
    -webkit-transition: 1s ease;
    position: absolute
}

/*hide*/
.op-ie {
    opacity: 0;
    filter: alpha(opacity=0);
}

.op-ie-0 {
    filter: alpha(opacity=0);
}

.op-ie-03 {
    filter: alpha(opacity=30);
}

/*show*/
.dlys-img-box.active {
    display: none;
    filter: alpha(opacity=0);
}

.dlys-img-box1.active {
    display: none;
    filter: alpha(opacity=0);
}

.banner-bg-box.active {
    background-color: rgba(0, 0, 0, 0.4);
    filter: alpha(opacity=40);
}



/*按钮*/
.but {
    border: 1px solid #EC5151;
    background: #fff;
    color: #444;
    width: 100px;
    color: #EC5151
}

.but-bs {
    border: 1px solid #e6e6e6;
    background: #fff;
    color: #444;
}

.but-bs:hover {
    border: 1px solid #EC5151;
    background: #EC5151;
    color: #fff;
}

.but-hs {
    background: #EC5151;
    border: 1px solid #EC5151;
    color: #fff;
}

.but-hs:hover {
    border: 1px solid #dc3536;
    color: #fff;
    background: #dc3536;
}

.but-default {
    padding: 7px 28px;
    text-align: center;
    font-size: 20px;
    margin: 0 auto;
}

.but:hover {
    background: #EC5151;
    color: #fff;
    border: 1px solid #EC5151
}

.lig-but-box {
    width: 100%;
    margin: 0 auto;
}

.box-shadow {
    box-shadow: 0px 1px 0px rgba(110, 150, 150, 0.1);
}

/*动画过渡效果*/
.an-tr-0 {
    -moz-transition: 0s ease;
    -o-transition: 0s ease;
    -webkit-transition: 0s ease;
}

.an-tr-1 {
    -moz-transition: 1s ease;
    -o-transition: 1s ease;
    -webkit-transition: 1s ease;
}

.an-tr-2-5 {
    -moz-transition: 2.5s ease;
    -o-transition: 2.5s ease;
    -webkit-transition: 2.5s ease;
}

/*大盒子*/
.cont-box1210 {
    width: 1210px;
    margin: 0 auto;
}

.cont-box1310 {
    width: 1310px;
    margin: 0 auto;
}

.max-box-1920 {
    max-width: 1920px;
    margin: 0 auto;
}

.box {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox */
    -webkit-box-sizing: border-box;
    /* Safari */
}

/*bg-common*/
.bg-com {
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    background-size: cover;
}

.dlys-img {
    width: 100%;
}

.addr-img {
    top: 106px;
    right: 106px;
}

/*header*/
.footer-box {
    top: 0;
    width: 100%;
    z-index: 5999;
}

.index-header {
    background-color: #000\9;
    position: static;
    background: rgba(0, 0, 0, 0.3) !important;
    width: 100%;
    z-index: 4;
    top: 0;
    display: block;
}

.index-header.active {
    background: rgba(0, 0, 0, 0.6) !important;
    filter: alpha(opacity=60);
    display: none;
}

.index-logo img {
    position: relative;
}

.index-header ul {
    position: static
}

.index-header ul li.active {
    color: #ec5151;
}

.index-header ul li:first-child {
    margin-left: 0px;
}

.index-header-height {
    padding: 12px 0
}

.index-header-height a {
    line-height: 34px;
    line-height: 34px\0;
}

.index-header-height a.active {
    color: #EC5151;
}

.index-header ul,
.index-header ul li,
.index-header ul li a {
    position: relative;
    color: #fff;
    outline: none;
    outline: 0;
}

.index-header ul li a:hover {
    color: #ff8989;
}

/*白底*/
.index-header-1 {
    background: #fff;
}

.index-header-2 {
    background-color: #000\9;
    position: static;
    background: rgba(0, 0, 0, 0.6) !important;
    color: #444;
    display: none;
}

.index-header-2.active {
    background-color: #000\9;
    background: rgba(0, 0, 0, 0.6) !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 6999;
    filter: alpha(opacity=70);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    display: block;
}


/*footer*/
.index-footer {
    margin: 0 auto;
}

.index-qq-box,
.index-weixin-box,
.index-weibo-box {
    width: 38px;
    height: 30px;
    margin: 0 auto;
}

.index-qq-box {
    background: url("../images/qq.png");
}

.index-weixin-box {
    background: url("../images/weixin.png");
}

.index-weibo-box {
    background: url("../images/weibo.png");
}

.index-qq-box:hover {
    background: url("../images/qq-1.png");
}

.index-weixin-box:hover {
    background: url("../images/weixin-1.png");
}

.index-weibo-box:hover {
    background: url("../images/weibo-1.png");
}

.index-footer-1 {
    margin: 0 auto;
    margin-top: 30px;
}

.index-footer span:hover {
    color: #EC5151;
}

.qq-con-box {
    width: 80px;
    top: 45%;
    background: #EC5151;
    left: 46.9%;
    margin-left: -53px;
    padding: 6px;
    display: none;
}

.qq-jt {
    bottom: -15px;
    *bottom: -10px;
    left: 43%;
    width: 20px;
}

.qq-jt img {
    width: 100%;
}

.weibo-con-box {
    width: 80px;
    top: 45%;
    background: #EC5151;
    left: 53.2%;
    margin-left: -53px;
    padding: 6px;
    display: none;
}

.weibo-jt {
    bottom: -15px;
    *bottom: -10px;
    left: 55.5%;
    width: 20px;
}

.weibo-jt img {
    width: 100%;
}

/*地图*/
.index-map-box-1 {
    height: 552px;
    border: 1px solid rgb(204, 204, 204);
    overflow: hidden;
    position: relative;
    z-index: 0;
    background-image: url("-/api.map.baidu.com/images/bg.png-");
    color: rgb(0, 0, 0);
    text-align: left;
}

/*返回顶部*/
.return-top-box {
    width: 60px;
    height: 60px;
    background: #EC5151;
    bottom: 60px;
    right: 10px;
    z-index: 6999;
}

.return-top-box:hover {
    background: rgba(236, 81, 81, 0.9);
}

.return-top-box img {
    width: 100%;
    height: 100%;
}

/*上下滚动图*/
.picScroll-top {
    margin: 0 auto;
    width: 100%;
    position: relative
}

.picScroll-top .hd {
    height: 30px;
    padding: 0 10px
}

.picScroll-top .hd .prev {
    float: left;
    display: block;
    width: 138px;
    height: 40px;
    margin-right: 5px;
    margin-top: -40px;
    overflow: hidden;
    cursor: pointer
}

.picScroll-top .hd .next {
    float: left;
    display: block;
    width: 138px;
    height: 40px;
    margin-right: 5px;
    overflow: hidden;
    cursor: pointer
}

.picScroll-top .hd .next {
    background-position: 0 0px
}

.picScroll-top .hd .prev {
    background-position: 0 97px
}

.picScroll-top .hd .prevStop {
    background-position: -60px -100px
}

.picScroll-top .hd .nextStop {
    background-position: -60px -140px
}

.picScroll-top .hd ul {
    float: right;
    overflow: hidden;
    zoom: 1;
    margin-top: 10px;
    zoom: 1
}

.picScroll-top .hd ul li {
    width: 12px;
    height: 12px;
    overflow: hidden;
    margin-bottom: 8px;
    text-indent: -999px;
    cursor: pointer;
    background: #cacaca;
    border-radius: 100%;
}

.picScroll-top .hd ul li.on {
    background: #EC5151;
}

.picScroll-top .bd {
    padding: 10px;
    margin: 10px 0
}

.picScroll-top .bd ul {
    overflow: hidden;
    zoom: 1
}

.picScroll-top .bd ul li {
    text-align: center;
    zoom: 1;
    padding: 10px 0
}

.picScroll-top .bd ul li .pic {
    text-align: center
}

.picScroll-top .bd ul li .pic img {
    width: 180px;
    height: 90px;
    display: block;
    padding: 2px;
    border: 1px solid #ccc
}

.picScroll-top .bd ul li .pic a:hover img {
    border-color: #999;
}

/* 左右滚动 */
.slideBox {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
}

.slideBox .hd {
    height: 15px;
    overflow: hidden;
    position: absolute;
    right: 45%;
    bottom: 5px;
    z-index: 1;
}

.slideBox .hd ul {
    overflow: hidden;
    zoom: 1;
    float: left;
}

.slideBox .hd ul li {
    float: left;
    margin-right: 2px;
    width: 12px;
    height: 12px;
    line-height: 14px;
    text-align: center;
    background: #cacaca;
    cursor: pointer;
    border-radius: 100%;
    height: 12px;
    width: 12px;
    margin-left: 10px;
}

.slideBox .hd ul li.on {
    background: #ec5151;
    border-radius: 100%;
    height: 12px;
    width: 12px;
}

.slideBox .bd {
    position: relative;
    height: 100%;
    z-index: 0;
}

.slideBox .bd li {
    zoom: 1;
    vertical-align: middle;
}

.slideBox .bd img {
    display: block;
}

/*============================================================================
 *                                     index
 * =========================================================================*/
/*index-bg*/
.index-banner {
    background-image: url("../images/index-1.jpg");
    height: 950px;
    z-index: -2;
    top: 0;
    opacity: 1;
    filter: alpha(opacity=100);
    display: block;
    -moz-transition: 1s ease;
    -o-transition: 1s ease;
    -webkit-transition: 1s ease;
}

.index-banner.active {
    display: none;
    opacity: 0;
    filter: alpha(opacity=0);
    moz-transition: 1s ease;
    -o-transition: 1s ease;
    -webkit-transition: 1s ease;
}

.index-why-box {
    background-image: url("../images/index-main-1.jpg");
    height: 750px;
}

.index-why2-box {
    background-image: url("../images/index-bg.jpg"

        );
    height: 730px;
}

.index-update-box {
    background-image: url("../images/bg3.jpg" );
    height: 910px;
}

.index-map-box {
    height: 552px;
    margin-top: 0px;
}

.index-road-box {
    background-image: url("../images/bg5.jpg");
}

.index-road-box {
    margin: 0 auto;
}

.new-first-box {
    margin-top: 950px;
}

.paddding-r {
    padding-right: 25px;
}

.paddding-l {
    padding-right: 25px;
}

/*banner*/
.index-iphone-box {
    width: 274px;
    height: 772px;
    left: -10px;
}

.index-right-cont {
    top: 280px;
    right: 0px;
    width: 780px;
}

.index-cont1 {
    width: 60px;
    height: 60px;
}

.index-list-box li:first-child {
    margin-left: 0px;
}

.index-list-box2 {
    padding: 10px;
}

/*鼠标放入显示*/
.index-anli-bg {
    height: 100%;
    width: 100%;
    top: 0px;
}

.index-anli-bg img {
    width: 100%;
    height: 100%;
}

.ewm-box {
    width: 40%;
    height: 58%;
    top: 20%;
    left: 30%;
}

.ewm-box img {
    width: 100%;
    height: 100%;
}

.index-partner-icon1-1 {
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0;
}

.dlys-img-box {
    background-color: rgba(255, 255, 255, 0.2);
    background-color: #fff\9;
    top: 0px;
    width: 100%;
    height: 552px;
    position: absolute;
    display: block;
    filter: alpha(opacity=20);
}

.dlys-img-box1 {
    background-color: rgba(0, 0, 0, 0.6);
    background-color: #fff\9;
    top: -552;
    width: 100%;
    height: 555px;
    position: absolute;
    display: block;
    filter: alpha(opacity=60);
    z-index: 49999;
}

.footer-ewm-img {
    width: 240px;
    height: 252px;
    position: absolute;
    top: -38%;
    left: 50%;
    margin-left: -130px;
    display: none;
}

.footer-ewm-img img {
    width: 100%;
    height: 100%;
}

.index-why-right-box {
    right: 0px;
    top: 106px;
}

.index-whylist-box li span {
    line-height: 166px;
}

.index-jt-box,
.index-jt-box img {
    width: 110px;
    margin: 0 auto;
}

.index-whylist-box {
    height: 166px;
}

.index-whylist-box1 {
    height: 150px;
}

.index-whylist-box1 li span {
    line-height: 150px;
}

.lunboti-min-box {
    width: 10px;
    height: 10px;
    margin-top: 10px;
}

.index-jt2-box {
    height: 24px;
    width: 12px;
    right: -12px;
    top: 42%;
}

.index-jt2-box img {
    width: 100%;
    height: 100%;
}

.index-why2-left {
    left: 0px;
    top: 136px;
}

.index-update-img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.index-add-maxbox {
    height: 500px;
}

.index-road-but {
    padding: 10px;
    margin: 0 auto;
}

.banner-bg-box {
    width: 100%;
    left: 0;
    top: 0;
    background-color: #000\9;
    background-color: rgba(0, 0, 0, 0);
    height: 950px;
    z-index: 1;
    top: 0;
    width: 100%;
    *zoom: 1;
}

.ewm-img-box,
.ewm-img-box img {
    width: 240px;
    height: 240px;
    margin: 0 auto;
}

.my-span-pos {
    line-height: 166px;
}

.my-span-pos2 {
    line-height: 150px;
}

.index-left-box5 {
    left: -40px;
    top: 50%;
    *top: 45%;
}

.tel-bg-box {
    bottom: -30px;
}

.tel-bg-box-1 {
    bottom: -10px;
}

.index-add-box input,
.index-add-box textarea {
    border: none;
    color: #888;
    border: 0;
    resize: none;
}

.index-but-box3 {
    width: 145px;
    margin: 0 auto;
}

/*下载数量*/
.index-num {
    width: 40px;
    height: 54px;
    display: inline-block;
    background: url("../images/number.png") no-repeat;
    dispaly: none;
}

.index-num.active {
    width: 40px;
    height: 54px;
    display: inline-block;
    background: url("../images/number.png") no-repeat;
    background-position: 2px 0;
    opacity: 0.4;
    filter: alpha(opacity=40);
}

.index-num-0 {
    background-position: 2px 0;
}

.index-num-1 {
    background-position: 2px -66px;
}

.index-num-2 {
    background-position: 2px -133px;
}

.index-num-3 {
    background-position: 2px -198px;
}

.index-num-4 {
    background-position: 2px -265px;
}

.index-num-5 {
    background-position: 2px -332px;
}

.index-num-6 {
    background-position: 2px -399px;
}

.index-num-7 {
    background-position: 2px -466px;
}

.index-num-8 {
    background-position: 2px -533px;
}

.index-num-9 {
    background-position: 2px -600px;
}



.adv-num {
    width: 30px;
    height: 40px;
    display: inline-block;
    background: url("../images/number-min.png") no-repeat;
    dispaly: none;
}

.adv-num.active {
    width: 30px;
    height: 40px;
    display: inline-block;
    background: url("../images/number-min.png") no-repeat;
    background-position: 1px 0;
    opacity: 0.4;
    filter: alpha(opacity=40);
}

.adv-num-0 {
    background-position: 1px 0;
}

.adv-num-1 {
    background-position: 1px -50px;
}

.adv-num-2 {
    background-position: 1px -100px;
}

.adv-num-3 {
    background-position: 1px -150px;
}

.adv-num-4 {
    background-position: 1px -200px;
}

.adv-num-5 {
    background-position: 1px -250px;
}

.adv-num-6 {
    background-position: 1px -300px;
}

.adv-num-7 {
    background-position: 1px -350px;
}

.adv-num-8 {
    background-position: 1px -400px;
}

.adv-num-9 {
    background-position: 1px -450px;
}

/*动画效果*/
.index-update-icon {
    margin: 0 auto;
}

.index-update-icon li {
    margin-top: 75px;
}

.index-update-icon li:first-child {
    margin-top: 0px;
}

.index-update-max-box {
    border: 1px solid #ccc;
}

.index-update-left-box1 {
    left: -20px;
    top: 110px;
}

.index-update-left-box2 {
    left: -20px;
    top: 310px;
}

.index-update-left-box3 {
    left: -20px;
    top: 500px;
}

.index-update-left-box4 {
    left: -20px;
    top: 700px;
}

.index-update-right-box1 {
    right: -20px;
    top: 120px;
}

.index-update-right-box2 {
    right: -20px;
    top: 310px;
}

.index-update-right-box3 {
    right: -20px;
    top: 500px;
}

.index-update-right-box4 {
    right: -20px;
    top: 700px;
}

.index-update-right-box1 p,
.index-update-right-box3 p,
.index-update-left-box2 p,
.index-update-left-box4 p {
    line-height: 25px;
}

.index-why2-left-box {
    top: 200px;
}

/*亮点轮播图*/
.tempWrap {
    margin: 0 auto
}

.picScroll-left {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 4999;
    padding: 50px 0px 100px 0px;
}

.picScroll-left .hd {
    padding: 0 50px
}

.picScroll-left .hd .prev,
.picScroll-left .hd .next {
    display: block;
    width: 5px;
    height: 9px;
    float: right;
    margin-right: 5px;
    margin-top: 10px;
    overflow: hidden;
    cursor: pointer;
    background: url("images/arrow.png") no-repeat
}

.picScroll-left .hd .next {
    background-position: 0 -50px
}

.picScroll-left .hd .prevStop {
    background-position: -60px 0
}

.picScroll-left .hd .nextStop {
    background-position: -60px -50px
}

.picScroll-left .hd ul {
    left: 47.5%;
    bottom: 70px;
    overflow: hidden;
    zoom: 1;
    zoom: 1
}

.picScroll-left .hd ul li {
    float: left;
    width: 12px;
    height: 12px;
    margin-right: 5px;
    text-indent: -999px;
    cursor: pointer;
    background: #cacaca;
    border-radius: 100%
}

.picScroll-left .hd ul li.on {
    background: #EC5151
}

.picScroll-left .bd {
    padding: 10px
}

.picScroll-left .bd ul {
    overflow: hidden;
    zoom: 1;
    padding-left: 100px
}

.picScroll-left .bd ul li {
    margin: 0 8px;
    float: left;
    _display: inline;
    overflow: hidden;
    text-align: center
}

.picScroll-left .bd ul li .pic {
    text-align: center
}

.lig-lunfan-img {
    width: 322px;
    height: 443px;
    display: block;
    padding: 2px
}

.picScroll-left .bd ul li .pic a:hover img {
    border-color: #999
}

.picScroll-left .bd ul li .title {
    line-height: 24px
}

/*亮点*/
.lightspot-banner {
    background-image: url("../images/lightspot/lightspot-bg.jpg");
    height: 900px;
}

.field-box {
    background-image: url("../images/lightspot/lightspot-bg2.jpg"

        );
    height: 620px;
}

.brand-box {
    background-image: url("../images/lightspot/lightspot-bg3.jpg");
    height: 970px;
}

.distribution-box {
    background-image: url("../images/lightspot/lightspot-bg4.jpg");
    height: 1050px;
}

.chat-box {
    background-image: url("../images/lightspot/chat.jpg");
    height: 707px;
}

.n-al-more {
    margin: 30px auto 60px;
}

.banner-img1 {
    left: 433px;
    top: 139px;
}

.banner-img2 {
    left: 251px;
    top: 217px;
}

.banner-img3 {
    left: 433px;
    top: 430px;
}

.banner-tit {
    width: 100%;
    top: 347px;
}

.banner-img4 {
    left: 109px;
    top: 415px;
}

.banner-img5 {
    right: 178px;
    top: 87px;
}

.banner-iphone-left {
    left: 339px;
    top: 629px;
}

.banner-iphone-right {
    right: 338px;
    top: 525px;
}

.feature-tit {
    padding-top: 470px;
}

.feature-tit-1 {
    padding-top: 380px;
}

.lig-list-box {
    margin: 0 auto;
    margin-top: 30px;
}

.lig-lunfantu {
    z-index: 5000;
    margin: 0 auto;
}

.lunfantu-left-jt {
    left: 25px;
    top: 45%;
    z-index: 5001
}

.lunfantu-right-jt {
    right: 25px;
    top: 45%;
    z-index: 5001
}

.lig-lun-hs {
    left: 0px;
    top: 0%;
}

.brank-iphone {
    left: 25px;
    top: 85px;
}

.brank-img1 {
    right: 80px;
    top: 158px;
    z-index: 10
}

.brank-img2 {
    left: 400px;
    top: 373px;
    z-index: 11
}

.brank-img4 {
    right: 00px;
    top: 405px;
    z-index: 11
}

.brank-img3 {
    right: 200px;
    top: 325px;
    z-index: 11
}

.iphone-stroe {
    left: -18px;
    top: 380px;
}

.store-box {
    height: 1002px;
}

.stroe-list {
    top: 278px;
    right: -18px;
}

.distribution-img {
    left: 90px;
    ;
    top: 280px;
}

.common-box {
    height: 1031px;
}

.commun-img {
    left: 46px;
    top: 296px;
}

.commun-img1 {
    top: 320px;
    left: 434px
}

.chat-img {
    left: 0px;
    top: 102px;
}

.article-box {
    height: 800px;
}

.article-img {
    left: 386px;
    top: 221px;
}

.article-img1 {
    left: 177px;
    top: 382px;
}

.article-img2 {
    left: 244px;
    top: 488px;
}

.article-img3 {
    right: 278px;
    top: 541px;
}

.article-img4 {
    right: 207px;
    top: 651px;
}

.article-img5 {
    left: 68px;
    top: 507px;
}

.article-img6 {
    left: 196px;
    top: 638px;
}

.article-img7 {
    right: 232px;
    top: 393px;
}

.article-img8 {
    right: 79px;
    top: 593px;
}

.article-img9 {
    right: 118px;
    top: 484px;
}

.lbs-box {
    height: 900px;
}

.lbs-box-1 {
    height: 960px;
}

.lbs-img {
    left: 0px;
    top: 184px;
    z-index: 5
}

.lbs-img1 {
    right: 20px;
    top: 265px;
    z-index: 4
}

.lbs-img-1 {
    left: 0px;
    top: 340px;
    z-index: 5;
}

.lbs-img1-1 {
    right: 20px;
    top: 190px;
    z-index: 4
}

.n-lig-opbg {
    bottom: -5px;
    left: 0
}

.lig-cate-box {
    bottom: 40px;
    left: 90px;
}

.n-but-je {
    margin-left: 295px;
    margin-top: 20px;
}

/*品牌街*/
.brand-line {
    line-height: 30px;
}

.brank-banner {
    background-image: url("../images/lightspot/brand/brand-bg.png");
    height: 842px;
}

.brand-left {
    width: 590px;
    height: 367px;
    top: 300px;
    left: -10px;
}

.brand-banner-right {
    top: 120px;
    right: -10px;
}

.best-box {
    height: 794px;
}

.best-img {
    top: 88px;
    left: -10px;
}

.best-right {
    width: 422px;
    height: 205px;
    top: 243px;
    right: -20px;
    border-left: 1px solid #f7928d;
    padding-left: 30px;
}

.sale-brand-box {
    height: 787px;
}

.sale-brand-left {
    width: 394px;
    height: 567px;
    top: 88px;
    left: -20px;
}

.sale-right-img {
    right: -20px;
    top: 90px;
}

.sale-tit {
    border-left: 1px solid #ccc;
    padding-left: 30px;
}

.brand-big-box {
    background-image: url("../images/lightspot/brand/big-bg.png");
    height: 857px;
}

.big-right-img {
    left: 40px;
    top: 90px;
}

.big-brand-right {
    width: 630px;
    height: 630px;
    right: -20px;
    top: 90px;
}

.list-brand-box {
    height: 684px;
}

.list-brand-left {
    width: 239px;
    height: 172px;
    left: 70px;
    top: 307px
}

.list-right-img {
    right: 80px;
    top: 179px;
}

.street-brand-box {
    background-image: url("../images/lightspot/brand/brand-bg-2.png");
    height: 750px;
}

.street-left-img {
    left: 70px;
    top: 180px;
}

.street-brand-right {
    width: 239px;
    height: 181px;
    right: 140px;
    top: 336px
}

.brand-end {
    height: 200px;
}

/*店铺街*/
.store-banner {
    background-image: url("../images/lightspot/store/store-bg.png");
    height: 610px;
}

.store-banner-1 {
    left: 352px;
    top: 150px;
}

.store-banner-2 {
    left: 355px;
    top: 230px;
}

.store-banner-3 {
    left: 412px;
    top: 430px;
}

.store-street {
    height: 694px;
}

.store-right-img {
    right: 0px;
    top: 100px;
}

.store-left {
    width: 485px;
    height: 841px;
    left: 0px;
    top: 100px;
}

.store-street-1 {
    background-image: url("../images/lightspot/store/store-bg1.png");
    height: 922px;
}

.store-left-img1 {
    left: 0px;
    top: 339px;
}

.store-right-img1 {
    right: 0px;
    top: 310px;
}

.store-street-2 {
    height: 838px;
}

.store-left-img2 {
    left: 0px;
    top: 90px;
}

.store-right-cont {
    width: 226px;
    height: 185px;
    right: 50px;
    top: 160px;
}

.store-cont-detail {
    width: 457px;
    height: 519px;
    left: 0px;
    top: 128px;
}

.store-detail-img {
    right: 0px;
    top: 40px;
}

.store-detail {
    height: 884px;
}

/*微分销*/
.dis-banner {
    background-image: url("../images/lightspot/dis/dis-banner.jpg");
    height: 800px;
}

.dis-banner1 {
    left: -100px;
    top: 172px;
}

.dis-banner2 {
    right: 0px;
    top: 275px;
}

.dis-user {
    height: 778px;
}

.dis-user-img {
    left: 40px;
    top: 89px;
}

.dis-user-img-1 {
    left: 300px;
    top: 292px;
}

.dis-user-img-3 {
    right: 50px;
    top: 515px;
}

.dis-user-img-2 {
    right: 0px;
    top: 350px;
}

.user-right {
    width: 436px;
    height: 174px;
    right: 100px;
    top: 147px;
}

.dis-order {
    background-image: url("../images/lightspot/dis/bg-1.jpg");
    height: 817px;
}

.order-left {
    width: 443px;
    height: 175px;
    left: 0px;
    top: 197px;
}

.dis-order-img {
    top: 413px;
    left: 0px;
}

.dis-order-img-1 {
    top: 179px;
    left: 890px;
}

.dis-team {
    height: 1080px;
}

.dis-team-img {
    top: 294px;
    left: 0px;
}

.dis-team-img-1 {
    top: 294px;
    left: 380px;
}

.team-right {
    width: 292px;
    height: 384px;
    right: 0px;
    top: 430px;
}

.dis-team-img-2 {
    margin-top: 90px;
}

.dis-card {
    height: 730px;
}

.dis-card-img {
    top: 176px;
    left: 0;
}

.card-right {
    left: 900px;
    top: 90px;
}

.dis-ranklist {
    background-image: url("../images/lightspot/dis/bg-2.png");
    height: 504px;
}

.pank-left {
    width: 443px;
    height: 327px;
    left: 0px;
    top: 136px;
}

.dis-ranklist-img-1 {
    top: 179px;
    left: 890px;
}

.dis-shop {
    height: 964px;
}

.dis-shop-img {
    top: 497px;
    left: 0px;
}

.shop-right {
    width: 291px;
    height: 359px;
    right: 0px;
    top: 564px;
}

.dis-shop-bg {
    background-image: url("../images/lightspot/dis/bg-3.png");
    height: 320px;
}

/*社区*/
.com-banner {
    background-image: url("../images/lightspot/com/com-banner.png");
    height: 733px;
}

.com-banner1 {
    top: 130px;
    left: 522px;
}

.com-banner2 {
    top: 260px;
    left: 415px;
}

.com-posts {
    height: 596px;
}

.com-posts1 {
    top: -169px;
    left: 0px;
}

.posts-left {
    width: 405px;
    height: 350px;
    top: 90px;
    right: 0px;
}

.com-post {
    background-image: url("../images/lightspot/com/bg-1.png");
    height: 830px;
}

.post-left {
    height: 1560px;
    width: 580px;
    left: 0px;
    top: 211px;
}

.com-post1 {
    top: 82px;
    right: 0px;
}

.detalis-left {
    width: 395px;
    height: 488px;
    top: 130px;
    left: 0px;
}

.com-details-box {
    height: 700px;
}

.com-post-2 {
    height: 877px;
}

.dpost2-left {
    width: 337px;
    height: 358px;
    top: 485px;
    right: 0px;
}

.com-details {
    top: 50px;
    right: 0px;
}

.com-pl-list {
    background-image: url("../images/lightspot/com/bg-2.png");
    height: 710px;
}

.com-pl-img {
    top: 90px;
    left: 0px;
}

.com-user-box {
    height: 960px;
}

.com-user {
    left: 0;
    top: 90px;
}

.user-left {
    width: 298px;
    height: 265px;
    top: 200px;
    right: 0px;
}

/*文章*/
.article-banner {
    background-image: url("../images/lightspot/article/ar-banner.png");
    height: 548px;
}

.article-banner1 {
    left: 455px;
    top: 100px;
}

.article-banner2 {
    left: 462px;
    top: 350px;
}

.article-list {
    height: 738px;
}

.article-list-left {
    width: 283px;
    height: 173px;
    top: 108px;
    left: 0px;
}

.article-list-img {
    left: 50px;
    top: 330px;
}

.article-list-img1 {
    right: 0px;
    top: -170px;
}

.article-publish {
    background-image: url("../images/lightspot/article/bg-1.png");
    height: 700px;
}

.article-publish-img {
    left: 0px;
    top: 250px;
}

.article-publish-img1 {
    right: 0px;
    top: 615px;
}

.article-publish-cont {
    width: 290px;
    height: 180px;
    top: 339px;
    right: 100px;
}

.article-end-box {
    height: 532px;
}

/*优势*/
.advantage-banner {
    background-image: url("../images/advantage/banner.jpg");
    height: 829px;
}

.advantage-box2 {
    background-image: url("../images/advantage/adv-bg.jpg");
    height: 973px;
}

.advantage-service {
    background-image: url("../images/advantage/service.jpg");
    height: 730px;
}

.advantage-care {
    background-image: url("../images/advantage/care.jpg");
    height: 585px;
}

.advantage-ban1 {
    left: 265px;
    top: 170px;
}

.advantage-ban2 {
    left: 204px;
    top: 300px;
}

.advantage-ban3 {
    left: 326px;
    top: 460px;
}

.advantage-ban4 {
    left: 465px;
    top: 510px;
}

.adv-img2 {
    left: -20px;
    top: 290px;
}

.adv-img3 {
    left: 292px;
    top: 290px;
}

.adv-img4 {
    left: 614px;
    top: 290px;
}

.adv-img5 {
    left: 926px;
    top: 290px;
}

.adv-box1-img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.adv-img1 {
    width: 756px;
    height: 46px;
    margin: 0 auto;
}

.adv-cont {
    width: 302px;
    height: 302px;
}

.my-adv {
    margin-top: -5px;
}

.advantage-box3 {
    height: 1011px;
}

.adv-yg1 {
    top: 102px;
    left: -20px;
}

.adv-yg2 {
    top: 244px;
    right: 0px;
}

.adv-yg3 {
    top: 390px;
    right: 0px;
}

.ser-1 {
    top: 200px;
    left: 50px;
}

.ser-2 {
    top: 400px;
    left: 189px;
}

.advantage-update {
    height: 650px;
}

.ser-update {
    left: 175px;
    top: 227px;
}

.advantage-demand li {
    height: 190px;
}

.advantage-demand p {
    line-height: 24px;
    margin-top: 10px;
}

.advantage-technology {
    height: 1066px;
}

.adv-tec {
    top: 227px;
    left: 40px;
}

.adv-tec1 {
    height: 204px;
    width: 165px;
    top: 376px;
    left: 316px;
}

.adv-tec2 {
    height: 204px;
    width: 163px;
    top: 576px;
    right: 458px;
}

.adv-tec3 {
    height: 150px;
    width: 113px;
    top: 426px;
    right: 294px;
}

.adv:hover {
    background: #bf3434;
}

.advantage-made {
    height: 710px;
}

.adv-made {
    top: 205px;
    left: 2px;
}

.left-demand {
    max-width: 605px;
    float: right;
}

.addr-cont-maxbox {
    height: 100px;
}

/*更新*/
.upadte-banner {
    background-image: url("../images/update/update-banner.jpg");
    height: 759px;
}

.upadte-banner1 {
    left: 530px;
    top: 360px;
}

.upadte-banner2 {
    left: 400px;
    top: 304px;
}

.upadte-banner3 {
    left: 472px;
    top: 200px;
}

.upadte-banner4 {
    right: 400px;
    top: 304px;
}

.upadte-cate-box {
    top: 790px;
    left: 0
}

.update-before:before,
.update-before before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 0px;
    width: 2px;
    left: 603px;
    background: #eeeeee none repeat scroll 100% 100%;
}

.update-img5 {
    margin-top: 50px;
    margin-left: 24px;
    z-index: 500;
}

.update-img7 {
    margin-left: 24px;
    margin-top: 20px;
}

.update-time {
    margin-left: 486px;
    z-index: 500;
}

.update-yuan {
    top: 25px;
    right: 601.8px;
}

.update-box {
    border-radius: 8px;
    width: 513px;
    padding-top: 30px;
    padding-left: 20px;
    padding-bottom: 30px;
    margin-top: 50px;
}

.update-left-pos {
    margin-left: 32px;
}

.update-right-pos {
    margin-left: 644px;
}

.update-sjx {
    top: 20px;
    right: 636px;
}

.update-sjx-1 {
    top: 20px;
    right: 564px;
}

.update-headr {
    width: 80px;
    height: 80px;
    margin-left: 560px;
    margin-top: -5px;
    margin-top: -3px\9;
}

.update-xian {
    top: 50px;
}

.update-cont-box {
    line-height: 26px;
}

.up-tit {
    margin-left: -85px;
}

.up-left {
    margin-left: 166px;
}

.addr-cont-box {
    z-index: 1;
    height: 552px;
}

.addr-cont-box.active {
    display: none;
    opacity: 0;
    filter: alpha(opacity=0);
    moz-transition: 1s ease;
    -o-transition: 1s ease;
    -webkit-transition: 1s ease;
}

.addr-cont-box li {
    height: 552px;
}

.addr-title {
    line-height: 30px;
    max-width: 605px;
    text-align: left;
}

.add-iphone {
    padding: 40px 40px 0px 40px;
    ;
}

.add-iphone1 {
    padding: 80px 40px 40px 40px;
}

.addr-cont2 p {
    margin-left: 20px;
    padding: 10.4px 0;
}

.addr-left-bg {
    background-color: #000\9;
    position: static;
    background: rgba(0, 0, 0, 0.8) !important;
    filter: alpha(opacity=50);
}

.addr-left-cont {
    margin-top: 107px;
    margin-right: 130px;
}

.addr-right-float {
    padding: 10px;
    position: fixed;
    right: -75px;
    top: 50%;
    font-size: 16px;
    opacity: 0;
    filter: alpha(opacity=0);
    moz-transition: 1s ease;
    -o-transition: 1s ease;
    -webkit-transition: 1s ease;
}

.addr-right-float.active {
    right: 0;
    opacity: 1;
    filter: alpha(opacity=100);
}

.addr-right-jt {
    left: -18px;
    top: 0;
}

/*================================
                    帮助
==================================*/
.help-banner {
    background-image: url("../images/index-1.jpg");
    height: 480px;
}

.help-banner0 {
    background-image: url("../images/index-2.jpg");
    height: 480px;
}

.help-banner1 {
    left: 440px;
    top: 150px;
}

.help-banner2 {
    left: 440px;
    top: 350px;
}

.help-tltle {
    font-size: 24px;
    color: #000;
}

.help-content {
    font-size: 14px;
    color: #333333;
    margin-top: 20px;
    padding-bottom: 60px;
}

.adv-tit-box {
    left: 405px;
    top: 158px;
}

.authorize-box {
    width: 734px;
    height: 614px;
    top: 261px;
    left: 0px;
}

.slideTxtBox {
    width: 100%;
}

.slideTxtBox .hd {
    height: 80px;
    line-height: 80px;
    background: #fff;
    position: relative
}

.slideTxtBox .hd ul {
    width: 100%
}

.slideTxtBox .hd ul li {
    float: left;
    cursor: pointer;
    width: 50%;
    box-sizing: border-box;
    font-size: 30px;
    color: #333;
    background: #f6f6f9;
    text-align: center
}

.slideTxtBox .hd ul li.on {
    height: 80px;
    background: #EC5151;
    color: #fff;
}

.slideTxtBox .bd ul {
    margin-top: 30px;
    zoom: 1
}

.authorize-jt {
    width: 30px;
    height: 23px;
    bottom: 0.8rem;
    left: 40%;
    opacity: 0;
    filter: alpha(opacity=0);
    moz-transition: 0s ease;
    -o-transition: 0s ease;
    -webkit-transition: 0s ease;
}

.authorize-jt.active {
    opacity: 0;
    filter: alpha(opacity=0);
    moz-transition: 1s ease;
    -o-transition: 1s ease;
    -webkit-transition: 1s ease;
}

/*
 右边悬浮样式
 * 
 * */
/*main css*/
.izl-rmenu {
    position: fixed;
    right: 10px;
    bottom: 10%;
    padding-bottom: 10px;
    background: url("../images/r_b.png") 0px bottom no-repeat;
    z-index: 6999;
}

.izl-rmenu .btn {
    width: 62px;
    height: 63px;
    margin-bottom: 1px;
    cursor: pointer;
    position: relative;
}

.izl-rmenu .btn-qq {
    background: url("../images/r_qq.png") no-repeat;
    background-color: rgba(236, 81, 81, 0.8);
    background-color: rgba(236, 81, 81, 0.8);
    background-size: 62px 63px;
}

.izl-rmenu .btn-qq:hover {
    background-color: rgba(236, 81, 81, 1);
}

.izl-rmenu a.btn-qq,
.izl-rmenu a.btn-qq:visited {
    background: url("../images/r_qq.png") no-repeat;
    background-size: 62px 63px;
    background-color: rgba(236, 81, 81, 0.8);
    text-decoration: none;
    display: block;
}

.izl-rmenu .btn-wx {
    background: url("../images/r_wx.png") no-repeat;
    background-color: rgba(236, 81, 81, 0.8);
    background-size: 62px 63px;
}

.izl-rmenu .btn-wx:hover {
    background-color: rgba(236, 81, 81, 1);
}

.izl-rmenu .btn-wx .pic {
    position: absolute;
    left: -160px;
    top: 0px;
    display: none;
    width: 160px;
    height: 160px;
}

.izl-rmenu .btn-phone {
    background: url("../images/r_phone.png"

        ) no-repeat;
    background-color: rgba(236, 81, 81, 0.8);
    background-size: 62px 63px;
}

.izl-rmenu .btn-phone:hover {
    background-color: rgba(236, 81, 81, 1);
}

.izl-rmenu .btn-phone .phone {
    background-color: #ec5151;
    position: absolute;
    width: 160px;
    left: -160px;
    top: 0px;
    line-height: 63px;
    color: #FFF;
    font-size: 16px;
    text-align: center;
    display: none;
}

.izl-rmenu .btn-top {
    background: url("../images/r_top.png"

        ) no-repeat;
    background-color: rgba(236, 81, 81, 0.8);
    background-size: 62px 63px;
    display: none;
}

.izl-rmenu .btn-top:hover {
    background-color: rgba(236, 81, 81, 1);
}

.demo-ewm {
    right: -8px;
    z-index: 4999;
    top: -240px;
    display: none;
}

.demo-ewm.active {
    display: block;
}

.but-n-box input {
    background: none;
    border: none;
    border: 0;
    color: #fff;
    font-size: 16px;
}

/*微筹*/
.raise-banner {
    background-image: url("../images/raise/1.jpg"

        );
    height: 777px;
}

.raise-banner .banner-left {
    border: 5px solid rgba(200, 72, 74, 0.9);
    width: 470px;
    height: 322px;
    top: 269px;
    left: -100px;
}

.raise-banner .banner-left .banner-cont-box {
    background: rgba(200, 72, 74, 0.9);
    width: 438px;
    height: 290px;
    margin: 0 auto;
    margin-top: 15px;
}

.raise-banner .banner-left .banner-cont-box .cont {
    padding: 38px 36px;
}

.raise-banner .banner-left .banner-cont-box p {
    padding: 10px 0
}

.raise-banner .banner-left .banner-cont-box .button {
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    padding: 10px 0;
    color: #ec5151;
    margin-top: 20px;
}

.raise-banner .banner-left .banner-cont-box .button:hover {
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    padding: 10px 0;
    color: #ec5151;
    margin-top: 20px;
}

.raise-banner .banner-right {
    right: -100px;
    top: 120px;
}

.raise-cost-com {
    width: 262px;
    height: 155px;
    border-radius: 5px;
    top: 150px;
    left: 15px;
}

.raise-cost .zise {
    background: #a45be9;
}

.raise-cost .huangse {
    background: #f06516;
}

.raise-cost .lanse {
    background: #39a2e9;
}

.raise-cost .hongse {
    background: #e75759;
}

.raise-cost .content {
    padding: 28px;
}

.raise-cost .raise-cont {
    height: 270px;
}

.raise-data .data-img {
    top: 200px;
}

.raise-data {
    height: 550px;
}

.raise-data .data-cont {
    top: 540px;
    width: 100%;
}

.raise-data .data-cont p {
    margin-left: 10px;
}

.raise-confused .confused-num {
    width: 84px;
    height: 84px;
    border-radius: 100%;
    background: #EC5151;
    line-height: 84px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.raise-confused .confused-num:hover {
    background: #d84141;
}

.raise-confused p {
    padding: 3px 20px;
    line-height: 25px;
    color: #555;
}

.raise-process {
    background-image: url("../images/raise/2.jpg"

        );
    height: 806px;
}

.raise-process .process-right {
    left: 53px;
    top: 292px;
}

.n-raise-box {
    width: 100%;
    margin: 0 auto;
    margin-top: 70px;
}

.n-raise-box .hd {
    background: #fff;
    position: relative;
    width: 70%;
    margin: 0 auto;
}

.n-raise-box .hd ul {
    width: 100%;
}

.n-raise-box .hd ul li {
    float: left;
    cursor: pointer;
    width: 33.33%;
    box-sizing: border-box;
    font-size: 30px;
    color: #333;
    background: #f6f6f9;
    text-align: center;
    box-sizing: border-box;
}

.n-raise-box .bd ul {
    margin-top: 30px;
    zoom: 1
}

.n-raise-box .bd ul li {
    position: relative;
}

.n-raise-box .tab-html5 {
    background: #f66b22
}

.n-raise-box .tab-css3 {
    background: #3aa2e9
}

.n-raise-box .tab-mvc {
    background: #a45ae9
}

.n-raise-box .tab-com {
    width: 142px;
    height: 142px;
    border-radius: 100%;
    margin: 0 auto;
}

.n-raise-box .tab-com img {
    margin-top: 28px;
}

.n-raise-box .tab-cont-com {
    padding: 30px;
    border-radius: 10px;
    color: #fff;
}

.n-raise-box .jiantou-html5 {
    left: 308px;
}

.n-raise-box .jiantou-css3 {
    left: 596px;
}

.n-raise-box .jiantou-mvc {
    right: 308px;
}

.n-raise-box .jiantou-com {
    height: 20px;
    width: 20px;
    top: -9px;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.next-btton {
    top: 50%;
    right: 20%;
    visibility: visible;
}

.n-bg {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0
}

.flipster-nav {
    display: none;
}

.flipto-prev {
    left: 20%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 50%;
    width: 75px;
    height: 75px;
    border-radius: 100%;
    line-height: 75px;
}

.flipto-next,
.flipto-prev {
    right: 20%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 50%;
    width: 75px;
    height: 75px;
    border-radius: 100%;
}

.flipto-next div,
.flipto-prev div {
    width: 26px;
    height: 38px;
    margin: 0 auto;
    margin-top: 18px;
}

.flipto-next div img,
.flipto-prev div img {
    width: 100%;
}

.flipto-prev div {
    margin-top: 22px;
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.raise-list-img {
    width: 360px;
}

.am-left {
    position: relative;
    animation: HTMLBOX 0.8s;
}

@keyframes HTMLBOX {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.flipster {
    display: block;
    margin: 0 auto;
    width: 100%;
    position: relative;
    overflow-y: visible;
    margin-top: 60px
}

.flip-items,
.flip-item {
    display: block;
    margin: 0 auto;
    padding: 0;
    list-style-type: none
}

.flip-items {
    width: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.flip-item {
    position: absolute;
    opacity: .99
}

.flip-past,
.flip-future,
.flip-next,
.flip-prev {
    cursor: pointer;
}

.flip-item img {
    display: block;
}

.flipster-coverflow .flip-items {
    -webkit-transition: all 350ms ease-in-out;
    -moz-transition: all 350ms ease-in-out;
    -o-transition: all 350ms ease-in-out;
    -ms-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out;
    position: relative;
    padding-top: 2%;
    padding-bottom: 5%;
}

.flipster-coverflow .flip-item {
    display: block;
    -webkit-transition: all 175ms ease-in-out;
    -moz-transition: all 175ms ease-in-out;
    -o-transition: all 175ms ease-in-out;
    -ms-transition: all 175ms ease-in-out;
    transition: all 175ms ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-perspective: 800px;
    -moz-perspective: 800px;
    perspective: 800px;
    position: absolute;
    width: 30%;
}

.flipster-coverflow .flip-content {
    -webkit-transition: all 350ms ease-in-out;
    -moz-transition: all 350ms ease-in-out;
    -o-transition: all 350ms ease-in-out;
    -ms-transition: all 350ms ease-in-out;
    transition: all 350ms ease-in-out;
    -webkit-box-reflect: below 0 -webkit-gradient(linear, left bottom, left top, color-stop(0.05, rgba(255, 255, 255, 0.12)), color-stop(0.2, transparent));
}

.flipster-coverflow .flip-past .flip-content {
    -webkit-transform: rotateY(55deg) scale(0.75);
    -moz-transform: rotateY(55deg) scale(0.75);
    -o-transform: rotateY(55deg) scale(0.75);
    -ms-transform: rotateY(55deg) scale(0.75);
    transform: rotateY(55deg) scale(0.75);
}

.flipster-coverflow .flip-future .flip-content {
    -webkit-transform: rotateY(-55deg) scale(0.75);
    -moz-transform: rotateY(-55deg) scale(0.75);
    -o-transform: rotateY(-55deg) scale(0.75);
    -ms-transform: rotateY(-55deg) scale(0.75);
    transform: rotateY(-55deg) scale(0.75);
}

.flipster-coverflow.no-rotate .flip-past .flip-content {
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -o-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
}

.flipster-coverflow.no-rotate .flip-future .flip-content {
    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    -o-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
}


.flipster-coverflow .flip-current .flip-content {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.flipster-coverflow .flip-hidden {
    visibility: hidden;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
}

/* @end */
/* @group Flip Items */
.flipster-carousel .flip-items {
    -webkit-perspective: 2000px;
    -moz-perspective: 2000px;
    perspective: 2000px;
}

.flipster-carousel .flip-item {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 350ms ease-out;
    -moz-transition: all 350ms ease-out;
    -o-transition: all 350ms ease-out;
    -ms-transition: all 350ms ease-out;
    transition: all 350ms ease-out;
}

.no-csstransforms .flipster-carousel .flip-item {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    -ms-transition: none;
    transition: none;
}

.flipster-carousel .flip-items img {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.flipster-carousel .flip-past {
    -webkit-transform: translateX(-135%) translateZ(0) rotateY(50deg) scale(0.65);
    -moz-transform: translateX(-135%) translateZ(0) rotateY(50deg) scale(0.65);
    -o-transform: translateX(-135%) translateZ(0) rotateY(50deg) scale(0.65);
    -ms-transform: translateX(-135%) translateZ(0) rotateY(50deg) scale(0.65);
    transform: translateX(-135%) translateZ(0) rotateY(50deg) scale(0.65);
}

.flipster-carousel.no-rotate .flip-past {
    -webkit-transform: translateX(-80%) translateZ(0) scale(0.65);
    -moz-transform: translateX(-80%) translateZ(0) scale(0.65);
    -o-transform: translateX(-80%) translateZ(0) scale(0.65);
    -ms-transform: translateX(-80%) translateZ(0) scale(0.65);
    transform: translateX(-80%) translateZ(0) scale(0.65);
}

.no-csstransforms3d .flipster-carousel .flip-past {
    -webkit-transform: translateX(-56%) scale(0.5);
    -moz-transform: translateX(-56%) scale(0.5);
    -o-transform: translateX(-56%) scale(0.5);
    -ms-transform: translateX(-56%) scale(0.5);
    transform: translateX(-56%) scale(0.5);
}

.no-csstransforms .flipster-carousel .flip-past {
    left: -20%;
    top: 40%;
    width: 50%;
    height: 50%;
}

.flipster-carousel .flip-future {
    -webkit-transform: translateX(135%) translateZ(0) rotateY(-50deg) scale(0.65);
    -moz-transform: translateX(135%) translateZ(0) rotateY(-50deg) scale(0.65);
    -o-transform: translateX(135%) translateZ(0) rotateY(-50deg) scale(0.65);
    -ms-transform: translateX(135%) translateZ(0) rotateY(-50deg) scale(0.65);
    transform: translateX(135%) translateZ(0) rotateY(-50deg) scale(0.65);
}

.flipster-carousel.no-rotate .flip-future {
    -webkit-transform: translateX(80%) translateZ(0) scale(0.65);
    -moz-transform: translateX(80%) translateZ(0) scale(0.65);
    -o-transform: translateX(80%) translateZ(0) scale(0.65);
    -ms-transform: translateX(80%) translateZ(0) scale(0.65);
    transform: translateX(80%) translateZ(0) scale(0.65);
}

.no-csstransforms3d .flipster-carousel .flip-future {
    -webkit-transform: translateX(56%) scale(0.5);
    -moz-transform: translateX(56%) scale(0.5);
    -o-transform: translateX(56%) scale(0.5);
    -ms-transform: translateX(56%) scale(0.5);
    transform: translateX(56%) scale(0.5);
}

.no-csstransforms .flipster-carousel .flip-future {
    left: 88%;
    top: 40%;
    width: 50%;
    height: 50%;
}

.flipster-carousel .flip-prev {
    -webkit-transform: translateX(-80%) translateZ(0) rotateY(30deg) scale(0.8);
    -moz-transform: translateX(-80%) translateZ(0) rotateY(30deg) scale(0.8);
    -o-transform: translateX(-80%) translateZ(0) rotateY(30deg) scale(0.8);
    -ms-transform: translateX(-80%) translateZ(0) rotateY(30deg) scale(0.8);
    transform: translateX(-80%) translateZ(0) rotateY(30deg) scale(0.8);
}

.flipster-carousel.no-rotate .flip-prev {
    -webkit-transform: translateX(-60%) translateZ(0) scale(0.8);
    -moz-transform: translateX(-60%) translateZ(0) scale(0.8);
    -o-transform: translateX(-60%) translateZ(0) scale(0.8);
    -ms-transform: translateX(-60%) translateZ(0) scale(0.8);
    transform: translateX(-60%) translateZ(0) scale(0.8);
}

.no-csstransforms3d .flipster-carousel .flip-prev {
    -webkit-transform: translateX(-24%) scale(0.75);
    -moz-transform: translateX(-24%) scale(0.75);
    -o-transform: translateX(-24%) scale(0.75);
    -ms-transform: translateX(-24%) scale(0.75);
    transform: translateX(-24%) scale(0.75);
}

.no-csstransforms .flipster-carousel .flip-prev {
    left: -9%;
    top: 20%;
    width: 75%;
    height: 75%;
}

.flipster-carousel .flip-next {
    -webkit-transform: translateX(80%) translateZ(0) rotateY(-30deg) scale(0.8);
    -moz-transform: translateX(80%) translateZ(0) rotateY(-30deg) scale(0.8);
    -o-transform: translateX(80%) translateZ(0) rotateY(-30deg) scale(0.8);
    -ms-transform: translateX(80%) translateZ(0) rotateY(-30deg) scale(0.8);
    transform: translateX(80%) translateZ(0) rotateY(-30deg) scale(0.8);
}

.flipster-carousel.no-rotate .flip-next {
    -webkit-transform: translateX(60%) translateZ(0) scale(0.8);
    -moz-transform: translateX(60%) translateZ(0) scale(0.8);
    -o-transform: translateX(60%) translateZ(0) scale(0.8);
    -ms-transform: translateX(60%) translateZ(0) scale(0.8);
    transform: translateX(60%) translateZ(0) scale(0.8);
}

.no-csstransforms3d .flipster-carousel .flip-next {
    -webkit-transform: translateX(24%) scale(0.75);
    -moz-transform: translateX(24%) scale(0.75);
    -o-transform: translateX(24%) scale(0.75);
    -ms-transform: translateX(24%) scale(0.75);
    transform: translateX(24%) scale(0.75);
}

.no-csstransforms .flipster-carousel .flip-next {
    left: 39%;
    top: 20%;
    width: 75%;
    height: 75%;
}

.flipster-carousel .flip-past,
.flipster-carousel .flip-future {
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    opacity: 0.5;
    z-index: 1;
    -webkit-transition-delay: 87.5ms;
    -moz-transition-delay: 87.5ms;
    -o-transition-delay: 87.5ms;
    transition-delay: 87.5ms;
}

.flipster-carousel .flip-prev,
.flipster-carousel .flip-next {
    -webkit-opacity: 0.5;
    -moz-opacity: 0.5;
    opacity: 0.5;
    z-index: 2;
    -webkit-transition-delay: 58.333333333333336ms;
    -moz-transition-delay: 58.333333333333336ms;
    -o-transition-delay: 58.333333333333336ms;
    transition-delay: 58.333333333333336ms;
}

.flipster-carousel .flip-current {
    z-index: 999;
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transition-delay: 58.333333333333336ms;
    -moz-transition-delay: 58.333333333333336ms;
    -o-transition-delay: 58.333333333333336ms;
    transition-delay: 58.333333333333336ms;
}

.flipster-carousel .flip-hidden {
    visibility: hidden;
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -webkit-transform: rotateY(0deg) translateX(0) scale(0.5);
    -moz-transform: rotateY(0deg) translateX(0) scale(0.5);
    -o-transform: rotateY(0deg) translateX(0) scale(0.5);
    -ms-transform: rotateY(0deg) translateX(0) scale(0.5);
    transform: rotateY(0deg) translateX(0) scale(0.5);
    -webkit-transition-delay: 116.66666666666667ms;
    -moz-transition-delay: 116.66666666666667ms;
    -o-transition-delay: 116.66666666666667ms;
    transition-delay: 116.66666666666667ms;
}



/* @media自适应 */



@media (max-width:1440px) {
    .link-wrap {
        display: none;
    }

    .footer-wrap {
        display: none;
    }
}
@media (max-width:1210px) {
   .cont-box1310 {
    width: 90%;
}
}



@media (max-width:991px) {
    .met-video .video-bg {
        height: 100%;
        top: 0;
        position: absolute;
        width: 100%;
        left: 0;
    }

    .banner_met_11_6 .banner-text h3 {
        font-size: 48px
    }

    .banner_met_11_6 .banner-text p {
        font-size: 28px
    }

    .banner_met_11_6.banner-ny-h {
        min-height: 120px;
        height: 120px;
    }

    .banner_met_11_6.banner-ny-h .banner-item {
        min-height: 120px;
    }

    .banner_met_11_6.banner-ny-h .banner-text .title {
        font-size: 24px;
        color: #FFF;
    }

    .banner_met_11_6.banner-ny-h .banner-text .subtitle {
        font-size: 18px;
    }
}

@media (max-height:900px) {
    .product_list_detail_met_16_1 #met-imgs-slick .slick-slide img {
        max-height: 600px;
    }
}

@media (max-height:800px) {
    .product_list_detail_met_16_1 #met-imgs-slick .slick-slide img {
        max-height: 500px;
    }
}


@media (max-width:768px) {
    .p-t-75 {
        padding-top: 75px;
    }
}

@media (max-width:767px) {
    .p-t-75 {
        padding-top: 60px;
    }

    .nav-side {
        width: 32px;
        height: 32px;
        right: 15px;
        top: 15px;
    }

    .met-head {
        padding: 0 58px 0 15px;
        height: 60px;
        line-height: 60px;
    }

    .banner_met_11_6-ny {
        height: 90px
    }

    .banner_met_11_6-ny h1,
    .banner_met_11_6-ny h2 {
        font-size: 26px
    }

    .banner_met_11_6 {
        height: 500px;
    }

    .banner_met_11_6.banner-ny-h {
        height: 150px
    }

    .banner_met_11_6 .banner-ny-h .banner-text .title {
        margin-bottom: -10px;
        padding: 0;
        font-size: 24px;
        height: auto;
        color: #FFF;
        margin-top:10px; 

    }

    .banner_met_11_6.banner-ny-h .banner-text .subtitle {
        margin-top: 15px;
        font-size: 16px
    }

    .banner_met_11_6 .banner-text .container {
        width: 100%
    }

    .banner_met_11_6 .banner-text.p-5 .container .banner-text-con {
        width: 100%
    }

    .banner_met_11_6 .banner-text h3 {
        font-size: 38px;
        margin-left: 40px;
        margin-right: 30px;
		font-weight: 600;

    }

    .banner_met_11_6 .banner-text p {
        margin-top: 20px;
        font-size: 22px;
        margin-left: 40px;
        margin-right: 40px;
    }

    .banner_met_11_6 .banner-text p span {
        font-size: 32px;
        font-weight: 600;

    }

    .banner_met_11_6 .banner-text .btn-more {
        margin-top: 20px;
        font-size: 16px
    }

    .banner_met_11_6 .more {
        font-size: 14px;
    }


    .banner_met_11_6 .banner-text.p-2 .line {
        margin-left: 40px;
    }

    .banner_met_11_6 .banner-text.p-3 .line {
        margin-left: 40px;
    }

    .banner_met_11_6 .banner-next {
        bottom: 10px;
    }

    .banner_text .title{
		font-size:20px;
		margin-top: 0px;
        margin-bottom: 0px;
	}

    .subcolumn_nav_met_11_4 .row {
        margin: 0
    }

    .subcolumn_nav_met_11_4 .subcolumn-nav {
        height: 75px;
        float: none
    }

    .subcolumn_nav_met_11_4 .subcolumn-nav-location {
        float: none
    }

    .foot_info_met_11_4 .left {
        float: none;
        text-align: center;
        width: 100%;
    }

    .foot_info_met_11_4 .right {
        float: none;
        text-align: center;
        width: 100%;
    }

    .foot_info_met_11_4 .breadcrumb-item {
        display: inline-block;
        float: none;
    }

    .product_list_detail_met_16_1 .content .met-editor,
    .product_list_detail_met_16_1 .content .product-para {
        padding: 15px;
    }


    .product_list_detail_met_16_1 #met-imgs-slick.slick-slider .slick-arrow {
        height: calc(100% - 60px);
    }

    .product_list_detail_met_16_1 #met-imgs-slick.slick-dotted {
        padding-bottom: 60px;
    }

    .product_list_detail_met_16_1 #met-imgs-slick .swiper-navtab {
        height: 47px;
    }

    .product_list_detail_met_16_1 #met-imgs-slick .slick-dots {
        height: 42px;
    }

    .product_list_detail_met_16_1 #met-imgs-slick .slick-dots li {
        width: 40px;
        height: 40px;
        margin-left: 5px;
        border-width: 1px;
    }

    .srcotop {
        height: 3.5rem;
    }

	.f-46{
		font-size:32px;
	}
	/* .f-16{font-size:14px;} */
.ect-w65{width:80%;}
.ect-w6-5{width:100%;}
.fl{float:none;}
.margin-t35{margin-top:40px}
.ect-w35{width:100%;}
.margin-t120{width:80%;margin:0 auto;}
.margin-t120-{width:80%;margin:0 auto;}
.m-t400{height:550px}
.n-index-padding-all{paddding-top:50px;padding-bottom:30px;}
}

@media (max-width: 750px) {

    .zlm_nav {
        height: 3rem;
        top: .5rem;
    }

    .zlm_ulBox {
        width: 100%;
        height: 3rem;
        line-height: 3rem;
    }

    .zlm_ulBox ul {
        display: flex;
        justify-content: center;
    }

    .zlm_ulBox ul li a {
        line-height: 3rem;
        padding: 0 .4rem;
        font-size: 1rem;
    }

    .zlm_ul1 {
        height: 100%;
        width: 100%;
        overflow: hidden;
    }

    .zlm_ul1 .active {
        /* border-bottom: 2px solid #EF730F; */
        background-color: #EF730F;
        color: #FFF;
    }

}

@media (max-height:900px) {
    .product_list_detail_met_16_1 #met-imgs-slick .slick-slide img {
        max-height: 600px;
    }
}

@media (max-height:800px) {
    .product_list_detail_met_16_1 #met-imgs-slick .slick-slide img {
        max-height: 500px;
    }
}

@media (max-height:700px) {
    .product_list_detail_met_16_1 #met-imgs-slick .slick-slide img {
        max-height: 400px;
    }
}

@media (max-height:600px) {
    .product_list_detail_met_16_1 #met-imgs-slick .slick-slide img {
        max-height: 350px;
    }
}

@media (max-height:500px) {
    .product_list_detail_met_16_1 #met-imgs-slick .slick-slide img {
        max-height: 300px;
    }
}


@media (max-width:479px) {
    .banner_met_11_6 .banner-text h3 {
        font-size: 30px
    }

    .banner_met_11_6 .banner-text p {
        margin-top: 10px;
        font-size: 16px;
		font-weight:400;
    }
}


@media (max-width:440px) {
    .zlm_nav2 {
        height: 2rem;
    }

    .zlm_ulBox2 {
        height: 2rem;
        text-align: center;
    }

    .zlm_ulBox2 ul li {
        display: inline-block;
        float: none;
    }

    .cont-box1210 {
        width: 80%;

    }
}

@media (max-width:350px) {
    .zlm_ulBox ul li a {
        padding: 0 .15rem;
    }

    .cont-box1210 {
        width: 80%;

    }
}