.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 666;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255,255,255,0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: #fff;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    overflow: auto;
    height: 100vh;
    padding-top: 50px;
}

.mobile-inner-nav {
    background: linear-gradient(270deg,#0866b1c9,#076cc3);
    width: 100%;
    position: absolute;
    top: 0;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
}

.mobile-inner-nav a {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    color: #fff;
    transition: all 0.5s;
}

.mobile-inner-nav dl {
    display: none;
}

.mobile-inner-nav dl dd {
    line-height: 33px;
    text-decoration: none;
    text-indent: 3em;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    font-size: 14px;
}

.mobile-inner-nav li {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 53px;
    text-indent: 20px;
}

.mobile-inner-nav h2.h2tit {
    line-height: 50px;
    text-decoration: none;
    text-indent: 2em;
    font-size: 16px;
    color: #FFFFFF;
    /* border-bottom:solid 1px rgba(255,255,255,0.3);*/
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
    color: #FFFFFF;
}

.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;
    background: url(../images/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 17px;
}

.mobile-inner-nav li .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    text-indent: 60px;
    font-size: 15px;
    color: #fff;
    background: url(../images/search2.png) no-repeat 30px center;
    background-size: 20px;
}

.mobile-inner-nav li:last-child {
    border-bottom: none;
}

.mobile-inner-nav li form {
    display: block;
    width: 100%;
    height: 100%;
}

@charset "utf-8";@charset "UTF-8";.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,40px,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

* {
    font-family: 'ModularAmplitude';
}

body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,th,td,p,blockquote,pre,form,fieldset,legend,input,button,textarea,hr,span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: calc(14/1920*100vw);
}

html,body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
    font-family: "Microsoft YaHei" ! important;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

select {
    cursor: pointer;
}

input[type="button"],input[type="submit"],input[type="reset"],input[type="text"] {
    -webkit-appearance: none;
}

input[type="button"],input[type="submit"],input[type="reset"] {
    cursor: pointer;
}

input {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none!important;
    border-radius: 0;
}

button {
    cursor: pointer;
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
}

li {
    list-style: none;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
    background: #fff;
    line-height: 1;
}

* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    user-select: none;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg)
    }

    to {
        -o-transform: rotate(360deg)
    }
}

.xzzz {
    animation: 2s linear 0s normal forwards infinite rotate;
    -webkit-animation: 2s linear 0s normal forwards infinite rotate;
    -moz-animation: 2s linear 0s normal forwards infinite rotate;
    -o-animation: 2s linear 0s normal forwards infinite rotate;
}

.xzzz img {
    display: block;
    width: 100%;
}

.pc {
    display: block;
}

.wap {
    display: none;
}

.clearflex:after {
    content: "";
    display: table;
    clear: both;
}

.moveAni {
    animation: move .8s infinite;
    -moz-animation: move .8s infinite;
    -webkit-animation: move .8s infinite;
    -o-animation: move .8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.tadaAni {
    animation: tada 2s infinite;
}

.pulseAni {
    animation: pulse 1s infinite;
}

.bounceInAni {
    animation: bounceIn 2s infinite;
}

.flashInAni {
    animation: flash 2s infinite;
}

.swingAni {
    animation: swing 2s infinite;
    transform-origin: right top;
}

.rubberBandAni {
    animation: rubberBand 1s infinite;
}

.bounceAni {
    animation: bounce 1s infinite;
}

.tdAni {
    animation: td .4s infinite;
    -moz-animation: td .4s infinite;
    -webkit-animation: td .4s infinite;
    -o-animation: td .4s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.heartbeatAni {
    animation: heartbeat 1.4s infinite;
    -moz-animation: heartbeat 1.4s infinite;
    -webkit-animation: heartbeat 1.4s infinite;
    -o-animation: heartbeat 1.4s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.shing {
    animation: shing 1s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@keyframes shing {
    0% {
        opacity: 1;
    }

    100% {
        opacity: .6;
    }
}

@keyframes move2 {
    0% {
        transform: translate(0%,0px);
    }

    100% {
        transform: translate(0%,10px);
    }
}

.moveAni2 {
    animation: move2 1s infinite;
}

.moveAni {
    animation: move .8s infinite;
    -moz-animation: move .8s infinite;
    -webkit-animation: move .8s infinite;
    -o-animation: move .8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

@keyframes move {
    from {
        -o-transform: translate(0%,0%);
        -webkit-transform: translate(0%,0%);
        -moz-transform: translate(0%,0%);
        -ms-transform: translate(0%,0%);
        transform: translate(0%,0%);
    }

    to {
        -o-transform: translate(0%,30px);
        -webkit-transform: translate(0%,30px);
        -moz-transform: translate(0%,30px);
        -ms-transform: translate(0%,30px);
        transform: translate(0%,30px);
    }
}

@keyframes td {
    from {
        -o-transform: translate(0%,0%);
        -webkit-transform: translate(0%,0%);
        -moz-transform: translate(0%,0%);
        -ms-transform: translate(0%,0%);
        transform: translate(0%,0%);
    }

    to {
        -o-transform: translate(0%,20px);
        -webkit-transform: translate(0%,20px);
        -moz-transform: translate(0%,20px);
        -ms-transform: translate(0%,20px);
        transform: translate(0%,20px);
    }
}

@keyframes heartbeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes moveAni2 {
    0% {
        transform: translate(0%,0px);
    }

    100% {
        transform: translate(100vw,0px);
    }
}

.moveAni2 {
    animation: moveAni2 5.5s linear infinite;
}

@keyframes scrollAni1 {
    0% {
        transform: translate(0%,0px) rotate(0);
    }

    100% {
        transform: translate(-100%,0px) rotate(-360deg);
    }
}

.scrollAni1 {
    animation: scrollAni1 1.8s infinite;
    -moz-animation: scrollAni1 1.8s infinite;
    -webkit-animation: scrollAni1 1.8s infinite;
    -o-animation: scrollAni1 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@keyframes scrollAni2 {
    0% {
        transform: translate(30%,0px) rotate(0);
    }

    100% {
        transform: translate(0%,0px);
    }
}

.scrollAni2 {
    animation: scrollAni2 1.8s infinite;
    -moz-animation: scrollAni2 1.8s infinite;
    -webkit-animation: scrollAni2 1.8s infinite;
    -o-animation: scrollAni2 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni3 {
    0% {
        transform: translate(0%,-20px);
    }

    100% {
        transform: translate(0%,0%);
    }
}

.scrollAni3 {
    animation: scrollAni3 1.8s infinite;
    -moz-animation: scrollAni3 1.8s infinite;
    -webkit-animation: scrollAni3 1.8s infinite;
    -o-animation: scrollAni3 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni4 {
    0% {
        transform: translate(0%,10px);
    }

    100% {
        transform: translate(0%,0%);
    }
}

.scrollAni4 {
    animation: scrollAni4 1.8s infinite;
    -moz-animation: scrollAni4 1.8s infinite;
    -webkit-animation: scrollAni4 1.8s infinite;
    -o-animation: scrollAni4 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni5 {
    0% {
        transform: none;
    }

    100% {
        transform: scale(1.1,1.1);
    }
}

.scrollAni5 {
    animation: scrollAni5 .1s infinite;
    -moz-animation: scrollAni5 .1s infinite;
    -webkit-animation: scrollAni5 .1s infinite;
    -o-animation: scrollAni5 .1s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni6 {
    0% {
        transform: scale(1.05,1.05);
    }

    100% {
        transform: none;
    }
}

.scrollAni6 {
    animation: scrollAni6 1.8s infinite;
    -moz-animation: scrollAni6 1.8s infinite;
    -webkit-animation: scrollAni6 1.8s infinite;
    -o-animation: scrollAni6 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes bubbleMover3 {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(5px) translateX(4px) rotate(9deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(-3px) translateX(1px) rotate(-6deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(-1px) translateX(-5px) rotate(-2deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes bubbleMover2 {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(5px) translateX(4px) rotate(5deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(-4px) translateX(2px) rotate(-3deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(-3px) translateX(-3px) rotate(-3deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(3px) translateX(5px) rotate(5deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(5px) translateX(10px) rotate(10deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(3px) translateX(5px) rotate(4deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes rotateAni {
    0% {
        transform: none;
    }

    100% {
        transform: rotateY(180deg);
    }
}

.rotateAni {
    -webkit-animation: rotateAni linear infinite 2s;
    -moz-animation: rotateAni linear infinite 2s;
    -o-animation: rotateAni linear infinite 2s;
    animation: rotateAni linear infinite 2s;
}

.pfAni1 {
    -webkit-animation: bubbleMover linear infinite 5s;
    -moz-animation: bubbleMover linear infinite 5s;
    -o-animation: bubbleMover linear infinite 5s;
    animation: bubbleMover linear infinite 5s;
}

.pfAni2 {
    -webkit-animation: bubbleMover2 linear infinite 5s;
    -moz-animation: bubbleMover2 linear infinite 5s;
    -o-animation: bubbleMover2 linear infinite 5s;
    animation: bubbleMover2 linear infinite 5s;
}

.pfAni3 {
    -webkit-animation: bubbleMover3 linear infinite 5s;
    -moz-animation: bubbleMover3 linear infinite 5s;
    -o-animation: bubbleMover3 linear infinite 5s;
    animation: bubbleMover3 linear infinite 5s;
}

@keyframes scalc {
    0% {
        -webkit-transform: scale(2.05,2.05);
        -o-transform: scale(2.05,2.05);
        -moz-transform: scale(2.05,2.05);
        -ms-transform: scale(2.05,2.05);
        transform: scale(2.05,2.05);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.sclani {
    animation: scalc 7s forwards;
    animation-timing-function: ease-out;
}

@keyframes scalc2 {
    0% {
        transform: scale(1.2,1.2);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.sclani2 {
    animation: scalc2 .3s forwards;
    animation-timing-function: ease-out;
}

@keyframes clipAni {
    0% {
        clip: rect(auto,0,auto,auto);
    }

    100% {
        clip: rect(auto,300px,auto,auto);
    }
}

.txtModel i {
    animation: clipAni ease-out infinite 2s alternate;
}

.swingAni {
    transform-origin: top center;
    animation: swing 3s infinite ease-in-out;
}

@keyframes swing {
    0% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(6deg);
    }

    100% {
        transform: rotate(-6deg);
    }
}

.swingAni2 {
    -webkit-animation-name: routate;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-name: routate;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes routate {
    0% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
    }

    50% {
        -webkit-transform: rotate(-7deg);
        -ms-transform: rotate(-7deg);
        transform: rotate(-7deg);
    }

    100% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
    }
}

.bouncing-ball {
    -webkit-mask: radial-gradient(ellipse at center,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,black 20.1%,black 75%,black 100%);
    mask: radial-gradient(ellipse at center,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,black 20.1%,black 75%,black 100%);
    -webkit-animation: bouncing-ball 1.5s linear infinite;
    animation: bouncing-ball 1.5s linear infinite;
}

@keyframes bouncing-ball {
    0% {
        transform: scale(1,1) translateY(-80%);
    }

    25% {
        transform: scale(1,1.1) translateY(-45%);
    }

    50% {
        transform: scale(1,1.5) translateY(10%);
    }

    66% {
        transform: scale(2,0.75) translateY(25%);
    }

    75% {
        transform: scale(1,1.25) translateY(10%);
    }

    100% {
        transform: scale(1,1) translateY(-80%);
    }
}

.small_Big {
    -webkit-animation: scaleCircles 2s infinite cubic-bezier(0.55,0.15,0.45,0.85) alternate;
    animation: scaleCircles 2s infinite cubic-bezier(0.55,0.15,0.45,0.85) alternate;
}

@keyframes scaleCircles {
    0% {
        z-index: 1;
        transform: scale3d(.7,.7,.7);
    }

    100% {
        z-index: 2;
        transform: scale3d(1,1,1);
    }
}

.index * {
    opacity: 1;
}

.index {
    overflow: hidden;
}

.wrap:after {
    content: "";
    display: table;
    clear: both;
}

.fadeInUpGroup.animated {
    animation-fill-mode: both;
    animation-name: fadeInLeft3;
    opacity: 0;
}

.fadeInUpGroup.animated:nth-child(1) {
    animation-duration: .5s !important;
    animation-delay: .1s !important;
}

.fadeInUpGroup.animated:nth-child(2) {
    animation-duration: 1s !important;
    animation-delay: .6s !important;
}

.fadeInUpGroup.animated:nth-child(3) {
    animation-duration: 1.5s !important;
    animation-delay: .9s !important;
}

.fadeInUpGroup.animated:nth-child(4) {
    animation-duration: 2s !important;
    animation-delay: 1.1s !important
}

.fadeInUpGroup.animated:nth-child(5) {
    animation-duration: 1.5s !important;
    animation-delay: 1.6s !important;
}

@font-face {
    font-family: 'MongolQaganTig';
    src: url('../fonts/elevenoone1-1.ttf')
}

@font-face {
    font-family: 'ModularAmplitude';
    src: url('../fonts/Modular-Amplitude-2.ttf')
}

@keyframes move-right {
    0% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(-10%);
    }

    20% {
        transform: translateX(-20%);
    }

    30% {
        transform: translateX(-30%);
    }

    40% {
        transform: translateX(-40%);
    }

    50% {
        transform: translateX(-50%);
    }

    60% {
        transform: translateX(-60%);
    }

    70% {
        transform: translateX(-70%);
    }

    80% {
        transform: translateX(-80%);
    }

    90% {
        transform: translateX(-90%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.head {
    position: fixed;
    background: #fff;
    left: calc(28/1920*100vw);
    right: calc(28/1920*100vw);
    background: #FFFFFF;
    border: calc(5/1920*100vw) solid #000000;
    top: calc(4/1920*100vw);
    z-index: 66666;
}

.head .wrap {
    align-items: center;
    padding: calc(9/1920*100vw) calc(18/1920*100vw);
    justify-content: space-between;
    padding-right: calc(9/1920*100vw);
}

.head .logo {
    float: left;
    padding-top: calc(5/1920*100vw);
}

.head .logo a {
}

.head .logo img {
    height: calc(102/1920*100vw);
}

.head .more {
    float: right;
    width: calc(408/1920*100vw);
    line-height: calc(110/1920*100vw);
    background: #000000;
    border: calc(5/1920*100vw) solid #000000;
    text-align: center;
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(50/1920*100vw);
    color: #FFFFFF;
}

.section1 {
    overflow: hidden;
}

.section1 img {
    display: block;
    width: 100%;
}

.section2 > * {
    position: relative;
    z-index: 54;
}

.section2:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: url(../images/lh.png) no-repeat center calc(95/1920*100vw);
    background-size: 100%;
    z-index: 4;
    animation: pulse 1s infinite;
}

.section2:after {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(1200/1920*100vw);
    background: #000;
    left: 0px;
    top: 0px;
}

.section2 {
    position: relative;
    overflow: hidden;
}

.section2 .title {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(122/1920*100vw);
    color: #000000;
    text-align: center;
    padding-top: calc(496/1920*100vw);
    margin-bottom: calc(60/1920*100vw);
}

.section2 .title br {
}

.section2 .bgs {
    margin-left: calc(57/1920*100vw);
    padding-left: calc(57/1920*100vw);
    background: url(../images/bb.png) no-repeat left center;
    background-size: calc(57/1920*100vw);
    overflow: hidden;
    transform: rotate(-3deg);
}

.section2 .bgs .scrollAni ul {
}

.section2 .bgs .scrollAni {
}

.scrollAni ul li {
    border: calc(12/1920*100vw) solid #000;
    border-left: none;
    height: 100%;
    overflow: hidden;
}

.section2 .scrollAni img {
    height: calc(437/1920*100vw);
    object-fit: cover;
}

.section2 .bgs2 .scrollAni {
}

.section2 .bgs2 .scrollAni ul {
    left: calc(1779/1920*100vw);
}

.section2 .bgs2:after {
    content: "";
    position: absolute;
    width: calc(57/1920*100vw);
    height: 100%;
    background: url(../images/bb2.png) no-repeat right center;
    right: 0px;
    top: 0px;
    background-size: 100%;
}

.section2 .bgs2 {
    margin-right: calc(57/1920*100vw);
    padding-right: calc(57/1920*100vw);
    overflow: hidden;
    transform: rotate(-3deg);
}

.scrollAni {
    overflow: hidden;
    position: relative;
}

.scrollAni ul.sec {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100%;
}

.scrollAni ul {
    display: flex;
    border-left: calc(12/1920*100vw) solid #000;
}

.scrollAni ul {
    animation: move-right 40s steps(100,start) infinite;
}

.scrollAni li {
    flex: 1
}

.scrollAni img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section2 .dec {
    width: calc(1534/1920*100vw);
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(72/1920*100vw);
    color: #000000;
    margin: auto;
    max-width: 90%;
    margin-top: calc(85/1920*100vw);
    text-align: center;
    margin-bottom: calc(85/1920*100vw);
}

.section2 .dec p {
}

.section2 .dec p br {
}

.section2 .title2 {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(97/1920*100vw);
    color: #000000;
    text-align: center;
    padding-top: calc(140/1920*100vw);
    padding-bottom: calc(114/1920*100vw);
}

.section2 .title2 br {
}

.section2 .wrap2 {
    padding: 0px calc(315/1920*100vw);
    padding-bottom: calc(177/1920*100vw);
    z-index: 67;
}

.section2 .wrap2 .link {
    font-size: 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
}

.section2 .wrap2 .link a:hover{
       transform: translateY(-10px);
}
.section2 .wrap2 .link a {

-webkit-transition:all 0.4s;
-o-transition:all 0.4s;
-moz-transition:all 0.4s;
-ms-transition:all 0.4s;
transition:all 0.4s;

    display: inline-block;
    width: calc(547/1920*100vw);
    height: calc(133/1920*100vw);
    background: #FEFEFE;
    box-shadow: calc(13/1920*100vw) calc(-13/1920*100vw) 0px 0px #000000;
    border-radius: calc(25/1920*100vw);
    border: calc(10/1920*100vw) solid #000000;
    vertical-align: middle;
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(50/1920*100vw);
    color: #000000;
    padding-left: calc(108/1920*100vw);
    text-align: left;
    line-height: calc(120/1920*100vw);
}

.section2 .wrap2 .link .a1 {
    background: url(../images/lis1.png) no-repeat calc(434/1920*100vw) center;
    background-size: calc(60/1920*100vw);
}

.section2 .wrap2 .link .a2 {
    background-size: calc(71/1920*100vw);
    background: url(../images/lis2.png) no-repeat calc(400/1920*100vw) center;
    padding-left: calc(48/1920*100vw);
    background-size: calc(71/1920*100vw);
}

.section2 .wrap2 .timer {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(234/1920*100vw);
    color: #000000;
    padding-top: calc(80/1920*100vw);
    padding-bottom: calc(33/1920*100vw);
    display: flex;
    justify-content: space-between;
    vertical-align: middle;
}

.section2 .wrap2 .timer span {
}

.section2 .wrap2 .timer em {
    font-style: normal;
    position: relative;
    display: ;
    top: revert-layer;
    top: calc(-21/1920*100vw);
}

.section2 .wrap2 .lines {
    height: calc(86/1920*100vw);
    background: #CACACA;
    border: calc(10/1920*100vw) solid #000000;
    position: relative;
    overflow: hidden;
}

.section2 .wrap2 .lines i {
    height: 100%;
    display: block;
    width: 30%;
    background: #454545;
    border-right: calc(10/1920*100vw) solid #000000;
}

.section2 .wrap2 .val {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(39/1920*100vw);
    color: #000000;
    padding-top: calc(22/1920*100vw);
    padding-bottom: calc(45/1920*100vw);
    display: flex;
    justify-content: space-between;
}

.section2 .wrap2 .val p {
}

.section2 .wrap2 .inputwords {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section2 .wrap2 .inputwords .count {
    width: calc(819/1920*100vw);
    height: calc(136/1920*100vw);
    background: #FFB8B8;
    border: calc(10/1920*100vw) solid #000000;
    display: flex;
}

.section2 .wrap2 .inputwords .words {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(50/1920*100vw);
    color: #979797;
    height: 100%;
    border: none;
    background: none;
    text-align: center;
    width: calc(602/1920*100vw);
    background: #EBEBEB;
    border-right: calc(10/1920*100vw) solid #000000;
}

.section2 .wrap2 .inputwords .max {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(50/1920*100vw);
    color: #000000;
    border: none;
    background: none;
    height: 100%;
    width: calc(193/1920*100vw);
}

.section2 .wrap2 .inputwords .send {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(50/1920*100vw);
    color: #000000;
    width: calc(379/1920*100vw);
    height: calc(133/1920*100vw);
    background: #FEFEFE;
    box-shadow: calc(13/1920*100vw) calc(-13/1920*100vw) 0px 0px #000000;
    border-radius: calc(25/1920*100vw);
    border: calc(10/1920*100vw) solid #000000;
}

.section2 .ani1 {
    position: absolute;
    left: 0;
    bottom: 0;
    left: calc(11/1920*100vw);
}

.section2 .ani1 img {
    width: calc(335/1920*100vw);
}

.section2 .ani2 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.section2 .ani2 img {
    width: calc(637/1920*100vw);
}

.section3 {
}

.section3 .title {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(89/1920*100vw);
    color: #000000;
    text-align: center;
    line-height: calc(142/1920*100vw);
    background: #FEFEFE;
    border-top: calc(15/1920*100vw) solid #000;
    border-left: calc(6/1920*100vw) solid #000;
    border-right: calc(6/1920*100vw) solid #000;
}
.section3 .vals span{
    display:inline-block;
}
.section3 .vals {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(185/1920*100vw);
    color: #FFFFFF;
    text-align: center;
    background: #000;
    padding-top: calc(54/1920*100vw);
    padding-bottom: calc(54/1920*100vw);
}

.section3 .items:after {
    position: absolute;
    top: calc(21/1920*100vw);
    bottom: 0px;
    width: calc(7/1920*100vw);
    background: #fff;
    left: 50%;
    margin-left: calc(4/1920*100vw);
    z-index: 4;
    content: "";
}

.section3 .items {
    zoom:1;overflow: hidden;
    background: #000;
    text-align: center;
    color: #fff;
    padding: 0px calc(30/1920*100vw);
    position: relative;
}

.section3 .item {
    float: left;
    width: 50%;
}

.section3 .item .tit:after {
    content: "";
    position: absolute;
    top: 50%;
    height: calc(8/1920*100vw);
    margin-top: calc(-4/1920*100vw);
    width: 100%;
    background: #fff;
    left: 0px;
}

.section3 .item .tit {
    position: relative;
    overflow: hidden;
}

.section3 .item .tit span {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(50/1920*100vw);
    color: #FFFFFF;
    display: inline-block;
    position: relative;
    z-index: 4;
    background: #000;
    padding: 0px calc(40/1920*100vw);
}

.section3 .item .val {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(171/1920*100vw);
    color: #FFFFFF;
    height: calc(547/1920*100vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section3 .item .val br {
}

.section4 {
    position: relative;
    z-index: 5;
}

.section4 .title {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(93/1920*100vw);
    color: #000000;
    text-align: center;
    padding-top: calc(118/1920*100vw);
    margin-bottom: calc(37/1920*100vw);
}

.section4 .words {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(169/1920*100vw);
    color: #000000;
    text-align: center;
    background: url(../images/ys.png) no-repeat calc(360/1920*100vw) 0;
    background-size: calc(269/1920*100vw);
}

.section4 .words b {
    display: block;
    font-size: calc(240/1920*100vw);
    font-weight: normal;
}

.section4 .words br {
}

.section4 .dec {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(51/1920*100vw);
    color: #4E4E4E;
    text-align: center;
    padding-top: calc(39/1920*100vw);
    padding-bottom: calc(63/1920*100vw);
}

.section4 .send {
    width: calc(929/1920*100vw);
    height: calc(133/1920*100vw);
    background: #059536;
    box-shadow: calc(13/1920*100vw) calc(-13/1920*100vw) 0px 0px #000000;
    border-radius: calc(25/1920*100vw);
    border: calc(10/1920*100vw) solid #000000;
    display: block;
    margin: auto;
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(51/1920*100vw);
    color: #000000;
    margin-bottom: calc(90/1920*100vw);
}

.section4 .bgs {
    overflow: hidden;
    transform: rotate(-3deg);
}

.section4 .bgs2 {
    overflow: hidden;
    transform: rotate(3deg);
}

.section4 .bgs2 .scrollAni ul {
}

.section4 .scrollAni {
}

.section4 .scrollAni ul {
}

.section4 .scrollAni li {
    overflow: hidden;
    background: #000;
    border-width: calc(29/1920*100vw);
}

.section4 .scrollAni li img {
    height: calc(500/1920*100vw);
    border-radius: calc(61/1920*100vw);
}

.section4 .title2 {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(150/1920*100vw);
    color: #000000;
    padding-top: calc(180/1920*100vw);
    text-align: center;
}

.section4 .title2 br {
}

.section4 .dec2 {
    width: calc(1505/1920*100vw);
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(51/1920*100vw);
    color: #4E4E4E;
    padding-top: calc(78/1920*100vw);
    max-width: 90%;
    margin: auto;
    margin-bottom: calc(80/1920*100vw);
}

.section4 .send2 {
    width: calc(929/1920*100vw);
    height: calc(133/1920*100vw);
    background: #FFC5C5;
    box-shadow: calc(13/1920*100vw) calc(-13/1920*100vw) 0px 0px #000000;
    border-radius: calc(25/1920*100vw);
    border: calc(10/1920*100vw) solid #000000;
    display: block;
    margin: auto;
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(51/1920*100vw);
    color: #000000;
    margin-bottom: calc(90/1920*100vw);
}

.section4 .ani2 {
}

.section4 .ani2 ul {
}

.section4 .ani2 li {
}

.section4 .ani2 li img {
}

.section5:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #000;
    left: 0;
    top: 0px;
    transform: skewY(5deg);
}

.section5 >* {
    position: relative;
    z-index: 5;
}

.section5 {
    position: relative;
    padding-top: calc(420/1920*100vw);
    margin-top: calc(-320/1920*100vw);
}

.section5 .title {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(150/1920*100vw);
    color: #FFFFFF;
    text-align: center;
}

.section5 .dec {
    width: calc(1023/1920*100vw);
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(50/1920*100vw);
    color: #A1A1A1;
    padding-top: calc(200/1920*100vw);
    margin: auto;
    max-width: 90%;
    text-align: center;
    padding-bottom: calc(227/1920*100vw);
}

.section5 .ani1 {
    position: absolute;
    left: calc(1/1920*100vw);
    bottom: 0;
    width: calc(495/1920*100vw);
}

.section5 .ani1 img {
    width: 100%;
}

.section5 .ani2 {
    position: absolute;
    right: calc(7/1920*100vw);
    width: calc(524/1920*100vw);
    bottom: calc(-72/1920*100vw);
}

.section5 .ani2 img {
    width: 100%;
}

.section6:after {
    content: '';
    display: table;
    clear: both;
}

.section6 {
    padding-left: calc(104/1920*100vw);
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding-top: calc(169/1920*100vw);
}

.section6 .left {
    width: calc(1199/1920*100vw);
    float: left;
    width: calc(778/1920*100vw);
    padding-top: calc(72/1920*100vw);
}

.section6 .left .title {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(150/1920*100vw);
    color: #000000;
}

.section6 .left .dec1 {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(44/1920*100vw);
    color: #000000;
    padding-top: calc(60/1920*100vw);
    padding-bottom: calc(115/1920*100vw);
}

.section6 .left .dec2 {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(30/1920*100vw);
    color: #000000;
    line-height: calc(48/1920*100vw);
    padding-bottom: calc(96/1920*100vw);
}

.section6 .left .send {
    width: 100%;
    height: calc(133/1920*100vw);
    background: #A2A2A2;
    box-shadow: calc(13/1920*100vw) calc(-13/1920*100vw) 0px 0px #000000;
    border-radius: calc(25/1920*100vw);
    border: calc(10/1920*100vw) solid #000000;
    display: block;
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(51/1920*100vw);
    color: #000000;
}

.section6 .right {
    text-align: center;
    float: right;
    width: calc(900/1920*100vw);
    text-align: right;
}

.section6 .right .ani1 {
    width: calc(772/1920*100vw);
    margin-right: calc(38/1920*100vw);
}

.section6 .right .ani2 {
    width: calc(787/1920*100vw);
    margin-top: calc(-64/1920*100vw);
}

.section7 {
    margin-top: calc(107/1920*100vw);
}

.section7 .scrollAni {
}

.section7 .scrollAni.ani1 {
}

.section7 .scrollAni ul {
}

.section7 .scrollAni li {
}

.section7 .scrollAni img {
    margin: auto;
    display: block;
    height: calc(368/1920*100vw);
    width: 69%;
}

.section7 .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: calc(114/1920*100vw);
    padding-top: calc(97/1920*100vw);
    padding-bottom: calc(25/1920*100vw);
}

.section7 .content .left {
}

.section7 .content .left .title {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(150/1920*100vw);
    color: #000000;
    background: none;
    border: none;
    line-height: 1;
    text-align: left;
    margin: 0;
    padding: 0;
}

.section7 .content .left .dec {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(44/1920*100vw);
    color: #777777;
    padding-top: calc(67/1920*100vw);
    width: calc(928/1920*100vw);
}

.section7 .content .right {
}

.section7 .content .right img {
    width: calc(724/1920*100vw);
    margin-right: calc(19/1920*100vw);
}

.section7 .title {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(48/1920*100vw);
    color: #FFFFFF;
    text-align: center;
    background: #000000;
    border: calc(15/1920*100vw) solid #0E0E0E;
    margin-left: calc(20/1920*100vw);
    margin-right: calc(20/1920*100vw);
    padding: calc(43/1920*100vw) 0px;
}

.section7 .wrap3 {
    text-align: center;
    padding: 0px calc(128/1920*100vw);
    padding-top: calc(97/1920*100vw);
}

.section7 .wrap3 .title2 {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(61/1920*100vw);
    color: #000000;
}

.section7 .wrap3 .title3 {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(166/1920*100vw);
    color: #000000;
    line-height: 1;
}

.section7 .wrap3 .title3 b {
    font-size: calc(640/1920*100vw);
    font-weight: normal;
    line-height: 1;
}

.section7 .wrap3 .con {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section7 .wrap3 .con .left {
    text-align: left;
}

.section7 .wrap3 .con .left .tit {
    font-family: ModularAmplitude;
    font-weight: 400;
    font-size: calc(48/1920*100vw);
    color: #777777;
    text-align: left;
    padding-bottom: calc(100/1920*100vw);
}

.section7 .wrap3 .con .left .tit br {
}

.section7 .wrap3 .con .left .link {
}

.section7 .wrap3 .con .left .link a {
    margin-right: 3vw;
}

.section7 .wrap3 .con .left .link img {
    width: calc(195/1920*100vw);
}

.section7 .wrap3 .con .right {
}

.section7 .wrap3 .con .right img {
    width: calc(674/1920*100vw);
}

.section7 .scrollAni.ani2 {
}

.section7 .scrollAni.ani2 ul {
    border-left: none;
}

.section7 .scrollAni.ani2 li {
    border-color: #fff;
    background: #000;
    height: calc(306/1920*100vw);
    position: relative;
    border-bottom: none;
}

.section7 .scrollAni.ani2 img {
    width: calc(113/1920*100vw);
    height: calc(137/1920*100vw);
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
}
.section7 .wrap3 .con .left .link a{
    display: inline-block;
}
.section7 .wrap3 .con .left .link a,
.section6 .left .send,
.section4 .send2{
    -webkit-transition:all 0.4s;
-o-transition:all 0.4s;
-moz-transition:all 0.4s;
-ms-transition:all 0.4s;
transition:all 0.4s;

}
.section7 .wrap3 .con .left .link a:hover,
.section6 .left .send:hover,
.section4 .send2:hover{
       transform: translateY(-10px);
}



.alertmodel {left: 0;top: 0;z-index: 555557;width: 100%;height: 100%;position: fixed;text-align: center;-webkit-backdrop-filter: saturate(180%) blur(20px);backdrop-filter: saturate(180%) blur(20px);background-color: rgba(0, 0, 0, 0.35);display: none;}

.alertmodel .center {width: calc(802/1920*100vw);height: calc(486/1920*100vw);background: #030303;border-radius: calc(51/1920*100vw);position: absolute;top: 50%;z-index: 4;left: 50%;-o-transform: translate(-50%, -50%);-webkit-transform: translate(-50%, -50%);-moz-transform: translate(-50%, -50%);-ms-transform: translate(-50%, -50%);transform: translate(-50%, -50%);padding-top: calc(128/1920*100vw);background-size: cover;max-width: 90%;}

.alertmodel .shadow {height: 100%;cursor: pointer;}

.alertmodel .center .icon {
}

.alertmodel .center .icon img {height: calc(77/1920*100vw);}

.alertmodel .center .title {font-weight: 400;font-size: calc(36/1920*100vw);color: #FFFFFF;padding-top: calc(26/1920*100vw);padding-bottom: calc(73/1920*100vw);}

.alertmodel .center .btn {width: calc(646/1920*100vw);height: calc(77/1920*100vw);background: #fff;border-radius: calc(11/1920*100vw);border: none;font-weight: 400;font-size: calc(36/1920*100vw);color: #000000;margin: 0px auto;max-width: 85%;}