.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 666;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255,255,255,0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: #fff;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    overflow: auto;
    height: 100vh;
    padding-top: 50px;
}

.mobile-inner-nav {
    background: url(../images/bg.jpg) no-repeat center center;
    width: 100%;
    position: absolute;
    top: 0;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
    background-size: cover;
}

.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: PingFangSC-Regular,PingFang SC,"Microsoft YaHei","Arial";
}

body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,th,td,p,blockquote,pre,form,fieldset,legend,input,button,textarea,hr,span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: calc(14/1920*100vw);
}

html,body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
    font-family: "Microsoft YaHei" ! important;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

select {
    cursor: pointer;
}

input[type="button"],input[type="submit"],input[type="reset"],input[type="text"] {
    -webkit-appearance: none;
}

input[type="button"],input[type="submit"],input[type="reset"] {
    cursor: pointer;
}

input {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none!important;
    border-radius: 0;
}

button {
    cursor: pointer;
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
}

li {
    list-style: none;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
    background: #000;
    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-bottom: 16px;
}

.current .mobile-inner-header,.current .head {
    -webkit-backdrop-filter: blur(25px);
    /* -webkit-mask-image:linear-gradient(to bottom,#000 90%,transparent 100%);*/
    backdrop-filter: blur(15px);
    background-image: linear-gradient(rgb(0 0 0 / 0%),rgb(0 0 0 / 10%));
}

.wrap {
    width: 1440px;
    margin: auto;
    max-width: 100%;
}

.current .head .wrap .logo img {
    height: 61px;
}

.current .head .wrap .logo {
    margin-top: 7px;
}

.head .wrap .logo {
    margin-left: 80px;
    float: left;
    margin-top: 20px;
}

.head .wrap .logo a {
}

.head .wrap .logo img {
    height: 70px;
}

.current .head .wrap .right {
    padding-top: 20px;
}

.head .wrap .right {
    float: right;
    padding-top: 32px;
    display: flex;
    align-items: center;
    padding-right: 80px;
}

.head .wrap .right .nav {
}

.head .wrap .right .nav ul {
}

.head .wrap .right .nav li:nth-child(1) {
    margin-left: 0px;
}

.head .wrap .right .nav li {
    float: left;
    margin-left: 50px;
}

.head .wrap .right .nav .h2tit {
}

.head .wrap .right .nav li.current .h2tit a:after,.head .wrap .right .nav li:hover .h2tit a:after {
    width: 100%;
}

.head .wrap .right .nav .h2tit a:after {
    height: 3px;
    background: #FFFFFF;
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0px;
    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%);
    width: 0;
}

.head .wrap .right .nav .h2tit a {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    display: block;
    position: relative;
    padding: 0px 3px;
    line-height: 40px;
}

.head .wrap .right .lan {
    margin-left: 50px;
    position: relative;
    margin-right: 50px;
}

.head .wrap .right .lan .h2tit {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
    padding-left: 28px;
    background: url(../images/lan.png) no-repeat left center;
    background-size: auto 100%;
    line-height: 20px;
    font-weight: 300;
}

.head .wrap .right .lan:hover dl {
    visibility: visible;
    opacity: 1;
    z-index: 5;
    top: 28px;
}

.head .wrap .right .lan dl {
    position: absolute;
    width: 100%;
    text-align: center;
    padding: 5px 0px;
    left: 0;
    top: 28px;
    border-radius: 2px;
    overflow: hidden;
    -webkit-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -o-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    -ms-box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.09);
    top: 35px;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    -webkit-backdrop-filter: blur(25px);
    /* -webkit-mask-image:linear-gradient(to bottom,#000 90%,transparent 100%);*/
    backdrop-filter: blur(15px);
    background-image: linear-gradient(rgb(0 0 0 / 0%),rgb(0 0 0 / 10%));
}

.head .wrap .right .lan dd {
}

.head .wrap .right .lan a {
    color: #fff;
    font-size: 14px;
    display: block;
}

.head .wrap .right .more:hover {
    background: linear-gradient(270deg,rgb(252 109 7 / 100%) 0%,rgb(246 169 28 / 100%) 100%);
}

.head .wrap .right .more {
    /* width: 120px; */
    line-height: 38px;
    background: linear-gradient(270deg,rgb(252 109 7 / 60%) 0%,rgb(246 169 28 / 60%) 100%);
    border-radius: 4px;
    text-align: center;
    font-family: MicrosoftYaHeiSemibold;
    font-size: 16px;
    color: #FFFFFF;
    padding: 0px 10px;
    width: auto !important;
}

.section1 {
    text-align: center;
    position: relative;
    background: url(../images/banner.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 308px;
}

.section1 .title1 {
    font-family: MicrosoftYaHeiSemibold;
    font-size: 30px;
    color: #FFFFFF;
    padding-top: 309px;
    line-height: 1.5;
}

.section1 .title2 {
    font-family: MicrosoftYaHeiBold;
    font-size: 60px;
    color: #FFFFFF;
    line-height: 70px;
    text-align: center;
    font-style: normal;
    margin-top: 1px;
    margin-bottom: 16px;
    display: inline-block;
    background: linear-gradient(to top,#F249A5,#F3AC45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 83px;
}

.section1 .title3:hover {
    border-color: #fff
}

.section1 .title3 {
    font-family: MicrosoftYaHei;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 36px;
    width: 643px;
    line-height: 64px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / 60%);
    margin: auto;
    margin-top: 18px;
    cursor: pointer;
    display: block;
    background: none;
    text-align: center;
}

.section1 .infors {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    z-index: 55;
    background: rgba(14,43,102,0.5);
    backdrop-filter: blur(10px);
}

.section1 .infors .wrap {
}

.section1 .infors .wrap .list1 {
    padding: 0px 80px;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 5px;
    position: relative;
}

.section1 .infors .wrap .list1 p:last-child:after {
    display: none;
}

.section1 .infors .wrap .list1:after,.section1 .infors .wrap .list1:before {
    width: 1px;
    height: 33px;
    background: rgba(255,255,255,0.32);
    position: absolute;
    top: 18px;
    right: 0px;
    content: "";
    right: 30%;
}

.section1 .infors .wrap .list1:after {
    right: auto;
    left: 30%;
}

.section1 .infors .wrap .list1 p {
    /* flex:1;*/
    display: flex;
    align-items: baseline;
    position: relative;
}

.section1 .infors .wrap .list1 img {
    height: 30.47px;
    position: relative;
    top: 4px;
}

.section1 .infors .wrap .list1 p:nth-child(2) strong {
    background: linear-gradient(90deg,#4FA0FB 0%,#3680F1 100%);
}

.section1 .infors .wrap .list1 p:nth-child(3) strong {
    background: linear-gradient(0deg,#07B7CF 0%,#12B8AC 100%);
}

.section1 .infors .wrap .list1 strong {
    font-family: MicrosoftYaHeiBold;
    font-size: 30px;
    color: #FFFFFF;
    line-height: 50px;
    text-align: center;
    font-style: normal;
    background: linear-gradient(to top,#F249A5 0%,#F3AC45 100%);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin: 0px 10px;
}

.section1 .infors .wrap .list1 b {
    font-family: MicrosoftYaHeiSemibold;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 20px;
    font-weight: normal;
}

.section1 .infors .wrap .txt {
    font-family: MicrosoftYaHei;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
    text-align: right;
    padding-right: 80px;
    padding-bottom: 14px;
}

.section3 {
    text-align: center;
    padding-top: 70px;
    background: url(../images/bg.jpg) no-repeat center center;
    background-size: cover;
    padding-bottom: 70px;
}

.titlemodel {
    text-align: center;
}

.titlemodel .title {
    font-family: MicrosoftYaHeiSemibold;
    font-size: 48px;
    color: #FFFFFF;
    padding-bottom: 16px;
}

.titlemodel .desc {
    font-family: MicrosoftYaHei;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 36px;
}

.section3 .wrap {
}

.section3 .wrap .content {
    padding-top: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 108px;
    padding-right: 108px;
}

.section3 .wrap .content .left p:last-child {
    margin: 0px;
}

.section3 .wrap .content .left {
}

.section3 .wrap .content .left p {
    position: relative;
    width: 240px;
    /* height:44px;*/
    background: url(../images/line.png) no-repeat left bottom;
    background-size: 100%;
    margin-bottom: 20px;
}

.section3 .wrap .content .left p .s1 {
    display: block;
    width: 158px;
    text-align: center;
}

.section3 .wrap .content .left p .s1 img {
    width: 100px;
    display: block;
    margin: auto;
    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 .wrap .content .left p .s1 .pos {
    position: relative;
    display: block;
    width: 100%;
    height: 35px;
    margin: auto;
}

.section3 .wrap .content .left p .s1 .tit {
    font-family: MicrosoftYaHei,MicrosoftYaHei;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 36px;
    display: block;
    position: relative;
    z-index: 5;
    padding-top: 10px;
    white-space: nowrap;
}

.section3 .wrap .content .left p .s2 {
    position: absolute;
    left: 248px;
    white-space: nowrap;
    font-family: MicrosoftYaHei;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 20px;
    bottom: 14px;
}
.section3 .wrap .content .right .cn{
    display: none;
}
.section3 .wrap .content .right .en{
    display: block;
}
.cnBody .section3 .wrap .content .right .cn{
display: block;
}
.cnBody .section3 .wrap .content .right .en{
display: none;
}
.section3 .wrap .content .right {
    width: 687px;
    text-align: center;
}

.section3 .wrap .content .right img {
    width: 100%;
}

.section3 .wrap .content .right .text {
    display: inline-block;
    /* width: 396px; */
    line-height: 38px;
    background: linear-gradient( 270deg,#0787FC 0%,#EC1CF6 100%);
    border-radius: 19px;
    font-family: MicrosoftYaHei;
    font-size: 18px;
    color: #FFFFFF;
    margin-top: 21px;
    padding: 0px 0px !important;
    width:100% !important;
}

.section3 .wrap .content .right .text b {
    font-family: MicrosoftYaHei;
    font-size: 30px;
    font-weight: 400;
    margin-left: 2px;
}

.section4 {
    background: url(../images/bg.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 70px;
    padding-bottom: 136px;
}

.section4 .titlemodel {
}

.section4 .titlemodel .title {
}

.section4 .titlemodel .dec {
}

.section4 .wrap {
}

.section4 .wrap .list {
    padding-top: 88px;
    padding-left: 106px;
    padding-right: 106px;
}

.section4 .wrap .list p:nth-child(2n) {
    float: right;
}

.section4 .wrap .list p:nth-child(2) {
    background: linear-gradient(to top,#854cff,#996DF7);
}

.section4 .wrap .list p:nth-child(3) {
    background: linear-gradient(to top,#2970fb,#6498FF);
}

.section4 .wrap .list p:nth-child(4) {
    background: linear-gradient(to top,#00a1d2,#22B4E0);
}

.section4 .wrap .list p {
    float: left;
    margin-bottom: 30px;
    height: 160px;
    border-radius: 20px;
    width: calc((100% - 36px)/2);
    background: -webkit-linear-gradient(left,#F96F27,#F87CB8);
    background: linear-gradient(to right,rgb(249 111 39 / 70%),rgb(248 124 184 / 70%));
    display: flex;
    align-items: center;
    padding-bottom: 19px;
}

.section4 .wrap .list p .icon {
    padding-left: 23px;
    padding-right: 19px;
}

.section4 .wrap .list p .icon img {
    width: 88px;
}

.section4 .wrap .list p .right {
}

.section4 .wrap .list p .right .s1 {
    font-family: MicrosoftYaHei,MicrosoftYaHei;
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    display: block;
    padding-bottom: 19px;
}

.section4 .wrap .list p .right .s2 {
    font-family: MicrosoftYaHei;
    font-size: 16px;
    color: #FFFFFF;
    display: block;
    line-height: 1.4;
}

.section5 {
    background: url(../images/bg.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 70px;
    padding-bottom: 51px;
}

.section5 .titlemodel {
}

.section5 .titlemodel .title {
}

.section5 .titlemodel .dec {
}

.section5 .wrap {
}

.section5 .wrap .list {
    margin: 0px 106px;
    position: relative;
    margin-top: 35px;
    padding-top: 267px;
    background: url(../images/bg2.png) no-repeat center 0;
    background-size: 1163px;
}

.section5 .wrap .list .item:nth-child(4n) {
    margin-right: 0px;
}

.section5 .wrap .list .item {
    background: url(../images/jx.png) no-repeat center center;
    background-size: 100% 100%;
    width: 291px;
    height: 89px;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    width: calc((100% - 60px)/4);
    display: flex;
    align-items: center;
    padding-left: 14px;
    padding-bottom: 13px;
}

.section5 .wrap .list .item .icon {
}

.section5 .wrap .list .item .icon img {
    width: 46px;
    height: 46px;
}

.section5 .wrap .list .item .right {
    padding-left: 11px;
}

.section5 .wrap .list .item .right .s1 {
    font-family: PingFangSC,PingFang SC;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
}

.section5 .wrap .list .item .right .s2 {
    font-family: MicrosoftYaHeiSemibold;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 19px;
    padding-top: 4px;
}

.section5 .textalign {
    text-align: center;
}

.section5 .textalign span i:after {
    position: absolute;
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    -o-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #177FFB;
}

.section5 .textalign span i {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 28px;
    height: 28px;
    background: #FFFFFF;
    border-radius: 19px;
}

.section5 .textalign span b {
    font-size: 30px;
    font-weight: 400;
    font-family: inherit;
}

.section5 .textalign span:after {
}

.section5 .textalign span {
        display: inline-block;
    width: 396px;
    line-height: 38px;
    background: linear-gradient(270deg, #0787FC 0%, #EC1CF6 100%);
    border-radius: 19px;
    font-family: MicrosoftYaHei;
    font-size: 18px;
    color: #FFFFFF;
    margin-top: 5px;
    padding: 0px 60px;
    width: auto;
    padding-left: 40px;
    padding-right: 63px;
    position: relative;
    cursor: pointer;
}

.section6 {
    background: url(../images/bg.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 70px;
    padding-bottom: 151px;
}

.section6 .titlemodel {
}

.section6 .titlemodel .title {
}

.section6 .titlemodel .dec {
}

.section6 .list {
    margin: auto;
    margin-top: 77px;
    width: 1224px;
    position: relative;
    display: flex;
    justify-content: space-between;
    background: url(../images/line2.png) no-repeat center 48px;
    background-size: 100%;
    max-width: 100%;
}

.section6 .list .item:last-child {
    margin-right: 0px;
}

.section6 .list .item {
    position: relative;
    text-align: center;
    flex: 1;
    /* background:url(../images/line2.png) no-repeat center center;*/
    /* background-size:100%;*/
    width: calc((100% - 20px)/3);
    margin-right: 20px;
}

.section6 .list .item:nth-child(2) .num {
    background: url(../images/num2.png) no-repeat center center;
    background-size: 100%;
}

.section6 .list .item:nth-child(3) .num {
    background: url(../images/num3.png) no-repeat center center;
    background-size: 100%;
}

.section6 .list .item .num {
    width: 24px;
    background: #3680F1;
    position: absolute;
    border-radius: 30px;
    text-align: center;
    line-height: 24px;
    position: static !important;
    right: 0;
    top: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    font-size: 0;
    background: url(../images/num1.png) no-repeat center center;
    background-size: 100%;
}

.section6 .list .item .icon {
}

.section6 .list .item .icon img {
    width: 84px;
}

.section6 .list .item .title {
    font-family: MicrosoftYaHei,MicrosoftYaHei;
    font-weight: bold;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 32px;
    padding-top: 16px;
    padding-bottom: 9px;
}

.section6 .list .item .descr2 p {
    display: flex;
}

.section6 .list .item .descr2 p .s1 {
    font-family: MicrosoftYaHeiSemibold;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 29px;
    text-align: left;
    font-style: normal;
    width: 84px;
    display: inline-block;
}

.section6 .list .item .descr2 p .s2 {
    font-family: MicrosoftYaHeiBold;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 29px;
    text-align: left;
    font-style: normal;
}

.section6 .list .item:nth-child(2) .descr2 {
    background: url(../images/k2.png) no-repeat center 0;
    background-size: 100%;
}

.section6 .list .item:nth-child(3) .descr2 {
    background: url(../images/k3.png) no-repeat center 0;
    background-size: 100%;
}

.section6 .list .item:nth-child(1) .descr2 {
    /* padding-left: 50px; */
}

.section6 .list .item .descr2 {
    text-align: left;
    height: 216px;
    padding-top: 46px;
    padding-left: 50px;
    background: url(../images/k1.png) no-repeat center 0;
    background-size: 100%;
    padding-left: 29px;
}

.section6 .descr {
    font-family: MicrosoftYaHei;
    font-size: 24px;
    color: #FFFFFF;
    line-height: 36px;
    text-align: center;
    padding-top: 74px;
    margin-bottom: 33px;
}

.section6 .more:hover {
    background: linear-gradient(270deg,rgb(252 109 7 / 100%) 0%,rgb(246 169 28 / 100%) 100%);
}

.section6 .more {
    width: 210px;
    line-height: 64px;
    background: linear-gradient(270deg,rgb(252 109 7 / 60%) 0%,rgb(246 169 28 / 60%) 100%);
    border-radius: 10px;
    display: block;
    margin: auto;
    font-family: MicrosoftYaHeiSemibold;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.mobile-inner-header,.head .wrap .right .nav .h2tit a:after,.head,.head *,.index,.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;
}

.bgBase > * {
    position: relative;
    z-index: 5;
}

.bgBase:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    left: 0px;
    top: 0px;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(0,0,0,0.35);
}

.bgBase {
    border: 1px solid #977BF1;
    border-radius: 10px;
    position: relative;
    background: linear-gradient(to bottom,rgb(151 123 241 / 59%),rgb(170 123 241 / 27%),rgb(190 123 241 / 80%));
}

.alertmodel {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
}

.alertmodel .center {
    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%);
}

.alertmodel .content1 {
    width: 717px;
    padding: 30px 37px;
    max-width: 87vw;
}

.alertmodel .close {
    position: absolute;
    z-index: 6;
    cursor: pointer;
    background: url(../images/close.png) no-repeat center center #000;
    background-size: 100%;
    right: 0;
    top: 0;
    width: 45px;
    height: 45px;
    top: -38px;
    right: -35px;
    border-radius: 10px;
}

.alertmodel .content1 .cont {
}

.alertmodel .content1 .sendFileTxt {
    border: 1px solid #977BF1;
    border-radius: 10px;
    position: relative;
    height: 184px;
    padding-bottom: 50px;
}

.alertmodel .content1 .sendFileTxt textarea {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    resize: none;
    padding: 20px;
    color: #fff;
    font-size: 20px;
}

.alertmodel .content1 .sendFile {
    position: absolute;
    line-height: 30px;
    height: 30px;
    background: url(../images/send.png) no-repeat left center;
    background-size: auto 100%;
    padding-left: 35px;
    font-family: MicrosoftYaHei;
    font-size: 12px;
    color: #FFFFFF;
    left: 20px;
    bottom: 8px;
    cursor: pointer;
}

.alertmodel .content1 .sendFile:hover i {
    opacity: 1;
    visibility: visible;
    opacity: 1;
    z-index: 5;
    top: -32px;
}

.alertmodel .content1 .sendFile i {
    position: absolute;
    font-style: normal;
    width: 82px;
    height: 28.76px;
    text-align: center;
    background: url(../images/fj.png) no-repeat center center;
    background-size: 100%;
    line-height: 1;
    padding-top: 6px;
    left: -27px;
    top: -39px;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

.alertmodel .content1 .sendFile span {
}

.alertmodel .content1 .num {
    right: 15px;
    bottom: 8px;
    line-height: 30px;
    position: absolute;
    font-family: MicrosoftYaHei;
    font-size: 16px;
    color: #FFFFFF;
}

.alertmodel .content1 .words {
    margin-top: 15px;
    width: 100%;
    border: none;
    border: 1px solid #977BF1;
    border-radius: 10px;
    height: 64px;
    /* border:none;*/
    background: none;
    font-family: MicrosoftYaHei;
    font-size: 20px;
    color: #FFFFFF;
    padding-left: 20px;
}

.alertmodel .content1 .tear {
    text-align: right;
    padding-top: 21px;
}

.alertmodel .content1 .send:hover{
    background: linear-gradient(270deg,rgb(252 109 7 / 100%) 0%,rgb(246 169 28 / 100%) 100%);

}
.alertmodel .content1 .send {
    display: inline-block;
    width: 108px;
    height: 38px;
    position: relative;
    font-family: MicrosoftYaHeiSemibold;
    font-size: 16px;
    color: #FFFFFF;
    padding-left: 54px;
    text-align: left;
    border-radius: 4px;
    border: none;
    background: linear-gradient(270deg,rgb(252 109 7 / 60%) 0%,rgb(246 169 28 / 60%) 100%);

}

.alertmodel .content1 .send:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 100%;
    top: 0px;
    background: url(../images/tj.png) no-repeat center center;
    background-size: 100%;
    left: 22px;
    top: 0;
}

.section1 .title3::-webkit-input-placeholder ,
.alertmodel .content1 .sendFileTxt textarea::-webkit-input-placeholder ,
.alertmodel .content1 .words::-webkit-input-placeholder {
    color: rgba(255,255,255,.6) !important;
}
.section1 .title3::-moz-placeholder ,
.alertmodel .content1 .sendFileTxt textarea::-moz-placeholder ,
.alertmodel .content1 .words::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: rgba(255,255,255,.6) !important;
}
.section1 .title3:-moz-placeholder  ,
.alertmodel .content1 .sendFileTxt textarea:-moz-placeholder  ,
.alertmodel .content1 .words:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: rgba(255,255,255,.6) !important;
}
.section1 .title3:-ms-input-placeholder ,
.alertmodel .content1 .sendFileTxt textarea:-ms-input-placeholder ,
.alertmodel .content1 .words:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(255,255,255,.6) !important;
}

.alertmodel .content1 .cont.current > *{
opacity: 0;

}
.alertmodel .content1 .cont > *{

-webkit-transition:all 0.2s;
-o-transition:all 0.2s;
-moz-transition:all 0.2s;
-ms-transition:all 0.2s;
transition:all 0.2s;

}
.alertmodel .content1 .con2{
    
padding: 42px 0px;
    
display: none;
}
.alertmodel .content1 .con2 span{
    
font-family: MicrosoftYaHei;
    
font-size: 20px;
    
color: #FFFFFF;
    
display: block;
    
padding-left: 53px;
    
line-height: 38px;
    
background: url(../images/succeed.png) no-repeat left center;
    
background-size: auto 100%;
}


.enBody .alertmodel .content1 .words{
    font-size: 18px;
}
.enBody .alertmodel .content1 .send{
    padding-left: 39px;
}
.enBody .alertmodel .content1 .send:after{
    left: 12px;
}
.enBody .section3 .wrap .content .left p .s1 .tit{
    font-size: 18px;
}
.enBody * {
    font-family: "Arial" !important;
}
.enBody .section6 .list .item .descr2 p .s1{width: 95px;}

.copy{
    text-align: center;
    color:#fff;
    font-size: 14px;
    padding:1% 0px;
        background: url(../images/bg.jpg) no-repeat center center;
    background-size: cover;
}

.jpBody .section1 .title3{
    width: 750px;
}

.cnBody .section3 .wrap .content .right .jp, 
.cnBody .section3 .wrap .content .right .en {
    display: none;
}
.enBody .section3 .wrap .content .right .cn, 
.enBody .section3 .wrap .content .right .jp {
    display: none;
}
.jpBody .section3 .wrap .content .right .cn, 
.jpBody .section3 .wrap .content .right .en {
    display: none;
}

.jpBody .section3 .wrap .content .right .jp {
    display: block;
}

.jpBody .section3 .wrap .content .left p .s2 {
font-size: 16px;
}

.jpBody .section5 .wrap .list .item .right .s1 {
    font-size: 14px;
}

.jpBody .section5 .wrap .list .item .right .s2{
    font-size: 12px;
}
.jpBody .section5 .wrap .list .item .right{
    padding-left: 8px;
}
.jpBody .section6 .list .item .title {
    font-size: 20px;
    line-height: 32px;
    padding-top: 16px;
    padding-bottom: 9px;
}


.jpBody .section6 .list .item .descr2{
    background-size: 100% 100%;
    height: 417px;
    padding-right: 14px;
}
.jpBody .section6 .list .item .descr2 p .s1{
    width: 115px;
}
.jpBody .section6 .list .item .descr2 p .s2{
    width: calc(100% - 115px);
    padding-bottom: 8px;
}
.jpBody .alertmodel .content1 .sendFile i{
    font-size: 10px;
}
.jpBody .alertmodel .content1 .words{
    font-size: 16px;
}
.head .wrap .right .lan {
    position: relative;
}


.head .wrap .right .lan:hover .slide{
    top:30px;
        visibility:visible;
    opacity:1;
    z-index:5;
}
.head .wrap .right .lan .slide .block{
    position:relative;
    z-index:54;
}
.head .wrap .right .lan .slide .shadow{
        background: linear-gradient(to top, #977BF1, #AA7BF1, #BE7BF1);
        height: 100%;
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        opacity: .6;
    }
.head .wrap .right .lan .slide{
    position: absolute;
    left: 0;
    height: 130px;
    width: 118px;
    background: rgb(0 0 0 / 80%);
    background-size: 100% 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 30px;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    top: 40px;
    border: 1.5px solid #BE7BF0;
    border-radius: 12px;
    overflow: hidden;
    /* background: linear-gradient(to bottom, #977BF1,#AA7BF1,#BE7BF1); */
}
.head .wrap .right .lan .slide a{
    
font-family: HarmonyOS_Sans_SC_Light;
    
font-size: 18px;
    
color: #FFFFFF;
    
display: block;
    
text-align: center;
    
opacity: .8;
    
line-height: 2;
    
text-align: left;
    
padding-left: 30px;
}
.head .wrap .right .lan .slide a:hover{
    opacity: 1;
}