.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(255 255 255);
}

.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: inherit;
}

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: #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: #000;
    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:url(../images/bg.jpg) no-repeat center center;*/
    /* background-size:cover; */
    color: #fff;
    text-transform: uppercase;
}

* {
    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;
}

@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;
}

.head {
    position: fixed;
    padding-left: calc(186 / 1920 * 100vw);
    padding-right: calc(185 / 1920 * 100vw);
    padding-top: calc(36 / 1920 * 100vw);
    left: 0;
    top: 0;
    width: 100%;
    z-index: 5555;
}

.head .wrap1 {
}

.head .logo {
    float: left;
    padding-top: calc(3 / 1920 * 100vw);
}

.head .logo a {
}

.head .logo img {
    width: calc(55 / 1920 * 100vw);
}

.head .more {
    float: right;
    width: calc(194 / 1920 * 100vw);
    line-height: calc(61 / 1920 * 100vw);
    background: linear-gradient(68deg,#362CC9,#B381FE);
    border-radius: calc(10 / 1920 * 100vw);
    text-align: center;
    font-family: "Microsoft YaHei";
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #FFFFFF;
}

.section1 .bg {
    background: url(../images/sec1.png) no-repeat center 0;
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.index {
    line-height: 1;
    background: url(../images/bg.jpg) no-repeat center bottom;
    background-size: cover;
}

.section1 {
    position: relative;
    overflow: hidden;
    padding-left: calc(227 / 1920 * 100vw);
    padding-right: calc(227 / 1920 * 100vw);
    padding-top: calc(294 / 1920 * 100vw);
    padding-bottom: calc(305 / 1920 * 100vw);
}

.section1 .wrap1 {
    position: relative;
    z-index: 5;
}

.section1 .content {
    position: relative;
}

.section1 .right {
    position: absolute;
    top: 50%;
    right: -10%;
    -o-transform: translate(0%,-50%);
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
}

.section1 .right img {
    width: calc(832 / 1920 * 100vw);
}

.section1 .left {
    width: calc(700 / 1920 * 100vw);
}

.section1 .title1 {
    font-family: "Microsoft YaHei";
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    padding-left: calc(39 / 1920 * 100vw);
    color: #BFBFBF;
    background: url(../images/logo.png) no-repeat left center;
    background-size: calc(25 / 1920 * 100vw);
    line-height: calc(25 / 1920 * 100vw);
}

.section1 .title2 {
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(30 / 1920 * 100vw);
    color: #FFFFFF;
    padding-top: calc(39 / 1920 * 100vw);
}

.section1 .title3 {
    margin-top: calc(21 / 1920 * 100vw);
    margin-bottom: calc(42 / 1920 * 100vw);
    display: inline-block;
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(66 / 1920 * 100vw);
    color: #362CC9;
    background: linear-gradient(0deg,#362CC9 23.388671875%,#B381FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section1 .dec {
    font-family: "Microsoft YaHei";
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #BFBFBF;
    margin-bottom: calc(58 / 1920 * 100vw);
    line-height: 1.5;
}

.section1 .link {
}

.section1 .link a {
    display: inline-block;
    line-height: calc(61 / 1920 * 100vw);
    background: linear-gradient(68deg,#362CC9,#B381FE);
    border-radius: calc(10 / 1920 * 100vw);
    padding-right: calc(28 / 1920 * 100vw);
    font-family: "Microsoft YaHei";
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #FFFFFF;
		margin-right:calc(48 / 1920 * 100vw);
}

.section1 .link img {
    margin-left: calc(23 / 1920 * 100vw);
    margin-right: calc(26 / 1920 * 100vw);
    height: calc(26 / 1920 * 100vw);
}

.section1 .link span {
    color: #fff;
}

.section2 {
    background: url(../images/wxbg.png) no-repeat center center;
    background-size: calc(1400 / 1920 * 100vw);
    padding-bottom: calc(90 / 1920 * 100vw);
}

.wrap:after {
    content: "";
    display: table;
    clear: both;
}

.wrap {
    padding-left: calc(323 / 1920 * 100vw);
    padding-right: calc(323 / 1920 * 100vw);
}

.section2 .wrap > .title {
    text-align: center;
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(50 / 1920 * 100vw);
    color: #FFFFFF;
}

.section2 .title b {
    color: #6C51E0;
    font-weight: normal;
}

.section2 .dec p:nth-child(2) {
    color: #fff;
    font-weight: bold;
}

.section2 .dec {
    font-family: "Microsoft YaHei";
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #BFBFBF;
    padding-top: calc(44 / 1920 * 100vw);
    padding-bottom: calc(80 / 1920 * 100vw);
    text-align: center;
    line-height: 1.5;
}

.section2 .list {
}

.section2 .item:nth-child(2n) {
    float: right;
}

.section2 .item {
    width: calc(492 / 1920 * 100vw);
    height: calc(397 / 1920 * 100vw);
    background: url(../images/lx.png) no-repeat center center;
    float: left;
    margin-bottom: calc(40 / 1920 * 100vw);
    position: relative;
    background-size: 100% 100%;
    padding-top: calc(30 / 1920 * 100vw);
    padding-left: calc(37 / 1920 * 100vw);
    padding-right: calc(30 / 1920 * 100vw);
}

.section2 .item .icon {
    position: absolute;
    top: 30%;
    right: calc(-50 / 1920 * 100vw);
    -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(99 / 1920 * 100vw);
    height: calc(99 / 1920 * 100vw);
    background: #000000;
    border-radius: 50%;
    border: calc(4 / 1920 * 100vw) solid #6C51E0;
}

.section2 .item .icon img {
    width: calc(53 / 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%);
}

.section2 .item .title {
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(30 / 1920 * 100vw);
    color: #FFFFFF;
    background: linear-gradient(0deg,#EA278F 0%,#7F13CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section2 .item .desc {
    font-family: "Microsoft YaHei";
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    color: #DDDDDD;
    padding-top: calc(28 / 1920 * 100vw);
    width: calc(364 / 1920 * 100vw);
    max-width: 100%;
    line-height: 1.5;
}

.section3 {
    padding-top: calc(250 / 1920 * 100vw);
    background: url(../images/g1.png) no-repeat calc(200 / 1920 * 100vw) calc(-300 / 1920 * 100vw);
    /* padding-bottom:calc(270 / 1920 * 100vw);*/
}

.section3 .wrap {
}

.section3 .content1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: calc(70 / 1920 * 100vw);
}

.section3 .content1 .left {
    position: relative;
}

.section3 .content1 .left img.ani1 {
    width: calc(263 / 1920 * 100vw);
}

.section3 .content1 .left img.ani2 {
    width: calc(337 / 1920 * 100vw);
    position: absolute;
    left: calc(72 / 1920 * 100vw);
    top: calc(112 / 1920 * 100vw);
    z-index: 5;
}

.section3 .content1 .right {
    margin-left: calc(112 / 1920 * 100vw);
}

.section3 .content1 .item1.item2 {
    margin: 0;
    background: #302170;
    width: calc(772 / 1920 * 100vw);
}

.section3 .content1 .item1.item2 .ris {
    width: calc(626 / 1920 * 100vw);
}

.section3 .content1 .item1 {
    padding: calc(7 / 1920 * 100vw);
    background: url(../images/bz1.png) no-repeat center center;
    background-size: cover;
    display: inline-block;
    zoom:1;overflow: hidden;
    align-items: center;
    display: flex;
    margin-bottom: calc(18 / 1920 * 100vw);
    width: calc(660 / 1920 * 100vw);
}

.section3 .content1 .item1 .icon {
    width: calc(89 / 1920 * 100vw);
    height: calc(89 / 1920 * 100vw);
    border: calc(1 / 1920 * 100vw) solid #6C51E0;
    position: relative;
}

.section3 .content1 .item1 .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: 70%;
}

.section3 .content1 .item1 .ris {
    font-family: "Microsoft YaHei";
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    color: #FFFFFF;
    width: calc(501 / 1920 * 100vw);
    margin-left: calc(30 / 1920 * 100vw);
    line-height: 1.5;
	margin-top:20px;  
margin-bottom: 20px;
}

.section3 .content2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section3 .content2 .left {
    width: calc(741 / 1920 * 100vw);
}

.section3 .content2 .title {
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(71 / 1920 * 100vw);
    color: #fff;
}

.section3 .content2 .title b {
    color: #414BFF;
    font-weight: normal;
}

.section3 .content2 .dec p {
    padding-bottom: calc(30 / 1920 * 100vw);
    line-height: 1.5;
}

.section3 .content2 .dec {
    margin-top: calc(62 / 1920 * 100vw);
    font-family: "Microsoft YaHei";
    font-weight: 400;
    font-size: calc(16 / 1920 * 100vw);
    color: #FFFFFF;
    background: url(../images/jb.png) no-repeat left center;
    background-size: cover;
    padding-top: calc(18 / 1920 * 100vw);
    padding-bottom: calc(14 / 1920 * 100vw);
    padding-left: calc(18 / 1920 * 100vw);
}

.section3 .content2 .right img {
    width: calc(386 / 1920 * 100vw);
}

.section4 {
    padding-top: calc(119 / 1920 * 100vw);
    overflow: hidden;
}

.section4 .wrap {
}

.titlemodel {
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(71 / 1920 * 100vw);
    color: #FFFFFF;
    text-align: center;
    position: relative;
    text-transform: uppercase;
}

.titlemodel .tit {
    position: relative;
    z-index: 5;
}

.section4 .titlemodel .ami {
    position: absolute;
    width: 100%;
    height: 145%;
    background: url(../images/xz.png) no-repeat center center;
    background-size: auto 100%;
    left: 7%;
    top: -15%;
    z-index: 5;
}

.section4 .list:after {
    content: "";
    display: table;
    clear: both;
}

.section4 .list {
    padding-top: calc(73 / 1920 * 100vw);
    padding-bottom: calc(218 / 1920 * 100vw);
    background: url(../images/g2.png) no-repeat center 0;
    background-size: contain;
}

.section4 .item:nth-child(2n) {
    float: right;
}

.section4 .item {
    width: calc(527 / 1920 * 100vw);
    height: calc(253 / 1920 * 100vw);
    float: left;
    position: relative;
    margin-bottom: calc(81 / 1920 * 100vw);
    background: url(../images/lk.png) no-repeat center center;
    background-size: 100% 100%;
}

.section4 .item .num {
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(67 / 1920 * 100vw);
    color: #FFFFFF;
    position: absolute;
    left: calc(32 / 1920 * 100vw);
    top: calc(-35 / 1920 * 100vw);
}

.section4 .item .dec {
    line-height: 1.5;
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(16 / 1920 * 100vw);
    color: #FFFFFF;
    padding-top: calc(39 / 1920 * 100vw);
    padding-left: calc(38 / 1920 * 100vw);
    padding-right: calc(14 / 1920 * 100vw);
}

.section5 {
    position: relative;
}

.section5 .wrap {
}

.section5 .swiper-container {
}

.section5 .swiper-wrapper {
}

.section5 .swiper-slide {
    /* padding-bottom:86px;*/
}

.section5 .post {
    background: url(images/poster1.png) no-repeat center center;
    background-size: 100% 100% !important;
    height: calc(606 / 1920 * 100vw);
    position: relative;
    width: calc(1185 / 1920 * 100vw);
    margin: auto;
    max-width: 100%;
    margin-bottom: calc(86 / 1920 * 100vw);
}

.section5 .logo {
    position: absolute;
    left: calc(33 / 1920 * 100vw);
    top: calc(33 / 1920 * 100vw);
}

.section5 .logo img {
    width: calc(44 / 1920 * 100vw);
    margin-right: calc(21 / 1920 * 100vw);
}

.section5 .logo span {
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(32 / 1920 * 100vw);
    color: #FFFFFF;
    text-transform: uppercase;
    align-items: center;
    vertical-align: middle;
}

.section5 .txt {
    height: 100%;
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section5 .txt .s1 {
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(77 / 1920 * 100vw);
    color: #FFFFFF;
    background: linear-gradient(0deg,#61D6E4 0.634765625%,#F8A5F9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-transform: uppercase;
}

.section5 .txt .s2 {
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(40 / 1920 * 100vw);
    color: #FFFFFF;
    text-shadow: 0px 0px 17px #811520;
    padding-top: calc(121 / 1920 * 100vw);
}

.section5 .swiper-pagination *.swiper-pagination-bullet-active {
    background: #01F6F9;
}

.section5 .swiper-pagination * {
    width: calc(25 / 1920 * 100vw);
    height: calc(25 / 1920 * 100vw);
    background: #CDCDCD;
    border-radius: 50%;
    margin: 0px calc(10 / 1920 * 100vw) !important;
    opacity: 1;
}

.section5 .swiper-pagination {
}

.section5 .swiper-button-next {
    width: calc(53 / 1920 * 100vw);
    height: calc(54 / 1920 * 100vw);
    background: url(../images/right.png) no-repeat center center;
    background-size: 100%;
    right: calc(273 / 1920 * 100vw);
}

.section5 .swiper-button-prev {
    width: calc(53 / 1920 * 100vw);
    height: calc(54 / 1920 * 100vw);
    background: url(../images/left.png) no-repeat center center;
    background-size: 100%;
    left: calc(273 / 1920 * 100vw);
}

.section6 {
    margin-top: calc(200 / 1920 * 100vw);
    position: relative;
}

.section6 .wrap {
}

.section6 .titlemodel {
}

.section6 .titlemodel .title {
}

.section6 .dec {
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(23 / 1920 * 100vw);
    color: #0096FF;
    text-align: center;
    padding-top: calc(22 / 1920 * 100vw);
    padding-bottom: calc(105 / 1920 * 100vw);
    text-transform: uppercase;
}

.section6 .list {
    position: relative;
}

.section6 .swiper-container {
}

.section6 .swiper-wrapper {
}

.section6 .swiper-slide {
    padding-top: calc(60 / 1920 * 100vw);
}

.section6 .content {
    background: #0C0A27;
    border-radius: calc(41 / 1920 * 100vw);
    border: calc(1 / 1920 * 100vw) solid #6C51E0;
    text-align: center;
    position: relative;
    height: calc(338 / 1920 * 100vw);
}

.section6 .user img {
    height: calc(198 / 1920 * 100vw);
    margin-top: calc(-60 / 1920 * 100vw);
}

.section6 .name {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(30 / 1920 * 100vw);
    color: #FFFFFF;
    padding-top: calc(39 / 1920 * 100vw);
    padding-bottom: calc(63 / 1920 * 100vw);
}

.section6 .ms {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #B7B7B7;
    padding: 0 calc(30 / 1920 * 100vw);
    line-height: 1.5;
}

.section6 .swiper-pagination {
}

.section6 .swiper-button-next {
    width: calc(39 / 1920 * 100vw);
    height: calc(39 / 1920 * 100vw);
    right: calc(-70 / 1920 * 100vw);
    background: url(../images/right.png) no-repeat center center;
    background-size: 100%;
}

.section6 .swiper-button-prev {
    width: calc(39 / 1920 * 100vw);
    height: calc(39 / 1920 * 100vw);
    left: calc(-70 / 1920 * 100vw);
    background: url(../images/left.png) no-repeat center center;
    background-size: 100%;
}

.section7 {
    padding-top: calc(390 / 1920 * 100vw);
    padding-bottom: calc(240 / 1920 * 100vw);
    overflow: hidden;
}

.section7 .wrap {
}

.section7 .titlemodel {
}

.section7 .titlemodel .title {
}

.section7 .content {
    margin-top: calc(80 / 1920 * 100vw);
    padding-left: calc(86 / 1920 * 100vw);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section7 .left {
}

.section7 .title1 {
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(24 / 1920 * 100vw);
    color: #FFFFFF;
    text-transform: uppercase;
}

.section7 .num {
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(57 / 1920 * 100vw);
    color: #FFFFFF;
    padding-top: calc(24 / 1920 * 100vw);
    padding-bottom: calc(61 / 1920 * 100vw);
}

.section7 .list {
}

.section7 .item {
    height: calc(66 / 1920 * 100vw);
    margin-bottom: calc(26 / 1920 * 100vw);
    display: flex;
    align-items: center;
}

.section7 .item .val {
}

.section7 .item .val.i1 {
    background: #6C51E0;
    width: calc(235 / 1920 * 100vw);
    height: calc(66 / 1920 * 100vw);
    background: #6C51E0;
}

.section7 .item .val.i2 {
    width: calc(41 / 1920 * 100vw);
    height: calc(66 / 1920 * 100vw);
    background: #4224C3;
}

.section7 .item .val.i3 {
    width: calc(9 / 1920 * 100vw);
    height: calc(66 / 1920 * 100vw);
    background: #8A51E0;
}

.section7 .item .val.i4 {
    width: calc(14 / 1920 * 100vw);
    height: calc(66 / 1920 * 100vw);
    background: #5198E0;
}

.section7 .item .val.i5 {
    width: calc(71 / 1920 * 100vw);
    height: calc(66 / 1920 * 100vw);
    background: #6912C1;
}

.section7 .item .nm {
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(24 / 1920 * 100vw);
    color: #FFFFFF;
    padding-left: calc(36 / 1920 * 100vw);
}

.section7 .right {
}

.section7 .right img.ani {
    width: calc(430 / 1920 * 100vw);
}

.section8 {
}

.section8 .wrap {
}

.section8 .titlemodel {
}

.section8 .titlemodel .title {
}

.section8 .link2 {
    padding-top: calc(242 / 1920 * 100vw);
    padding-bottom: calc(100 / 1920 * 100vw);
    zoom:1;overflow: hidden;
}
.section8 .link2 a{
    float: left;
    width: 25%;
    margin-bottom: 1vw;
}
.section8 .link2 a img{
    width: 100%;
    height: calc(88 / 1920 * 100vw);
    object-fit: contain;
}
.section8 .link {
    font-size: 0px;
    text-align: center;
}

.section8 .dec {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #FFFFFF;
    text-align: center;
    padding-top: calc(90 / 1920 * 100vw);
    padding-bottom: calc(51 / 1920 * 100vw);
}

.section8 .link a img {
    height: calc(81 / 1920 * 100vw);
    margin: 0 calc(38 / 1920 * 100vw);
}

.footer {
    background: #0A051D;
    position: relative;
    padding-top: calc(99 / 1920 * 100vw);
    padding-bottom: calc(85 / 1920 * 100vw);
}

.footer .left {
    position: absolute;
    left: calc(140 / 1920 * 100vw);
    top: calc(105 / 1920 * 100vw);
}

.footer .left .logo {
}

.footer .left .logo img {
    height: calc(40 / 1920 * 100vw);
}

.footer .left .logo span {
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(28 / 1920 * 100vw);
    color: #FFFFFF;
    padding-left: calc(16 / 1920 * 100vw);
    text-transform: uppercase;
    vertical-align: middle;
}

.footer .left .dec {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #999999;
    text-align: center;
    padding-top: calc(34 / 1920 * 100vw);
    padding-left: calc(37 / 1920 * 100vw);
}

.footer .center {
    text-align: center;
}

.footer .center .title {
    font-family: UPFont;
    font-weight: normal;
    font-size: calc(30 / 1920 * 100vw);
    color: #FFFFFF;
}

.footer .center .link a {
    margin: 0 calc(20 / 1920 * 100vw);
}

.footer .center .link {
    padding-top: calc(55 / 1920 * 100vw);
    padding-bottom: calc(37 / 1920 * 100vw);
    font-size: 0;
}

.footer .center .link a img {
    height: calc(46 / 1920 * 100vw);
}

.footer .center .line img {
    height: calc(8 / 1920 * 100vw);
    margin-bottom: calc(36 / 1920 * 100vw);
}

.footer .center .link2 a {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18 / 1920 * 100vw);
    color: #939393;
    margin: 0 calc(25 / 1920 * 100vw);
}

.index {
    overflow-x: hidden;
}

.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;

    opacity: 1;
}




@font-face {
    font-family: 'UPFont';
    src: url('../fonts/up.ttf') format('truetype');
}




.head .nav.pc {
    text-align: center;
    white-space: nowrap;
    font-size: 0;
    position: absolute;
    top: 72%;
    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%);
}

.head .nav.pc ul {
}


.head .nav.pc ul li {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin: 0 calc(25/1920*100vw);
}

.head .nav.pc ul li:hover .h2tit a:after,
.head .nav.pc ul li.current .h2tit a:after {
    width: 100%;
}

.head .nav.pc ul li .h2tit a:after {
    position: absolute;
    left: 50%;
    -o-transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    bottom: 0px;
    height: calc(5/1920*100vw);
    background: #095ca2;
    content: "";
    width: 0%;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.head .nav.pc ul li .h2tit a {
    font-size: calc(20/1920*100vw);
    font-family: "Microsoft YaHei";
    font-weight: 400;
    color: #C1C1C1;
    display: block;
    line-height: calc(75/1920*100vw);
    padding: 0 calc(18/1920*100vw);
}

.head .nav.pc ul li.sub .h2tit a {
    background: url(../images/down.png) no-repeat right center;
}

.head .nav.pc ul li.sub dl {
    position: absolute;
    width: 100%;
    text-align: center;
    background: rgb(0 0 0 / 70%);
    left: 0;
    top: calc(85/1920*100vw);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

.head .nav.pc ul li:hover dl {
    top: calc(75/1920*100vw);
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.head .nav.pc ul li.sub dl dd a {
    display: block;
    color: #fff;
    font-size: calc(18/1920*100vw);
    line-height: 2;
}
