.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;
    }
}

* {
    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: #fcfcfc;
    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;
}

@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;
    padding-top: calc(92/1920*100vw);
}

.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 {
    height: calc(92/1920*100vw);
    background: #FFFFFF;
    box-shadow: 0px 0px calc(9/1920*100vw) 0px rgba(180,180,180,0.28);
    position: fixed;
    width: 100%;
    z-index: 55555;
    left: 0;
    top: 0px;
}

.head .wrap {
    height: 100%;
    display: flex;
    align-items: center;
}

.wrap {
    padding: 0px calc(331/1920*100vw);
}

.head .logo {
}

.head .logo a {
    display: flex;
    align-items: center;
}

.head .logo img {
    height: calc(53/1920*100vw);
}

.head .logo .title {
    font-family: Arial;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #1A1A1A;
    padding-top: calc(19/1920*100vw);
    padding-left: calc(8/1920*100vw);
}

.head .desc {
    font-family: AlibabaPuHuiTiR;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #687AC7;
    padding-left: calc(171/1920*100vw);
    padding-top: calc(10/1920*100vw);
}

.section1 {
    padding-top: calc(24/1920*100vw);
    padding-bottom: calc(24/1920*100vw);
}

.section1 .wrap {
}

.section1 .content {
    background: #FFFFFF;
    border-radius: calc(10/1920*100vw);
    border: calc(1/1920*100vw) solid #E4E4E4;
    padding: calc(15/1920*100vw);
}

.section1 .block1 {
    font-family: Arial;
    font-weight: bold;
    font-size: calc(16/1920*100vw);
    color: #687AC7;
    display: flex;
    /* align-items: center; */
}

.section1 .block1 .title {
    padding-right: calc(6/1920*100vw);
    padding-top: calc(14/1920*100vw);
}

.section1 .block1 .switchTxt {
    display: flex;
    align-items: center;
    padding-bottom: calc(14/1920*100vw);
    border-bottom: calc(1/1920*100vw) solid #E4E4E4;
    width: calc(100% - calc(81/1920*100vw));
}

.section1 .block1 .switchTxt .types {
}

.section1 .block1 .switchTxt .types .model {
    display: none;
}

.section1 .block1 .switchTxt .types .model.type1 {
}

.section1 .block1 .switchTxt .types .model.active {
    display: block;
}

.section1 .block1 .switchTxt .types .model.type1 .words {
    width: calc(546/1920*100vw);
    height: calc(40/1920*100vw);
    background: #F4F4F4;
    border-radius: calc(4/1920*100vw);
    border: none;
    padding: 0px calc(10/1920*100vw);
    font-family: AlibabaPuHuiTiR;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #333333;
    margin-right: calc(9/1920*100vw);
}

.section1 .block1 .switchTxt .types .model.type2 span {
    margin-right: calc(9/1920*100vw);
}

.section1 .block1 .switchTxt .types .model.type2 {
}

.section1 .block1 .switchTxt .types .model.type2 .item {
}

.section1 .block1 .switchTxt .types .model.type2 .item input {
    width: calc(42/1920*100vw);
    height: calc(40/1920*100vw);
    background: #F4F4F4;
    border-radius: calc(4/1920*100vw);
    border: none;
    margin-right: calc(9/1920*100vw);
    text-align: center;
    font-family: AlibabaPuHuiTiR;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #333333;
}

.section1 .block1 .switchTxt .types .dipflex {
    display: flex;
    align-items: center;
}

.section1 .block1 .switchTxt .types .model.type2 .middle-part {
}

.section1 .block1 .switchTxt .types .model.type2 .last-part {
}

.section1 .block1 .switchTxt .types .model.type2 .combined-value {
}

.section1 .block1 .switchTxt .switch {
    width: calc(142/1920*100vw);
    height: calc(40/1920*100vw);
    background: #687AC7;
    border-radius: calc(20/1920*100vw);
    border: none;
    font-family: AlibabaPuHuiTiR;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #FFFFFF;
}

.section1 .block2 {
    display: flex;
    align-items: center;
    padding-top: calc(14/1920*100vw);
    padding-left: calc(77/1920*100vw);
}

.section1 .block2 .title {
    font-family: AlibabaPuHuiTiR;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #333333;
}

.section1 .block2 .numbers {
    padding-left: calc(13/1920*100vw);
    padding-right: calc(30/1920*100vw);
}

.section1 .block2 .numbers button {
    font-family: PingFang;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #545454;
    border: none;
    background: none;
    width: calc(30/1920*100vw);
    height: calc(40/1920*100vw);
    border-radius: calc(4/1920*100vw);
    margin-right: calc(3/1920*100vw);
}

.section1 .block2 .numbers button:hover,
.section1 .block2 .numbers button.current {
    background: #687AC7;
    color: #fff !important;
}

.section1 .block2 .words {
    width: calc(140/1920*100vw);
    height: calc(42/1920*100vw);
    background: #F4F4F4;
    border-radius: calc(21/1920*100vw);
    margin: 0px calc(10/1920*100vw);
    border: none;
    text-align: center;
    font-family: AlibabaPuHuiTiR;
    font-weight: 400;
    font-size: calc(14/1920*100vw);
    padding-left: calc(11/1920*100vw);
    text-align: left;
}

.section1 .block2 .bl {
    font-family: AlibabaPuHuiTiR;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #333333;
}

.section1 .block2 .cx {
    width: calc(140/1920*100vw);
    height: calc(42/1920*100vw);
    background-color: #687AC7;
    border-radius: calc(21/1920*100vw);
    border: none;
    color: #fff;
    font-family: AlibabaPuHuiTiR;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #FFFFFF;
    background-image: url(../images/search.png) !important;
    background-repeat: no-repeat !important;
    background-position: calc(20/1920*100vw) center !important;
    text-align: left;
    padding-left: calc(45/1920*100vw);
    background-size: calc(19/1920*100vw) !important;
}

.section2 {
}

.section2 .wrap {
}

.section2 .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(23/1920*100vw) 0px;
    /* padding-top: 0; */
}

.section2 .title .left {
    font-family: AlibabaPuHuiTiM;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #333333;
    padding-left: calc(40/1920*100vw);
    background: url(../images/01.png) no-repeat left center;
    background-size: calc(34/1920*100vw) !important;
    line-height: calc(36/1920*100vw);
}

.section2 .title .right {
}

.section2 .title .right .change {
    width: calc(91/1920*100vw);
    height: calc(33/1920*100vw);
    border-radius: calc(16/1920*100vw);
    border: calc(1/1920*100vw) solid #687AC7;
    font-family: AlibabaPuHuiTiM;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #687AC7;
    padding-left: calc(33/1920*100vw);
    text-align: left;
    background: url(../images/02.png) no-repeat calc(9/1920*100vw) center;
    background-size: calc(20/1920*100vw) !important;
}

.section2 .list:after {
    display: table;
    content: "";
    clear: both;
}

.section2 .list .item:nth-child(6n) {
    margin-right: 0px;
}
.section2 .list .item,
.section1 .block2 .numbers button{
    
-webkit-transition:all 0.2s;
-o-transition:all 0.2s;
-moz-transition:all 0.2s;
-ms-transition:all 0.2s;
transition:all 0.2s;

}

.section2 .list .item {
    float: left;
    height: calc(75/1920*100vw);
    background: #FFFFFF;
    border-radius: calc(10/1920*100vw);
    border: calc(1/1920*100vw) solid #666666;
    width: calc((100% - calc(80/1920*100vw))/6);
    margin-right: calc(16/1920*100vw);
    margin-bottom: calc(14/1920*100vw);
    position: relative;
}

.section2 .list .item.current,.section2 .list .item:hover {
    background: #FFFFFF;
    box-shadow: 0px 0px calc(9/1920*100vw) 0px rgba(150,150,150,0.51);
    z-index: 4;
}

.section2 .list .item button {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
}

.section2 .list .item button .number {
    font-family: Arial;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #687AC7;
    display: block;
}

.section2 .list .item button .dec {
    font-family: Arial;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #333333;
    /* padding-top: calc(12/1920*100vw); */
}

.section2 .list .item button .dec b {
    color: #687AC7;
}

.section2 .warning {
    height: calc(55/1920*100vw);
    background: linear-gradient(0deg,#F9F7FA 0%,#EDF0F7 100%);
    border-radius: calc(8/1920*100vw);
    border: calc(1/1920*100vw) solid #666666;
    margin-top: calc(4/1920*100vw);
    display: flex;
    align-items: center;
}

.section2 .warning b {
    font-family: AlibabaPuHuiTiM;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    padding-left: calc(34/1920*100vw);
    color: #687AC7;
    background: url(../images/03.png) no-repeat calc(10/1920*100vw) center;
    background-size: calc(18/1920*100vw) !important;
    line-height: calc(18/1920*100vw);
}

.section2 .warning .dec {
    font-family: AlibabaPuHuiTiR;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #282828;
    padding-left: calc(13/1920*100vw);
}

.section2 .buttons:after {
    content: "";
    display;table;clear: both;
}

.section2 .buttons {
    padding-top: calc(21/1920*100vw);
    text-align: center;
    font-size: 0;
}

.section2 .buttons > * {
    margin: 0px calc(5/1920*100vw);
}

.section2 .buttons .hide {
    width: calc(111/1920*100vw);
    height: calc(35/1920*100vw);
    border-radius: calc(17/1920*100vw);
    border: calc(1/1920*100vw) solid #687AC7;
    background: #fff;
    color: #687AC7;
    margin: 0px calc(5/1920*100vw);
    vertical-align: middle;
    font-size: calc(14 / 1920 * 100vw);
    background: none;
}

.section2 .buttons .selectcolor {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    vertical-align: middle;
}

.section2 .buttons .selectcolor .h2tit {cursor: pointer;}

.section2 .buttons .selectcolor dl {
    padding: calc(5/1920*100vw) 0px;
    position: absolute;
    bottom: 0;
    width: 100%;
    font-size: calc(14/1920*100vw);
    line-height: calc(34/1920*100vw);
    border-radius: calc(17/1920*100vw);
    border: calc(1/1920*100vw) solid #687AC7;
    background: #fff;
    bottom: calc(47/1920*100vw);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    bottom: calc(36/1920*100vw);
    transition: all 0.2s;
    overflow: hidden;
}

.section2 .buttons .selectcolor dl dd {
    cursor: pointer;
    color: #687AC7;
    font-size: calc(14 / 1920 * 100vw);
}
.section2 .buttons .selectcolor dl dd:hover{
    color: #fff !important;
    background: #687AC7;
}

.section2 .buttons .keep {
}

.section2 .bottom {
    font-family: Arial;
    font-weight: 400;
    font-size: calc(14/1920*100vw);
    color: #282828;
    padding-top: calc(20/1920*100vw);
    padding-bottom: calc(25/1920*100vw);
    text-align: center;
}

.section2 .buttons .selectcolor h2.h2tit {
    /* width: calc(111/1920*100vw); */
    line-height: calc(34/1920*100vw);
    border-radius: calc(17/1920*100vw);
    border: calc(1/1920*100vw) solid #687AC7;
    background: #fff;
    color: #687AC7;
    margin: 0px calc(5/1920*100vw);
    background: url(../images/04.png) no-repeat calc(87/1920*100vw) center;
    background-size: calc(14/1920*100vw) !important;
    font-family: AlibabaPuHuiTiR;
    font-weight: 400;
    font-size: calc(14/1920*100vw);
    color: #687AC7;
    padding-left: calc(23/1920*100vw);
    text-align: left;
    background-position: 93% center !important;
    padding-right: calc(25/1920*100vw);
}

.section2 .buttons button {
    vertical-align: middle;
}

.section2 .buttons button.btn1 {
    width: calc(111/1920*100vw);
    height: calc(35/1920*100vw);
    border-radius: calc(17/1920*100vw);
    border: calc(1/1920*100vw) solid #687AC7;
    background: #fff;
    color: #687AC7;
    margin: 0px calc(5/1920*100vw);
    background: url(../images/04.png) no-repeat calc(91/1920*100vw) center;
    background-size: calc(14/1920*100vw) !important;
    text-align: left;
    padding-left: calc(16/1920*100vw);
    font-size: calc(14 / 1920 * 100vw);
    background-position: calc(91/1920*100vw) center !important;
}

.section2 .buttons button.keep {
    width: calc(80/1920*100vw);
    height: calc(34/1920*100vw);
    background: #687AC7;
    border-radius: calc(17/1920*100vw);
    border: none;
    font-family: AlibabaPuHuiTiR;
    font-weight: 400;
    font-size: calc(14/1920*100vw);
    color: #FFFFFF;
}

.section2 .buttons .selectcolor:hover dl {
    bottom: calc(40/1920*100vw);
    visibility: visible;
    opacity: 1;
    z-index: 5;
}




.section2 .buttons .selectcolor dl dd a{
    color: inherit;
    display: block;
}


/*wf开始*/
.section1 .block1{display: block;}
.rootcolor{color: #687ac7;}
select:focus{outline: none;}
.sj_dn.xuanhao{display: block!important;}
.pc_dn .xuanhao_m{display: none!important;}
.section1 .block1 .title{text-align: center;margin-bottom: 24px;font-size: calc(30 / 1920 * 100vw);color: #010101;}
.section1 .block1 .switchTxt .types .dipflex{justify-content: center;align-items: center;margin-bottom: 24px;}
.section1 .block1 .switchTxt.xuanhao_content{max-width: 1000px;margin-left: auto;margin-right: auto;display: block; }
.xuanhao_content .btns{display: flex;justify-content: center;}
.xuanhao_content .btns button{width: calc(120 / 1920 * 100vw);height: calc(44 / 1920 * 100vw);border-radius: 5px;background-color: #b3b3b3;font-size: calc(20 / 1920 * 100vw);color: #fff;border: 0;margin: 0 5px;cursor: pointer; }
.xuanhao_content .btns button.btnPcXh{background-color: #687ac7;}
.xuanhao_content .xuanhao_lf {width: 100%;text-align: center;padding-bottom: 15px;margin-bottom: 0.1rem;border-bottom: 1px solid #ccc;}
.section1 .block1 .switchTxt .types .model.type2 .item{font-size: calc(48 / 1920 * 100vw);display: flex;align-items: center;}
.section1 .block1 .switchTxt .types .model.type2 .item input{width: calc(48 / 1920 * 100vw);height: calc(48 / 1920 * 100vw);font-size: calc(44 / 1920 * 100vw);background-color: transparent!important;border: 2px solid #bcbcbc!important;}
.xuanhao_1{font-size: calc(48 / 1920 * 100vw);justify-content: center;margin-bottom: 12px;font-weight: normal;}
.xuanhao_lf p,.switchTxt .model.type2 .item input{font-size: 40px;}
.xuanhao_1 .switchTxt .model.type2 .item input{width: calc(48 / 1920 * 100vw)!important;height: calc(48 / 1920 * 100vw)!important;margin-left: 3px;border: 1px solid #bcbcbc;}
.xuanhao_1 .switchTxt{width: auto;}
.xuanhao_1 .switchTxt .model.type2{font-size: calc(48 / 1920 * 100vw);}

.xuanhao_bottom{display: flex;justify-content: center;flex-wrap: wrap;align-items: center;font-size: 16px;}
.section1 .block2 .title{font-size: 16px!important;}
.xuanhao_bottom .xuanhao_2{font-size: 16px;flex: 0 0 auto;margin-top: 0;display: flex;align-items: center;}
.xuanhao_bottom .xuanhao_3{width: auto;margin-right: calc(30 / 1920 * 100vw);display: flex;align-items: center;}
.xuanhao_bottom .xuanhao_3 button{font-size: 16px!important; width: calc(40 / 1920 * 100vw);height: calc(40 / 1920 * 100vw);background-color: #f0f0f0}
.xuanhao_bottom .xuanhao_3 button:hover{background-color: #687ac7;}
.xuanhao_jiage_s select{height: 36px;margin-left: 10px;width: calc(200 / 1920 * 100vw);background-color: #f0f0f0;border-radius: 5px;border-color: #f0f0f0;padding: 0 10px;font-size: 16px;}
.section1 .block1 .switchTxt.xuanhao_content{display: flex;justify-content: center;align-items: center;padding-top: 20px;}
.section1 .block1 .title{display: none;}
.section1 .block1 .switchTxt .types .dipflex{margin-bottom: 0;}
.xuanhao_content .btns{margin-bottom: 12px;}

.xuanhao_2{position: relative;}
.xuanhao_2 .xuanhao_jiage_text{margin-left: 20px;position: relative;font-size: 16px;cursor: pointer;width: calc(200 / 1920 * 100vw);z-index: 99;}
.xuanhao_2 .xuanhao_jiage{position: absolute;top: 120%;left: -0px; width: calc(200 / 1920 * 100vw);padding: 5px 0px;background-color: rgba(255,255,255,0.99);border-radius: 12px;box-shadow: 3px 3px 6px rgba(0,0,0,0.06),-3px -3px 6px rgba(0,0,0,0.06);opacity: 0;visibility: hidden;transition: all 0.4s;}
.xuanhao_2 .xuanhao_jiage_text.on .xuanhao_jiage{opacity: 1;visibility: visible;}
.xuanhao_2 .xuanhao_jiage .p{height: calc(40 / 1920 * 100vw);line-height: calc(40 / 1920 * 100vw); padding: 0 20px;transition: all 0.2s;cursor: pointer;border-bottom: 1px solid #eee;}
.xuanhao_2 .xuanhao_jiage .p:last-child{border-bottom: 0;}
.xuanhao_2 .xuanhao_jiage .p:hover,.xuanhao_2 .xuanhao_jiage .p.on{color: #fe5729;}
.xuanhao_2 .text{background: #f0f0f0 url(../images/icon_xiala.png) right 8px center no-repeat;border-radius: 5px;border-color: #f0f0f0;padding: 0 10px;font-size: 16px;height: 39px;line-height: 39px;background-size: 14px;}
.xuanhao_2 .icon_xiala{position: absolute;right: 8px;top: 50%;width: 14px;height: 14px;margin-top: -7px;object-fit: contain;pointer-events:none;}


@media(max-width: 950px){
    .xuanhao_c{background-color: transparent;padding: 0 0 15px 0;}
    .xuanhao .tit{font-size: 0.14rem;}
    .section1 .block1 .switchTxt.xuanhao_content{width: 100%;flex-direction: column;padding-top: 10px;}
    .xuanhao_1{font-size: calc(48 / 768 * 100vw);}
    .xuanhao_content .btns{margin-bottom: 0;}
    .section1 .block1{flex-direction: column;}
    .section1 .block1 .title{font-size: 15px;}
    .section1 .block1 .switchTxt .types .model.type2 .item{font-size: calc(48 / 768 * 100vw);}
    .section1 .block1 .switchTxt .types .model.type2 .item input{width: calc(48 / 768 * 100vw)!important;height: calc(48 / 768 * 100vw)!important;font-size: calc(44 / 768 * 100vw)!important;border: 1px solid #bcbcbc!important;background-color: transparent!important;}
    .xuanhao_content .btns button{width: calc(120 / 768 * 100vw);height: calc(44 / 768 * 100vw);border-radius: 5px;background-color: #b3b3b3;font-size: calc(20 / 768 * 100vw);}
    .xuanhao_bottom .xuanhao_3 button{font-size: 16px!important; width: calc(40 / 1920 * 100vw);height: calc(40 / 1920 * 100vw);background-color: #f0f0f0}
    .section1 .block2.xuanhao_bottom{justify-content: space-between;display: flex;align-items: center;}
    .xuanhao_bottom .xuanhao_3{flex-direction: column;flex: 1; margin-right: 15px;align-items: flex-start;}
    .section1 .block2 .title{font-size: 12px!important;width: 100%;}
    .sj_dn.xuanhao{padding-left: 0;padding-right: 0;}
    .xuanhao_bottom .xuanhao_2{font-size: 12px;flex-direction: column;justify-content: center;align-items: flex-start;}
    .xuanhao_jiage_s select{height: 20px;font-size: 12px;width: 100px;margin-left: 0;margin-top: 0px;padding-left: 0;}
    .block2.xuanhao_bottom .xuanhao_3 .numbers{width: 100%;margin-top: 5px;display: flex;justify-content: space-between;}
    .block2.xuanhao_bottom .xuanhao_3 .numbers button{width: calc(32 / 768 * 100vw);height: calc(32 / 768 * 100vw);line-height: calc(32 / 768 * 100vw); flex: 0 0 auto;margin-top: 0;font-size: 13px!important;margin-bottom: 0;}

    .xuanhao_2 .xuanhao_jiage_text{margin-top: 6px; height: calc(40 / 700 * 100vw);line-height: calc(40 / 700 * 100vw);font-size: calc(24 / 700 * 100vw);width: 100px;margin-left: 0;}
    .xuanhao_2 .text{height: calc(40 / 700 * 100vw);line-height: calc(40 / 700 * 100vw);font-size: calc(22 / 700 * 100vw);background-size: 10px;}
    .xuanhao_2 .xuanhao_jiage{right: 0;left: auto;width: 120px;border-radius: 5px;padding-top: 5px;padding-bottom: 5px;}
    .xuanhao_2 .xuanhao_jiage .p{height: 26px;line-height: 26px;padding: 0 15px;}
    .xuanhao_2 .icon_xiala{width: 10px;height: 10px;margin-top: -5px;}    
}
/*wf结束*/