.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;
    background: #000;
}

.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: Century Gothic;
}

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

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: #0F1114;
    color: #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)
    }
}

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

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

@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(0,0,0);
    }

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

.head {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: calc(45/1920*100vw) calc(59/1920*100vw);
}

.section1 {
    text-align: center;
    position: relative;
}

.section2:after {
    content: "";
    display: table;
    clear: both;
}

.section2 {
    padding: 0 calc(364/1920*100vw);
    display: flex;
    margin-bottom: calc(20/1920*100vw);
}

.section3 {
}

.section4 {
}

.section5 {
}

.section6 {
    text-align: center;
}

.section7 {
    /* background:url(../images/bg4.png) no-repeat center center;*/
    /* background-size:calc(2822/1920*100vw);*/
    height: calc(783/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;
    padding-top: calc(72/1920*100vw);
}

.head .logo img {
    height: calc(40/1920*100vw);
}

.head .logo {
    float: left;
    position: relative;
    z-index: 5;
}
    .current .head .nav{
        top: calc(30/1920*100vw);
    }

.head .nav {
    text-align: center;
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(50/1920*100vw);
}

.head .nav ul {
    font-size: 0;
}

.head .nav li {
    margin: 0 calc(30/1920*100vw);
    display: inline-block;
}

.head .nav li .h2tit {
}

.head .nav li .h2tit a {
    display: block;
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #FFFFFF;
    line-height: calc(16/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    line-height: calc(40/1920*100vw);
}

.head .tel {
    float: right;
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(20/1920*100vw);
    color: #FFFFFF;
    line-height: calc(20/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    line-height: calc(40/1920*100vw);
    background: url(../images/tel.png) no-repeat left center;
    background-size: calc(20/1920*100vw);
    padding-left: calc(23/1920*100vw);
}

.section1 .content {
    width: 100%;
    position: absolute;
    top: 49%;
    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%);
    z-index: 5;
}

.section1 .title1 {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(72/1920*100vw);
    line-height: calc(72/1920*100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(87.08879211452125deg,#FFFFFF 0%,rgba(255,255,255,0.91) 54%,rgba(255,255,255,0.6) 100%);
    display: inline-block;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section1 .title2 {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(72/1920*100vw);
    line-height: calc(72/1920*100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(87.08879211452125deg,#FFFFFF 0%,rgba(255,255,255,0.91) 54%,rgba(255,255,255,0.6) 100%);
    display: inline-block;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(48.13070514380714deg,#D1E3FF 0%,#A4C8FF 29%,#6B80EE 51%,#8876EC 90%,#A696FF 100%);
    background-clip: text;
    color: transparent;
    margin-top: calc(47/1920*100vw);
    margin-bottom: calc(47/1920*100vw);
}

.section1 .dec {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28/1920*100vw);
    line-height: calc(28/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(87.08879211452125deg,#FFFFFF 0%,rgba(255,255,255,0.91) 54%,rgba(255,255,255,0.6) 100%);
    background-clip: text;
    color: transparent;
    text-align: center;
}

.section1 .more {
    width: calc(200/1920*100vw);
    line-height: calc(68/1920*100vw);
    background: #131823;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.3);
    border-radius: calc(34/1920*100vw) calc(34/1920*100vw) calc(34/1920*100vw) calc(34/1920*100vw);
    border: 1px solid;
    display: block;
    margin: auto;
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(20/1920*100vw);
    color: #FFFFFF;
    font-style: normal;
    text-transform: none;
    margin-top: calc(64/1920*100vw);
}

.section1 .bg img {
    display: block;
    width: 100%;
}

.section2 .item:last-child {
    margin-right: 0;
}

.section2 .item {
    float: left;
    margin-right: calc(24/1920*100vw);
    width: calc((100% - calc(48/1920*100vw))/3);
    height: calc(740/1920*100vw);
    background: linear-gradient( 163deg,rgba(255,255,255,0.06) 0%,rgba(29,105,255,0.1) 17%,rgba(255,255,255,0) 100%);
    border-radius: calc(10/1920*100vw) calc(10/1920*100vw) calc(10/1920*100vw) calc(10/1920*100vw);
    border: 1px solid;
    border-image: linear-gradient(152deg,rgba(255,255,255,0.20000000298023224),rgba(255,255,255,0.07999999821186066),rgba(255,255,255,0.09000000357627869),rgba(255,255,255,0)) 1 1;
    position: relative;
    overflow: hidden;
    padding-top: calc(88/1920*100vw);
    padding-left: calc(32/1920*100vw);
    padding-right: calc(28/1920*100vw);
}

.section2 .bg {
    position: absolute;
    left: 0;
    top: 0;
}

.section2 .content {
    position: relative;
    z-index: 4;
}

.section2 .item:nth-child(2) .title {
}

.section2 .item:nth-child(3) .title {
}

.section2 .title {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(48/1920*100vw);
    line-height: calc(68/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(153deg,#BCD2FF 0%,rgba(255,255,255,0.9084) 33%,rgba(255,255,255,0.6) 57%,rgba(255,255,255,0.88) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
}

.section2 .dec {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 300;
    font-size: calc(20/1920*100vw);
    color: #DCDCDC;
    line-height: calc(36/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    padding-top: calc(28/1920*100vw);
    height: calc(157/1920*100vw);
}

.section2 .link a:hover {
    background: #1A1B1D;
    box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.3);
    border-radius: 10px 10px 10px 10px;
    border: 1px solid;
    border-image: linear-gradient(137deg,rgba(173.76105844974518,203.09755146503448,255,1),rgba(109.00000110268593,161.0000056028366,253.0000001192093,1),rgba(25.984907560050488,56.61387652158737,110.80357432365417,1),rgba(47.52198278903961,15.232300590723753,81.96428462862968,1),rgba(137.00000703334808,62.00000010430813,217.0000022649765,1)) 1 1;
}

.section2 .link a {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    padding-left: calc(12/1920*100vw);
    color: #FFFFFF;
    line-height: calc(64/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: block;
    /* margin-bottom:calc(32/1920*100vw);*/
    height: calc(64/1920*100vw);
}

.section2 .icon img {
    width: calc(24/1920*100vw);
    height: calc(24/1920*100vw);
    object-fit: contain;
    margin-right: calc(16/1920*100vw);
}

.section2 .link2 {
    margin-top: calc(28/1920*100vw);
    display: flex;
    align-items: center;
}

.section2 .a1 {
    width: calc(174/1920*100vw);
    line-height: calc(48/1920*100vw);
    background: linear-gradient( -270deg,#0444C5 3%,#0438C5 48%,#2B0966 99%);
    border-radius: calc(42/1920*100vw) calc(42/1920*100vw) calc(42/1920*100vw) calc(42/1920*100vw);
    text-align: center;
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(16/1920*100vw);
    color: #FFFFFF;
}

.section2 .a2 {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #B9BEC7;
    margin-left: calc(24/1920*100vw);
}

.section3 .block1 .bg img {
    width: 100%;
}

.section3 .block1 {
    text-align: center;
    position: relative;
}

.section3 .bg {
}

.section3 .content {
    width: 100%;
    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%);
}

.section3 .title {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(72/1920*100vw);
    line-height: calc(72/1920*100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(89.84611595395432deg,#FFFFFF 0%,rgba(255,255,255,0.6) 65%,rgba(255,255,255,0.4) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section3 .dec {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28/1920*100vw);
    line-height: calc(28/1920*100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(89.84611595395432deg,#FFFFFF 0%,rgba(255,255,255,0.6) 65%,rgba(255,255,255,0.4) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-top: calc(36/1920*100vw);
}

.section3 .tab {
    text-align: center;
}

.section3 .hd a:nth-child(1) {
    margin-left: 0;
}

.section3 .hd a:last-child {
    margin-right: 0;
}

.section3 .hd a {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(14/1920*100vw);
    color: #FFFFFF;
    font-style: normal;
    text-transform: none;
    display: inline-block;
    line-height: calc(38/1920*100vw);
    border-radius: calc(19/1920*100vw) calc(19/1920*100vw) calc(19/1920*100vw) calc(19/1920*100vw);
    padding: 0 calc(20/1920*100vw);
    margin: 0 calc(11/1920*100vw);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section3 .hd a.current {
    background: linear-gradient(-270deg,#0444C5 3%,#0438C5 48%,#2B0966 99%);
}

.section3 .hd {
    text-align: center;
    font-size: 0;
    padding: calc(3/1920*100vw);
    background: #0F1114;
    border-radius: calc(22/1920*100vw) calc(22/1920*100vw) calc(22/1920*100vw) calc(22/1920*100vw);
    border: 1px solid rgb(255 255 255 / 30%);
    display: inline-block;
    margin-bottom: calc(60/1920*100vw);
}

.section3 .bd:after {
    content: '';
    display: table;
    clear: both;
}

.section3 .bd {
}

.section3 .model {
    padding: 0 calc(60/1920*100vw);
}

.section3 .item {
    float: left;
    margin-right: calc(24/1920*100vw);
    width: calc((100% - calc(72/1920*100vw))/4);
    margin-bottom: calc(24/1920*100vw);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section3 .item:nth-child(4n) {
    margin-right: 0;
}

.section3 .item a {
    display: block;
    overflow: hidden;
    border-radius: calc(10/1920*100vw);
    height: calc(324/1920*100vw);
    position: relative;
}

.section3 .item a * {
    display: block;
}

.section3 .item:hover {
    transform: translate(0%,calc(-24/1920*100vw));
}

.section3 .item:hover a .title {
    padding-top: calc(260/1920*100vw);
}

.section3 .item a .title {
    background: linear-gradient( 180deg,rgba(0,0,0,0) 0%,rgba(33,43,56,0) 18%,rgba(39,48,61,0) 44%,rgba(15,20,26,0.59) 63%,rgba(20,27,35,0.78) 100%);
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(28/1920*100vw);
    color: #FFFFFF;
    line-height: 1;
    text-align: center;
    font-style: normal;
    text-transform: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    padding-top: calc(230/1920*100vw);
    -webkit-text-fill-color: #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section3 .item a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.section3 .more {
    width: calc(244/1920*100vw);
    line-height: calc(60/1920*100vw);
    background: linear-gradient( 270deg,#0444C5 3%,#0438C5 48%,#2B0966 99%);
    border-radius: calc(30/1920*100vw) calc(30/1920*100vw) calc(30/1920*100vw) calc(30/1920*100vw);
    display: block;
    margin: auto;
    text-align: center;
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(20/1920*100vw);
    color: #FFFFFF;
    margin-top: calc(56/1920*100vw);
}

.section4 {
    background: url(../images/bg3.png) no-repeat center calc(-341/1920*100vw);
    background-size: 100%;
    padding-left: calc(212/1920*100vw);
    padding-right: calc(400/1920*100vw);
    display: flex;
    justify-content: space-between;
    height: calc(1470/1920*100vw);
    padding-top: calc(360/1920*100vw);
}

.section4 .left {
}

.section4 .left .title {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(72/1920*100vw);
    line-height: calc(100/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(178deg,#FFFFFF 0%,#FFFFFF 61%,#37598C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section4 .left .dec {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28/1920*100vw);
    color: #C7DEFF;
    line-height: calc(48/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: calc(36/1920*100vw);
    margin-bottom: calc(68/1920*100vw);
}

.section4 .left .dec2 {
    width: calc(456/1920*100vw);
    height: calc(60/1920*100vw);
    background: rgba(255,255,255,0.02);
    border-radius: calc(30/1920*100vw) calc(30/1920*100vw) calc(30/1920*100vw) calc(30/1920*100vw);
    border: 1px solid #1E2C40;
    position: relative;
    overflow: hidden;
}

.section4 .left .dec2 .words {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(14/1920*100vw);
    color: #ADC2DE;
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0 calc(32/1920*100vw);
    padding-right: calc(155/1920*100vw);
}

.section4 .left .dec2 .btn {
    background: linear-gradient( -270deg,#0444C5 3%,#0438C5 48%,#2B0966 99%);
    border-radius: calc(30/1920*100vw) calc(30/1920*100vw) calc(30/1920*100vw) calc(30/1920*100vw);
    width: calc(136/1920*100vw);
    height: calc(52/1920*100vw);
    border: none;
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(20/1920*100vw);
    color: #FFFFFF;
    position: absolute;
    right: calc(4/1920*100vw);
    top: calc(4/1920*100vw);
}

.section4 .left .words {
}

.section4 .left .btn {
}

.section4 .right {
}

.section4 .right .item:last-child {
    margin: 0;
}

.section4 .right .item {
    margin-bottom: calc(52/1920*100vw);
}

.section4 .right .item:nth-child(2) .tit {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 300;
    font-size: calc(160/1920*100vw);
    line-height: calc(160/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(62.10636816300029deg,#99FFD2 11%,#BAFFE1 40%,#7AFBFF 76%,#03A4AA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section4 .right .item:nth-child(3) .tit {
    font-size: calc(160/1920*100vw);
    line-height: calc(160/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(62.10636816300029deg,#E8AEFF 0%,#D392ED 36%,#D978FF 71%,#4D2C72 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section4 .right .item:nth-child(4) .tit {
    font-size: calc(160/1920*100vw);
    line-height: calc(160/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(62.10636816300029deg,#FFA483 0%,#FFC6B1 38%,#F9976A 74%,#673A3A 99%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section4 .right .tit {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 300;
    font-size: calc(160/1920*100vw);
    line-height: calc(160/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(62.10636816300029deg,#7EE0FF 0%,#A5E6FA 39%,#64A3F0 72%,#0E84AA 99%);
    display: inline-block;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section4 .right .val {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28/1920*100vw);
    color: #C7DEFF;
    line-height: calc(28/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: calc(20/1920*100vw);
}

.conts{
    position: relative;
    height: calc(1670 / 1920* 100vw);
}

.section5 {
    text-align: center;
}

.section5 .title {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28/1920*100vw);
    line-height: calc(28/1920*100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(177deg,#FFFFFF 0%,#C7DEFF 100%);
    margin-bottom: calc(10/1920*100vw);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section5 .val {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(120/1920*100vw);
    line-height: calc(120/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(180deg,#FFFFFF 0%,#FFFFFF 36%,#5F9FFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section6 {
    position: relative;
    z-index: 77;
}

.section6 .title {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(72/1920*100vw);
    line-height: calc(72/1920*100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(174deg,#FFFFFF 0%,#B5B5B6 100%);
    text-align: center;
    margin-top: calc(200/1920*100vw);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section6 .dec {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28/1920*100vw);
    line-height: calc(28/1920*100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(180deg,#FFFFFF 0%,#B5B5B6 100%);
    margin-top: calc(36/1920*100vw);
    display: inline-block;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: calc(60/1920*100vw);
}

.section6 .list:after {
    content: "";
    display: table;
    clear: both;
}

.section6 .list {
    padding: 0px calc(60/1920*100vw);
}

.section6 .list .item:nth-child(2n) {
    float: right;
}

.section6 .list .item a {
    display: block;
    overflow: hidden;
    zoom:1;padding-right: calc(26/1920*100vw);
}
.section6 .list .item *{
    -webkit-transition:all 0.4s;
-o-transition:all 0.4s;
-moz-transition:all 0.4s;
-ms-transition:all 0.4s;
transition:all 0.4s;

}
.section6 .list .item {
    float: left;
    margin-bottom: calc(24/1920*100vw);
    width: calc((100% - calc(24/1920*100vw))/2);
    height: calc(208/1920*100vw);
    background: #1A1E24;
    border-radius: calc(10/1920*100vw) calc(10/1920*100vw) calc(10/1920*100vw) calc(10/1920*100vw);
    padding: calc(16/1920*100vw);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section6 .list .item .imgbox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section6 .list .item .imgbox {
    float: left;
    overflow: hidden;
    width: calc(264/1920*100vw);
    height: calc(176/1920*100vw);
    border-radius: calc(10/1920*100vw);
}

.section6 .list .item .ris {
    width: calc(100% - calc(264/1920*100vw));
    float: left;
    padding-left: calc(24/1920*100vw);
}

.section6 .list .item .ris .tit {
    height: calc(88/1920*100vw);
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(24/1920*100vw);
    color: #FFFFFF;
    line-height: calc(40/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.section6 .list .item .ris .desc {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(14/1920*100vw);
    color: #A1A1A1;
    line-height: calc(24/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: calc(16/1920*100vw);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.section7:after {
    background: url(../images/bg4.png) no-repeat center center;
    background-size: 100%;
    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%);
    content: "";
    width: calc(2822/1920*100vw);
    height: calc(1817/1920*100vw);
}

.section7 > * {
    position: relative;
    z-index: 4;
}

.section7 {
    text-align: center;
    position: relative;
}

.section7 .title1 {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(32/1920*100vw);
    line-height: calc(32/1920*100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(90deg,#CBE0FF 0%,#5683C5 99%);
    display: inline-block;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section7 .title2 {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(68/1920*100vw);
    color: rgba(0,0,0,0);
    line-height: calc(68/1920*100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: calc(30/1920*100vw) 0px;
    background: linear-gradient(94deg,#1E78FF 5%,#9B62DC 51%,#F9CFD6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    margin-bottom: calc(40/1920*100vw);
    display: inline-block;
}

.section7 .more {
    width: calc(184/1920*100vw);
    line-height: calc(60/1920*100vw);
    background: linear-gradient(-270deg,#0444C5 3%,#0438C5 48%,#2B0966 99%);
    border-radius: calc(30/1920*100vw) calc(30/1920*100vw) calc(30/1920*100vw) calc(30/1920*100vw);
    display: block;
    margin: 0 auto;
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(20/1920*100vw);
    color: #FFFFFF;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding-left: calc(60/1920*100vw);
    padding-right: calc(68/1920*100vw);
    padding-top: calc(50/1920*100vw);
    padding-bottom: calc(58/1920*100vw);
}

.footer .left {
    width: calc(526/1920*100vw);
}

.footer .left .logo img {
    height: calc(65/1920*100vw);
}

.footer .left .dec {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #9CA2AC;
    line-height: calc(32/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: calc(30/1920*100vw);
}

.footer .left .dec2 {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(12/1920*100vw);
    color: #656E7B;
    padding-top: calc(12/1920*100vw);
}

.footer .center {
    display: flex;
}

.footer .center .item {
    padding: 0px calc(50/1920*100vw);
}

.footer .center .item h2 {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(14/1920*100vw);
    color: #FFFFFF;
    line-height: calc(14/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    white-space: nowrap;
    padding-bottom: calc(40/1920*100vw);
}

.footer .center .item dl {
}

.footer .center .item dl dd a {
    display: block;
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(14/1920*100vw);
    color: #9CA2AC;
    line-height: calc(32/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.footer .right {
}

.footer .right .val {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(50/1920*100vw);
    line-height: calc(60/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(180deg,#FFFFFF 0%,#FFFFFF 36%,#5F9FFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: calc(11/1920*100vw);
    width: calc(456/1920*100vw);
    text-align: right;
}

.footer .right .tel {
    width: calc(456/1920*100vw);
    height: calc(60/1920*100vw);
    background: rgba(255,255,255,0.02);
    border-radius: calc(30/1920*100vw) calc(30/1920*100vw) calc(30/1920*100vw) calc(30/1920*100vw);
    border: 1px solid #1E2C40;
    position: relative;
    overflow: hidden;
}

.footer .right .tel .words {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(14/1920*100vw);
    color: #ADC2DE;
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0px calc(32/1920*100vw);
    padding-right: calc(155/1920*100vw);
}

.footer .right .tel .btn {
    background: linear-gradient(-270deg,#0444C5 3%,#0438C5 48%,#2B0966 99%);
    border-radius: calc(30/1920*100vw) calc(30/1920*100vw) calc(30/1920*100vw) calc(30/1920*100vw);
    width: calc(136/1920*100vw);
    height: calc(52/1920*100vw);
    border: none;
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(20/1920*100vw);
    color: #FFFFFF;
    position: absolute;
    right: calc(4/1920*100vw);
    top: calc(4/1920*100vw);
}

.section8 {
    position: relative;
}

.section8 .bg img {
    width: 100%;
}

.section8 .content {
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(0/1920*100vw);
    text-align: center;
    z-index: 5;
    padding-top: calc(345/1920*100vw);
}

.section8 .title {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(60/1920*100vw);
    line-height: calc(60/1920*100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(178deg,#FFFFFF 0%,#B9C8E4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section8 .dec {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28/1920*100vw);
    color: #FFFFFF;
    line-height: calc(38/1920*100vw); 
    text-align: center;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(180deg,#BEC7D8 0%,#91A0BB 100%);
    margin-top: calc(32/1920*100vw);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section9 + .section7 {
}

.section9 {
    padding: 0px calc(60/1920*100vw);
    zoom:1;overflow: hidden;
    position: relative;
    z-index: 5;
    margin-top: calc(-458/1920*100vw);
}

.section9 .item:nth-child(2n) {
    float: right;
}

.section9 .item {
    float: left;
    position: relative;
    overflow: hidden;
    height: calc(540/1920*100vw);
    background: linear-gradient( 163deg,rgba(172,204,243,0.09) 0%,rgba(168,197,255,0.13) 26%,rgba(70,78,90,0.12) 99%);
    border-radius: calc(10/1920*100vw) calc(10/1920*100vw) calc(10/1920*100vw) calc(10/1920*100vw);
    border: 1px solid;
    border-image: linear-gradient(152deg,rgba(255,255,255,0.20000000298023224),rgba(255,255,255,0.07999999821186066),rgba(255,255,255,0.09000000357627869),rgba(255,255,255,0.07999999821186066)) 1 1;
    width: calc((100% - calc(24/1920*100vw))/2);
    margin-bottom: calc(24/1920*100vw);
}

.section9 .icon img {
    width: calc(240/1920*100vw);
    position: absolute;
    left: 0;
    top: calc(0/1920*100vw);
}

.section9 .icon2 img {
    position: absolute;
    right: 0;
    top: calc(0/1920*100vw);
    width: calc(378/1920*100vw);
}

.section9 .content {
    padding-left: calc(60/1920*100vw);
    padding-right: calc(60/1920*100vw);
    position: relative;
    z-index: 5;
    padding-top: calc(174/1920*100vw);
}

.section9 .title {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(56/1920*100vw);
    line-height: calc(56/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(180deg,#FFFFFF 0%,#A4AEBF 98%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section9 .dec {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28/1920*100vw);
    line-height: calc(44/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(180deg,#BEC7D8 0%,#91A0BB 100%);
    margin-top: calc(44/1920*100vw);
    margin-bottom: calc(44/1920*100vw);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section9 .link {
    display: flex;
    align-items: center;
}

.section9 .a1 {
    width: calc(214/1920*100vw);
    background: linear-gradient( -270deg,#0444C5 3%,#0438C5 48%,#2B0966 99%);
    border-radius: calc(42/1920*100vw) calc(42/1920*100vw) calc(42/1920*100vw) calc(42/1920*100vw);
    text-align: center;
    line-height: calc(64/1920*100vw);
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(16/1920*100vw);
    color: #FFFFFF;
    margin-right: calc(40/1920*100vw);
}

.section9 .a2 {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(20/1920*100vw);
    color: #FFFFFF;
}

.section10 {
    background: url(../images/star.png) no-repeat center 0;
    background-size: 100%;
    padding: 0px calc(54/1920*100vw);
    /* overflow:hidden;*/
}

.section10 .title {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(60/1920*100vw);
    color: #FFFFFF;
    padding-top: calc(253/1080*100vw);
}

.section10 .dec {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28/1920*100vw);
    color: #FFFFFF;
    line-height: calc(28/1920*100vw);
    padding-top: calc(32/1920*100vw);
    line-height: 1.4;
}

.section10 .items {
    zoom:1;overflow: hidden;
    padding-top: calc(139/1920*100vw);
}

.section10 .items .item:nth-child(2n) {
    float: right;
}

.section10 .items .item {
    float: left;
    position: relative;
    height: calc(613/1920*100vw);
    background: linear-gradient( 138deg,rgba(32,36,41,0.3) 7%,rgba(5,6,8,0.3) 39%,rgba(22,29,39,0.3) 96%);
    border-radius: calc(10/1920*100vw) calc(10/1920*100vw) calc(10/1920*100vw) calc(10/1920*100vw);
    border: 1px solid;
    border-image: linear-gradient(152deg,rgba(255,255,255,0.20000000298023224),rgba(255,255,255,0.07999999821186066),rgba(255,255,255,0.09000000357627869),rgba(255,255,255,0.07999999821186066)) 1 1;
    width: calc((100% - calc(24/1920*100vw))/2);
    padding-top: calc(222/1920*100vw);
    padding-left: calc(64/1920*100vw);
    padding-right: calc(75/1920*100vw);
}

.section10 .items .item .icon img.ic1 {
    position: absolute;
    top: 0;
    left: calc(64/1920*100vw);
    width: calc(583/1920*100vw);
}

.section10 .items .item .icon img.ic2 {
    position: absolute;
    top: calc(68/1920*100vw);
    left: calc(64/1920*100vw);
    width: calc(683/1920*100vw);
}

.section10 .items .item .icon {
}

.section10 .items .item .tit {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(48/1920*100vw);
    line-height: calc(68/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(180deg,#F3DFFF 0%,#E4E4E4 16%,#98A8C4 100%);
    position: relative;
    z-index: 4;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section10 .items .item .desc {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28/1920*100vw);
    color: #A2ACBB;
    line-height: calc(48/1920*100vw);
    position: relative;
    z-index: 3;
    margin-top: calc(34/1920*100vw);
}

.section10 .items2 {
    position: relative;
    margin-top: calc(247/1920*100vw);
}

.section10 .items2 .left img {
    position: absolute;
    left: calc(-302/1920*100vw);
    top: calc(-435/1920*100vw);
    width: calc(1458/1920*100vw);
    );););}

.section10 .items2 .ris {
    padding-left: calc(800/1920*100vw);
}

.section10 .items2 .ris .tits {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(48/1920*100vw);
    color: #FFFFFF;
    line-height: calc(68/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(180deg,#FBF4FF 0%,#E4E4E4 54%,#98A8C4 100%);
    display: inline-block;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section10 .items2 .ris .desc2 {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28/1920*100vw);
    color: #A2ACBB;
    line-height: calc(48/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: calc(34/1920*100vw);
}

.section10 .items3 {
    position: relative;
    margin-top: calc(261/1920*100vw);
}

.section10 .items3 .left {
    position: relative;
    z-index: 4;
    max-width: 50%;
}

.section10 .items3 .left .titles {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(48/1920*100vw);
    color: #FFFFFF;
    line-height: calc(68/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(180deg,#FBF4FF 0%,#E4E4E4 54%,#98A8C4 100%);
    display: inline-block;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section10 .items3 .left .desc3 {
    width: calc(1010/1920*100vw);
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28/1920*100vw);
    color: #A2ACBB;
    line-height: calc(48/1920*100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: calc(34/1920*100vw);
    max-width: 100%;
}

.section10 .items3 .right img {
    position: absolute;
    right: 0;
    top: calc(-400/1920*100vw);
    right: calc(-362/1920*100vw);
    width: calc(1458/1920*100vw);
}

.section11 {
    position: relative;
    z-index: 55;
}

.section11 .bg {
}

.section11 .bg img {
}

.section11 .content {
}

.section11 .title {
}

.section11 .dec {
}

.section3.type2 {
    margin-top: calc(-430/1920*100vw);
    position: relative;
    z-index: 4;
}

.pagesize {
    text-align: center;
    font-size: 0;
    padding-top: calc(23/1920*100vw);
}

.pagesize a {
    width: calc(38/1920*100vw);
    height: calc(38/1920*100vw);
    background: rgba(20,17,32,0.4);
    border-radius: calc(5/1920*100vw) calc(5/1920*100vw) calc(5/1920*100vw) calc(5/1920*100vw);
    border: 1px solid;
    border-image: linear-gradient(138deg,rgba(41.88882686197758,40.49857646226883,68.30356925725937,1),rgba(25.000000409781933,21.000000648200512,42.000001296401024,0)) 1 1;
    margin: 0 calc(8/1920*100vw);
    display: inline-block;
    line-height: calc(36/1920*100vw);
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #FFFFFF;
    vertical-align: middle;
}

.pagesize a.prev {
    border: none;
    background: url(../images/left.png) no-repeat center center;
    background-size: calc(17/1920*100vw);
}

.pagesize a.current {
    background: linear-gradient( -270deg,#0444C5 3%,#0438C5 48%,#2B0966 99%),rgba(20,17,32,0.4);
}

.pagesize a.next {
    border: none;
    background: url(../images/right.png) no-repeat center center;
    background-size: calc(17/1920*100vw);
}
.section11>*{
    position:relative;
    z-index:5
}
    .section11 .bgImg{
        position: absolute;
        left: 0;
        top: 0px;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 2;
    }
    .section11 .bgImg .shadow{
        height: 100%;
    }
    .section11 .bgImg .imgs{
        position: absolute;
        left: 0;
        top: 0px;
        width: 100%;
        height: 100%;
        /*filter: blur(6px);*/
    }
.section11 {
    background: none !important;!i;!;
    background-size: 100%;
    /* 这里保持为百分比，因为背景图通常希望覆盖整个元素 */
    position: relative;
    overflow: hidden;
}

.section11 .block1 {
    padding-left: calc(54 / 1920 * 100vw);
    padding-right: calc(81 / 1920 * 100vw);
}

.section11 .block1 .title .ris {
    display: flex;
    align-items: center;
}

.section11 .block1 .title {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(60 / 1920 * 100vw);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: calc(254 / 1920 * 100vw);
}

.section11 .block1 .ris a {
    width: calc(144 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    background: rgba(2,2,2,0.2);
    border-radius: calc(30 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(30 / 1920 * 100vw);
    border: 1px solid #FFFFFF;
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(20 / 1920 * 100vw);
    color: #FFFFFF;
    text-align: center;
    line-height: calc((60 - 2) / 1920 * 100vw);
    /* 减去边框厚度以保证文本垂直居中 */
    margin-left: calc(36 / 1920 * 100vw);
}

.section11 .block1 .ris .a1 {
    width: calc(184 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    background: linear-gradient(-270deg,#0444C5 3%,#0438C5 48%,#2B0966 99%);
    border-radius: calc(30 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(30 / 1920 * 100vw) calc(30 / 1920 * 100vw);
    border: none;
}

.section11 .block1 .dec {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(48 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    padding-top: calc(32 / 1920 * 100vw);
}

.section11 .block2 {
    margin: auto;
    margin-top: calc(131 / 1920 * 100vw);
    width: calc(1496 / 1920 * 100vw);
    /* 或者直接使用百分比宽度，如果适用 */
    max-width: 90%;
}

.section11 .block2 .article {
    background: #242424;
    border-radius: calc(20 / 1920 * 100vw) calc(20 / 1920 * 100vw) calc(20 / 1920 * 100vw) calc(20 / 1920 * 100vw);
    padding: calc(40 / 1920 * 100vw);
    padding-bottom: calc(33 / 1920 * 100vw);
    margin-bottom: calc(96 / 1920 * 100vw);
}

.section11 .block2 .article .w100 {
    width: 100%;
    /* 保持为百分比 */
    margin-bottom: calc(24 / 1920 * 100vw);
}

.section11 .block2 .article .w50 {
    zoom:1;overflow: hidden;
}

.section11 .block2 .article img {
    width: 100%;
}

.section11 .block2 .article .w50 .imgbox:nth-child(2n) {
    margin-right: 0px;
}

.section11 .block2 .article .w50 .imgbox {
    width: calc(((100% - calc(24 / 1920 * 100vw)) / 2));
    margin-right: calc(24 / 1920 * 100vw);
    );zoom:1;overflow: hidden;
    float: left;
    margin-bottom: calc(24 / 1920 * 100vw);
}

.section11 .block2 .article .w33 {
    zoom:1;overflow: hidden;
}

.section11 .block2 .article img {
    width: 100%;
}

.section11 .block2 .article .w33 .imgbox:nth-child(3n) {
    margin-right: 0px;
}

.section11 .block2 .article .w33 .imgbox {
    width: calc(((100% - calc(48 / 1920 * 100vw)) /3));
    margin-right: calc(24 / 1920 * 100vw);
    );zoom:1;overflow: hidden;
    float: left;
    margin-bottom: calc(24 / 1920 * 100vw);
}

.section11 .block2 .prenext {
    zoom:1;/* zoom属性通常用于IE的hasLayout触发，现代浏览器中可能不需要 */
    overflow: hidden;
}

.section11 .block2 .prenext > * {
    overflow: hidden;
    float: left;
    width: calc((100% - calc(24 / 1920 * 100vw)) / 2);
    height: calc(208 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
    padding: calc(16 / 1920 * 100vw) calc(5 / 1920 * 100vw);
}

.section11 .block2 .prenext .item:nth-child(2n) {
    float: right;
}
.section11 .block2 .prenext .item >*{
    position:relative;
    z-index:5;
}
    .section11 .block2 .prenext .item:after{
        position:absolute;
        left:0px;
        top:0px;
        width:100%;
        height:100%;
        content:"";
        
-webkit-backdrop-filter: saturate(180%) blur(5px);
    backdrop-filter: saturate(180%) blur(5px);
    background-color: rgba(0, 0, 0, 0.35);

    }
.section11 .block2 .prenext .item {position: relative;overflow: hidden;border-radius: 10px;}

.section11 .block2 .prenext .item .imgbox {
    float: left;
    width: calc(264 / 1920 * 100vw);
    height: calc(176 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
    overflow: hidden;
}

.section11 .block2 .prenext .item .imgbox a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section11 .block2 .prenext .item .ris {
    float: right;
    padding-right: calc(48 / 1920 * 100vw);
    padding-top: calc(36 / 1920 * 100vw);
    text-align: right;
}

.section11 .block2 .prenext .item .ris a {
}

.section11 .block2 .prenext .item .ris .tit {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28 / 1920 * 100vw);
    color: #9E9E9E;
    line-height: calc(28 / 1920 * 100vw);
    font-style: normal;
    text-transform: none;
    display: block;
}

.section11 .block2 .prenext .item .ris .dec {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(28 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(48 / 1920 * 100vw);
    font-style: normal;
    text-transform: none;
    display: block;
    padding-top: calc(8 / 1920 * 100vw);
    padding-bottom: calc(5 / 1920 * 100vw);
}

.section11 .block2 .prenext .item .loca {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    color: #9E9E9E;
    line-height: calc(16 / 1920 * 100vw);
    font-style: normal;
    text-transform: none;
}

.section11 .block2 .prenext .item:nth-child(2n) {
}

.section11 .block2 .prenext .item:nth-child(2n) .imgbox {
    float: right;
}

.section11 .block2 .prenext .item:nth-child(2n) .ris {
    float: left;
    text-align: left;
    padding-left: calc(48 / 1920 * 100vw);
    padding-right: 0;
}

.section6.type2 {
    margin-top: calc(-448 / 1920 * 100vw);
}

.section11 .block3 {
    margin: auto;
    width: calc(1496 / 1920 * 100vw);
    background: rgba(26,30,36,0.8);
    border-radius: calc(10 / 1920 * 100vw) calc(10 / 1920 * 100vw) calc(10 / 1920 * 100vw) calc(10 / 1920 * 100vw);
    border: 1px solid;
    border-image: linear-gradient(139deg,rgba(52.82277055084705,61.33554495871067,98.66071790456772,1),rgba(0,0,0,0)) 1 1;
    max-width: 90%;
    padding: calc(60 / 1920 * 100vw) calc(48 / 1920 * 100vw) calc(80 / 1920 * 100vw);
    zoom:1;overflow: hidden;
    margin-top: calc(165 / 1920 * 100vw);
}

.articleCon {
}

.articleCon .left {
    float: left;
    width: calc(1024 / 1920 * 100vw);
}

.articleCon .left .title {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(48 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(68 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.articleCon .left .time {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(24 / 1920 * 100vw);
    color: #9B9B9B;
    line-height: calc(24 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    padding: calc(40 / 1920 * 100vw) 0;
}

.articleCon .left .condetail {
}

.articleCon .left .condetail img {
    width: 100%;
    margin-bottom: calc(36 / 1920 * 100vw);
}

.articleCon .left .condetail p {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(14 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(36 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: calc(34 / 1920 * 100vw);
}

.articleCon .right {
    width: calc(296 / 1920 * 100vw);
    float: right;
}

.articleCon .right .title {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(24 / 1920 * 100vw);
    color: #9B9B9B;
    line-height: calc(24 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: calc(28 / 1920 * 100vw);
}

.articleCon .right ul {
}

.articleCon .right ul li {
}

.articleCon .right ul li a {
    display: block;
    background: #252A32;
    border-radius: calc(10 / 1920 * 100vw) calc(10 / 1920 * 100vw) calc(10 / 1920 * 100vw) calc(10 / 1920 * 100vw);
    border: 1px solid;
    border-image: linear-gradient(136deg,rgba(49.05499532818794,56.14728055894375,66.78571790456772,1),rgba(0,0,0,0)) 1 1;
    margin-bottom: calc(20 / 1920 * 100vw);
    text-align: center;
    padding: calc(16 / 1920 * 100vw);
}

.articleCon .right ul li a .imgbox {
    display: block;
    overflow: hidden;
    border-radius: calc(10 / 1920 * 100vw);
}

.articleCon .right ul li a .imgbox img {
    width: 100%;
}

.articleCon .right ul li a .tit {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(16 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(24 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: block;
    margin-top: calc(12 / 1920 * 100vw);
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.section13 .block1:after {
    content: "";
    display: table;
    clear: both;
}

.section13 .block1 {
    display: flex;
    padding-right: calc(122 / 1920 * 100vw);
    padding-left: calc(140 / 1920 * 100vw);
}

.section13 .block1 .left .tit {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(60 / 1920 * 100vw);
    line-height: calc(60 / 1920 * 100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(180deg,#FFFFFF 0%,#B9C8E4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    z-index: 5;
}

.section13 .block1 .left {
    position: relative;
    width: calc(861 / 1920 * 100vw);
}

.section13 .block1 .left .icon {
    position: relative;
    z-index: 4;
}

.section13 .block1 .left .tit2 {
    position: relative;
    padding-top: calc(32 / 1920 * 100vw);
    z-index: 5;
    white-space: nowrap;
}

.section13 .block1 .left .tit2 b,.section13 .block1 .left .tit2 span {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(100 / 1920 * 100vw);
    line-height: calc(100 / 1920 * 100vw);
    text-align: center;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(89deg,#ACCDFF 1%,rgba(183,205,255,0.78) 31%,#C5A4FF 61%,#75A9FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section13 .block1 .left .tit2 span {
    background: linear-gradient(180deg,#FFFFFF 0%,#B9C8E4 100%),linear-gradient(90deg,#FFFFFF 0%,#B9C8E4 100%);
    margin-left: calc(12 / 1920 * 100vw);
    /* 将背景设置为文字，实现渐变效果 */
    -webkit-background-clip: text;
    background-clip: text;
    /* 使用透明色将文字颜色覆盖，以实现渐变效果 */
    color: transparent;
    /* 为了兼容性添加前缀 */
    -webkit-text-fill-color: transparent;
}

.section13 .block1 .left .forms {
    width: calc(456 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    background: rgba(255,255,255,0.02);
    border-radius: calc(30 / 1920 * 100vw);
    border: 1px solid #1E2C40;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.section13 .block1 .left .forms .words {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(14 / 1920 * 100vw);
    color: #ADC2DE;
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    padding: 0 calc(32 / 1920 * 100vw);
    padding-right: calc(155 / 1920 * 100vw);
}

.section13 .block1 .left .forms .btn {
    background: linear-gradient(-270deg,#0444C5 3%,#0438C5 48%,#2B0966 99%);
    border-radius: calc(30 / 1920 * 100vw);
    width: calc(136 / 1920 * 100vw);
    height: calc(52 / 1920 * 100vw);
    border: none;
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(20 / 1920 * 100vw);
    color: #FFFFFF;
    position: absolute;
    right: calc(4 / 1920 * 100vw);
    top: calc(4 / 1920 * 100vw);
}

.section13 .block1 .left .icon img {
    width: calc(861 / 1920 * 100vw);
    position: absolute;
    left: calc(-135 / 1920 * 100vw);
    top: calc(-265 / 1920 * 100vw);
    z-index: 1;
}

.section13 .block1 .left .txt {
    padding-top: calc(164 / 1920 * 100vw);
    position: relative;
    z-index: 5;
    padding-bottom: calc(40 / 1920 * 100vw);
}

.section13 .block1 .left .txt p {
    margin-bottom: calc(32 / 1920 * 100vw);
    display: flex;
}

.section13 .block1 .left .txt p img {
    width: calc(24 / 1920 * 100vw);
    height: calc(24 / 1920 * 100vw);
    object-fit: contain;
}

.section13 .block1 .left .txt p span {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(20 / 1920 * 100vw);
    line-height: calc(20 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(180deg,#FFFFFF 0%,#B9C8E4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    vertical-align: middle;
    margin-left: calc(12 / 1920 * 100vw);
}

.section13 .block1 .right {
    width: calc(939 / 1920 * 100vw);
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(24 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(48 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.section13 .block1 .right p:last-child {
    padding: 0;
}

.section13 .block1 .right p {
    padding-bottom: calc(30 / 1920 * 100vw);
}

.section13 .block2 {
    display: flex;
    justify-content: space-around;
    padding-top: calc(160 / 1920 * 100vw);
    padding-bottom: calc(168 / 1920 * 100vw);
    text-align: center;
    padding-left: calc(280 / 1920 * 100vw);
    padding-right: calc(280 / 1920 * 100vw);
}

.section13 .block2 p:nth-child(1) .s1 {
    background: linear-gradient(271deg,#7EE0FF 0%,#A5E6FA 39%,#64A3F0 72%,#0E84AA 99%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.section13 .block2 p:nth-child(2) .s1 {
    background: linear-gradient(271deg,#99FFD2 11%,#BAFFE1 40%,#7AFBFF 76%,#03A4AA 100%);
}

.section13 .block2 p:nth-child(3) .s1 {
    background: linear-gradient(271deg,#E8AEFF 0%,#D392ED 36%,#D978FF 71%,#4D2C72 100%);
}

.section13 .block2 p:nth-child(4) .s1 {
    background: linear-gradient(271deg,#FFA483 0%,#FFC6B1 38%,#F9976A 74%,#673A3A 99%);
}

.section13 .block2 p:nth-child(2) .s1,.section13 .block2 p:nth-child(3) .s1,.section13 .block2 p:nth-child(4) .s1,.section13 .block2 p .s1 {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 300;
    font-size: calc(120 / 1920 * 100vw);
    line-height: calc(120 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    /* 渐变背景和其他样式保持不变 */
    /* 将背景设置为文字，实现渐变效果 */
    -webkit-background-clip: text;
    background-clip: text;
    /* 使用透明色将文字颜色覆盖，以实现渐变效果 */
    color: transparent;
    /* 为了兼容性添加前缀 */
    -webkit-text-fill-color: transparent;
}

.section13 .block2 p .s2 {
    display: block;
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28 / 1920 * 100vw);
    color: #C7DEFF;
    line-height: calc(28 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    padding-top: calc(22 / 1920 * 100vw);
    padding-left: calc(12 / 1920 * 100vw);
}

.section13 .block3 {
    zoom:1;/* 注意：zoom属性通常不建议在生产环境中使用，因为它可能导致不一致的渲染效果 */
    overflow: hidden;
    padding: 0 calc(60 / 1920 * 100vw);
}

.section13 {
    position: relative;
    z-index: 33;
    margin-top: -23vw;
}

.section13 .block3 .item {
    margin-right: calc(24 / 1920 * 100vw);
    width: calc((100% - calc(48 / 1920 * 100vw)) / 3);
    float: left;
    overflow: hidden;
    position: relative;
}

.section13 .block3 .item:nth-child(3n) {
    margin-right: 0;
}

.section13 .block3 .item .imgbox img {
    width: 100%;
}

.section13 .block3 .item:nth-child(2) .con {
    padding-top: calc(60 / 1920 * 100vw);
}

.section13 .block3 .item .con {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
    left: 0;
    top: 0;
    padding-top: calc(512 / 1920 * 100vw);
    padding-left: calc(44 / 1920 * 100vw);
    padding-right: calc(44 / 1920 * 100vw);
}

.section13 .block3 .item .con .tit {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 700;
    font-size: calc(48 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(68 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.section13 .block3 .item .con .dec {
    font-family: Source Han Sans,Source Han Sans;
    font-weight: 400;
    font-size: calc(28 / 1920 * 100vw);
    color: #FFFFFF;
    line-height: calc(48 / 1920 * 100vw);
    text-align: left;
    font-style: normal;
    text-transform: none;
    padding-top: calc(16 / 1920 * 100vw);
}
.section11 .block3 *,
.section13 .block3 .item *,
.section11 .block2 .prenext *,
.section3 .item a img{
-webkit-transition:all 0.4s;
-o-transition:all 0.4s;
-moz-transition:all 0.4s;
-ms-transition:all 0.4s;
transition:all 0.4s;
}


.articleCon .right ul li a:hover .imgbox img,
.section13 .block3 .item:hover img,
.section11 .block2 .prenext .item .imgbox a img:hover,
.section6 .list .item .imgbox img:hover,
.section3 .item a:hover img{
    -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);

}

.current .head{
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(0, 0, 0, 0.35);
    padding: calc(25/1920*100vw) calc(59/1920*100vw);
}
.head *,
.head {
    -webkit-transition:all 0.4s;
-o-transition:all 0.4s;
-moz-transition:all 0.4s;
-ms-transition:all 0.4s;
transition:all 0.4s;

}