@charset "utf-8";
/*css 初始化 */
html,
body,
ul,
li,
ol,
dl,
dd,
dt,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
img {
    margin: 0;
    padding: 0;
}

fieldset,
img,
input,
button,
textarea {
    border: none;
    padding: 0;
    margin: 0;
    outline-style: none;
}

/*去掉input等聚焦时的蓝色边框*/
ul,
ol {
    list-style: none;
}

input {
    padding-top: 0;
    padding-bottom: 0;
    font-family: "PingFang SC", "Microsoft YaHei", "SimSun", "宋体";
}

select,
input {
    vertical-align: middle;
}

select,
input,
textarea {
    font-size: 12px;
    margin: 0;
}

textarea {
    resize: none;
}

/*防止拖动*/
img {
    border: 0;
    vertical-align: middle;
}

/*  去掉图片低测默认的3像素空白缝隙，或者用display：block也可以*/
table {
    border-collapse: collapse;
}

body {
    font-family: "PingFang SC", "Microsoft YaHei", "SimSun", "宋体";
    color: #001207;
}

.clearfix:before,
.clearfix:after {
    /*清楚浮动*/
    content: "";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1; /*IE/7/6*/
}

a {
    text-decoration: none !important;
    color: #666;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-decoration: none;
    font-weight: normal;
    font-size: 100%;
}

/*设置h标签的大小，设置跟父亲一样大的字体font-size:100%;*/
s,
i,
em {
    font-style: normal;
    text-decoration: none;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

*::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 12px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 12px;
}

*::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 6px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #d6d8da;
    border-color: transparent;
    border-width: 1px;
    border-style: solid;
    background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #83888e !important;
    border-color: #83888e !important;
}

*::-webkit-scrollbar-track {
    border-radius: 10px;
    background: rgba(0, 0, 0, 0);
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

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

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

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
}

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/***** swiper begin *****/
.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.swiper-container .swiper-slide {
    background: #000000;
    background-position: center;
    background-size: 100% auto;
}

.swiper-container .banner-item {
    width: 1200px;
    height: 456px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.swiper-container .banner-item .title-info {
    color: #ffffff;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    line-height: 56px;
}

.swiper-container .banner-item .subtitle-info {
    color: #ffffff;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
}

.swiper-container .banner-item .detail-btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 12px 32px;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
    cursor: pointer;
    border-radius: 40px;
    border: 1px solid #ffffff;
}

.swiper-mobile-pagination {
    text-align: center;
    position: absolute;
    width: 100%;
    z-index: 10;
    bottom: 0px !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 0.16rem;
    height: 0.64rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.swiper-mobile-pagination .swiper-pagination-bullet {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 1;
    width: 0.18rem;
    height: 0.18rem;
    border-radius: 0.18rem;
    margin: 0 0.08rem !important;
}

.swiper-mobile-pagination .swiper-pagination-bullet-active {
    width: 0.18rem;
    height: 0.18rem;
    border-radius: 0.18rem;
    opacity: 1;
    background: #0070DE;
}

/***** swiper end *****/
.cp {
    cursor: pointer !important;
}

.cm {
    cursor: move !important;
}

.cna {
    cursor: not-allowed !important;
}

.fw-b {
    font-weight: bold !important;
}

.fw-n {
    font-weight: normal !important;
}

.fs-10 {
    font-size: 0.1rem !important;
}

.fs-12 {
    font-size: 0.12rem !important;
}

.fs-14 {
    font-size: 0.14rem !important;
}

.fs-16 {
    font-size: 0.16rem !important;
}

.fs-18 {
    font-size: 0.18rem !important;
}

.fs-20 {
    font-size: 0.2rem !important;
}

.fs-22 {
    font-size: 0.22rem !important;
}

.fs-24 {
    font-size: 0.24rem !important;
}

.fs-26 {
    font-size: 0.26rem !important;
}

.fs-28 {
    font-size: 0.28rem !important;
}

.fs-30 {
    font-size: 0.3rem !important;
}

.fs-32 {
    font-size: 0.32rem !important;
}

.fs-34 {
    font-size: 0.34rem !important;
}

.fs-36 {
    font-size: 0.36rem !important;
}

.fs-38 {
    font-size: 0.38rem !important;
}

.fs-40 {
    font-size: 0.4rem !important;
}

.fs-42 {
    font-size: 0.42rem !important;
}

.fs-44 {
    font-size: 0.44rem !important;
}

.fs-46 {
    font-size: 0.46rem !important;
}

.fs-48 {
    font-size: 0.48rem !important;
}

.fs-50 {
    font-size: 0.5rem !important;
}

.fs-52 {
    font-size: 0.52rem !important;
}

.fs-54 {
    font-size: 0.54rem !important;
}

.fs-56 {
    font-size: 0.56rem !important;
}

.fs-58 {
    font-size: 0.58rem !important;
}

.fs-60 {
    font-size: 0.6rem !important;
}

.h-10 {
    height: 0.1rem !important;
}

.w-10 {
    height: 0.1rem !important;
}

.h-20 {
    height: 0.2rem !important;
}

.w-20 {
    height: 0.2rem !important;
}

.h-30 {
    height: 0.3rem !important;
}

.w-30 {
    height: 0.3rem !important;
}

.h-40 {
    height: 0.4rem !important;
}

.w-40 {
    height: 0.4rem !important;
}

.h-50 {
    height: 0.5rem !important;
}

.w-50 {
    height: 0.5rem !important;
}

.h-60 {
    height: 0.6rem !important;
}

.w-60 {
    height: 0.6rem !important;
}

.h-70 {
    height: 0.7rem !important;
}

.w-70 {
    height: 0.7rem !important;
}

.h-80 {
    height: 0.8rem !important;
}

.w-80 {
    height: 0.8rem !important;
}

.h-90 {
    height: 0.9rem !important;
}

.w-90 {
    height: 0.9rem !important;
}

.h-100 {
    height: 1rem !important;
}

.w-100 {
    height: 1rem !important;
}

.h-110 {
    height: 1.1rem !important;
}

.w-110 {
    height: 1.1rem !important;
}

.h-120 {
    height: 1.2rem !important;
}

.w-120 {
    height: 1.2rem !important;
}

.h-130 {
    height: 1.3rem !important;
}

.w-130 {
    height: 1.3rem !important;
}

.h-140 {
    height: 1.4rem !important;
}

.w-140 {
    height: 1.4rem !important;
}

.h-150 {
    height: 1.5rem !important;
}

.w-150 {
    height: 1.5rem !important;
}

.h-160 {
    height: 1.6rem !important;
}

.w-160 {
    height: 1.6rem !important;
}

.h-170 {
    height: 1.7rem !important;
}

.w-170 {
    height: 1.7rem !important;
}

.h-180 {
    height: 1.8rem !important;
}

.w-180 {
    height: 1.8rem !important;
}

.h-190 {
    height: 1.9rem !important;
}

.w-190 {
    height: 1.9rem !important;
}

.h-200 {
    height: 2rem !important;
}

.w-200 {
    height: 2rem !important;
}

.h-210 {
    height: 2.1rem !important;
}

.w-210 {
    height: 2.1rem !important;
}

.h-220 {
    height: 2.2rem !important;
}

.w-220 {
    height: 2.2rem !important;
}

.h-230 {
    height: 2.3rem !important;
}

.w-230 {
    height: 2.3rem !important;
}

.h-240 {
    height: 2.4rem !important;
}

.w-240 {
    height: 2.4rem !important;
}

.h-250 {
    height: 2.5rem !important;
}

.w-250 {
    height: 2.5rem !important;
}

.h-260 {
    height: 2.6rem !important;
}

.w-260 {
    height: 2.6rem !important;
}

.h-270 {
    height: 2.7rem !important;
}

.w-270 {
    height: 2.7rem !important;
}

.h-280 {
    height: 2.8rem !important;
}

.w-280 {
    height: 2.8rem !important;
}

.h-290 {
    height: 2.9rem !important;
}

.w-290 {
    height: 2.9rem !important;
}

.h-300 {
    height: 3rem !important;
}

.w-300 {
    height: 3rem !important;
}

.h-310 {
    height: 3.1rem !important;
}

.w-310 {
    height: 3.1rem !important;
}

.h-320 {
    height: 3.2rem !important;
}

.w-320 {
    height: 3.2rem !important;
}

.h-330 {
    height: 3.3rem !important;
}

.w-330 {
    height: 3.3rem !important;
}

.h-340 {
    height: 3.4rem !important;
}

.w-340 {
    height: 3.4rem !important;
}

.h-350 {
    height: 3.5rem !important;
}

.w-350 {
    height: 3.5rem !important;
}

.h-360 {
    height: 3.6rem !important;
}

.w-360 {
    height: 3.6rem !important;
}

.h-370 {
    height: 3.7rem !important;
}

.w-370 {
    height: 3.7rem !important;
}

.h-380 {
    height: 3.8rem !important;
}

.w-380 {
    height: 3.8rem !important;
}

.h-390 {
    height: 3.9rem !important;
}

.w-390 {
    height: 3.9rem !important;
}

.h-400 {
    height: 4rem !important;
}

.w-400 {
    height: 4rem !important;
}

.h-410 {
    height: 4.1rem !important;
}

.w-410 {
    height: 4.1rem !important;
}

.h-420 {
    height: 4.2rem !important;
}

.w-420 {
    height: 4.2rem !important;
}

.h-430 {
    height: 4.3rem !important;
}

.w-430 {
    height: 4.3rem !important;
}

.h-440 {
    height: 4.4rem !important;
}

.w-440 {
    height: 4.4rem !important;
}

.h-450 {
    height: 4.5rem !important;
}

.w-450 {
    height: 4.5rem !important;
}

.h-460 {
    height: 4.6rem !important;
}

.w-460 {
    height: 4.6rem !important;
}

.h-470 {
    height: 4.7rem !important;
}

.w-470 {
    height: 4.7rem !important;
}

.h-480 {
    height: 4.8rem !important;
}

.w-480 {
    height: 4.8rem !important;
}

.h-490 {
    height: 4.9rem !important;
}

.w-490 {
    height: 4.9rem !important;
}

.h-500 {
    height: 5rem !important;
}

.w-500 {
    height: 5rem !important;
}

.h-510 {
    height: 5.1rem !important;
}

.w-510 {
    height: 5.1rem !important;
}

.h-520 {
    height: 5.2rem !important;
}

.w-520 {
    height: 5.2rem !important;
}

.h-530 {
    height: 5.3rem !important;
}

.w-530 {
    height: 5.3rem !important;
}

.h-540 {
    height: 5.4rem !important;
}

.w-540 {
    height: 5.4rem !important;
}

.h-550 {
    height: 5.5rem !important;
}

.w-550 {
    height: 5.5rem !important;
}

.h-560 {
    height: 5.6rem !important;
}

.w-560 {
    height: 5.6rem !important;
}

.h-570 {
    height: 5.7rem !important;
}

.w-570 {
    height: 5.7rem !important;
}

.h-580 {
    height: 5.8rem !important;
}

.w-580 {
    height: 5.8rem !important;
}

.h-590 {
    height: 5.9rem !important;
}

.w-590 {
    height: 5.9rem !important;
}

.h-600 {
    height: 6rem !important;
}

.w-600 {
    height: 6rem !important;
}

.h-610 {
    height: 6.1rem !important;
}

.w-610 {
    height: 6.1rem !important;
}

.h-620 {
    height: 6.2rem !important;
}

.w-620 {
    height: 6.2rem !important;
}

.h-630 {
    height: 6.3rem !important;
}

.w-630 {
    height: 6.3rem !important;
}

.h-640 {
    height: 6.4rem !important;
}

.w-640 {
    height: 6.4rem !important;
}

.h-650 {
    height: 6.5rem !important;
}

.w-650 {
    height: 6.5rem !important;
}

.h-660 {
    height: 6.6rem !important;
}

.w-660 {
    height: 6.6rem !important;
}

.h-670 {
    height: 6.7rem !important;
}

.w-670 {
    height: 6.7rem !important;
}

.h-680 {
    height: 6.8rem !important;
}

.w-680 {
    height: 6.8rem !important;
}

.h-690 {
    height: 6.9rem !important;
}

.w-690 {
    height: 6.9rem !important;
}

.h-700 {
    height: 7rem !important;
}

.w-700 {
    height: 7rem !important;
}

.h-710 {
    height: 7.1rem !important;
}

.w-710 {
    height: 7.1rem !important;
}

.h-720 {
    height: 7.2rem !important;
}

.w-720 {
    height: 7.2rem !important;
}

.h-730 {
    height: 7.3rem !important;
}

.w-730 {
    height: 7.3rem !important;
}

.h-740 {
    height: 7.4rem !important;
}

.w-740 {
    height: 7.4rem !important;
}

.h-750 {
    height: 7.5rem !important;
}

.w-750 {
    height: 7.5rem !important;
}

.h-760 {
    height: 7.6rem !important;
}

.w-760 {
    height: 7.6rem !important;
}

.h-770 {
    height: 7.7rem !important;
}

.w-770 {
    height: 7.7rem !important;
}

.h-780 {
    height: 7.8rem !important;
}

.w-780 {
    height: 7.8rem !important;
}

.h-790 {
    height: 7.9rem !important;
}

.w-790 {
    height: 7.9rem !important;
}

.h-800 {
    height: 8rem !important;
}

.w-800 {
    height: 8rem !important;
}

.margin-0 {
    margin: 0rem !important;
}

.mg-l-0 {
    margin-left: 0rem !important;
}

.mg-t-0 {
    margin-top: 0rem !important;
}

.mg-r-0 {
    margin-right: 0rem !important;
}

.mg-b-0 {
    margin-bottom: 0rem !important;
}

.padding-0 {
    padding: 0rem !important;
}

.pd-l-0 {
    padding-left: 0rem !important;
}

.pd-t-0 {
    padding-top: 0rem !important;
}

.pd-r-0 {
    padding-right: 0rem !important;
}

.pd-b-0 {
    padding-bottom: 0rem !important;
}

.margin-4 {
    margin: 0.04rem !important;
}

.mg-l-4 {
    margin-left: 0.04rem !important;
}

.mg-t-4 {
    margin-top: 0.04rem !important;
}

.mg-r-4 {
    margin-right: 0.04rem !important;
}

.mg-b-4 {
    margin-bottom: 0.04rem !important;
}

.padding-4 {
    padding: 0.04rem !important;
}

.pd-l-4 {
    padding-left: 0.04rem !important;
}

.pd-t-4 {
    padding-top: 0.04rem !important;
}

.pd-r-4 {
    padding-right: 0.04rem !important;
}

.pd-b-4 {
    padding-bottom: 0.04rem !important;
}

.margin-8 {
    margin: 0.08rem !important;
}

.mg-l-8 {
    margin-left: 0.08rem !important;
}

.mg-t-8 {
    margin-top: 0.08rem !important;
}

.mg-r-8 {
    margin-right: 0.08rem !important;
}

.mg-b-8 {
    margin-bottom: 0.08rem !important;
}

.padding-8 {
    padding: 0.08rem !important;
}

.pd-l-8 {
    padding-left: 0.08rem !important;
}

.pd-t-8 {
    padding-top: 0.08rem !important;
}

.pd-r-8 {
    padding-right: 0.08rem !important;
}

.pd-b-8 {
    padding-bottom: 0.08rem !important;
}

.margin-12 {
    margin: 0.12rem !important;
}

.mg-l-12 {
    margin-left: 0.12rem !important;
}

.mg-t-12 {
    margin-top: 0.12rem !important;
}

.mg-r-12 {
    margin-right: 0.12rem !important;
}

.mg-b-12 {
    margin-bottom: 0.12rem !important;
}

.padding-12 {
    padding: 0.12rem !important;
}

.pd-l-12 {
    padding-left: 0.12rem !important;
}

.pd-t-12 {
    padding-top: 0.12rem !important;
}

.pd-r-12 {
    padding-right: 0.12rem !important;
}

.pd-b-12 {
    padding-bottom: 0.12rem !important;
}

.margin-16 {
    margin: 0.16rem !important;
}

.mg-l-16 {
    margin-left: 0.16rem !important;
}

.mg-t-16 {
    margin-top: 0.16rem !important;
}

.mg-r-16 {
    margin-right: 0.16rem !important;
}

.mg-b-16 {
    margin-bottom: 0.16rem !important;
}

.padding-16 {
    padding: 0.16rem !important;
}

.pd-l-16 {
    padding-left: 0.16rem !important;
}

.pd-t-16 {
    padding-top: 0.16rem !important;
}

.pd-r-16 {
    padding-right: 0.16rem !important;
}

.pd-b-16 {
    padding-bottom: 0.16rem !important;
}

.margin-20 {
    margin: 0.2rem !important;
}

.mg-l-20 {
    margin-left: 0.2rem !important;
}

.mg-t-20 {
    margin-top: 0.2rem !important;
}

.mg-r-20 {
    margin-right: 0.2rem !important;
}

.mg-b-20 {
    margin-bottom: 0.2rem !important;
}

.padding-20 {
    padding: 0.2rem !important;
}

.pd-l-20 {
    padding-left: 0.2rem !important;
}

.pd-t-20 {
    padding-top: 0.2rem !important;
}

.pd-r-20 {
    padding-right: 0.2rem !important;
}

.pd-b-20 {
    padding-bottom: 0.2rem !important;
}

.margin-24 {
    margin: 0.24rem !important;
}

.mg-l-24 {
    margin-left: 0.24rem !important;
}

.mg-t-24 {
    margin-top: 0.24rem !important;
}

.mg-r-24 {
    margin-right: 0.24rem !important;
}

.mg-b-24 {
    margin-bottom: 0.24rem !important;
}

.padding-24 {
    padding: 0.24rem !important;
}

.pd-l-24 {
    padding-left: 0.24rem !important;
}

.pd-t-24 {
    padding-top: 0.24rem !important;
}

.pd-r-24 {
    padding-right: 0.24rem !important;
}

.pd-b-24 {
    padding-bottom: 0.24rem !important;
}

.margin-28 {
    margin: 0.28rem !important;
}

.mg-l-28 {
    margin-left: 0.28rem !important;
}

.mg-t-28 {
    margin-top: 0.28rem !important;
}

.mg-r-28 {
    margin-right: 0.28rem !important;
}

.mg-b-28 {
    margin-bottom: 0.28rem !important;
}

.padding-28 {
    padding: 0.28rem !important;
}

.pd-l-28 {
    padding-left: 0.28rem !important;
}

.pd-t-28 {
    padding-top: 0.28rem !important;
}

.pd-r-28 {
    padding-right: 0.28rem !important;
}

.pd-b-28 {
    padding-bottom: 0.28rem !important;
}

.margin-32 {
    margin: 0.32rem !important;
}

.mg-l-32 {
    margin-left: 0.32rem !important;
}

.mg-t-32 {
    margin-top: 0.32rem !important;
}

.mg-r-32 {
    margin-right: 0.32rem !important;
}

.mg-b-32 {
    margin-bottom: 0.32rem !important;
}

.padding-32 {
    padding: 0.32rem !important;
}

.pd-l-32 {
    padding-left: 0.32rem !important;
}

.pd-t-32 {
    padding-top: 0.32rem !important;
}

.pd-r-32 {
    padding-right: 0.32rem !important;
}

.pd-b-32 {
    padding-bottom: 0.32rem !important;
}

.margin-36 {
    margin: 0.36rem !important;
}

.mg-l-36 {
    margin-left: 0.36rem !important;
}

.mg-t-36 {
    margin-top: 0.36rem !important;
}

.mg-r-36 {
    margin-right: 0.36rem !important;
}

.mg-b-36 {
    margin-bottom: 0.36rem !important;
}

.padding-36 {
    padding: 0.36rem !important;
}

.pd-l-36 {
    padding-left: 0.36rem !important;
}

.pd-t-36 {
    padding-top: 0.36rem !important;
}

.pd-r-36 {
    padding-right: 0.36rem !important;
}

.pd-b-36 {
    padding-bottom: 0.36rem !important;
}

.margin-40 {
    margin: 0.4rem !important;
}

.mg-l-40 {
    margin-left: 0.4rem !important;
}

.mg-t-40 {
    margin-top: 0.4rem !important;
}

.mg-r-40 {
    margin-right: 0.4rem !important;
}

.mg-b-40 {
    margin-bottom: 0.4rem !important;
}

.padding-40 {
    padding: 0.4rem !important;
}

.pd-l-40 {
    padding-left: 0.4rem !important;
}

.pd-t-40 {
    padding-top: 0.4rem !important;
}

.pd-r-40 {
    padding-right: 0.4rem !important;
}

.pd-b-40 {
    padding-bottom: 0.4rem !important;
}

.margin-44 {
    margin: 0.44rem !important;
}

.mg-l-44 {
    margin-left: 0.44rem !important;
}

.mg-t-44 {
    margin-top: 0.44rem !important;
}

.mg-r-44 {
    margin-right: 0.44rem !important;
}

.mg-b-44 {
    margin-bottom: 0.44rem !important;
}

.padding-44 {
    padding: 0.44rem !important;
}

.pd-l-44 {
    padding-left: 0.44rem !important;
}

.pd-t-44 {
    padding-top: 0.44rem !important;
}

.pd-r-44 {
    padding-right: 0.44rem !important;
}

.pd-b-44 {
    padding-bottom: 0.44rem !important;
}

.margin-48 {
    margin: 0.48rem !important;
}

.mg-l-48 {
    margin-left: 0.48rem !important;
}

.mg-t-48 {
    margin-top: 0.48rem !important;
}

.mg-r-48 {
    margin-right: 0.48rem !important;
}

.mg-b-48 {
    margin-bottom: 0.48rem !important;
}

.padding-48 {
    padding: 0.48rem !important;
}

.pd-l-48 {
    padding-left: 0.48rem !important;
}

.pd-t-48 {
    padding-top: 0.48rem !important;
}

.pd-r-48 {
    padding-right: 0.48rem !important;
}

.pd-b-48 {
    padding-bottom: 0.48rem !important;
}

.margin-52 {
    margin: 0.52rem !important;
}

.mg-l-52 {
    margin-left: 0.52rem !important;
}

.mg-t-52 {
    margin-top: 0.52rem !important;
}

.mg-r-52 {
    margin-right: 0.52rem !important;
}

.mg-b-52 {
    margin-bottom: 0.52rem !important;
}

.padding-52 {
    padding: 0.52rem !important;
}

.pd-l-52 {
    padding-left: 0.52rem !important;
}

.pd-t-52 {
    padding-top: 0.52rem !important;
}

.pd-r-52 {
    padding-right: 0.52rem !important;
}

.pd-b-52 {
    padding-bottom: 0.52rem !important;
}

.margin-56 {
    margin: 0.56rem !important;
}

.mg-l-56 {
    margin-left: 0.56rem !important;
}

.mg-t-56 {
    margin-top: 0.56rem !important;
}

.mg-r-56 {
    margin-right: 0.56rem !important;
}

.mg-b-56 {
    margin-bottom: 0.56rem !important;
}

.padding-56 {
    padding: 0.56rem !important;
}

.pd-l-56 {
    padding-left: 0.56rem !important;
}

.pd-t-56 {
    padding-top: 0.56rem !important;
}

.pd-r-56 {
    padding-right: 0.56rem !important;
}

.pd-b-56 {
    padding-bottom: 0.56rem !important;
}

.margin-60 {
    margin: 0.6rem !important;
}

.mg-l-60 {
    margin-left: 0.6rem !important;
}

.mg-t-60 {
    margin-top: 0.6rem !important;
}

.mg-r-60 {
    margin-right: 0.6rem !important;
}

.mg-b-60 {
    margin-bottom: 0.6rem !important;
}

.padding-60 {
    padding: 0.6rem !important;
}

.pd-l-60 {
    padding-left: 0.6rem !important;
}

.pd-t-60 {
    padding-top: 0.6rem !important;
}

.pd-r-60 {
    padding-right: 0.6rem !important;
}

.pd-b-60 {
    padding-bottom: 0.6rem !important;
}

.margin-64 {
    margin: 0.64rem !important;
}

.mg-l-64 {
    margin-left: 0.64rem !important;
}

.mg-t-64 {
    margin-top: 0.64rem !important;
}

.mg-r-64 {
    margin-right: 0.64rem !important;
}

.mg-b-64 {
    margin-bottom: 0.64rem !important;
}

.padding-64 {
    padding: 0.64rem !important;
}

.pd-l-64 {
    padding-left: 0.64rem !important;
}

.pd-t-64 {
    padding-top: 0.64rem !important;
}

.pd-r-64 {
    padding-right: 0.64rem !important;
}

.pd-b-64 {
    padding-bottom: 0.64rem !important;
}

.rotate-0 {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.rotate-45 {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.rotate-90 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.rotate-135 {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.rotate-180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rotate-225 {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}

.rotate-270 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.rotate-315 {
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

.rotate-360 {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-ai {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-jc {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/****主轴水平、垂直方向***/
.flex-rowc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-rowl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-rowr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-colc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-colt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.flex-colb {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.flex-between {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-around {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

/**水平方向（一个固定宽度，一个自适应填充）**/
/* 固定宽度 */
.fixedWidth {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

/* 自适应宽度 */
.autoFullWidth {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

/**垂直方向（一个固定高度，一个自适应填充）**/
/**固定高度*/
.fixedHig {
    -webkit-box-flex: 0;
    -webkit-flex: 0;
    -ms-flex: 0;
    flex: 0;
}

/**自动填充剩余区域*/
.autoFullHig {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

/** 自身对其方式 **/
.flex-self-start {
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
}

.flex-self-end {
    -webkit-align-self: end;
    -ms-flex-item-align: end;
    align-self: end;
}

.flex-self-center {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.hide {
    display: none !important;
}

/* header */
.header-div {
    height: 1rem;
}

.header {
    background-color: #0054a7;
    color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 1rem;
    position: fixed;
    z-index: 1000;
    width: 100%;
    top: 0px;
    left: 0;
    padding: 0 0.24rem;
}

.header_logo {
    height: 0.44rem;
    line-height: 0;
    font-size: 0;
}

.header_logo img {
    height: 100%;
}

.header .nav-icon {
    color: #ffffff;
    font-size: 0.36rem;
}

.header .navbar {
    -webkit-transition: height 0.2s linear;
    transition: height 0.2s linear;
    -webkit-animation: a_menu_item_show 0.1s ease-out both;
    animation: a_menu_item_show 0.1s ease-out both;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 0.28rem;
    max-height: 0px;
    opacity: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-transition: max-height 0.2s ease 0s;
    transition: max-height 0.2s ease 0s;
}

.header .navbar.show {
    max-height: calc(100vh - 1rem);
    z-index: 10;
    opacity: 1;
}

.nav-item {
    border-bottom: 0.01rem solid rgba(255, 255, 255, 0.1);
}

.nav-item .nav-submenu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #ffffff;
    padding: 0.24rem;
    height: 0.9rem;
}

.nav-item .dropdown-menu {
    background-color: rgba(0, 84, 167, 0.8);
    -webkit-transition: max-height 0.4s ease 0s, opacity 0.4s ease 0s;
    transition: max-height 0.4s ease 0s, opacity 0.4s ease 0s;
    max-height: 0px;
    overflow: hidden;
    opacity: 0;
}

.nav-item .dropdown-menu.show {
    max-height: 1600px;
    overflow: hidden;
    opacity: 1;
}

.nav-item .dropdown-menu li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #ffffff;
    padding: 0.24rem;
    height: 0.9rem;
    border-top: 0.01rem solid rgba(255, 255, 255, 0.1);
}

/***** header end *****/
/***** footer begin *****/
.footer {
    background: #f6f6f6;
    padding: 0.32rem;
    margin-top: 0.4rem;
    color: #262626;
}

.footer .footer-top {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0.3em;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 0.32rem;
    border-bottom: 1px solid #8a8a8a;
}

.footer .footer-top .info-row {
    font-size: 0.24rem !important;
    white-space: nowrap;
}

.footer .footer-top .qr-code {
    height: 1.8rem;
    width: 1.8rem;
}

.footer .footer-bottom {
    padding: 0.32rem;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 0;
}

.footer .footer-bottom .info-row {
    text-align: center;
}

.footer .footer-bottom .info-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer .footer-bottom .info-wrap .link-item {
    padding-bottom: 0;
    font-size: 0.24rem !important;
}

.footer .info-row {
    font-size: 0.26rem;
    color: #666b75;
    line-height: 0.4rem;
    margin-bottom: 0.12rem;
}

.footer .copyright {
    font-size: 0.24rem;
    margin: 0.32rem 0;
}

.footer .link-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.26rem;
    color: #666b75;
    margin-bottom: 0.2rem;
}

.footer .link-item img {
    height: 0.32rem;
    margin-right: 0.12rem;
}

/***** footer end *****/
/***** tabs begin *****/
.jz-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
    height: calc(0.75rem + 1px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0.32rem;
    border-bottom: 1px solid #e8e8e8;
    padding-left: 0.32rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scrollbar-width: none;
}

.jz-tabs_item {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 0.75rem;
    text-align: center;
    font-size: 0.26rem;
    color: #262626;
    margin-right: 0.28rem;
    -webkit-transition: border 0.5s ease 0s;
    transition: border 0.5s ease 0s;
}

.jz-tabs_item.active {
    border-bottom: 2px solid #0054a7;
}

.tab-header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0.32rem;
    padding-top: 0;
    grid-gap: 0.2rem;
}

.tab-header .tab-header-item {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    height: 100%;
    text-align: center;
    font-size: 0.25rem;
    color: #183447;
    padding: 0.16rem;
    border: 1px solid #e8e8e8;
    border-radius: 0.06rem;
}

.tab-header .tab-header-item.active {
    border-color: #0054a7;
    background: #0054a7;
    color: #fff;
    font-weight: bold;
}

/***** tabs end *****/
/***** location begin *****/
.jz-mask,
.jz-notice {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    top: 0;
    left: 0;
}

.jz-mask .mask,
.jz-notice .mask {
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    height: 100%;
    width: 100%;
}

.jz-mask.show,
.jz-notice.show {
    display: block;
}

.jz-mask_dialog,
.jz-notice_dialog {
    -webkit-animation: mask_show 0.2s ease-out both;
    animation: mask_show 0.2s ease-out both;
    width: 96%;
    max-height: 70%;
    position: relative;
    margin: auto;
    margin-top: 3rem;
    border-radius: 4px;
    background: #ffffff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.jz-mask_header,
.jz-notice_header {
    background: #0054a7;
    width: 100%;
    height: 1rem;
    color: #ffffff;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 0.32rem;
    color: #ffffff;
    font-size: 0.32rem;
}

.jz-mask_close,
.jz-notice_close {
    cursor: pointer;
}

.jz-mask_close .iconfont,
.jz-notice_close .iconfont {
    font-size: 18px;
}

.jz-mask_close.posi,
.jz-notice_close.posi {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 0.4rem;
    height: 0.4rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 0.2rem;
    top: 0.2rem;
}

.jz-mask_body,
.jz-notice_body {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: auto;
}

.jz-notice_dialog {
    width: 75%;
    margin-top: 4.6rem;
}

@-webkit-keyframes mask_show {
    from {
        top: -100px;
    }
    to {
        top: 0px;
    }
}

@keyframes mask_show {
    from {
        top: -100px;
    }
    to {
        top: 0px;
    }
}

.photo-cover img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.xsrx-list {
    font-size: 0.3rem;
}

.xsrx-list .xsrx-item {
    margin: 0.24rem 0.36rem;
    overflow: hidden;
}

.xsrx-list .xsrx-item.active .con-wrap {
    /*height: 1.16rem;*/
    height: auto;
}

.xsrx-list .xsrx-item.active .swiper-title {
    background-color: #f6f6f4;
    color: #1671bd;
}

.xsrx-list .xsrx-item.active .swiper-title {
    padding-left: 0.66rem;
}

.xsrx-list .xsrx-item.active .swiper-title::before {
    background-color: #1671bd;
    left: 0;
    right: auto;
    width: 0.46rem;
}

.xsrx-list .xsrx-item .swiper-title {
    padding: 0.16rem 0.2rem;
    background-color: #1671bd;
    color: #fff;
    position: relative;
}

.xsrx-list .xsrx-item .swiper-title::before {
    content: "";
    background-color: #f6f6f4;
    position: absolute;
    right: 0;
    width: 0.9rem;
    bottom: 0;
    top: 0;
}

.xsrx-list .xsrx-item .con-wrap {
    padding-top: 0.2rem;
    height: 0;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.xsrx-list .xsrx-item .swiper-user,
.xsrx-list .xsrx-item .swiper-tel {
    padding: 0rem 0.2rem;
    background-color: #fff;
    color: #262626;
    font-size: 0.26rem;
    margin-bottom: 0.16rem;
}

.company-contract {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.h5-input {
    border: 1px solid #dcdfe6;
    height: 0.7rem;
    line-height: 0.8rem;
    font-size: 0.24rem;
    margin-bottom: 0.3rem;
    padding: 0.2rem;
    border-radius: 0.05rem;
    color: #000;
}

.h5-button {
    background-color: #1671bd;
    padding: 0.2rem;
    border-radius: 0.05rem;
    color: #fff;
    width: -webkit-fill-available;
    font-size: 0.25rem;
}

/***** location end *****/
/**-- 信息展示样式 begin --**/
.info-section {
    padding: 0 0.32rem;
    font-size: 0.28rem;
    position: relative;
}

.info-section_title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #262626;
    margin-bottom: 0.2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.info-section_title .en {
    color: #eef0f2;
    margin-left: 0.24rem;
    font-weight: 500;
}

.info-section_subTitle {
    font-size: 0.28rem;
    font-weight: bold;
    color: #262626;
    margin-bottom: 0.24rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.info-section_desc {
    font-size: 0.25rem;
    color: #666b75;
    line-height: 0.4rem;
    margin: 0.2rem 0;
    line-height: 1.5;
    overflow: auto;
}

.info-section_cover {
    width: 100%;
    font-size: 0.28rem;
    text-align: center;
    margin: 0.2rem 0;
}

.info-section_cover .cyly-section_img {
    width: -webkit-fill-available !important;
}

.info-section_cover img {
    width: 100%;
    height: auto;
    border-radius: 0.04rem;
}

.info-section_cover .title {
    color: #262626;
    font-size: 0.28rem;
    text-align: center;
    margin-top: 0.2rem;
}

.info-section_absolute {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0 0.32rem;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.info-section_absolute .title {
    font-size: 0.36rem;
    font-weight: bold;
    color: #ffffff;
}

.info-section_absolute .desc {
    font-size: 0.28rem;
    color: #ffffff;
    margin: 0.2rem 0;
}

.info-grid.info-diy .info-item:nth-child(even) {
    padding-left: 0.55rem !important;
}

.info-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0.32rem;
}

.info-grid .info-item {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.2rem;
}

.info-grid .info-item .item-cover {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 100%;
    overflow: hidden;
}

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

.info-grid .info-item .item-name {
    padding: 0 0.1rem;
    font-size: 0.2rem;
    line-height: 0.36rem;
    text-align: center;
    color: #262626;
    margin-top: 0.1rem;
}

.info-grid .info-item .item-icon {
    color: #262626;
    font-size: 0.7rem;
}

.info-grid .photo-item {
    width: 32.8%;
    margin-bottom: 0.32rem;
    background-color: #f5f6f8;
}

.info-grid .photo-item:nth-child(3n-1) {
    margin-left: 0.8%;
    margin-right: 0.8%;
}

.info-grid .photo-item .item-cover {
    width: 100% !important;
    height: 3.6rem !important;
}

.info-grid .photo-item .item-cover img {
    width: 100% !important;
    height: 100% !important;
}

.info-grid .photo-item .item-title {
    font-size: 0.28rem;
    color: #262626;
    height: 0.9rem;
    text-align: center;
    background: #f5f6f8;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.info-grid .photo-item .item-title .border {
    border: 1px solid #223343;
}

.info-tag {
    padding: 0 0.32rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.info-tag_item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    height: 0.7rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.3rem;
    color: #262626;
    border: 1px solid #e8e8e8;
    margin-right: 0.2rem;
}

.info-tag_item:last-child {
    margin-right: 0;
}

.info-tag_item.active {
    color: #ffffff;
    background-color: #0054a7;
    border-color: #0054a7;
}

.info-swiper {
    width: 100%;
    height: 3.6rem;
    overflow: hidden;
    position: relative;
}

.info-swiper_item {
    position: relative;
    width: 100%;
    height: 3rem;
}

.info-swiper_item .item-cover {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.info-swiper_item .item-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.1rem;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.2rem;
    font-size: 0.28rem;
    line-height: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/**-- 信息展示样式 end --**/
/**-- list begin --**/
.jz-list {
    padding: 0 0.32rem;
}

.jz-list .news-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 1.8rem;
    width: 100%;
    padding: 0.2rem 0;
    border-bottom: 1px solid #e8e8e8;
}

.jz-list .news-item_info {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-right: 0.2rem;
}

.jz-list .news-item_info .title {
    font-size: 0.28rem;
    color: #262626;
    line-height: 0.4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jz-list .news-item_info .time {
    font-size: 0.24rem;
    color: #aaaab3;
}

.jz-list .news-item_cover {
    width: 2rem;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.jz-list .news-item_cover img {
    width: 100%;
    max-height: 100%;
    border-radius: 0.03rem;
}

.jz-list .notice-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 1.4rem;
    width: 100%;
    padding: 0.2rem 0;
    border-bottom: 1px solid #e8e8e8;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.jz-list .notice-item .title {
    font-size: 0.28rem;
    color: #262626;
    line-height: 0.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jz-list .notice-item .time {
    font-size: 0.24rem;
    color: #aaaab3;
}

/**-- list end --**/
.pagination {
    width: 100%;
    margin: 0 auto;
    font-size: 14px;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.32rem 0.2rem;
}

.pagination label {
    vertical-align: middle;
}

.pagination > .pagination-btns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.pagination > .pagination-btns > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
    position: relative;
    width: 0.7rem;
    height: 0.7rem;
    color: #0054A7;
    background-color: #fff;
    border: 1px solid rgba(0, 84, 167, 0.8);
    text-align: center;
    cursor: pointer;
    margin: 0 0.08rem;
    font-size: 0.28rem;
}

.pagination > .pagination-btns > a::before,
.pagination > .pagination-btns > a::after {
    content: "";
    height: 0;
}

.pagination > .pagination-btns > a:first-child {
    margin-left: 0;
}

.pagination > .pagination-btns > a.first,
.pagination > .pagination-btns > a.prev,
.pagination > .pagination-btns > a.next,
.pagination > .pagination-btns > a.last {
    font-size: 20px;
    line-height: 22px;
}

.pagination > .pagination-btns > a:hover {
    background-color: rgba(0, 84, 167, 0.1);
}

.pagination > .pagination-btns > a.activated {
    z-index: 2;
    color: #fff;
    background-color: #0054A7;
    border-color: #0054A7;
}

.pagination > .pagination-btns > a.activated:hover {
    opacity: 0.8;
}

.pagination > .pagination-btns > a.disabled {
    z-index: 1;
    cursor: not-allowed;
    color: #d9d9d9;
    background-color: #fff;
    border-color: #d9d9d9;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
    -webkit-filter: grayscale(1);
}

.pagination > .pagination-goto,
.pagination > .pagination-info {
    float: left;
    display: block;
    color: #666b75;
    padding: 4px 12px;
    background-color: transparent;
}

.pagination > .pagination-goto > input {
    margin: 0 3px;
    padding: 2px;
    width: 0.7rem;
    height: 0.28rem;
    color: #7f7f7f;
    border: 1px solid #d9d9d9;
    text-align: center;
    border-radius: 1px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.pagination > .pagination-goto > input:focus {
    color: #06f;
    background-color: #f4f9ff;
    border-color: #06f;
}

.pagination_red > .pagination-btns > a:hover {
    background-color: rgba(230, 0, 19, 0.1);
}

.pagination_red > .pagination-btns > a.activated {
    background-color: #e60013;
    border-color: #e60013;
}

.pagination_red > .pagination-btns > a {
    color: #e60013;
    border: 1px solid #e60013;
}

@media screen and (max-width: 1400px) {
    .pagination {
        max-width: 1200px;
    }
}

* {
    scrollbar-width: none;
}

.bg-white {
    background-color: #fff !important;
}

.bg-background {
    background-color: #f5f6f8 !important;
}

.bg-background-1 {
    background-color: #f9fafc !important;
}

.bg-theme-1 {
    background-color: #0054a7 !important;
}

.bg-theme-2 {
    background-color: #009ff7 !important;
}

.bg-theme-3 {
    background-color: #000077 !important;
}

.bg-theme-red {
    background-color: #e30b20 !important;
}

.bg-gray-1 {
    background-color: #262626 !important;
}

.bg-gray-2 {
    background-color: #666b75 !important;
}

.bg-gray-3 {
    background-color: #aaaab3 !important;
}

.text-white {
    color: #fff !important;
}

.text-background {
    color: #f5f6f8 !important;
}

.text-background-1 {
    color: #f9fafc !important;
}

.text-theme-1 {
    color: #0054a7 !important;
}

.text-theme-2 {
    color: #009ff7 !important;
}

.text-theme-3 {
    color: #000077 !important;
}

.text-theme-red {
    color: #e30b20 !important;
}

.text-gray-1 {
    color: #262626 !important;
}

.text-gray-2 {
    color: #666b75 !important;
}

.text-gray-3 {
    color: #aaaab3 !important;
}

/**--- banner begin ---**/
.mv-player {
    width: 100%;
    height: 4.2rem;
    position: relative;
    overflow: hidden;
}

.mv-player_item img,
.mv-player_item video {
    width: 100%;
    height: 4.2rem;
}

/**--- banner end ---**/
/**--- williamhill概况 begin ---**/
.section-con-0 .module-desc {
    padding: 0.32rem;
    font-size: 0.28rem;
    line-height: 1.5;
    color: #666b75;
}

.section-con-0 .scroll-tab {
    width: 100%;
    height: 2.3rem;
    margin-bottom: 0.48rem;
}

.section-con-0 .scroll-tab .tab-item {
    display: block;
    text-decoration: none;
    height: 100%;
    position: relative;
}

.section-con-0 .scroll-tab .tab-item_img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -2;
}

.section-con-0 .scroll-tab .tab-item_con {
    width: 100%;
    height: 100%;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.28rem;
    text-align: center;
    font-weight: bold;
    z-index: 3;
}

.section-con-0 .scroll-tab .tab-item_mask {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.4;
    z-index: -1;
}

/**--- williamhill概况 end ---**/
/**--- 产业领域 begin ---**/
.section-con-1 {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.section-con-1 .tab-header {
    width: 6rem;
    height: 0.72rem;
    margin-bottom: 0.32rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.section-con-1 .tab-header .tab-header-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.28rem;
    color: #183447;
    font-weight: bold;
    border-bottom: 1px solid #e8e8e8;
    border-top: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
}

.section-con-1 .tab-header .tab-header-item:last-child {
    border: 1px solid #e8e8e8;
}

.section-con-1 .tab-header .tab-header-item.active {
    border-color: #0054a7;
    background: #0054a7;
    color: #fff;
}

.section-con-1 .tab-switch {
    width: 100%;
}

.section-con-1 .tab-switch .swiper-slide {
    padding: 0 0.32rem;
}

.section-con-1 .tab-switch .switch-item {
    width: 100%;
}

.section-con-1 .tab-switch .switch-item_img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.section-con-1 .tab-switch .switch-item_title {
    color: #fff;
    font-size: 0.28rem;
    position: relative;
    top: -0.72rem;
    left: 0.32rem;
}

.swiper.diyswiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper.diyswiper .swiper-wrapper {
    width: 65% !important;
}

.swiper.diyswiper .swiper-slide {
    background-position: center;
    background-size: cover;
    height: 3.3rem !important;
    overflow: hidden;
    position: relative;
    border-radius: 0.24rem;
    opacity: 0;
}

.swiper.diyswiper .swiper-slide-active {
    opacity: 1 !important;
}

.swiper.diyswiper .swiper-slide.swiper-slide-next,
.swiper.diyswiper .swiper-slide.swiper-slide-prev {
    margin-top: 1.5rem !important;
    opacity: 0.6 !important;
}

.swiper.diyswiper .swiper-slide .swiper-title {
    position: absolute;
    /*bottom: -4rem;*/
    font-size: 0.28rem;
    text-align: center;
    font-weight: bold;
    margin-top: 0.4rem;
    width: 100%;
}

.swiper.diyswiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0.24rem;
    border: 1px solid #e6e6e6;
}

/**--- 产业领域 end ---**/
/**--- 新闻中心 begin ---**/
.section-con-2 {
    padding: 0.32rem;
}

.section-con-2 .section-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 0.36rem;
    color: #262626;
    margin-bottom: 0.32rem;
}

.section-con-2 .section-header .iconfont {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 0.68rem;
    height: 0.68rem;
    border-radius: 0.68rem;
    background-color: rgba(0, 0, 0, 0.05);
    font-size: 0.28rem;
}

.section-con-2 .section-list {
    margin-bottom: 0.32rem;
}

.section-con-2 .section-list .list-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 1rem;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.28rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.section-con-2 .section-list .list-item span {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.section-con-2 .xwzx-swiper {
    width: 100%;
    height: 4rem;
    overflow: hidden;
    position: relative;
}

.section-con-2 .xwzx-swiper .swiper-item {
    display: block;
    position: relative;
}

.section-con-2 .xwzx-swiper .swiper-item img {
    width: 100%;
    height: 100%;
}

.section-con-2 .xwzx-swiper .swiper-item .info-box {
    width: 100%;
    height: 1.1rem;
    padding: 0.2rem;
    background-color: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    position: absolute;
    bottom: 0;
    font-size: 0.28rem;
}

.section-con-2 .xwzx-swiper .swiper-item .info-box_title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.section-con-2 .track-link img {
    width: 100%;
}

/**--- 新闻中心 end ---**/
/**--- 发展目标 begin ---**/
.section-con-3 {
    padding: 0.32rem;
}

.section-con-3 .module {
    height: 3.9rem;
    color: #ffffff;
    position: relative;
}

.section-con-3 .section_bg {
    width: 100%;
    height: 100%;
}

.section-con-3 .section_mask {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px); /* 设置模糊程度 */
    background-color: rgba(196, 196, 196, 0.3); /* 添加透明度作为背景色 */
}

.section-con-3 .module-con {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 0.32rem;
    padding: 0.4rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.section-con-3 .module-con_title {
    font-size: 0.32rem;
    margin-bottom: 0.32rem;
}

.section-con-3 .module-con_desc {
    font-size: 0.28rem;
    display: none;
}

.section-con-3 .module-con_item {
    font-size: 0.24rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0.2rem;
}

.section-con-3 .module-con_item::before {
    content: "";
    width: 0.1rem;
    height: 0.1rem;
}

/**--- 发展目标 end ---**/
/***** 关于我们 begin *****/
.gywm-banner {
    width: 100%;
    padding: 0 0.2rem;
    margin-bottom: 0.3rem;
    margin-top: 0.3rem;
}

.gywm-section {
    padding: 0 0.48rem;
    font-size: 0.26rem;
    text-align: center;
}

.gywm-section_title {
    font-size: 0.34rem;
    color: #262626;
    font-weight: bold;
    text-align: center;
}

.gywm-section_desc {
    text-align: justify;
    width: 100%;
    padding-top: 0.2rem;
    color: #262626;
    font-size: 0.26rem;
    line-height: 0.4rem !important;
    text-indent: 2em;
    margin-bottom: 0.6rem;
}

.gywm-section_img {
    display: block;
    width: -webkit-fill-available;
    border-radius: 0.24rem;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0.32rem 0.16rem;
}

.gywm-section .gywm-section_title.main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0.4rem;
    font-size: 0.36rem;
}

.gywm-section .gywm-section_title.main:before {
    content: "";
    position: absolute;
    bottom: -0.18rem;
    height: 0.06rem;
    width: 0.9rem;
    border-radius: 0.02rem;
    background-color: #0356a8;
}

.gywm-section .center-title {
    font-size: 0.4rem;
    text-align: center;
    color: #262626;
}

.gywm-section .blod-title {
    text-align: center;
    padding: 0.32rem 0 0.2rem;
    color: #223345;
    font-size: 0.36rem;
    font-weight: bold;
}

.gywm-section .section-con {
    margin: 0.32rem 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.gywm-section .section-con .con-cover {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.gywm-section .section-con .con-cover img {
    width: 90%;
}

.gywm-section .section-con .con-info {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f9fafc;
    color: #666b75;
    font-size: 0.25rem;
    padding: 0.2rem;
    line-height: 1.5;
}

.gywm-section .section-con .con-info .sub-title {
    font-weight: bold;
}

.gywm-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.gywm-grid_item {
    width: 33.33%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.32rem;
}

.gywm-grid_item .title {
    text-align: center;
    font-size: 0.32rem;
    color: #262626;
    font-weight: bold;
}

.gywm-grid_item .desc {
    text-align: center;
    color: #666b75;
    font-size: 0.24rem;
}

.gywm-grid .cate-item {
    width: 50%;
    height: 2.5rem;
    padding: 0.1rem;
    font-size: 0;
}

.gywm-grid .cate-item img {
    width: 100%;
    height: 100%;
}

/***** 关于我们 end *****/
/***** tabs begin *****/
.gywm-tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0.1rem;
    margin-bottom: 0.32rem;
}

.gywm-tabs .tab-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0.2rem 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    color: #262626;
    font-size: 0.28rem;
    margin: 0.1rem;
}

.gywm-tabs .tab-item.active {
    color: #ffffff;
    background: #0191ff;
}

/***** tabs end *****/
/***** timeline begin *****/
.timeline {
    font-size: 0.26rem;
    padding: 0.2rem;
}

.timeline_item {
    padding: 0 0.2rem 0.4rem;
    border-left: 1px solid #e8e8e8;
    position: relative;
}

.timeline_item:last-child {
    border-color: transparent;
}

.timeline_item::after {
    content: "";
    position: absolute;
    left: -1px;
    top: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 0.12rem;
    height: 0.12rem;
    border-radius: 100%;
    background-color: #ccc;
}

.timeline_item .line-time {
    position: relative;
    line-height: 0.4rem;
    top: -0.2rem;
    color: #262626;
}

.timeline_item .con-box {
    color: #666b75;
}

.timeline_item .con-box img {
    width: 100%;
    height: auto;
}

/***** timeline end *****/
.cyly-section {
    padding: 0 0.48rem;
    font-size: 0.26rem;
    text-align: center;
}

.cyly-section_introduce {
    background-color: #f9fafc;
    margin-bottom: 0.2rem;
    font-size: 0.25rem;
    border-radius: 0.08rem;
    overflow: hidden;
}

.cyly-section_introduce img {
    width: 100%;
    height: auto;
    border-radius: 0.08rem;
}

.cyly-section_introduce .desc {
    color: #666b75;
    padding: 0.2rem;
    font-size: 0.25rem;
    line-height: 0.4rem;
}

.cyly-section_title {
    font-size: 0.34rem;
    color: #262626;
    font-weight: bold;
    text-align: center;
}

.cyly-section_desc {
    text-align: justify;
    width: 100%;
    padding-top: 0.2rem;
    color: #262626;
    font-size: 0.26rem;
    line-height: 0.4rem !important;
    text-indent: 2em;
    margin-bottom: 0.6rem;
}

.cyly-section_img {
    display: block !important;
    height: auto !important;
    -o-object-fit: cover !important;
    object-fit: cover !important;
    margin: 0.32rem 0.16rem !important;
    width: -webkit-fill-available;
    border-radius: 0.24rem !important;
}

.cyly-section_title.main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0.4rem;
    font-size: 0.36rem;
}

.cyly-section_title.main:before {
    content: "";
    position: absolute;
    bottom: -0.18rem;
    height: 0.06rem;
    width: 0.9rem;
    border-radius: 0.02rem;
    background-color: #0356a8;
}

.cyly-title {
    padding: 0 0.32rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0.32rem 0;
}

.cyly-title .text {
    color: #223343;
    font-size: 0.28rem;
    padding-bottom: 0.2rem;
    padding: 0.08rem 0.04rem;
    border-bottom: 2px solid #0054a7;
}

.cyly-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0.32rem;
}

.cyly-grid_item {
    width: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0.2rem;
}

.cyly-grid_item .item-cover {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 100%;
    overflow: hidden;
}

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

.cyly-grid_item .item-name {
    padding: 0 0.2rem;
    font-size: 0.26rem;
    line-height: 0.36rem;
    text-align: center;
    color: #262626;
    margin-top: 0.1rem;
}

.company-dialog {
    padding: 0.32rem;
    font-size: 0.28rem;
}

.company-dialog .company-cover {
    width: 100%;
}

.company-dialog .company-cover img {
    width: 100%;
    height: auto;
}

.company-dialog .company-name {
    font-size: 0.4rem;
    margin: 0.3rem 0;
}

.company-dialog .company-shortTitle {
    font-size: 0.32rem;
    margin-bottom: 0.28rem;
}

.company-dialog .company-outlink {
    font-size: 0.26rem;
    margin-bottom: 0.2rem;
}

.company-dialog .company-des {
    font-size: 0.26rem;
    color: #666b75;
    line-height: 0.4rem;
}

.info-item {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.item-cover {
    /*height: auto !important;*/
    width: auto !important;
}

.item-cover > .cyly-section_img {
    height: 1rem !important;
    width: 1rem !important;
}

.item-desc {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.item-title {
    font-size: 0.32rem;
    font-weight: bold;
    color: #2866b0;
}

.item-info {
    font-size: 0.24rem;
    margin-top: 0.08rem;
}

/**-- 科技创新样式 begin --**/
.kjcx-dialog-body {
    padding: 0.5rem 0 0.32rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.kjcx-dialog-body .cover {
    height: 6rem;
    width: 100%;
}

.kjcx-dialog-body .cover img {
    border-radius: 0.03rem;
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}

.kjcx-dialog-body .desc {
    font-size: 0.28rem;
    line-height: 0.44rem;
    color: #666b75;
    padding: 0 0.2rem;
    margin-top: 0.32rem;
}

/**-- 科技创新样式 end --**/
/*# sourceMappingURL=index.css.map */

.cpsc-item .cpsc-desc{
    width: 20rem;
    text-align: center;
}
.cpsc-item{


    background-image: linear-gradient(#7dccd1, #51b1cf);
    justify-content: center;
    padding: 0.4rem 0;
}
.cpsc-item .item-box .cpsc-title{
    color: #5ba7c2;
    text-align: right;
}
.cpsc-item .item-box .cpsc-downlink{
    text-align: center;
    color: #2776b2;
    margin-top: 0.15rem;
}
.cpsc-item .item-box .cpsc-ewm1{
    display: flex;
    justify-content:center;
    margin-top: 0.15rem;
}
.cpsc-item .item-box .cpsc-ewm{
    width: 1.5rem;
    height: 1.5rem;
    overflow: hidden;
    background: #ccc;
}
.cpsc-item .item-box .cpimg{
    width: 40rem;
}
.cpsc-item .item-box{
    border-radius: 0.1rem;
    background-color: rgb(255 255 255 / 20%);
    padding: 0.2rem;
    display: flex;
    margin: 0.2rem;
}