.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: SimHei;
}

body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,th,td,p,blockquote,pre,form,fieldset,legend,input,button,textarea,hr,span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.4rem;
}

html,body {
    -moz-user-select: none;
    -khtml-user-select: none;
}

body {
    font-family: "Microsoft YaHei" ! important;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
}

input[type="button"],input[type="submit"],input[type="reset"],input[type="text"] {
    -webkit-appearance: none;
}

input[type="button"],input[type="submit"],input[type="reset"] {
    cursor: pointer;
}

input {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none!important;
    border-radius: 0;
}

button {
    cursor: pointer;
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
}

li {
    list-style: none;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
    background: url(../images/bg.jpg) no-repeat center center;
    color: #fff;
    line-height: 1;
    background-size: cover;
    /* padding-top:calc(70/1920*100vw);*/
    /* overflow-x:hidden;*/
}

* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

@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(0%,0px);
    }

    100% {
        transform: translate(10%,0px) rotate(0);
    }
}

.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;
}

.swingAni3 {
    transform-origin: top center;
    animation: swing3 3s infinite ease-in-out;
}

@keyframes swing {
    0% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(6deg);
    }

    100% {
        transform: rotate(-6deg);
    }
}

@keyframes swing3 {
    0% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(2deg);
    }

    100% {
        transform: rotate(-2deg);
    }
}

.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(70/1920*100vw);
}

.section1 {
    position: relative;
    text-align: center;
    /* padding-top:calc(195/1920*100vw);*/
    margin: 0px calc(105/1920*100vw);
    background: #FFFFFF;
    border-radius: calc(20/1920*100vw);
    border: calc(5/1920*100vw) solid #4F333B;
}

.section1 .ani1 {
    position: absolute;
    top: calc(130/1920*100vw);
    left: calc(236/1920*100vw);
}

.section1 .ani1 img {
    width: calc(134/1920*100vw);
}

.section1 .ani2 {
    position: absolute;
    top: calc(326/1920*100vw);
    left: calc(114/1920*100vw);
}

.section1 .ani2 img {
    height: calc(106/1920*100vw);
}

.section1 .content:after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: calc(8/1920*100vw);
    background: #4F333B;
    border-radius: calc(4/1920*100vw);
    opacity: 0;
}

.section1 .content {
    position: relative;
    /* width:calc(1387/1920*100vw);*/
    max-width: 100%;
    margin: auto;
    padding-top: calc(88/1920*100vw);
    z-index: 5;
}

.section1 .an1 {
    position: absolute;
    top: calc(170/1920*100vw);
    right: calc(60/1920*100vw);
    z-index: 5;
}

.section1 .ani3 {
    display: block;
    width: calc(275/1920*100vw);
    padding-bottom: calc(71/1920*100vw);
    background: url(../images/zhuozi0.png) no-repeat center bottom;
    background-size: 100%;
    text-align: left;
    padding-left: calc(50/1920*100vw);
    font-size: 0;
    z-index: 5;
}

.section1 .ani3 .a1 {
    margin-right: calc(31/1920*100vw);
}

.section1 .ani3 img {
    height: calc(36/1920*100vw);
}

.section1 .ani3 .a2 {
}

.section1 .ani3 .a2 img {
}

.section1 .ani4 {
    position: absolute;
    right: calc(167/1920*100vw);
    bottom: 0;
}

.section1 .ani4 img {
    height: calc(263/1920*100vw);
}

.section1 .ani5 {
    /* margin-top:calc(-44/1920*100vw);*/
}

.section1 .ani5 img {
    height: calc(375/1920*100vw);
    animation-delay: 1s;
    animation-duration: 2s;
}

.section1 .ani6 {
    right: calc(417/1920*100vw);
    position: absolute;
    bottom: calc(100/1920*100vw);
}

.section1 .ani6 img {
    height: calc(244/1920*100vw);
}

.section1 .ani7 {
    width: calc(430/1920*100vw);
    height: calc(355/1920*100vw);
    position: absolute;
    background: url(../images/ani7.png) no-repeat center center;
    background-size: 100%;
    font-family: SourceHanSerifSC;
    font-weight: 800;
    font-size: calc(60/1920*100vw);
    /* color:#FFFFFF;*/
    text-transform: uppercase;
    padding-top: calc(45/1920*100vw);
    left: calc(112/1920*100vw);
    bottom: calc(-3/1920*100vw);
    z-index: 4;
}

.section1 .an2 {
    right: calc(113/1920*100vw);
    top: calc(311/1920*100vw);
    position: absolute;
}

.section1 .ani8 {
    width: calc(161/1920*100vw);
    height: calc(120/1920*100vw);
    display: block;
    background: url(../images/ani8.png) no-repeat center center;
    background-size: 100%;
    font-family: SourceHanSerifSC;
    font-weight: 800;
    font-size: calc(20/1920*100vw);
    color: #FFFFFF;
    padding-top: calc(61/1920*100vw);
    z-index: 6;
    font-family: Adobe Heiti Std;
    font-weight: normal;
    font-size: calc(24/1920*100vw);
    color: #000000;
}

.section1 .title {
}

.section1 .title .p1 img {
    margin-bottom: calc(22/1920*100vw);
    display: block;
    height: calc(182/1920*100vw);
    margin-left: calc(555/1920*100vw);
}

.section1 .title .p2 img {
}

.section1 .title .p2 img {
    height: calc(143/1920*100vw);
    display: block;
    margin-left: calc(437/1920*100vw);
}

.section2 {
}

.section2 .content {
    text-align: center;
    width: calc(1032/1920*100vw);
    height: calc(766/1920*100vw);
    background: url(../images/bg1.png) no-repeat center center;
    background-size: 100%;
    margin: auto;
    margin-top: calc(230/1920*100vw);
    padding-top: calc(50/1920*100vw);
    padding-left: calc(177/1920*100vw);
    padding-right: calc(177/1920*100vw);
}

.section2 .content .title {
    font-family: Impact;
    font-weight: 400;
    font-size: calc(54/1920*100vw);
    color: #EEEEEE;
}

.section2 .content .dec {
    padding-top: calc(34/1920*100vw);
}

.section2 .content .dec p {
    font-family: Georgia;
    font-weight: 400;
    font-size: calc(28/1920*100vw);
    color: #EEEEEE;
    line-height: calc(36/1920*100vw);
}

.section2 .content .line {
    height: calc(24/1920*100vw);
    background: #000000;
    border-radius: calc(12/1920*100vw);
    border: calc(3/1920*100vw) solid #FFFFFF;
    position: relative;
    text-align: center;
    margin-top: calc(39/1920*100vw);
    margin-bottom: calc(43/1920*100vw);
}

.section2 .content .line i {
    width: calc(203/1920*100vw);
    height: 100%;
    background: #EEEEEE;
    border-radius: calc(12/1920*100vw);
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Georgia;
    font-weight: 400;
    font-size: calc(12/1920*100vw);
    color: #000000;
}

.section2 .content .txtwords {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px calc(82/1920*100vw);
}

.section2 .content .txtwords .left {
    width: calc(227/1920*100vw);
    height: calc(68/1920*100vw);
    background: #000000;
    border-radius: calc(9/1920*100vw);
    border: calc(2/1920*100vw) solid #FFFFFF;
    position: relative;
}

.section2 .content .txtwords .left .words {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    text-align: center;
    color: #fff;
    font-size: calc(16/1920*100vw);
    padding-right: calc(32/1920*100vw);
}

.section2 .content .txtwords .left .btns {
    position: absolute;
    right: calc(-2/1920*100vw);
    top: 0;
    width: calc(32/1920*100vw);
}

.section2 .content .txtwords .left .btns img {
    width: 100%;
    display: block;
    cursor: pointer;
}

.section2 .content .txtwords .left .btns .i1 {
}

.section2 .content .txtwords .left .btns .i2 {
}

.section2 .content .txtwords .right {
}

.section2 .content .txtwords .right button {
    width: calc(227/1920*100vw);
    height: calc(68/1920*100vw);
    background: #FFFFFF;
    border-radius: calc(5/1920*100vw);
    border: calc(2/1920*100vw) solid #FFFFFF;
    display: block;
    font-family: Georgia;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #000000;
}

.section3 {
    padding-top: calc(135/1920*100vw);
    padding-left: calc(303/1920*100vw);
    padding-right: calc(303/1920*100vw);
}

.section3 .titlemodel {
    text-align: center;
}

.section3 .titlemodel img {
    height: calc(144/1920*100vw);
}

.section3 .content {
    padding-top: calc(114/1920*100vw);
}

.section3 .content .dec {
    font-family: MV Boli;
    font-weight: 400;
    font-size: calc(22/1920*100vw);
    color: #0F141A;
    line-height: calc(60/1920*100vw);
    padding-bottom: calc(94/1920*100vw);
    column-count: 2;
    column-gap: calc(80/1920*100vw);
}

.section3 .content .dec p {
}

.section3 .content .dec2 {
    font-family: MV Boli;
    font-weight: 400;
    font-size: calc(22/1920*100vw);
    color: #0F141A;
    text-align: center;
    padding-bottom: calc(72/1920*100vw);
}

.section3 .content .vals {
    width: calc(905/1920*100vw);
    background: #FFFFFF;
    border-radius: calc(15/1920*100vw);
    margin: auto;
    max-width: 100%;
    margin-bottom: calc(67/1920*100vw);
    position: relative;
    overflow: hidden;
    display: flex;
}

.section3 .content .vals .tit {
    font-family: MV Boli;
    font-weight: 400;
    font-size: calc(22/1920*100vw);
    color: #0F141A;
    text-align: right;
    line-height: calc(48/1920*100vw);
    width: calc(102/1920*100vw);
}

.section3 .content .vals .words {
    width: 100%;
    border: none;
    background: none;
    padding: 0px calc(20/1920*100vw);
    font-size: calc(16/1920*100vw);
    color: #000;
}

.section3 .content .join:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: calc(10/1920*100vw);
    top: calc(6/1920*100vw);
    right: calc(-6/1920*100vw);
}

.section3 .content .join {
    display: block;
    margin: auto;
    width: calc(476/1920*100vw);
    position: relative;
    font-family: MV Boli;
    font-weight: 400;
    font-size: calc(22/1920*100vw);
    color: #0F141A;
}

.section3 .content .join span {
    position: relative;
    display: block;
    background: url(../images/arr.png) no-repeat calc(413/1920*100vw) center #00D396;
    line-height: calc(76/1920*100vw);
    border-radius: calc(10/1920*100vw);
    z-index: 3;
    background-size: calc(36/1920*100vw);
    padding-left: calc(68/1920*100vw);
}

.section4 {
}

.section4 .titlemodel {
    text-align: center;
    padding-top: calc(180/1920*100vw);
}

.section4 .titlemodel img {
    height: calc(135/1920*100vw);
}

.section4 .content {
    width: calc(925/1920*100vw);
    position: relative;
    margin: auto;
    margin-top: calc(70/1920*100vw);
}

.section4 .content .bg {
}

.section4 .content .bg img {
    width: 100%;
}

.section4 .content .detail {
    position: absolute;
    z-index: 4;
    font-family: MV Boli;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #000000;
    line-height: calc(28/1920*100vw);
    width: calc(809/1920*100vw);
    height: calc(409/1920*100vw);
    background: #A0A0A0;
    border-radius: calc(5/1920*100vw);
    border: calc(9/1920*100vw) solid #000000;
    top: calc(160/1920*100vw);
    left: calc(44/1920*100vw);
    text-align: center;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section4 .content .detail p:last-child {
    padding: 0px;
}

.section4 .content .detail p {
    line-height: 1.6;
    padding-bottom: calc(26/1920*100vw);
}

.section5 {
    padding-top: calc(167/1920*100vw);
    padding-bottom: calc(161/1920*100vw);
}

.section5 .titlemodel {
    text-align: center;
}

.section5 .titlemodel img {
    height: calc(133/1920*100vw);
}

.section5 .list:after {
    content: "";
    display: table;
    clear: both;
}

.section5 .list:after {
    content: "";
    display: table;
    clear: both;
}

.section5 .border {
    margin-top: calc(138/1920*100vw);
    position: relative;
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    border: 5px solid #4F333B;
    margin: auto;
    width: calc(1570/1920*100vw);
    margin-top: calc(123/1920*100vw);
    padding-top: calc(87/1920*100vw);
}

.section5 .list .item {
    width: calc(214/1920*100vw);
    height: calc(243/1920*100vw);
    float: left;
    background: url(../images/kuang2.png) no-repeat center center;
    background-size: 100%;
    padding-top: calc(61/1920*100vw);
    padding-left: calc(18/1920*100vw);
    margin-bottom: calc(122/1920*100vw);
}

.section5 .list .item.it1 {
    margin-left: calc(294/1920*100vw);
}

.section5 .list .item.it2 {
    margin: 0px calc(153/1920*100vw);
}

.section5 .list .item.it3 {
}

.section5 .list .item.it4 {
    margin-left: calc(486/1920*100vw);
    margin-right: calc(174/1920*100vw);
}

.section5 .list .item.it5 {
}

.section5 .list .item.it6 {
    clear: left;
    margin-top: calc(-64/1920*100vw);
    margin-left: calc(140/1920*100vw);
}

.section5 .list .item.it7 {
    margin-left: calc(176/1920*100vw);
    margin-right: calc(82/1920*100vw);
}

.section5 .list .item.it8 {
}

.section5 .list .item.it9 {
    float: right;
    margin-top: calc(-64/1920*100vw);
    margin-right: calc(114/1920*100vw);
}

.section5 .list .item .imgbox {
}

.section5 .list .item .imgbox img {
    width: calc(163/1920*100vw);
}

.footer {
    text-align: center;
    padding-bottom: calc(78/1920*100vw);
    font-size: 0;
}

.footer .item {
    width: calc(347/1920*100vw);
    padding-bottom: calc(90/1920*100vw);
    display: inline-block;
    vertical-align: middle;
}

.footer .item.item1 {
    background: url(../images/zhuozi1.png) no-repeat center bottom;
    background-size: 100%;
    text-align: right;
    padding-right: calc(25/1920*100vw);
}

.footer .item {
    margin: 0px calc(70/1920*100vw);
}

.footer .item.item1 a:nth-child(2) {
    margin-left: calc(39/1920*100vw);
}

.footer .item.item1 a {
    display: inline-block;
}

.footer .item.item1 a img {
    height: calc(82/1920*100vw);
}

.footer .item.item2 {
    background: url(../images/zhuozi2.png) no-repeat center bottom;
    background-size: 100%;
    text-align: left;
}

.footer .item.item2 a {
}

.footer .item.item2 a img {
    height: calc(82/1920*100vw);
}

.section3 .content .join:after,.footer *,.footer,.index * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.section3 .content .join:hover:after {
    margin-top: calc(3/1920*100vw);
    margin-right: calc(-3/1920*100vw);
}

.footer .item a:hover img,.section1 .ani3 a:hover img {
    transform: translate(-10%,0%);
}

.section5 .list .item {
    cursor: pointer;
    overflow: hidden;
}

.section2 .content .txtwords .right button:hover,.section5 .list .item:hover .imgbox img,.section1 .ani7:hover span,.section1 .ani8: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);
}

.section1 .ani7 span {
    font-family: inherit;
    display: block;
    font-family: Adobe Heiti Std;
    font-weight: normal;
    color: #000000;
}

/* 隐藏增减按钮 */
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
    /* 对于 Firefox */
}

.section1 .content .dot {
    background: url(../images/dot.png) no-repeat center center;
    background-size: 100%;
    width: 49px;
    height: 49px;
    position: absolute;
    left: 59px;
    top: 218px;
}

.section_block1:before,.section1:before,.section_block1 .text .limit:before,.section5 .border:before {
    position: absolute;
    left: calc(-9/1920*100vw);
    top: calc(-9/1920*100vw);
    right: calc(-9/1920*100vw);
    bottom: calc(-9/1920*100vw);
    content: "";
    border: calc(5/1920*100vw) solid #ebb080;
    border-radius: calc(24/1920*100vw);
}

.section_block1 > * {
    position: relative;
    z-index: 5;
}

.section_block1 {
    width: calc(1570/1920*100vw);
    background: #FFFFFF;
    border-radius: calc(20/1920*100vw);
    border: calc(5/1920*100vw) solid #4F333B;
    max-width: 90%;
    margin: auto;
    padding-top: calc(75/1920*100vw);
    margin-top: calc(80/1920*100vw);
    padding-left: calc(157/1920*100vw);
    padding-right: calc(157/1920*100vw);
    position: relative;
    padding-bottom: calc(94/1920*100vw);
}

.section_block1 .text .limit:before {
    top: calc(-7/1920*100vw);
    right: calc(-7/1920*100vw);
    bottom: calc(-7/1920*100vw);
    left: calc(-7/1920*100vw);
    border-radius: calc(15/1920*100vw);
}

.section_block1 .title img {
    height: calc(145/1920*100vw);
}

.section_block1 .title {
    text-align: center;
}

.section_block1 .desc {
    font-family: D;
    font-weight: bold;
    font-size: calc(28/1920*100vw);
    color: #010100;
    text-align: center;
    padding-top: calc(23/1920*100vw);
    padding-bottom: calc(34/1920*100vw);
}

.section_block1 .copetxt {
    width: calc(905/1920*100vw);
    height: calc(48/1920*100vw);
    background: #000000;
    border-radius: calc(15/1920*100vw);
    max-width: 90%;
    margin: auto;
    display: flex;
    margin-bottom: calc(53/1920*100vw);
    align-items: center;
}

.section_block1 .copetxt .tit {
    font-family: SimHei;
    font-weight: 400;
    font-size: calc(22/1920*100vw);
    color: #FFFFFF;
    padding: 0 calc(27/1920*100vw);
}

.section_block1 .copetxt .words {
    width: 100%;
    border: none;
    background: none;
    color: #fff;
    height: 100%;
    font-size: calc(23/1920*100vw);
}

.section_block1 .copetxt .copy {
    font-family: SimHei;
    font-weight: 400;
    font-size: calc(22/1920*100vw);
    color: #FFFFFF;
    padding: 0 calc(27/1920*100vw);
    height: 100%;
    border: none;
    background: none;
}

.section_block1 .text .limit:after {
    left: calc(-7/1920*100vw);
    right: calc(-7/1920*100vw);
    top: calc(-7/1920*100vw);
    bottom: calc(-7/1920*100vw);
    border-radius: calc(15/1920*100vw);
}

.section_block1 .text {
    color: #000;
}

.section_block1 .text .tit {
    display: flex;
    align-items: center;
    padding-bottom: calc(55/1920*100vw);
}

.section_block1 .text .tit .s1 {
    width: calc(39/1920*100vw);
    line-height: calc(41/1920*100vw);
    background: #9AED2C;
    border-radius: calc(5/1920*100vw);
    text-align: center;
    font-family: SimHei;
    font-weight: 400;
    font-size: calc(22/1920*100vw);
    color: #000000;
}

.section_block1 .text .tit .s2 {
    font-family: D;
    font-weight: bold;
    font-size: calc(22/1920*100vw);
    color: #000000;
    padding-left: calc(17/1920*100vw);
}

.section_block1 .text .dec {
    padding-left: calc(12/1920*100vw);
    font-family: D;
    font-weight: normal;
    font-size: calc(22/1920*100vw);
    color: #000000;
    line-height: calc(32/1920*100vw);
}

.section_block1 .text .dec p {
    padding-bottom: calc(37/1920*100vw);
}

.section_block1 .text .dec b {
    text-decoration: underline;
    color: #6FC200;
    font-weight: normal;
}

.section_block1 .text .limit > * {
    position: relative;
    z-index: 5;
}

.section_block1 .text .limit {
    width: calc(1101/1920*100vw);
    background: #FFFFFF;
    border-radius: calc(10/1920*100vw);
    border: calc(2/1920*100vw) solid #000000;
    margin: auto;
    max-width: 90%;
    margin-top: calc(40/1920*100vw);
    margin-bottom: calc(58/1920*100vw);
    position: relative;
    padding-top: calc(39/1920*100vw);
    padding-bottom: calc(36/1920*100vw);
}

.section_block1 .text .limit .loadingline {
    width: calc(895/1920*100vw);
    height: calc(34/1920*100vw);
    background: #FFFFFF;
    border-radius: calc(10/1920*100vw);
    border: calc(2/1920*100vw) solid #000000;
    margin: auto;
    max-width: 90%;
    margin-bottom: calc(41/1920*100vw);
}

.section_block1 .text .limit .loadingline i {
    background: #000000;
    border-radius: calc(7/1920*100vw);
    border: calc(2/1920*100vw) solid #000000;
    display: block;
    text-align: center;
    height: 100%;
    width: 24%;
    line-height: calc(27/1920*100vw);
    font-family: D;
    font-weight: normal;
    font-size: calc(18/1920*100vw);
    color: #FEFEFE;
    font-style: normal;
}

.section_block1 .text .limit .buttons {
    text-align: center;
    font-size: 0;
}

.section_block1 .text .limit .buttons .count {
    display: inline-block;
    vertical-align: middle;
    width: calc(284/1920*100vw);
    height: calc(66/1920*100vw);
    background: #FFFFFF;
    border-radius: calc(10/1920*100vw);
    border: calc(2/1920*100vw) solid #000000;
    position: relative;
}

.section_block1 .text .limit .buttons .count i {
    font-family: D;
    font-weight: normal;
    font-size: calc(32/1920*100vw);
    color: #000000;
    width: 30%;
    float: left;
    line-height: calc(56/1920*100vw);
    font-style: normal;
    height: 100%;
}

.section_block1 .text .limit .buttons .count .words {
    float: left;
    width: 40%;
    height: 100%;
    background: none;
    border: none;
    color: #000;
    text-align: center;
    font-size: calc(23/1920*100vw);
}

.section_block1 .text .limit .buttons .btn {
    width: calc(284/1920*100vw);
    height: calc(66/1920*100vw);
    background: #9AED2C;
    border-radius: calc(10/1920*100vw);
    border: calc(2/1920*100vw) solid #000000;
    vertical-align: middle;
    font-family: D;
    font-weight: normal;
    font-size: calc(32/1920*100vw);
    color: #000000;
    margin-left: calc(46/1920*100vw);
}

.section_block1 .text .send {
    width: calc(476/1920*100vw);
    height: calc(76/1920*100vw);
    background: url(../images/send.png) no-repeat 90% center #9AED2C;
    border-radius: calc(10/1920*100vw);
    background-size: calc(36/1920*100vw);
    display: block;
    margin: auto;
    margin-top: calc(50/1920*100vw);
    font-family: Adobe Heiti Std;
    font-weight: normal;
    font-size: calc(22/1920*100vw);
    color: #0F141A;
    border: none;
}

.section5 .border {
    margin-top: calc(138/1920*100vw);
    position: relative;
    position: relative;
    background: #FFFFFF;
    border-radius: calc(20/1920*100vw);
    border: calc(5/1920*100vw) solid #4F333B;
    margin: auto;
    width: calc(1570/1920*100vw);
    margin-top: calc(123/1920*100vw);
    padding-top: calc(87/1920*100vw);
}

.section5 .border .dot, .section1 .content .dot {
    background: url(../images/dot.png) no-repeat center center;
    background-size: 100%;
    width: calc(49/1920*100vw);
    height: calc(49/1920*100vw);
    position: absolute;
    left: calc(59/1920*100vw);
    top: calc(218/1920*100vw);
}

.section5 .border .dot.dot1 {
    top: calc(39/1920*100vw);
    left: calc(89/1920*100vw);
}

.section5 .border .dot.dot2 {
    top: calc(39 / 1920 * 100vw);
    left: auto;
    right: calc(89 / 1920 * 100vw);
}
