.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 666;
    left: 0px;
    /* background: #fff; */
}

.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: #12337D;
}

.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;
    font-size: 14px;
}

.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;
    line-height: 46px;
}

.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;
    font-size: 16px;
    /* display:block;*/
}

.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;
    background: url(../images/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 17px;
}

.mobile-inner-nav li .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    text-indent: 60px;
    font-size: 15px;
    color: #fff;
    background: url(../images/search2.png) no-repeat 30px center;
    background-size: 20px;
}

.mobile-inner-nav li:last-child {
    border-bottom: none;
}

.mobile-inner-nav li form {
    display: block;
    width: 100%;
    height: 100%;
}

@charset "utf-8";@charset "UTF-8";.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,40px,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

* {
    /* font-family: Century Gothic; */
}

body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,th,td,p,blockquote,pre,form,fieldset,legend,input,button,textarea,hr,span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: calc(14/1920*100vw);
}

html,body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
    font-family: "Microsoft YaHei" ! important;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

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;
    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;
    font-size: calc(14/1920*100vw);
}

@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%,10px);
        -webkit-transform: translate(0%,10px);
        -moz-transform: translate(0%,10px);
        -ms-transform: translate(0%,10px);
        transform: translate(0%,10px);
    }
}

@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;
    border-bottom: 1px solid rgb(255 255 255 / 40%);
}

.head .wrap {
    align-items: center;
    height: calc(100/1920*100vw);
    justify-content: space-between;
}

.wrap {
    margin: 0px calc(160/1920*100vw);
    position: relative;
}

.head .wrap .logo {
    position: relative;
    overflow: hidden;
    float: left;
    margin-top: calc(32/1920*100vw);
}

.head .wrap .logo a {
}

.head .wrap .logo img {
    height: calc(48/1920*100vw);
}

.head .wrap .logo .default {
}

.head .wrap .logo .current {
    position: absolute;
    left: 0;
    top: 0px;
    opacity: 0;
}

.head .wrap .right {
    display: flex;
    align-items: center;
    float: right;
    height: 100%;
}

.head .wrap .right .nav {
    background: none !important;
}

.head .wrap .right .nav ul {
}

.head .wrap .right .nav ul li:hover dl {
    top: calc(58/1920*100vw);
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.head .wrap .right .nav ul li dl {
    position: absolute;
    width: calc(120/1920*100vw);
    background: #fff;
    left: 0;
    text-align: center;
    left: calc(-30/1920*100vw);
    padding: calc(10/1920*100vw) 0;
    border-radius: calc(3/1920*100vw);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    top: calc(62/1920*100vw);
    -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);
}

.head .wrap .right .lan dl dd a:hover,.head .wrap .right .nav ul li dd a:hover {
    color: #fff;
    background: #12337D;
}

.head .wrap .right .nav ul li dd a {
    display: block;
    line-height: calc(30/1920*100vw);
    color: #000;
}

.head .wrap .right .nav ul li .h2tit a:before {
    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%);
    content: "";
    bottom: calc(-21/1920*100vw);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    width: calc(9/1920*100vw);
    height: calc(9/1920*100vw);
    border-radius: 50%;
    border: 1px solid #14357E;
    width: 0px;
    height: 0px;
    opacity: 0;
}

.head .wrap .right .nav ul li .h2tit a:after {
    position: absolute;
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    content: "";
    bottom: calc(-42/1920*100vw);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    width: 1px;
    height: calc(0/1920*100vw);
    background: #14357E
}

.head .wrap .right .nav ul li:hover .h2tit a:before,
.head .wrap .right .nav ul li .h2tit a.active:before {
    width: calc(9/1920*100vw);
    height: calc(9/1920*100vw);
    opacity: 1;
    transition-delay: .2s;
}

.head .wrap .right .nav ul li .h2tit a.active:after,
.head .wrap .right .nav ul li:hover .h2tit a:after {
    height: calc(22/1920*100vw);
}

.head .wrap .right .nav ul li .h2tit a.active,
.head .wrap .right .nav ul li:hover .h2tit a {
    color: #14357E !important;
}

.head .wrap .right .nav ul li {
    float: left;
    position: relative;
    margin-left: calc(55/1920*100vw);
}

.head .wrap .right .nav ul li .h2tit {
}

.head .wrap .right .nav ul li .h2tit a {
    /* font-family: SourceHanSansCN; */
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #FFFFFF;
    display: block;
}

.head .wrap .right .tel {
    width: calc(32/1920*100vw);
    height: calc(32/1920*100vw);
    margin-left: calc(94/1920*100vw);
    background: url(../images/tel.png) no-repeat center center;
    background-size: 100%;
}

.head .wrap .right .lan {
    margin-left: calc(49/1920*100vw);
    height: calc(32/1920*100vw);
    position: relative;
    background: url(../images/down.png) no-repeat right bottom;
    padding-right: calc(22/1920*100vw);
    background-size: calc(13/1920*100vw);
}

.head .wrap .right .lan .h2tit {
    width: calc(32/1920*100vw);
    height: 100%;
    cursor: pointer;
    background: url(../images/lan.png) no-repeat right bottom;
    background-size: 100%;
}

.head .wrap .right .lan:hover dl {
    visibility: visible;
    opacity: 1;
    z-index: 5;
    top: calc(41/1920*100vw);
}

.head .wrap .right .lan dl {
    position: absolute;
    width: calc(100/1920*100vw);
    background: #fff;
    left: calc(-30/1920*100vw);
    top: calc(41/1920*100vw);
    border-radius: calc(5/1920*100vw);
    padding: calc(5/1920*100vw) 0px;
    top: calc(51/1920*100vw);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    -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);
}

.head .wrap .right .lan dl dd {
}

.head .wrap .right .lan dl dd a {
    display: block;
    color: #fff;
    line-height: calc(35/1920*100vw);
    color: #000;
    text-align: center;
}

.head .wrap .right .menus {
    width: calc(37/1920*100vw);
    height: calc(25/1920*100vw);
    margin-left: calc(43/1920*100vw);
    background: url(../images/menu.png) no-repeat center center;
    background-size: 100%;
    cursor: pointer;
}

.slideMenu.current {
    left: 0px;
}

.slideMenu .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.slideMenu .close {
    position: absolute;
    cursor: pointer;
    right: calc(77/1920*100vw);
    top: calc(77/1920*100vw);
    width: calc(27/1920*100vw);
    height: calc(27/1920*100vw);
    background: url(../images/close.png) no-repeat center center;
    background-size: 100%;
}

.slideMenu {
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: #ccc;
    padding: 0px calc(120/1920*100vw);
    -webkit-backdrop-filter: saturate(180%) blur(calc(20/1920*100vw));
    backdrop-filter: saturate(180%) blur(calc(20/1920*100vw));
    background-color: rgb(255 255 255 / 75%);
    display: none;
}

.slideMenu .logo {
}

.slideMenu .logo img {
    width: calc(238/1920*100vw);
}

.slideMenu .nav ul li:hover dl {
    top: 12px;
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.slideMenu .nav ul {
    position: relative;
}

.slideMenu .nav ul li dl {
    position: absolute;
    right: calc(76/1920*100vw);
    width: calc(120/1920*100vw);
    background: #fff;
    border-radius: calc(4/1920*100vw);
    -webkit-box-shadow: 0px calc(12/1920*100vw) calc(24/1920*100vw) 0px rgba(0,0,0,0.09);
    -moz-box-shadow: 0px calc(12/1920*100vw) calc(24/1920*100vw) 0px rgba(0,0,0,0.09);
    -o-box-shadow: 0px calc(12/1920*100vw) calc(24/1920*100vw) 0px rgba(0,0,0,0.09);
    -ms-box-shadow: 0px calc(12/1920*100vw) calc(24/1920*100vw) 0px rgba(0,0,0,0.09);
    box-shadow: 0px calc(12/1920*100vw) calc(24/1920*100vw) 0px rgba(0,0,0,0.09);
    top: calc(22/1920*100vw);
    -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;
}

.slideMenu .nav ul li:hover .h2tit a,.slideMenu .nav ul li dd a:hover {
    color: #14357E
}

.slideMenu .nav ul li dd a {
    display: block;
    text-align: center;
    line-height: calc(40/1920*100vw);
    color: #000;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}
.slideMenu .nav ul li {
    position:relative;
}
.slideMenu .nav ul li .h2tit a {
    display: block;
    line-height: calc(62/1920*100vw);
    font-size: calc(15/1920*100vw);
    color: #000000;
}

.titlemodel {
}

.titlemodel .en {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: calc(60/1920*100vw);
    color: #FFFFFF;
    opacity: 0.14;
    text-transform: uppercase;
}

.titlemodel .cn {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: calc(36/1920*100vw);
    color: #FFFFFF;
    position: relative;
    margin-top: calc(-40/1920*100vw);
}

.footer {
    background: #EEEEEE;
    height: auto !important;
}

.footer .block1 {
}

.footer .block1 .wrap {
}

.footer .block1 .wrap .title {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: calc(36/1920*100vw);
    color: #333333;
    padding-bottom: calc(42/1920*100vw);
    padding-top: calc(57/1920*100vw);
}

.footer .block1 .wrap .list {
    position: relative;
    padding-bottom: calc(50/1920*100vw);
    border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.footer .block1 .wrap .list .swiper-container {
}

.footer .block1 .wrap .list .swiper-wrapper {
}

.footer .block1 .wrap .list .swiper-slide {
}

.footer .block1 .wrap .list .swiper-slide .imgbox {
}

.footer .block1 .wrap .list .swiper-slide .imgbox img {
    width: 100%;
}

.footer .block1 .wrap .list .swiper-button-next {
    width: calc(37/1920*100vw);
    height: calc(37/1920*100vw);
    background: url(../images/right2.png) no-repeat center center;
    border-radius: 50%;
    background-size: 100%;
    left: auto;
    margin: 0;
    right: 0;
    top: calc(-71/1920*100vw);
}

.footer .block1 .wrap .list .swiper-button-prev {
    width: calc(37/1920*100vw);
    height: calc(37/1920*100vw);
    background: url(../images/left2.png) no-repeat center center;
    border-radius: 50%;
    background-size: 100%;
    left: auto;
    margin: 0;
    right: calc(71/1920*100vw);
    top: calc(-71/1920*100vw);
}

.footer .block1 .wrap .content {
    display: flex;
    justify-content: space-between;
}

.footer .block1 .wrap .content .left {
}

.footer .block1 .wrap .content .left .title2 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #333333;
    padding-top: calc(64/1920*100vw);
}

.footer .block1 .wrap .content .left .inputwords {
    width: calc(397/1920*100vw);
    height: calc(48/1920*100vw);
    background: #FFFFFF;
    border-radius: calc(6/1920*100vw);
    margin-top: calc(24/1920*100vw);
    position: relative;
    overflow: hidden;
}

.footer .block1 .wrap .content .left .inputwords .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    padding: 0px calc(14/1920*100vw);
    padding-right: calc(134/1920*100vw);
}

.footer .block1 .wrap .content .left .inputwords .btn {
    width: calc(120/1920*100vw);
    height: calc(48/1920*100vw);
    background: url(../images/search.png) no-repeat center center #0C2D63;
    border-radius: calc(6/1920*100vw);
    position: absolute;
    right: 0;
    top: 0px;
    background-size: calc(26/1920*100vw);
}

.footer .block1 .wrap .content .left .nav {
    display: flex;
}

.footer .block1 .wrap .content .left .nav .item:last-child {
    margin-right: 0px;
}

.footer .block1 .wrap .content .left .nav .item {
    margin-right: calc(150/1920*100vw);
}

.footer .block1 .wrap .content .left .nav .item .h2tit {
    /*font-family: SourceHanSansCN;*/
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #333333;
    padding-top: calc(57/1920*100vw);
    padding-bottom: calc(26/1920*100vw);
}

.footer .block1 .wrap .content .left .nav .item dl {
}

.footer .block1 .wrap .content .left .nav .item dl dd {
}

.footer .block1 .wrap .content .left .nav .item dl dd a {
    /*font-family: SourceHanSansCN;*/
    font-weight: 400;
    font-size: calc(14/1920*100vw);
    color: #888888;
    line-height: calc(32/1920*100vw);
    display: block;
}

.footer .block1 .wrap .content .right {padding-top: calc(64 / 1920 * 100vw);}

.footer .block1 .wrap .content .right .title2 {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #333333;
    margin-bottom: calc(65/1920*100vw);
}

.footer .block1 .wrap .content .right .dec {
}

.footer .block1 .wrap .content .right .dec p {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #333333;
    line-height: calc(48/1920*100vw);
    position: relative;
}

.footer .block1 .wrap .content .right .dec p img {
    width: calc(32/1920*100vw);
    height: calc(32/1920*100vw);
    object-fit: contain;
    margin-right: calc(12/1920*100vw);
}

.footer .block1 .wrap .content .right .dec p span {
}

.footer .block1 .wrap .content .right .ewm {
    display: flex;
    padding-top: calc(18/1920*100vw);
}

.footer .block1 .wrap .content .right .ewm .item:last-child {
    margin-right: 0px;
}

.footer .block1 .wrap .content .right .ewm .item {
    margin-right: calc(47/1920*100vw);
    text-align: center;
}

.footer .block1 .wrap .content .right .ewm .item img {
    width: calc(139/1920*100vw);
}

.footer .block1 .wrap .content .right .ewm .item .tit {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #888888;
    padding-top: calc(16/1920*100vw);
}

.footer .block2 {
    margin-top: calc(36/1920*100vw);
    background: #DDDDDD;
}

.footer .block2 .wrap {
    justify-content: space-between;
    align-items: center;
}

.footer .block2 .wrap .title {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #888888;
    line-height: calc(80/1920*100vw);
    float: left;
}
.footer .block2 .wrap .title a {
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #888888;
    line-height: calc(80/1920*100vw);  
}

.footer .block2 .wrap .right {
    display: flex;
    float: right;
    padding-top: calc(24/1920*100vw);
}

.footer .block2 .wrap .right a:hover .slides {
    bottom: calc(39/1920*100vw);
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.footer .block2 .wrap .right a .slides {
    position: absolute;
    bottom: calc(39/1920*100vw);
    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%);
    padding: calc(9/1920*100vw);
    background: #fff;
    border-radius: calc(5/1920*100vw);
    text-align: center;
    width: calc(120/1920*100vw);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    bottom: calc(49/1920*100vw);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}

.footer .block2 .wrap .right a .slides img {
    width: 100%;
    height: calc(102/1920*100vw);
    object-fit: cover;
}

.footer .block2 .wrap .right a {
    margin-left: calc(34/1920*100vw);
    position: relative;
}

.footer .block2 .wrap .right a img {
    width: calc(48/1920*100vw);
    height: calc(29/1920*100vw);
    object-fit: contain;
}

.menuSide {
    position: fixed;
    z-index: 555;
    top: 50%;
    right: calc(75/1920*100vw);
    transform: translate(0%,-50%);
}

.menuSide a:after {
    content: "";
    position: absolute;
    background: #D5D5D5;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    top: 50%;
    right: 0;
    transform: translate(0%,-50%);
    transition: all 0.2s;
}

.menuSide a:before {
    content: "";
    position: absolute;
    width: calc(10/1920*100vw);
    height: calc(1/1920*100vw);
    background: #fff;
    right: calc(11/1920*100vw);
    top: calc(3/1920*100vw);
    width: 0;
    transition: all 0.2s;
}

.menuSide a.active span {
    right: calc(27/1920*100vw);
    opacity: 1;
}

.menuSide a.active:before {
    width: calc(10/1920*100vw);
    right: calc(15/1920*100vw);
}

.menuSide a.active:after {
    width: calc(12/1920*100vw);
    height: calc(12/1920*100vw);
    border-radius: 50%;
    border: calc(2/1920*100vw) solid #fff;
    background: none;
    right: calc(-4/1920*100vw);
}

.menuSide a {
    display: block;
    position: relative;
    width: calc(8/1920*100vw);
    height: calc(8/1920*100vw);
    margin: calc(15/1920*100vw) 0px;
}

.menuSide a span {
    position: absolute;
    /*font-family: SourceHanSansCN;*/
    font-weight: 400;
    font-size: calc(12/1920*100vw);
    color: #fff;
    white-space: nowrap;
    display: flex;
    right: calc(20/1920*100vw);
    top: calc(-4/1920*100vw);
    opacity: 0;
    transition: all 0.2s;
}

.fp-auto-height .fp-slide,.fp-auto-height .fp-tableCell,.fp-auto-height.fp-section {
    height: auto !important;
}

.section.section5 .wrap .list .swiper-slide a .more:hover {
    background: url(../images/more2.png) no-repeat left center;
    background-size: auto 100%;
    color: #12337D
}

.footer .block1 .wrap .list .swiper-button-prev:hover {
    background: url(../images/left2hover2.png) no-repeat center center;
    background-size: 100%;
}

.footer .block1 .wrap .list .swiper-button-next:hover {
    background: url(../images/right2hover.png) no-repeat center center;
    background-size: 100%;
}

.fp-viewing-page5 .head,.fp-viewing-page6 .head,.fp-viewing-page2 .head {
    border-bottom: 1px solid #EAEAEA;
}

.fp-viewing-page5 .head .wrap .logo .default,.fp-viewing-page6 .head .wrap .logo .default,.fp-viewing-page2 .head .wrap .logo .default {
    opacity: 0;
}

.fp-viewing-page5 .head .wrap .logo .current,.fp-viewing-page6 .head .wrap .logo .current,.fp-viewing-page2 .head .wrap .logo .current {
    opacity: 1;
}

.fp-viewing-page5 .head .wrap .right .nav ul li .h2tit a,.fp-viewing-page6 .head .wrap .right .nav ul li .h2tit a,.fp-viewing-page2 .head .wrap .right .nav ul li .h2tit a {
    color: #333;
}

.fp-viewing-page5 .head .wrap .right .tel,.fp-viewing-page6 .head .wrap .right .tel,.fp-viewing-page2 .head .wrap .right .tel {
    background: url(../images/tel2.png) no-repeat center center;
    background-size: 100%;
}

.fp-viewing-page5 .head .wrap .right .lan,.fp-viewing-page6 .head .wrap .right .lan,.fp-viewing-page2 .head .wrap .right .lan {
    background: url(../images/down2.png) no-repeat right bottom;
    background-size: calc(13/1920*100vw);
}

.fp-viewing-page5 .head .wrap .right .lan .h2tit,.fp-viewing-page6 .head .wrap .right .lan .h2tit,.fp-viewing-page2 .head .wrap .right .lan .h2tit {
    background: url(../images/lan2.png) no-repeat right bottom;
    background-size: 100%;
}

.fp-viewing-page5 .head .wrap .right .menus,.fp-viewing-page6 .head .wrap .right .menus,.fp-viewing-page2 .head .wrap .right .menus {
    background: url(../images/menu2.png) no-repeat center center;
    background-size: 100%;
}

.fp-viewing-page5 .menuSide a.active:after,.fp-viewing-page6 .menuSide a.active:after,.fp-viewing-page2 .menuSide a.active:after {
    border-color: #12337D;
}

.fp-viewing-page5 .menuSide a.active:before,.fp-viewing-page6 .menuSide a.active:before,.fp-viewing-page2 .menuSide a.active:before {
    background: #12337D;
}

.fp-viewing-page5 .menuSide a span,.fp-viewing-page6 .menuSide a span,.fp-viewing-page2 .menuSide a span {
    color: #12337D;
}

.aboutMain .block2 .content1 .left img,.aboutMain .block2 .content2 .item .imgbox img,.mobile-inner-header,.section.section4 .list p,.section.section4 .list p *,.section.section5 .wrap .list .swiper-button-prev,.section.section5 .wrap .list .swiper-button-next,.footer .block1 .wrap .list .swiper-button-next,.footer .block1 .wrap .list .swiper-button-prev,.section.section5 .wrap .list .swiper-slide a *,.footer .block1 .wrap .content *,.section.section4 .list p,.section.section2 .wrap .right .imgbox img,.head,.head *,.section.section3 .wrap .list p .s1 {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.aboutMain .block2 .content1 .left img:hover,.aboutMain .block2 .content2 .item .imgbox img:hover,.section.section2 .wrap .right .imgbox img:hover {
    -webkit-transform: scale(1.05,1.05);
    -o-transform: scale(1.05,1.05);
    -moz-transform: scale(1.05,1.05);
    -ms-transform: scale(1.05,1.05);
    transform: scale(1.05,1.05);
}

.current .mobile-inner-header {
    background: #fff;
}

.fp-viewing-page5.backwhite .head {
    background: #fff;
}

.cbanner {
    height: calc(520/1920*100vw);
    position: relative;
    margin-top: calc(100/1920*100vw);
    overflow: hidden;
}

.cbanner .img {
    height: 100%;
    opacity: 1;
}

.secMenuPosition {
    border-bottom: 1px solid #EAEAEA;
    overflow: hidden;
}

.secMenuPosition .wrap {
}

.secMenuPosition .left {
    float: left;
}

.secMenuPosition .left a.current,.secMenuPosition .left a:hover {
    border-bottom: calc(6/1920*100vw) solid #14357E;
    color: #14357E;
}

.secMenuPosition .left a:after,.secMenuPosition .left a.current:after,.secMenuPosition .left a:hover:after {
}

.secMenuPosition .left a {
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    float: left;
    margin-right: calc(51/1920*100vw);
    color: #000;
    line-height: calc(84/1920*100vw);
    height: calc(84/1920*100vw);
}

.secMenuPosition .right {
    float: right;
    line-height: calc(84/1920*100vw);
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: calc(14/1920*100vw);
    color: #12337D;
    padding-left: calc(10/1920*100vw);
    background: url(../images/position.png) no-repeat left center;
    background-size: calc(13/1920*100vw);
    padding-left: calc(19/1920*100vw);
}

.secMenuPosition .right span {
    color: #888;
}

.secMenuPosition .right a {
    color: #888;
}

@media screen and (max-width: 768px) {
    .wap_nav {
        position:fixed;
        left: 0px;
        top: 0px;
        width: 100%;
        z-index: 7777;
    }

    .wap_nav .logo {
        float: left;
        position: absolute;
        left: 0px;
        top: 0px;
    }

    .wap_nav .logo img.current {
        position: absolute;
        opacity: 0;
        left: 0px;
        top: 0px;
    }

    .wap_nav .logo img {
        height: 24px;
        margin-top: 13px;
        margin-left: 10px;
    }

    .current .wap_nav .logo img {
        opacity: 0;
    }

    .current .wap_nav .logo img.current {
        opacity: 1;
    }

    body {
    }

    .pc {
        display: none;
    }

    .wap {
        display: block;
    }

    .head {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 9999;
        border-bottom: 1px solid rgb(255 255 255 / 40%);
    }

    .head .wrap {
        align-items: center;
        height: 100px;
        justify-content: space-between;
    }

    .wrap {
        margin: 0px calc(40/768*100vw);
        position: relative;
    }

    .head .wrap .logo {
        position: relative;
        overflow: hidden;
        float: left;
        margin-top: calc(32/768*100vw);
    }

    .head .wrap .logo a {
    }

    .head .wrap .logo img {
        height: calc(48/768*100vw);
    }

    .head .wrap .logo .default {
    }

    .head .wrap .logo .current {
        position: absolute;
        left: 0;
        top: 0px;
        opacity: 0;
    }

    .head .wrap .right {
        display: flex;
        align-items: center;
        float: right;
        height: 100%;
    }

    .head .wrap .right .nav {
    }

    .head .wrap .right .nav ul {
    }

    .head .wrap .right .nav ul li {
        float: left;
        position: relative;
        margin-left: calc(55/768*100vw);
    }

    .head .wrap .right .nav ul li .h2tit {
    }

    .head .wrap .right .nav ul li .h2tit a {
        /*font-family: SourceHanSansCN;*/
        font-weight: 400;
        font-size: calc(16/768*100vw);
        color: #FFFFFF;
        display: block;
    }

    .head .wrap .right .tel {
        width: calc(32/768*100vw);
        height: calc(32/768*100vw);
        margin-left: calc(94/768*100vw);
        background: url(../images/tel.png) no-repeat center center;
        background-size: 100%;
    }

    .head .wrap .right .lan {
        margin-left: calc(49/768*100vw);
        height: calc(32/768*100vw);
        position: relative;
        background: url(../images/down.png) no-repeat right calc(22/768*100vw);
        padding-right: calc(22/768*100vw);
        background-size: calc(13/768*100vw);
    }

    .head .wrap .right .lan .h2tit {
        width: calc(32/768*100vw);
        height: 100%;
        cursor: pointer;
        background: url(../images/lan.png) no-repeat right bottom;
        background-size: 100%;
    }

    .head .wrap .right .lan:hover dl {
        visibility: visible;
        opacity: 1;
        z-index: 5;
        top: calc(41/768*100vw);
    }

    .head .wrap .right .lan dl {
        position: absolute;
        width: calc(60/768*100vw);
        background: #fff;
        left: calc(-13/768*100vw);
        top: calc(41/768*100vw);
        border-radius: calc(5/768*100vw);
        padding: calc(5/768*100vw) 0px;
        top: calc(51/768*100vw);
        visibility: hidden;
        opacity: 0;
        z-index: -1;
    }

    .head .wrap .right .lan dl dd {
    }

    .head .wrap .right .lan dl dd a {
        display: block;
        color: #fff;
        line-height: calc(24/768*100vw);
        color: #000;
        text-align: center;
    }

    .head .wrap .right .menu {
        width: calc(37/768*100vw);
        height: calc(25/768*100vw);
        margin-left: calc(43/768*100vw);
        background: url(../images/menu.png) no-repeat center center;
        background-size: 100%;
        cursor: pointer;
    }

    .slideMenu.current {
        left: 0px;
    }

    .slideMenu .close {
        position: absolute;
        cursor: pointer;
        right: calc(77/768*100vw);
        top: calc(77/768*100vw);
        width: calc(27/768*100vw);
        height: calc(27/768*100vw);
        background: url(../images/close.png) no-repeat center center;
        background-size: 100%;
    }

    .slideMenu {
        position: fixed;
        left: 0;
        top: 0px;
        width: 100%;
        height: 100%;
        z-index: 999999;
        background: #ccc;
        padding: 0px calc(120/768*100vw);
        -webkit-backdrop-filter: saturate(180%) blur(calc(20/768*100vw));
        backdrop-filter: saturate(180%) blur(calc(20/768*100vw));
        background-color: rgb(255 255 255 / 75%);
        display: none;
    }

    .slideMenu .logo {
    }

    .slideMenu .logo img {
        width: calc(238/768*100vw);
    }

    .slideMenu .nav ul li {
        position: relative;
    }

    .slideMenu .nav ul li dl {
    }

    .slideMenu .nav ul li dl a {
    }

    .slideMenu .nav ul li .h2tit a {
        display: block;
        line-height: calc(40/768*100vw);
        font-size: calc(15/768*100vw);
        color: #000000;
    }

    .titlemodel {
    }

    .titlemodel .en {
        font-family: Microsoft YaHei;
        font-weight: bold;
        font-size: calc(40/768*100vw);
        color: #FFFFFF;
        opacity: 0.14;
        text-transform: uppercase;
    }

    .titlemodel .cn {
        font-family: Microsoft YaHei;
        font-weight: bold;
        font-size: calc(26/768*100vw);
        color: #FFFFFF;
        position: relative;
        margin-top: calc(-40/768*100vw);
    }

    .footer {
        background: #EEEEEE;
        height: auto !important;
    }

    .footer .block1 {
        padding-top: 10vw;
    }

    .footer .block1 .wrap {
    }

    .footer .block1 .wrap .title {
        font-family: Microsoft YaHei;
        font-weight: bold;
        font-size: calc(36/768*100vw);
        color: #333333;
        padding-bottom: calc(42/768*100vw);
        padding-top: 0;
    }

    .footer .block1 .wrap .list {
        position: relative;
        padding-bottom: calc(50/768*100vw);
        border-bottom: 1px solid rgb(0 0 0 / 10%);
    }

    .footer .block1 .wrap .list .swiper-container {
    }

    .footer .block1 .wrap .list .swiper-wrapper {
    }

    .footer .block1 .wrap .list .swiper-slide {
    }

    .footer .block1 .wrap .list .swiper-slide .imgbox {
    }

    .footer .block1 .wrap .list .swiper-slide .imgbox img {
        width: 100%;
    }

    .footer .block1 .wrap .list .swiper-button-next {
        width: calc(37/768*100vw);
        height: calc(37/768*100vw);
        background: url(../images/right2.png) no-repeat center center;
        border-radius: 50%;
        background-size: 100%;
        left: auto;
        margin: 0;
        right: 0;
        top: calc(-71/768*100vw);
    }

    .footer .block1 .wrap .list .swiper-button-prev {
        width: calc(37/768*100vw);
        height: calc(37/768*100vw);
        background: url(../images/left2.png) no-repeat center center;
        border-radius: 50%;
        background-size: 100%;
        left: auto;
        margin: 0;
        right: calc(71/768*100vw);
        top: calc(-71/768*100vw);
    }

    .footer .block1 .wrap .content {
        display: block;
        justify-content: space-between;
    }

    .footer .block1 .wrap .content .left {
        width: 100%;
        margin-bottom: 8vw;
    }

    .footer .block1 .wrap .content .left .title2 {
        font-family: Microsoft YaHei;
        font-weight: 400;
        font-size: calc(24/768*100vw);
        color: #333333;
        padding-top: calc(64/768*100vw);
    }

    .footer .block1 .wrap .content .left .inputwords {
        width: calc(397/768*100vw);
        height: calc(48/768*100vw);
        background: #FFFFFF;
        border-radius: calc(6/768*100vw);
        margin-top: calc(24/768*100vw);
        position: relative;
        overflow: hidden;
    }

    .footer .block1 .wrap .content .left .inputwords .words {
        display: block;
        width: 100%;
        height: 100%;
        border: none;
        background: none;
        font-family: Microsoft YaHei;
        font-weight: 400;
        font-size: calc(16/768*100vw);
        padding: 0px calc(14/768*100vw);
        padding-right: calc(134/768*100vw);
    }

    .footer .block1 .wrap .content .left .inputwords .btn {
        width: calc(120/768*100vw);
        height: calc(48/768*100vw);
        background: url(../images/search.png) no-repeat center center #0C2D63;
        border-radius: calc(6/768*100vw);
        position: absolute;
        right: 0;
        top: 0px;
        background-size: calc(26/768*100vw);
    }

    .footer .block1 .wrap .content .left .nav {
        display: flex;
    }

    .footer .block1 .wrap .content .left .nav .item:last-child {
        margin-right: 0px;
    }

    .footer .block1 .wrap .content .left .nav .item {
        margin-right: calc(60/768*100vw);
    }

    .footer .block1 .wrap .content .left .nav .item .h2tit {
        /*font-family: SourceHanSansCN;*/
        font-weight: 400;
        font-size: calc(22/768*100vw);
        color: #333333;
        padding-top: calc(57/768*100vw);
        padding-bottom: calc(26/768*100vw);
    }

    .footer .block1 .wrap .content .left .nav .item dl {
    }

    .footer .block1 .wrap .content .left .nav .item dl dd {
    }

    .footer .block1 .wrap .content .left .nav .item dl dd a {
        /*font-family: SourceHanSansCN;*/
        font-weight: 400;
        font-size: calc(16/768*100vw);
        color: #888888;
        line-height: 2.2;
        display: block;
    }

    .footer .block1 .wrap .content .right {
    }

    .footer .block1 .wrap .content .right .title2 {
        font-family: Microsoft YaHei;
        font-weight: 400;
        font-size: calc(24/768*100vw);
        color: #333333;
        margin-bottom: calc(35/768*100vw);
    }

    .footer .block1 .wrap .content .right .dec {
    }

    .footer .block1 .wrap .content .right .dec p {
        font-family: Microsoft YaHei;
        font-weight: 400;
        font-size: calc(18/768*100vw);
        color: #333333;
        line-height: calc(48/768*100vw);
        position: relative;
    }

    .footer .block1 .wrap .content .right .dec p img {
        width: calc(32/768*100vw);
        height: calc(32/768*100vw);
        object-fit: contain;
        margin-right: calc(12/768*100vw);
    }

    .footer .block1 .wrap .content .right .dec p span {
    }

    .footer .block1 .wrap .content .right .ewm {
        display: flex;
        padding-top: calc(18/768*100vw);
    }

    .footer .block1 .wrap .content .right .ewm .item:last-child {
        margin-right: 0px;
    }

    .footer .block1 .wrap .content .right .ewm .item {
        margin-right: calc(47/768*100vw);
        text-align: center;
    }

    .footer .block1 .wrap .content .right .ewm .item img {
        width: calc(139/768*100vw);
    }

    .footer .block1 .wrap .content .right .ewm .item .tit {
        font-family: Microsoft YaHei;
        font-weight: 400;
        font-size: calc(18/768*100vw);
        color: #888888;
        padding-top: calc(16/768*100vw);
    }

    .footer .block2 {
        margin-top: calc(36/768*100vw);
        background: #DDDDDD;
        text-align: center;
    }

    .footer .block2 .wrap {
        justify-content: space-between;
        align-items: center;
    }

    .footer .block2 .wrap .title {
        font-family: Microsoft YaHei;
        font-weight: 400;
        font-size: calc(14/768*100vw);
        color: #888888;
        line-height: calc(80/768*100vw);
        float: left;
        float: none;
    }
.footer .block2 .wrap .title a {
        font-weight: 400;
        font-size: calc(14/768*100vw);
        color: #888888;
        line-height: calc(80/768*100vw);
        float: none;
    }
	
    .footer .block2 .wrap .right {
        display: block;
        float: right;
        padding-top: calc(24/768*100vw);
        padding: 0px;
        padding: 5vw 0px;
        text-align: center;
        float: none;
        padding-top: 3vw;
    }

    .footer .block2 .wrap .right a.current .slides,.footer .block2 .wrap .right a:hover .slides {
        bottom: calc(39/768*100vw);
        visibility: visible;
        opacity: 1;
        z-index: 5;
    }

    .footer .block2 .wrap .right a .slides {
        position: absolute;
        bottom: calc(39/768*100vw);
        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%);
        padding: calc(9/768*100vw);
        background: #fff;
        border-radius: calc(5/768*100vw);
        text-align: center;
        width: calc(120/768*100vw);
        visibility: hidden;
        opacity: 0;
        z-index: -1;
        bottom: calc(49/768*100vw);
        -webkit-transition: all 0.2s;
        -o-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -ms-transition: all 0.2s;
        transition: all 0.2s;
    }

    .footer .block2 .wrap .right a .slides img {
        width: 100%;
        height: calc(102/768*100vw);
        object-fit: cover;
    }

    .footer .block2 .wrap .right a {
        margin-left: calc(34/768*100vw);
    }

    .footer .block2 .wrap .right a img {
        width: calc(48/768*100vw);
        height: calc(29/768*100vw);
        object-fit: contain;
    }

    .menuSide {
        position: fixed;
        z-index: 555;
        top: 50%;
        right: calc(15/768*100vw);
        transform: translate(0%,-50%);
        display: none;
    }

    .menuSide a:after {
        content: "";
        position: absolute;
        background: #D5D5D5;
        border-radius: 50%;
        width: 100%;
        height: 100%;
        top: 50%;
        right: 0;
        transform: translate(0%,-50%);
        transition: all 0.2s;
    }

    .menuSide a:before {
        content: "";
        position: absolute;
        width: calc(10/768*100vw);
        height: calc(1/768*100vw);
        background: #fff;
        right: calc(11/768*100vw);
        top: calc(3/768*100vw);
        width: 0;
        transition: all 0.2s;
    }

    .menuSide a.active span {
        right: calc(27/768*100vw);
        opacity: 1;
    }

    .menuSide a.active:before {
        width: calc(10/768*100vw);
        right: calc(15/768*100vw);
    }

    .menuSide a.active:after {
        width: calc(12/768*100vw);
        height: calc(12/768*100vw);
        border-radius: 50%;
        border: calc(2/768*100vw) solid #fff;
        background: none;
        right: calc(-4/768*100vw);
    }

    .menuSide a {
        display: block;
        position: relative;
        width: calc(18/768*100vw);
        height: calc(18/768*100vw);
        margin: calc(25/768*100vw) 0px;
    }

    .menuSide a span {
        position: absolute;
        /*font-family: SourceHanSansCN;*/
        font-weight: 400;
        font-size: calc(12/768*100vw);
        color: #fff;
        white-space: nowrap;
        display: flex;
        right: calc(20/768*100vw);
        top: calc(-4/768*100vw);
        opacity: 0;
        transition: all 0.2s;
    }

    * {
        font-size: calc(14/768*100vw);
    }

    .cbanner {
        height: calc(320/768*100vw);
        position: relative;
        margin-top: calc(100/768*100vw);
        overflow: hidden;
    }

    .cbanner .img {
        height: 100%;
    }

    .secMenuPosition {
        border-bottom: 1px solid #EAEAEA;
    }

    .secMenuPosition .wrap {
    }

    .secMenuPosition .left {
        float: none;
        display: flex;
    }

    .secMenuPosition .left a.current,.secMenuPosition .left a:hover {
        border-bottom: calc(6/768*100vw) solid #14357E;
        color: #14357E;
    }

    .secMenuPosition .left a:after,.secMenuPosition .left a.current:after,.secMenuPosition .left a:hover:after {
    }

    .secMenuPosition .left a {
        font-family: Microsoft YaHei;
        font-weight: 400;
        font-size: calc(16/768*100vw);
        float: left;
        margin-right: calc(51/768*100vw);
        color: #000;
        line-height: calc(84/768*100vw);
        height: calc(84/768*100vw);
        margin: 0;
        text-align: center;
        flex: 1;
    }

    .secMenuPosition .right {
        float: right;
        line-height: calc(84/768*100vw);
        font-family: Microsoft YaHei;
        font-weight: 400;
        font-size: calc(14/768*100vw);
        color: #12337D;
        padding-left: calc(10/768*100vw);
        background: url(../images/position.png) no-repeat left center;
        background-size: calc(13/768*100vw);
        padding-left: calc(19/768*100vw);
    }

    .secMenuPosition .right span {
        color: #888;
    }

    .secMenuPosition .right a {
        color: #888;
    }
}


.wap_nav.wap .tel{
    position: absolute;
    right: 105px;
    top: 0px;
    width: 40px;
    height: 100%;
    background: url(../images/tel.png) no-repeat center center;
    background-size: 50%;
}


.fp-viewing-page1 .head .wrap .right .nav ul li .h2tit a,
.fp-viewing-page3 .head .wrap .right .nav ul li .h2tit a,
.fp-viewing-page4 .head .wrap .right .nav ul li .h2tit a{
    color: #fff !important;
}

.fp-viewing-page1 .head .wrap .right .nav ul li .h2tit a:before,
.fp-viewing-page3 .head .wrap .right .nav ul li .h2tit a:before,
.fp-viewing-page4 .head .wrap .right .nav ul li .h2tit a:before{
border-color: #fff !important;
}
.fp-viewing-page1 .head .wrap .right .nav ul li .h2tit a:after,
.fp-viewing-page3 .head .wrap .right .nav ul li .h2tit a:after,
.fp-viewing-page4 .head .wrap .right .nav ul li .h2tit a:after{
background: #fff !important;
}


.current .mobile-inner-header .tel{
    background: url(../images/tel5.png) no-repeat center center;
    background-size: 50%;
}

.secMenuPosition *{
    
-webkit-transition:all 0.2s;
-o-transition:all 0.2s;
-moz-transition:all 0.2s;
-ms-transition:all 0.2s;
transition:all 0.2s;

}

.wap_nav .lan{
    position: absolute;
    right: 55px;
    top: 0;
    background: url(../images/down.png) no-repeat right 30px;
    background-size: 8px;
    padding-right: 11px;
}
    .wap_nav .lan.current dl,
    .wap_nav .lan:hover dl{
        top:50px;
    visibility:visible;
    opacity:1;
    z-index:5;
    }

.wap_nav .lan .h2tit{
    
height: 50px;
    
width: 28px;
    
background: url(../images/lan.png) no-repeat center center;
    
background-size: 19px;
}
.wap_nav .lan dl{
    
position: absolute;
    
width: 70px;
    
text-align: center;
    
background: #fff;
    
left: -22px;
    
top: 50px;
    
padding: 7px 0px;
    
border-radius: 3px;
    
-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);
    
-webkit-transition: all 0.2s;
    
-o-transition:all 0.2s;
    
-moz-transition:all 0.2s;
    
-ms-transition:all 0.2s;
    
transition:all 0.2s;
    
top: 60px;
    
visibility: hidden;
    
opacity: 0;
    
z-index: -1;
}
.wap_nav .lan dl dd a{
    
line-height: 21px;
    
font-size: 12px;
    
color: #000;
}


.current .wap_nav .lan {
    background: url(../images/down2.png) no-repeat right 30px;
    background-size: 8px;
}

.current .wap_nav .lan .h2tit{    
background: url(../images/lan2.png) no-repeat center center;
background-size: 19px;
}
