.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: 33;
    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: rgb(199,34,27);
}

.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;
    max-height: calc(100vh - 50px);
}

.mobile-inner-nav {
    background-color: hsla(224,27%,35%,.6);
    width: 100%;
    position: absolute;
    top: 50px;
    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: 'Poppins';
}

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: 1.4rem;
}

html,body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
    font-family: "Microsoft YaHei" ! important;
    color: #ffffff;
    background-color: #0d131a;
    margin: 0 auto;
    padding: 0px;
    background-image: url(../images/bg003.png);
    background-size: 100% cover;
}

body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}


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;
}

* {
    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)
    }
}

.xuanzhuan {
    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;
}

.xuanzhuan 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);
}

@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%,20px);
    }

    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.35,1.35);
    }
}

.scrollAni5 {
    animation: scrollAni5 1.8s infinite;
    -moz-animation: scrollAni5 1.8s infinite;
    -webkit-animation: scrollAni5 1.8s infinite;
    -o-animation: scrollAni5 1.8s 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 7s forwards;
    animation-timing-function: ease-out;
        transform-origin: right top;
}

@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;
}

.wrap:after {
    content: "";
    display: table;
    clear: both;
}

.index * {
    opacity: 1;
}

.index {
    line-height: 1;
    padding-top: calc(30/1920*100vw);
}

.head {width: 100%;
    /* position: fixed;
    z-index: 5555;
    
    left: 0;
    top: 0; */
    padding-top: calc(36/1920*100vw);
}

.head .wrap {
}

.head .wrap .content {
    background-color: rgb(255 255 255 / 3%);
    border-radius: calc(59/1920*100vw);
    height: calc(118/1920*100vw);
}

.head .wrap .content .logo {
    padding-top: calc(29/1920*100vw);
    padding-left: calc(51/1920*100vw);
    float: left;
}

.head .wrap .content .logo a {
}

.head .wrap .content .logo a img {
    height: calc(62/1920*100vw);
}

.head .wrap .content .link a:nth-child(2) {
    background: #6BAAFF;
    border-color: #6BAAFF;
}

.head .wrap .content .link {
    padding-top: calc(23/1920*100vw);
    padding-right: calc(39/1920*100vw);
    float: right;
}

.head .wrap .content .link a {
    float: left;
    width: calc(295/1920*100vw);
    line-height: calc(68/1920*100vw);
    border-radius: calc(34/1920*100vw);
    border: calc(3/1920*100vw) solid #FFFFFF;
    margin-left: calc(13/1920*100vw);
    text-align: center;
    font-family: Poppins;
    font-weight: 600;
    font-size: calc(30/1920*100vw);
    color: #FFFFFF;
}

.head .wrap .content .link a:hover {
}

.section1 {
    /* overflow:hidden;*/
}

.section1 .wrap {
}

.section1 .wrap .content {
    background-color: rgb(255 255 255 / 3%);
    background-image: url(../images/bg001.png);
    background-size: cover;
    background-repeat: no-repeat;
    /* box-shadow: 0px 83px 81px 0px rgb(255 255 255 / 35%); */
    border-radius: calc(101/1920*100vw);
    position: relative;
    overflow: hidden;
    padding-top: calc(100/1920*100vw);
    padding-left: calc(153/1920*100vw);
    padding-bottom: calc(128/1920*100vw);
}

.section1 .wrap .content img.ani1 {
    position: absolute;
    width: 100%;
    right: 0;
    top: 0px;
    z-index: 1;
}

.section1 .wrap .content img.ani2 {
    width: calc(813/1920*100vw);
    position: absolute;
    right: 0;
    bottom: calc(73/1920*100vw);
    z-index: 1;
}

.section1 .wrap .content .dec {
    font-family: Poppins;
    font-weight: 600;
    font-size: calc(24/1920*100vw);
    color: #ffc325;
}

.section1 .wrap .content .title {
    font-family: Poppins;
    font-weight: 400;
    font-size: calc(40/1920*100vw);
    color: #FFFFFF;
    padding-top: calc(41/1920*100vw);
    padding-bottom: calc(31/1920*100vw);
}

.section1 .wrap .content .dec2 {
    font-family: Poppins;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #FFFFFF;
    width: calc(870/1920*100vw);
    max-width: 100%;
    line-height: 1.5;
}

.section1 .wrap .content >* {
    position: relative;
    z-index: 4;
}

.section1 .wrap .content .link {
}

.section1 .wrap .content .link a.a1 {
     width: calc(272/1920*100vw);
    line-height: calc(77/1920*100vw);
    background: #FFFFFF;
    box-shadow: 0px 19px 35px 0px rgba(0,0,0,0.13);
    border-radius: calc(50/1920*100vw);
    margin-bottom: calc(34/1920*100vw);
    display: block;
    text-align: center;
    font-family: Poppins;
    font-weight: 600;
    font-size: calc(34/1920*100vw);
    margin-top: calc(72/1920*100vw);
    color: #000000;
}

.section1 .wrap .content .link a.a2 {
   width: calc(272/1920*100vw);
    line-height: calc(77/1920*100vw);
    box-shadow: 0px 19px 35px 0px rgba(0,0,0,0.13);
    border-radius: calc(39/1920*100vw);
    border: calc(4/1920*100vw) solid #FFFFFF;
    padding-left: calc(61/1920*100vw);
    display: block;
    font-family: Poppins;
    font-weight: 600;
    font-size: calc(24/1920*100vw);
    color: #FFFFFF;
 /*   background: url(../images/s1.png) no-repeat calc(152/1920*100vw) center;*/
    background-size: calc(43/1920*100vw);
    margin-bottom: calc(42/1920*100vw);
}

.section1 .wrap .content .link a.a3 {
    width: calc(272/1920*100vw);
    line-height: calc(76/1920*100vw);
    box-shadow: 0px 19px 35px 0px rgba(0,0,0,0.13);
    border-radius: calc(39/1920*100vw);
    border: calc(4/1920*100vw) solid #FFFFFF;
    display: block;
    font-family: Poppins;
    font-weight: 600;
    font-size: calc(24/1920*100vw);
    color: #FFFFFF;
    padding-left: calc(60/1920*100vw);
  /*  background: url(../images/s2.png) no-repeat calc(393/1920*100vw) center;*/
    background-size: calc(33/1920*100vw);
}

.section1 .wrap .content .logo {
    padding-top: calc(92/1920*100vw);
}

.section1 .wrap .content .logo img {
    height: calc(100/1920*100vw);
}

.section2 {/* overflow: hidden; */}

.section2 .wrap {
}

.section2 .wrap .titlemodel {
    padding-top: calc(158/1920*100vw);
    padding-bottom: calc(89/1920*100vw);
}

.titlemodel {
    font-family: Poppins;
    font-weight: 400;
    font-size: calc(58/1920*100vw);
    color: #FFFFFF;
    text-align: center;
}

.section2 .wrap .list {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.section2 .wrap .list .item:nth-child(3n) {
    margin-right: 0px;
}

.section2 .wrap .list .item {
    margin-right: calc(50/1920*100vw);
    width: calc((100% - 100px)/3);
    float: left;
    background-color: rgb(255 255 255 / 3%);
    box-shadow: 0px 19px 35px 0px rgba(0,0,0,0.13);
    border-radius: calc(79/1920*100vw);
    padding-bottom: calc(113/1920*100vw);
    background: url(../images/bgh.png) no-repeat center 0;
    background-size: cover;
}

.section2 .wrap .list .item .icon {
    height: calc(403/1920*100vw);
    position: relative;
}

.section2 .wrap .list .item .icon img {
    position: absolute;
    top: 50%;
    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%);
    max-width: 60%;
    max-height: 60%;
}

.section2 .wrap .list .item .title {
    font-family: Poppins;
    font-weight: 600;
    font-size: calc(18/1920*100vw);
    color: #ffffff;
    margin-bottom: calc(31/1920*100vw);
    padding: 0px calc(51/1920*100vw);
    position: relative;
    z-index: 4;
}

.section2 .wrap .list .item .dec {
    font-family: Poppins;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #A4A4A4;
    padding: 0px calc(51/1920*100vw);
    line-height: 1.3;
    position: relative;
    z-index: 4;
}

.section3 {
    padding-top: calc(212/1920*100vw);
}

.section3 .wrap {
}

.section3 .wrap .content {
    background-color: rgb(255 255 255 / 3%);
    box-shadow: 0px 19px 35px 0px rgba(0,0,0,0.13);
    border-radius: calc(79/1920*100vw);
    position: relative;
    padding-top: calc(108/1920*100vw);
    padding-left: calc(117/1920*100vw);
    padding-bottom: calc(90/1920*100vw);
    background-image: url(../images/bg002.png);
    background-repeat: no-repeat;
    background-position: left bottom;
}

.section3 .wrap .content .left {
}

.section3 .wrap .content .left .title {
    font-family: Poppins;
    font-weight: 600;
    font-size: calc(50/1920*100vw);
    color: #FFFFFF;
    line-height: 1.2;
}

.section3 .wrap .content .left .dec {
    width: calc(717/1920*100vw);
    font-family: Poppins;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #FFFFFF;
    max-width: 100%;
    padding-top: calc(57/1920*100vw);
    padding-bottom: calc(20/1920*100vw);
}

.section3 .wrap .content .left .dec p {
    line-height: 1.4;
    padding-bottom: calc(20/1920*100vw);
}

.section3 .wrap .content .left .more {
    width: calc(327/1920*100vw);
    line-height: calc(90/1920*100vw);
    background: #F4F4F4;
    border-radius: calc(45/1920*100vw);
    display: block;
    text-align: center;
    font-family: Poppins;
    font-weight: 600;
    font-size: calc(26/1920*100vw);
    color: #000000;
}

.section3 .wrap .content .imgbox {
    position: absolute;
    top: 50%;
    right: 0;
    -o-transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
}

.section3 .wrap .content .imgbox img.ani1 {
    width: calc(752/1920*100vw);
}

.section3 .wrap .content .imgbox img.ani2 {
    /* Add styles for ani2 if needed */
}

.section4 .wrap .titlemodel {
    padding-top: calc(277/1920*100vw);
    padding-bottom: calc(121/1920*100vw);
}

.section4 .wrap .list {
}

.section4 .wrap .list .item:nth-child(2n) {
    background: url(../images/bg2.png) no-repeat center center;
    background-size: 100% 100%;
    padding-left: calc(137/1920*100vw);
}
.sec4desc{
    
    font-size: calc(14/850*100vw);
}
.section4 .wrap .list .item:nth-child(2n) .icon {
    left: auto;
    right: 0;
}

.section4 .wrap .list .item {
    height: calc(545/1920*100vw);
    background: url(../images/bg1.png) no-repeat center center;
	background-size: 100% 100%;
    position: relative;
    margin-bottom: calc(104/1920*100vw);
    
    padding-left: calc(681/1920*100vw);
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section4 .wrap .list .item .icon {
    width: calc(600/1920*100vw);
    position: absolute;
    top: 50%;
    left: 0;
    -o-transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
}

.section4 .wrap .list .item .icon img {
    display: block;
    margin: auto;
    max-width: 74%;
}

.section4 .wrap .list .item .ri {
    position: relative;
    z-index: 2;
}

.section4 .wrap .list .item .ri .title {
    font-family: Poppins;
    font-weight: bold;
    font-size: calc(40/1920*100vw);
    color: #ffffff;
    width: calc(820/1920*100vw);
    max-width: 100%;
}

.section4 .wrap .list .item .ri .dec {
    width: calc(885/1920*100vw);
    font-family: Poppins;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #fff;
    padding-top: calc(92/1920*100vw);
    max-width: 100%;
    line-height: 1.3;
}

.section5 {
}

.section5 .wrap {
}

.section5 .wrap .titlemodel {
    padding-top: calc(200/1920*100vw);
    padding-bottom: calc(133/1920*100vw);
}

.section5 .wrap .list {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.section5 .wrap .list1{
    display: none;
}
.section5 .wrap .list .item:nth-child(3) {
    margin-right: 0px;
}

.section5 .wrap .list .item {
    float: left;
    overflow: hidden;
    width: calc((100% - 100px)/3);
    margin-right: calc(50/1920*100vw);
    background-color: rgb(255 255 255 / 3%);
    box-shadow: 0px 19px 35px 0px rgba(0,0,0,0.13);
    border-radius: calc(79/1920*100vw);
    background-image: url(../images/bg004.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.section5 .wrap .list .item .imgbox {
    overflow: hidden;
}

.section5 .wrap .list .item .imgbox a {
}

.section5 .wrap .list .item .imgbox a img {
    display: block;
    width: 100%;
}

.section5 .wrap .list .item .cont {
    padding-top: calc(37/1920*100vw);
    padding-left: calc(37/1920*100vw);
    padding-right: calc(37/1920*100vw);
    height: calc(300/1920*100vw);
    position: relative;
}

.section5 .wrap .list .item .cont a.title {
    display: block;
    font-family: Poppins;
    font-weight: 500;
    font-size: calc(36/1920*100vw);
    color: #ffffff;
    margin-bottom: calc(17/1920*100vw);
}

.section5 .wrap .list .item .cont .dec {
    font-family: Poppins;
    font-weight: 500;
    font-size: calc(24/1920*100vw);
    color: #B5B4B4;
    line-height: 1.2;
}
.section5 .wrap .list .item .cont a.title:hover{
    color: #ffffff;
}
.section5 .wrap .list .item .cont a.more {
    font-family: Poppins;
    font-weight: 500;
    font-size: calc(24/1920*100vw);
    color: #ffffff;
    text-decoration-line: underline;
    padding-right: calc(64/1920*100vw);
    display: inline-block;
    line-height: calc(50/1920*100vw);
    background: url(../images/more.png) no-repeat right center;
    background-size: auto 100%;
    right: calc(60/1920*100vw);
    bottom: calc(28/1920*100vw);
    position: absolute;
}

.section6 {
    margin-top: calc(56/1920*100vw);
    text-align: center;
    position: relative;
    /* background: #700311; */
    padding-bottom: calc(98/1920*100vw);
}

.section6 .wrap {
}

.section6 .wrap .imgbox {
    position: absolute;
    top: 50%;
    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%);
    /* overflow:hidden;*/
}

.section6 .wrap .imgbox img {
    width: calc(520/1920*100vw);
}

.section6 .wrap .titlemodel {
    color: #fff;
    padding-top: calc(97/1920*100vw);
    padding-bottom: calc(76/1920*100vw);
    position: relative;
    z-index: 4;
}

.section6 .wrap .dec {
    width: calc(1315/1920*100vw);
    font-family: Poppins;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #868686;
    margin: auto;
    margin-bottom: calc(80/1920*100vw);
    max-width: 100%;
    line-height: 1.4;
    position: relative;
    z-index: 4;
}

.section6 .wrap .more {
    width: calc(531/1920*100vw);
    line-height: calc(115/1920*100vw);
    background: #ffffff;
    border-radius: calc(58/1920*100vw);
    margin: auto;
    display: block;
    font-family: Poppins;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #000000;
    position: relative;
    z-index: 4;
}

.footer {
    background: #151522;
    position: relative;
    z-index: 56;
}

.footer .block1 .wrap {
    padding: 0;
}

.footer .block1 .logo {
    padding-top: calc(64/1920*100vw);
    padding-left: calc(323/1920*100vw);
    float: left;
}

.footer .block1 .logo img {
    height: calc(79/1920*100vw);
}

.footer .block1 .right {
    float: right;
    margin-right: calc(413/1920*100vw);
    padding-top: calc(75/1920*100vw);
    margin-bottom: calc(113/1920*100vw);
}

.footer .block1 .right .tit {
    font-family: Poppins;
    font-weight: bold;
    font-size: calc(30/1920*100vw);
    color: #ffffff;
}

.footer .block1 .right .inputwords {
    zoom:1;overflow: hidden;
    margin: calc(32/1920*100vw) 0px;
}

.footer .block1 .right .inputwords .words {
    float: left;
    width: calc(230/1920*100vw);
    height: calc(49/1920*100vw);
    border: 1px solid #1059C7;
    background: none;
    padding: 0px calc(10/1920*100vw);
    font-size: calc(16/1920*100vw);
}

.footer .block1 .right .inputwords .send {
    width: calc(100/1920*100vw);
    height: calc(49/1920*100vw);
    background: #1059C7;
    border: 1px solid #1059C7;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(20/1920*100vw);
    color: #FFFFFF;
}

.footer .block1 .right .link {
    margin-right: calc(20/1920*100vw);
}

.footer .block1 .right .link a {
    margin-right: calc(20/1920*100vw);
}

.footer .block1 .right .link a img {
    height: calc(32/1920*100vw);
}

.footer .block2 .wrap {
    margin: 0px calc(140/1920*100vw);
    padding: 0px;
    border-top: 1px solid #000000;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(20/1920*100vw);
    color: #838383;
    padding-top: calc(60/1920*100vw);
    padding-bottom: calc(100/1920*100vw);
    text-align: center;
}

.footer .block2 p {
    padding-bottom: calc(25/1920*100vw);
    line-height: 1.7;
}

.wrap {
    padding: 0px calc(180/1920*100vw);
}

.head *,
.index *{
    -webkit-transition:all 0.4s;
-o-transition:all 0.4s;
-moz-transition:all 0.4s;
-ms-transition:all 0.4s;
transition:all 0.4s;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/POPPINS-REGULAR.TTF') 
}
.sideKf {
  overflow: hidden;
  position: fixed;
  top: 50%;
  right: 0px;
  -o-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: calc(121/1920*100vw);
  background: url(../images/kf.png) no-repeat center 90% #0072FF;
  border-radius: calc(33/1920*100vw) 0px 0px calc(33/1920*100vw);
  border: 1px solid #FFFFFF;
  padding-top: calc(61/1920*100vw);
  padding-bottom: calc(208/1920*100vw);
  background-size: calc(51/1920*100vw);
  z-index: 8888;
}

.sideKf .tit {
  font-family: Poppins;
  font-weight: 400;
  font-size: calc(33/1920*100vw);
  color: #FFFFFF;
  white-space: nowrap;
  transform: rotate(90deg);
}

.sideKf .tit a {
  color: inherit;
  display: block;
}


.section5 .wrap .list .item .imgbox a img:hover{

-webkit-transform: scale(1.05,1.05);
-o-transform: scale(1.05,1.05);
-moz-transform: scale(1.05,1.05);
-ms-transform: scale(1.05,1.05);
transform: scale(1.05,1.05);
}




.alertModel {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 6666;
    -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(973 / 1920 * 100vw);
  background: #121212;
  border-radius: calc(42 / 1920 * 100vw);
  position: absolute;
  top: 50%;
  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%);
  max-width: 90%;
  border-radius: calc(42 / 1920 * 100vw);
  overflow: hidden;
}

.alertModel .center .logo {
  padding: calc(35 / 1920 * 100vw);
  padding-bottom: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.alertModel .center .logo img {
  height: calc(58 / 1920 * 100vw);
}

.alertModel .center .title {
  font-family: Poppins;
  font-weight: 600;
  font-size: calc(50 / 1920 * 100vw);
  color: #FFFFFF;
  text-align: center;
  height: calc(400 / 1920 * 100vw);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.alertModel .center .btnDemo {
  height: calc(120 / 1920 * 100vw);
  width: 100%;
  border: none;
  background: none;
  font-family: Poppins;
  font-weight: 600;
  font-size: calc(36 / 1920 * 100vw);
  color: #FFFFFF;
  background: #0072FF;
}

.section4{
    overflow-x: hidden;
}







.content3 {
    zoom:1;overflow: hidden;
    padding-bottom: calc(30 / 1920 * 100vw);
}

.content3 a {
    float: left;
    width: 20%;
    margin-bottom: calc(45 / 1920 * 100vw);
}

.content3 img {
    width: 100%;
    height: calc(60 / 1920 * 100vw);
    object-fit: contain;
}









