.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 666;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255,255,255,0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: #fff;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    overflow: auto;
    height: 100vh;
    padding-top: 50px;
}

.mobile-inner-nav {
    background: linear-gradient(270deg,#0866b1c9,#076cc3);
    width: 100%;
    position: absolute;
    top: 0;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
}

.mobile-inner-nav a {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    color: #fff;
    transition: all 0.5s;
}

.mobile-inner-nav dl {
    display: none;
}

.mobile-inner-nav dl dd {
    line-height: 33px;
    text-decoration: none;
    text-indent: 3em;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    font-size: 14px;
}

.mobile-inner-nav li {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 53px;
    text-indent: 20px;
}

.mobile-inner-nav h2.h2tit {
    line-height: 50px;
    text-decoration: none;
    text-indent: 2em;
    font-size: 16px;
    color: #FFFFFF;
    /* border-bottom:solid 1px rgba(255,255,255,0.3);*/
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
    color: #FFFFFF;
}

.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;
    background: url(../images/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 17px;
}

.mobile-inner-nav li .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    text-indent: 60px;
    font-size: 15px;
    color: #fff;
    background: url(../images/search2.png) no-repeat 30px center;
    background-size: 20px;
}

.mobile-inner-nav li:last-child {
    border-bottom: none;
}

.mobile-inner-nav li form {
    display: block;
    width: 100%;
    height: 100%;
}

@charset "utf-8";@charset "UTF-8";.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,40px,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUp2 {
    animation-duration: 1.76s;
    animation-name: fadeInUp2;
}

@keyframes fadeInUp2 {
    from {
        opacity: 0;
        transform: translate3d(0,10px,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

* {
    font-family: PingFangSC,PingFang SC;
}

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/1440*100vw);
}

html,body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
    font-family: "Microsoft YaHei" ! important;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
}

input[type="button"],input[type="submit"],input[type="reset"],input[type="text"] {
    -webkit-appearance: none;
}

input[type="button"],input[type="submit"],input[type="reset"] {
    cursor: pointer;
}

input {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none!important;
    border-radius: 0;
}

button {
    cursor: pointer;
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
}

li {
    list-style: none;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
    background: #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: 0px;
    z-index: 555;
    width: 100%;
    padding-bottom: 15px;
    display: none;
}

.wrap {
    width: 1440px;
    margin: auto;
    max-width: 100%;
}
.head_logo.type2{
    padding-top:70px;
}
.head_logo {
    /* padding-left:120px;*/
    padding-top: 70px;
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 666;
}

.head_logo,.current .head_logo.type2 {
    padding-top: 15px;
    /* background: #000; */
    padding-bottom: 15px;
}

.head_logo a {
    margin-left: 120px;
}

.head_logo.type2 img {
    height: 51px;
}

.head_logo img.type2 {
    height: 64px;
}

.head_logo img,.current .type2.head_logo img {
    height: 24px;
}

.head .wrap .right {
    float: right;
    padding-top: 15px;
    padding-right: 39px;
}

.head .wrap .right img {
    height: 24px;
}

.cbanner {
    position: relative;
    background: url(../images/bg2@2x.jpg) no-repeat center center;
    background-size: cover;
    height: 625px;
}

.cbanner .center {
    position: absolute;
    top: 47%;
    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%);
}

.cbanner .center img {
    width: 900px;
}

.cbanner .bottom {
    position: absolute;
    bottom: 0;
    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: 21px;
    width: 1107px;
}

.menuList {
    background: rgb(255 255 255 / 5%);
    border-radius: 4px;
    max-width: 98%;
    padding: 12px 26px;
    padding-right: 40px;
}

.menuList .list {
}

.menuList .list .swiper-container {
}

.menuList .list .swiper-container .swiper-wrapper {
}

.menuList .list .swiper-container .swiper-wrapper .swiper-slide {
}

.menuList .list .swiper-container .swiper-wrapper .swiper-slide a {
    display: block;
    text-align: center;
    height: 87px;
}

.menuList .list .swiper-container .swiper-wrapper .swiper-slide a .icon {
    display: block;
    padding-top: 14px;
    height: 42px;
}

.menuList .list .swiper-container .swiper-wrapper .swiper-slide a .icon img {
    height: 24px;
}

.menuList .list .swiper-container .swiper-wrapper .swiper-slide a .title {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 16px;
    display: block;
    color: #FFFFFF;
    line-height: 1.4;
}

.menuList .list .swiper-button-prev{
    width: 24px;
    height: 24px;
    background: url(../images/left.png) no-repeat center center;
    background-size: 100%;
    margin: 0;
    top: 50%;
    margin-top: -12px;
    left: -12px;
}
.menuList .list .swiper-button-next {
    width: 24px;
    height: 24px;
    background: url(../images/right.png) no-repeat center center;
    background-size: 100%;
    margin: 0;
    top: 50%;
    margin-top: -12px;
    right: -12px;
}

.menuList .list .swiper-container .swiper-wrapper .swiper-slide a.current,.menuList .list .swiper-container .swiper-wrapper .swiper-slide a:hover {
    background: linear-gradient( 180deg,#038DCF 0%,#62CCFF 100%);
    border-radius: 4px;
    border: 1px solid rgb(255 255 255 / 85%);
}

.commandList {
    padding-bottom: 9px;
    position: relative;
    overflow-x: hidden;
}

.commandList .item {
    padding-left: 155px;
    padding-right: 213px;
    display: flex;
    margin-bottom: 40px;
    justify-content: space-between;
}

.commandList .item .s1 {
    position: relative;
}

.commandList .item .s1 .icon {
    position: absolute;
    left: -34px;
    top: 0;
}

.commandList .item .s1 .icon img {
    width: 24px;
}

.commandList .item .s1 .txt {
}

.commandList .item .s1 .txt .title {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 28px;
    color: #FFFFFF;
    width: 156px;
    line-height: 1.5;
}
.commandList .item.expanded .s1 .txt .more{
    
background: url(../images/shouq.png) no-repeat 90% center #038DCF;
    
background-size: 8px;
}
.commandList .item .s1 .txt .more{
    
/* width: 96px; */
    
border-radius: 4px;
    
display: block;
    
text-align: center;
    
line-height: 32px;
    
font-family: PingFangSC, PingFang SC;
    
font-weight: 400;
    
font-size: 14px;
    
color: #FFFFFF;
    
margin-top: 16px;
    
text-align: left;
    
background: url(../images/zkqb.png) no-repeat 90% center #038DCF;
    
background-size: 8px;
    
padding-left: 15px;
    
display: inline-block;
    
padding-right: 25px;
}
.commandList .item .s1 .txt .dec {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 24px;
    text-align: left;
    padding-top: 4px;
}

.commandList .item .s1 .txt .dec p {
    opacity: .5;
}

.commandList .item .s2:after {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 1px;
    background: #fff;
    opacity: .3;
    height: calc(100% - 16px);
    content: '';
}

.commandList .item .s2 {
    width: 900px;
    position: relative;
    padding-left: 22px;
}

.commandList .item .s2 a:nth-child(5n) {
    margin-right: 0px;
}

.commandList .item .s2 a {
    height: 108px;
    background: #000000;
    border-radius: 4px;
    border: 1px solid #333333;
    margin-right: 17px;
    float: left;
    width: calc((100% - 68px)/5);
    position: relative;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 3px;
}

.commandList .item .s2 a:hover,.commandList .item .s2 a.current {
    background: url(../images/cur.png) no-repeat center center;
    background-size: 100% 100%;
    border-color: transparent;
}

.commandList .item .s2 a> 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: 90%;
    max-height: 90%;
    object-fit: contain;
}

.footer {
    height: 40px;
    text-align: center;
    position: relative;
    background: rgb(255 255 255 / 5%);
}

.footer .wrap {
}

.footer .wrap .logo {
    float: left;
    margin-left: 120px;
    float: none;
    margin: 0;
}

.footer .wrap .logo img {
    height: 16px;
    margin-top: 12px;
}
.footer .wrap .center a{
    color: inherit;
}
.footer .wrap .center {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    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%);
    opacity: .2;
    line-height: 1.5;
    display: none;
}

.sideMenu {
}

.sideMenu a {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 28px;
    margin-bottom: 24px;
    display: block;
    position: relative;
    white-space: nowrap;
}

.sideMenu a:after {
    content: "";
    width: 27px;
    height: 100%;
    position: absolute;
    left: -40px;
    background: url(../images/current.png) no-repeat center center;
    background-size: 100%;
    opacity: 0;
}

.sideMenu a.current:after {
    opacity: 1;
}

.sideMenu a.current {
    color: #038DCF;
}

.posab {
    right: 60px;
    top: 0px;
    position: absolute;
    z-index: 5;
}

.commandList .wrap {
    position: relative;
}

.current .head {
    background: rgba(0,0,0,0.4);
}

.current .head .wrap .logo {
    padding-top: 15px;
}

.sideMenu.currentFixed {
    padding-top: 85px;
}

.head_logo *,.head_logo,.sideMenu,.commandList .item,.commandList .item *,.head,.head * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.bottomFixed {
    position: fixed;
    z-index: 555;
    right: 80px;
    bottom: 90px;
    width: 40px;
}

.bottomFixed .ewm {
    position: relative;
}

.bottomFixed .ewm .h2tit:before {
    background: url(../images/ewm2@2x.png) no-repeat center center;
    background-size: 14px;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    content: "";
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.bottomFixed .ewm:hover .h2tit:before {
    background: url(../images/ewm1@2x.png) no-repeat center center;
    background-size: 14px;
}

.bottomFixed .ewm:hover .h2tit:after {
    opacity: 1;
}

.bottomFixed .ewm .h2tit:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    left: 0px;
    top: 0px;
    background: linear-gradient( 180deg,#038DCF 0%,#62CCFF 100%);
    -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: 0;
}

.bottomFixed .ewm .h2tit img {
}

.bottomFixed .ewm .h2tit {
    overflow: hidden;
    position: relative;
    border-radius: 4px 4px 0px 0px;
    background: #fff;
    height: 40px;
    background-size: 18px;
    cursor: pointer;
}

.bottomFixed .ewm .slide {
    position: absolute;
    width: 128px;
    height: 147px;
    background: url(../images/kuang2@2x.png) no-repeat center center;
    background-size: 100%;
    right: 49px;
    top: -54px;
    text-align: center;
    padding-top: 10px;
    padding-right: 8px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    top: -44px;
}

.bottomFixed .ewm:hover .slide {
    top: -54px;
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.bottomFixed .ewm .slide img {
    width: 90px;
}

.bottomFixed .ewm .slide .title {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 16px;
    padding-top: 5px;
}

.bottomFixed .btn_top {
    position: relative;
    height: 40px;
    background: #fff;
    border-radius: 0px 0px 4px 4px;
    display: block;
    overflow: hidden;
    border-top: 1px solid #BBBBBB;
}

.bottomFixed .btn_top:hover:after {
    opacity: 1;
}

.bottomFixed .btn_top:after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    left: 0px;
    top: 0px;
    background: linear-gradient( 180deg,#038DCF 0%,#62CCFF 100%);
    -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: 0;
}

.bottomFixed .btn_top:before {
    background: url(../images/btntop.png) no-repeat center center;
    background-size: 14px;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    content: "";
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.bottomFixed .btn_top:hover:before {
    background: url(../images/zhiding1@2x.png) no-repeat center center;
    background-size: 14px;
}

.detailContent {
    padding-top: 70px;
    background: url(../images/bg3@2x.jpg) no-repeat center 0;
    background-size: 100%;
}

.detailContent .wrap {
}

.detailContent .wrap .return {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
    display: inline-block;
    margin-left: 117px;
    padding-left: 24px;
    background: url(../images/fanhui@2x.png) no-repeat left center;
    background-size: auto 100%;
    margin-bottom: 42px;
}

.detailContent .wrap .detail {
    width: 1046px;
    max-width: 98%;
    margin: auto;
    margin-bottom: 48px;
}

.detailContent .wrap .detail .block1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detailContent .wrap .detail .block1 .left {
}

.detailContent .wrap .detail .block1 .left .title {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 40px;
    color: #FFFFFF;
    line-height: 56px;
    margin-bottom: 4px;
}

.detailContent .wrap .detail .block1 .left .tag {
    font-size: 0;
    padding-bottom: 6px;
}

.detailContent .wrap .detail .block1 .left .tag a:after{
content: "";
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
background: linear-gradient(149deg, rgba(191, 218, 255, 1), rgba(50, 132, 227, 1));
}

.detailContent .wrap .detail .block1 .left .tag a:before{content: "";position: absolute;left: 1px;top: 1px;right: 1px;bottom: 1px;z-index: 2;background: #000;border-radius: 3px;}
.detailContent .wrap .detail .block1 .left .tag a span{
    position: relative;
    z-index: 5;
}
.detailContent .wrap .detail .block1 .left .tag a {
    box-shadow: 4px 3px 10px 0px rgba(31,174,255,0.49);
    border-radius: 4px;
    line-height: 25px;
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #93DAFF;
    padding: 0px 8px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.detailContent .wrap .detail .block1 .left .dec {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.detailContent .wrap .detail .block1 .right {
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.detailContent .wrap .detail .block1 .right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detailContent .wrap .detail .block2 {
    background: #111111;
    border-radius: 24px;
    margin-top: 36px;
    padding: 40px;
    padding-bottom: 0;
}

.detailContent .wrap .detail .block2 .item {
    padding-bottom: 50px;
}

.detailContent .wrap .detail .block2 .item .title:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: linear-gradient( 322deg,#462D91 0%,#038DCF 100%);
    top: 15px;
    border-radius: 300px;
    left: 0px;
    top: 15px;
}

.detailContent .wrap .detail .block2 .item .title {
    font-family: PingFangSC,PingFang SC;
    font-weight: 600;
    font-size: 32px;
    color: #FFFFFF;
    position: relative;
    line-height: 45px;
    padding-left: 40px;
}

.detailContent .wrap .detail .block2 .item .dec {
    padding-left: 40px;
    padding-top: 16px;
}

.detailContent .wrap .detail .block2 .item .dec p:last-child {
    padding: 0px;
}
.detailContent .wrap .detail .block2 .item .dec {
       font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #999999;
    line-height: 32px;
    text-align: justify; 
}
.detailContent .wrap .detail .block2 .item .dec p {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #999999;
    line-height: 32px;
    text-align: justify;
    padding-bottom: 31px;
}

.detailContent .wrap .detail .block2 .item .dec .flexleftright {
    display: flex;
    /* align-items: center; */
}

.detailContent .wrap .detail .block2 .item .dec .flexleftright .left {
}

.detailContent .wrap .detail .block2 .item .dec .flexleftright .left img {
    width: 286px;
}

.detailContent .wrap .detail .block2 .item .dec .flexleftright .right {
    width: 500px;
    margin-left: 62px;
    padding-top: 4%;
}

.detailContent .wrap .detail .block2 .item .dec .flexleftright .right .model:after {
    content: "";
    position: absolute;
    width: 144px;
    height: 11px;
    background: url(../images/yyongc2@2x.png) no-repeat center center;
    background-size: 100%;
    left: -160px;
    top: 10px;
}

.detailContent .wrap .detail .block2 .item .dec .flexleftright .right .model.type2:after{
    
    background: url(../images/2.png) no-repeat center center;
    background-size: 100%;
}
.detailContent .wrap .detail .block2 .item .dec .flexleftright .right .model.type3:after{
    
    background: url(../images/3.png) no-repeat center center;
    background-size: 100%;
}

.detailContent .wrap .detail .block2 .item .dec .flexleftright .right .model:last-child {
    padding: 0px;
}
.detailContent .wrap .detail .block2 .item .dec .flexleftright .right .model:after{
    content:'';
    display:table;
    clear:both;
}
.detailContent .wrap .detail .block2 .item .dec .flexleftright .right .model {
    font-size: 0;
    position: relative;
    padding-bottom: 16px;
    height: 33.333%;
    clear: both;
}

.detailContent .wrap .detail .block2 .item .dec .flexleftright .right .model span {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #30FFD4;
    background: rgb(48 255 212 / 20%);
    border-radius: 16px;
    padding: 0px 10px;
    line-height: 32px;
    display: inline-block;
    margin-right: 16px;
    margin-bottom: 10px;
    float: left;
}

.detailContent .wrap .detail .block2 .item .dec .flexleftright .right .model.type3 span {
    color: #0176FE;
    background: rgb(1 118 254 / 20%);
}
.detailContent .wrap .detail .block2 .item .dec .flexleftright .right .model.type2 span {
    background: rgb(0 230 255 / 20%);
    color: #01E6FF;
}

.commandList .item .s2 a:hover .slide {
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.commandList .item .s2 a .slide {
    position: absolute;
    /* width: 100%; */
    /* height: 100%; */
    left: 2px;
    top: 2px;
    background: #fff;
    text-align: center;
    opacity: 0;
    right: 2px;
    bottom: 2px;
    border-radius: 2px;
}
.commandList .item .s2 a .slide img{
    
height: 76px;
    
width: auto;
}
.commandList .item .s2 a .slide .tit{
    
font-family: PingFangSC, PingFang SC;
    
font-weight: 600;
    
font-size: 16px;
    
color: #333333;
    
line-height: 22px;
    
display: block;
    
margin-top: -6px;
}

.index {
    height: 100vh;
    position: relative;
}

.index .poster {
    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%);
}

.index .poster video,
.index .poster img {
    width: calc(1250/1440*100vw);
}

.index .center1 {
    position: absolute;
    left: 46.5%;
    top: 40%;
    z-index: 2;
}

.index .center1 a {
    display: block;
    /* width:calc(232/1440*100vw); */
    /* height:calc(60/1440*100vw); */
    /* background: url(../images/lines.png) no-repeat center center; */
    /* background-size: 100%; */
    display: flex;
    align-items: center;
}
.index .center1 a .right{
        width: calc(232 / 1440* 100vw);
        height: calc(60 / 1440* 100vw);
        background: url(../images/lines.png) no-repeat center center;
        background-size: 100%;
        display: flex;
        align-items: center;
        padding-left: calc(36/ 1440* 100vw);
        margin-left: calc(-40 / 1440* 100vw);
}
.index .center1 a .im1 {
    width: calc(102/1440*100vw);
    /* margin-left: calc(-67/1440*100vw); */
    position: relative;
    z-index: 3;
}

.index .center1 a .im2 {
    width: calc(134/1440*100vw);
    margin-left: calc(1/1440*100vw);
    margin-right: calc(10/1440*100vw);
}

.index .center1 a .arr {
    display: flex;
    align-items: center;
    width: calc(43/1440*100vw);
    height: calc(43/1440*100vw);
    position: relative;
    background: url(../images/anniu@2x.png) no-repeat center center;
    background-size: 100%;
    text-align: center;
    padding-left: calc(7/1440*100vw);
}

.index .center1 a .arr img {
    width: calc(12/1440*100vw);
}

.index .center1 a .arr .arr1 {
}

.index .center1 a .arr .arr2 {
    margin-left: calc(-4/1440*100vw);
}

.index .center1 a .arr .arr3 {
    margin-left: calc(-4/1440*100vw);
}

.index .bottom {
    text-align: center;
    z-index: 3;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: calc(0/1440*100vw);
}

.index .bottom .arrs {
}

.index .bottom .arrs a {
    display: inline-block;
    background: url(../images/anniu2@2x.png) no-repeat center center;
    background-size: auto 100%;
    height: calc(49/1440*100vw);
    width: calc(262/1440*100vw);
    margin: auto;
    text-align: center;
    font-family: PingFangSC,PingFang SC;
    font-weight: 600;
    font-size: calc(22/1440*100vw);
    color: #1F3E85;
    line-height: calc(49/1440*100vw);
    display: flex;
    margin: auto;
    align-items: center;
    padding-left: calc(99/1440*100vw);
}

.index .bottom .arrs a .arr img {
    width: calc(10/1440*100vw);
}

.index .bottom .arrs a .arr {
    margin-left: calc(3/1440*100vw);
}

.index .bottom .arrs a .arr .arr1 {
    opacity: .5;
}

.index .bottom .arrs a .arr .arr2 {
    opacity: .75;
    margin-left: calc(-7/1440*100vw);
}

.index .bottom .arrs a .arr .arr3 {
    margin-left: calc(-7/1440*100vw);
}

@keyframes opacity {
    0% {
        opacity: .3;
    }

    100% {
        opacity: 1;
    }
}

.index .bottom .arrs a .arr img,.index .center1 a .arr img {
    animation: opacity .8s infinite;
    -moz-animation: opacity .8s infinite;
    -webkit-animation: opacity .8s infinite;
    -o-animation: opacity .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);
}

.loadingLine {
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    background: url(../images/bg@2x.jpg) no-repeat center center #000;
    background-size: cover;
    z-index: 55;
    text-align: center;
}

.loadingLine .center {
    position: absolute;
    top: 57%;
    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%);
    width: 100%;
}

.loadingLine .center .icon {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.loadingLine .center .icon img {
    height: 64px;
    z-index: 5;
    position: relative;
}

.gradient-text {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(to right,red,orange,yellow,green,blue,indigo,violet,red);
    /* 添加红色到结尾 */
    background-size: 200% 100%;
    /* 背景宽度扩大为 200% */
    -webkit-background-clip: text;
    /* 将背景裁剪为文字形状 */
    background-clip: text;
    /* 标准属性 */
    color: transparent;
    /* 文字颜色设置为透明，以显示背景 */
    animation: gradientAnimation 5s linear infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
        /* 从左开始 */
    }

    100% {
        background-position: 100% 50%;
        /* 移动到右端 */
    }
}

.loadingLine .center .line {
    width: 400px;
    height: 4px;
    background: #222222;
    border-radius: 2px;
    margin: auto;
    margin-top: 109px;
    position: relative;
    max-width: 90%;
    margin-bottom: 67px;
}

.loadingLine .center .line i {
    background: linear-gradient( 270deg,#038DCF 0%,#62CCFF 100%);
    border-radius: 2px;
    display: block;
    width: 0;
    height: 100%;
    position: relative;
}

.loadingLine .center .line i em {
    position: absolute;
    width: 38px;
    height: 25px;
    font-style: normal;
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    right: -19px;
    top: -36px;
    background: url(../images/k.png) no-repeat center center;
    background-size: 100%;
    padding-top: 4px;
}

.loadingLine .center .send {
    width: 224px;
    height: 60px;
    border: none;
    background: url(../images/enter.png) no-repeat center center;
    background-size: 100%;
    -o-transform: translate(0%,20px);
    -webkit-transform: translate(0%,20px);
    -moz-transform: translate(0%,20px);
    -ms-transform: translate(0%,20px);
    transform: translate(0%,20px);
    visibility: hidden;
    opacity: 0;
}

.loadingLine .center .send.current {
    -webkit-transition: all 0.7s;
    -o-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -ms-transition: all 0.7s;
    transition: all 0.7s;
    transition-timing-function: cubic-bezier(0.49,-0.4,0,1.55);
    -o-transform: translate(0%,0%);
    -webkit-transform: translate(0%,0%);
    -moz-transform: translate(0%,0%);
    -ms-transform: translate(0%,0%);
    transform: translate(0%,0%);
    opacity: 1;
    z-index: 1;
    visibility: visible;
}



.detailContent .wrap .detail .block2 .item .dec .flexleftright .right.comb-3{
    padding-top: 22%;
}
.detailContent .wrap .detail .block2 .item .dec .flexleftright .right.comb-2{
    padding-top: 16%;
}
.detailContent .wrap .detail .block2 .item .dec .flexleftright .right.comb-23{
    padding-top: 16%;
}
.detailContent .wrap .detail .block2 .item .dec .flexleftright .right.comb-13 .type1{
margin-bottom: 16%;
}



.commandList .item .s2 a:nth-child(n+16){
    display: none;
}
.current .head_logo{
    
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background-color: rgba(0, 0, 0, 0.35);

}

.commandList   .item.first .s2 a:nth-child(n+16){
    display: block !important;
}