.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    background-color: ;
    position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 666;
    left: 0px;
    /* background:#000;*/
}

.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;
    background: linear-gradient(90deg,var(--Color,#F4511E ) 0%,#FFB303 100%);
}

.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: "Chelsea Market";
    !i;!;}

body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,th,td,p,blockquote,pre,form,fieldset,legend,input,button,textarea,hr,span {
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}

body {
    font-size: calc(14/1440*100vw);
}

html,body {
}

body {
    font-family: "Microsoft YaHei" ! important;
    color: #000000;
    background: #fff;
    margin: 0 auto;
    padding: 0px;
}

body {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

select {
    cursor: pointer;
}

input[type="button"],input[type="submit"],input[type="reset"],input[type="text"] {
    -webkit-appearance: none;
}

input[type="button"],input[type="submit"],input[type="reset"] {
    cursor: pointer;
}

input {
    -webkit-appearance: none;
}

input {
    -webkit-appearance: none!important;
    border-radius: 0;
}

button {
    cursor: pointer;
}

textarea {
    -webkit-appearance: none;
}

a {
    text-decoration: none;
    color: #235aa7;
    outline: none;
}

a:active {
    star: expression(this.onFocus=this.blur());
}

img {
    border: 0px;
    vertical-align: middle;
}

li {
    list-style: none;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.loading {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
}

.loadingfa {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 29px;
    color: #1f8adf;
    position: absolute;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    top: 50%;
}

html {
    -webkit-overflow-scrolling: touch;
    -webkit-tap-highlight-color: none;
}

html {
    -webkit-tap-highlight-color: transparent;
}

body {
    -webkit-overflow-scrolling: touch;
    background: #000;
    color: #fff;
    line-height: 1;
}

* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg)
    }

    to {
        -o-transform: rotate(360deg)
    }
}

.xuanzhuan {
    animation: 2s linear 0s normal forwards infinite rotate;
    -webkit-animation: 2s linear 0s normal forwards infinite rotate;
    -moz-animation: 2s linear 0s normal forwards infinite rotate;
    -o-animation: 2s linear 0s normal forwards infinite rotate;
}

.xuanzhuan img {
    display: block;
    width: 100%;
}

.pc {
    display: block;
}

.wap {
    display: none;
}

.clearflex:after {
    content: "";
    display: table;
    clear: both;
}

.moveAni {
    animation: move .8s infinite;
    -moz-animation: move .8s infinite;
    -webkit-animation: move .8s infinite;
    -o-animation: move .8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.tadaAni {
    animation: tada 2s infinite;
}

.pulseAni {
    animation: pulse 1s infinite;
}

.bounceInAni {
    animation: bounceIn 2s infinite;
}

.flashInAni {
    animation: flash 2s infinite;
}

.swingAni {
    animation: swing 2s infinite;
    transform-origin: right top;
}

.rubberBandAni {
    animation: rubberBand 1s infinite;
}

.bounceAni {
    animation: bounce 1s infinite;
}

.tdAni {
    animation: td .4s infinite;
    -moz-animation: td .4s infinite;
    -webkit-animation: td .4s infinite;
    -o-animation: td .4s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.heartbeatAni {
    animation: heartbeat 1.4s infinite;
    -moz-animation: heartbeat 1.4s infinite;
    -webkit-animation: heartbeat 1.4s infinite;
    -o-animation: heartbeat 1.4s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.shing {
    animation: shing 1s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@keyframes shing {
    0% {
        opacity: 1;
    }

    100% {
        opacity: .6;
    }
}

@keyframes move2 {
    0% {
        transform: translate(0%,0px);
    }

    100% {
        transform: translate(0%,10px);
    }
}

.moveAni2 {
    animation: move2 1s infinite;
}

.moveAni {
    animation: move .8s infinite;
    -moz-animation: move .8s infinite;
    -webkit-animation: move .8s infinite;
    -o-animation: move .8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

@keyframes move {
    from {
        -o-transform: translate(0%,0%);
        -webkit-transform: translate(0%,0%);
        -moz-transform: translate(0%,0%);
        -ms-transform: translate(0%,0%);
        transform: translate(0%,0%);
    }

    to {
        -o-transform: translate(0%,30px);
        -webkit-transform: translate(0%,30px);
        -moz-transform: translate(0%,30px);
        -ms-transform: translate(0%,30px);
        transform: translate(0%,30px);
    }
}

@keyframes td {
    from {
        -o-transform: translate(0%,0%);
        -webkit-transform: translate(0%,0%);
        -moz-transform: translate(0%,0%);
        -ms-transform: translate(0%,0%);
        transform: translate(0%,0%);
    }

    to {
        -o-transform: translate(0%,20px);
        -webkit-transform: translate(0%,20px);
        -moz-transform: translate(0%,20px);
        -ms-transform: translate(0%,20px);
        transform: translate(0%,20px);
    }
}

@keyframes heartbeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes moveAni2 {
    0% {
        transform: translate(0%,0px);
    }

    100% {
        transform: translate(100vw,0px);
    }
}

.moveAni2 {
    animation: moveAni2 5.5s linear infinite;
}

@keyframes scrollAni1 {
    0% {
        transform: translate(0%,0px) rotate(0);
    }

    100% {
        transform: translate(-100%,0px) rotate(-360deg);
    }
}

.scrollAni1 {
    animation: scrollAni1 1.8s infinite;
    -moz-animation: scrollAni1 1.8s infinite;
    -webkit-animation: scrollAni1 1.8s infinite;
    -o-animation: scrollAni1 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@keyframes scrollAni2 {
    0% {
        transform: translate(30%,0px) rotate(0);
    }

    100% {
        transform: translate(0%,0px);
    }
}

.scrollAni2 {
    animation: scrollAni2 1.8s infinite;
    -moz-animation: scrollAni2 1.8s infinite;
    -webkit-animation: scrollAni2 1.8s infinite;
    -o-animation: scrollAni2 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni3 {
    0% {
        transform: translate(0%,-20px);
    }

    100% {
        transform: translate(0%,0%);
    }
}

.scrollAni3 {
    animation: scrollAni3 1.8s infinite;
    -moz-animation: scrollAni3 1.8s infinite;
    -webkit-animation: scrollAni3 1.8s infinite;
    -o-animation: scrollAni3 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni4 {
    0% {
        transform: translate(0%,10px);
    }

    100% {
        transform: translate(0%,0%);
    }
}

.scrollAni4 {
    animation: scrollAni4 1.8s infinite;
    -moz-animation: scrollAni4 1.8s infinite;
    -webkit-animation: scrollAni4 1.8s infinite;
    -o-animation: scrollAni4 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni5 {
    0% {
        transform: none;
    }

    100% {
        transform: scale(1.35,1.35);
    }
}

.scrollAni5 {
    animation: scrollAni5 1.8s infinite;
    -moz-animation: scrollAni5 1.8s infinite;
    -webkit-animation: scrollAni5 1.8s infinite;
    -o-animation: scrollAni5 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni6 {
    0% {
        transform: scale(1.05,1.05);
    }

    100% {
        transform: none;
    }
}

.scrollAni6 {
    animation: scrollAni6 1.8s infinite;
    -moz-animation: scrollAni6 1.8s infinite;
    -webkit-animation: scrollAni6 1.8s infinite;
    -o-animation: scrollAni6 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes bubbleMover3 {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(5px) translateX(4px) rotate(9deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(-3px) translateX(1px) rotate(-6deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(-1px) translateX(-5px) rotate(-2deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes bubbleMover2 {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(5px) translateX(4px) rotate(5deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(-4px) translateX(2px) rotate(-3deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(-3px) translateX(-3px) rotate(-3deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(3px) translateX(5px) rotate(5deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(5px) translateX(10px) rotate(10deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(3px) translateX(5px) rotate(4deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes rotateAni {
    0% {
        transform: none;
    }

    100% {
        transform: rotateY(180deg);
    }
}

.rotateAni {
    -webkit-animation: rotateAni linear infinite 2s;
    -moz-animation: rotateAni linear infinite 2s;
    -o-animation: rotateAni linear infinite 2s;
    animation: rotateAni linear infinite 2s;
}

.pfAni1 {
    -webkit-animation: bubbleMover linear infinite 5s;
    -moz-animation: bubbleMover linear infinite 5s;
    -o-animation: bubbleMover linear infinite 5s;
    animation: bubbleMover linear infinite 5s;
}

.pfAni2 {
    -webkit-animation: bubbleMover2 linear infinite 5s;
    -moz-animation: bubbleMover2 linear infinite 5s;
    -o-animation: bubbleMover2 linear infinite 5s;
    animation: bubbleMover2 linear infinite 5s;
}

.pfAni3 {
    -webkit-animation: bubbleMover3 linear infinite 5s;
    -moz-animation: bubbleMover3 linear infinite 5s;
    -o-animation: bubbleMover3 linear infinite 5s;
    animation: bubbleMover3 linear infinite 5s;
}

@keyframes scalc {
    0% {
        -webkit-transform: scale(2.05,2.05);
        -o-transform: scale(2.05,2.05);
        -moz-transform: scale(2.05,2.05);
        -ms-transform: scale(2.05,2.05);
        transform: scale(2.05,2.05);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.sclani {
    animation: scalc 7s forwards;
    animation-timing-function: ease-out;
}

@keyframes scalc2 {
    0% {
        transform: scale(1.2,1.2);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.sclani2 {
    animation: scalc2 7s forwards;
    animation-timing-function: ease-out;
}

@keyframes clipAni {
    0% {
        clip: rect(auto,0,auto,auto);
    }

    100% {
        clip: rect(auto,300px,auto,auto);
    }
}

.txtModel i {
    animation: clipAni ease-out infinite 2s alternate;
}

.swingAni {
    transform-origin: top center;
    animation: swing 3s infinite ease-in-out;
}

@keyframes swing {
    0% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(6deg);
    }

    100% {
        transform: rotate(-6deg);
    }
}

.swingAni2 {
    -webkit-animation-name: routate;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-name: routate;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes routate {
    0% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
    }

    50% {
        -webkit-transform: rotate(-7deg);
        -ms-transform: rotate(-7deg);
        transform: rotate(-7deg);
    }

    100% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
    }
}

.bouncing-ball {
    -webkit-mask: radial-gradient(ellipse at center,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,black 20.1%,black 75%,black 100%);
    mask: radial-gradient(ellipse at center,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,black 20.1%,black 75%,black 100%);
    -webkit-animation: bouncing-ball 1.5s linear infinite;
    animation: bouncing-ball 1.5s linear infinite;
}

@keyframes bouncing-ball {
    0% {
        transform: scale(1,1) translateY(-80%);
    }

    25% {
        transform: scale(1,1.1) translateY(-45%);
    }

    50% {
        transform: scale(1,1.5) translateY(10%);
    }

    66% {
        transform: scale(2,0.75) translateY(25%);
    }

    75% {
        transform: scale(1,1.25) translateY(10%);
    }

    100% {
        transform: scale(1,1) translateY(-80%);
    }
}

.small_Big {
    -webkit-animation: scaleCircles 2s infinite cubic-bezier(0.55,0.15,0.45,0.85) alternate;
    animation: scaleCircles 2s infinite cubic-bezier(0.55,0.15,0.45,0.85) alternate;
}

@keyframes scaleCircles {
    0% {
        z-index: 1;
        transform: scale3d(0,0,0);
    }

    100% {
        z-index: 2;
        transform: scale3d(1,1,1);
    }
}

.index * {
    opacity: 1;
}

.index {
    /* overflow:hidden;*/
}

.wrap:after {
    content: "";
    display: table;
    clear: both;
}

.fadeInUpGroup.animated {
    animation-fill-mode: both;
    animation-name: fadeInLeft3;
    opacity: 0;
}

.fadeInUpGroup.animated:nth-child(1) {
    animation-duration: .5s !important;
    animation-delay: .1s !important;
}

.fadeInUpGroup.animated:nth-child(2) {
    animation-duration: 1s !important;
    animation-delay: .6s !important;
}

.fadeInUpGroup.animated:nth-child(3) {
    animation-duration: 1.5s !important;
    animation-delay: .9s !important;
}

.fadeInUpGroup.animated:nth-child(4) {
    animation-duration: 2s !important;
    animation-delay: 1.1s !important
}

.fadeInUpGroup.animated:nth-child(5) {
    animation-duration: 1.5s !important;
    animation-delay: 1.6s !important;
}

.wrap {
    margin: 0px calc(123/1440*100vw);
}

.head {
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    z-index: 9999;
}

.head .wrap {
    border-bottom: calc(1/1440*100vw) solid rgba(255,255,255,0.20);
}

.head .wrap .logo {
}

.head .wrap .logo.pc {
    padding-top: calc(20/1440*100vw);
    float: left;
}

.head .wrap .logo a {
}

.head .wrap .logo img {
    height: calc(42/1440*100vw);
}

.head .wrap .nav {
}

.head .wrap .nav.pc {
    padding-left: calc(50/1440*100vw);
    float: left;
}

.head .wrap .nav a img {
    width: calc(16/1440*100vw);
}

.head .wrap .nav ul {
}

.head .wrap .nav li {
    float: left;
    margin-right: calc(32/1440*100vw);
}

.head .wrap .nav .h2tit {
}

.head .wrap .nav li.current a {
    color: #FFB303;
}

.head .wrap .nav a {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
    display: flex;
    align-items: center;
    line-height: calc(82/1440*100vw);
    text-transform: capitalize;
}

.head .wrap .right {
    float: right;
    padding-top: calc(19/1440*100vw);
}

.head .wrap .right .select {
    border-radius: calc(72/1440*100vw);
    border: calc(1/1440*100vw) solid #FFF;
    background: rgba(255,255,255,0.10);
    position: relative;
    float: left;
}

.head .wrap .right .select .h2tit {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: calc(8/1440*100vw) calc(16/1440*100vw);
    width: calc(167/1440*100vw);
    background: url(../images/down.png) no-repeat calc(135/1440*100vw) center;
    background-size: calc(24/1440*100vw);
}

.head .wrap .right .select img {
    width: calc(24/1440*100vw);
    height: calc(24/1440*100vw);
    margin-right: calc(8/1440*100vw);
}

.head .wrap .right .select span {
    font-size: calc(16/1440*100vw);
}

.head .wrap .right .select:hover dl {
    top: calc(47/1440*100vw);
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.head .wrap .right .select dl {
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(43/1440*100vw);
    width: calc(183/1440*100vw);
    height: calc(257/1440*100vw);
    background: url(../images/kuang.png) no-repeat center center;
    background-size: 100% 100%;
    padding-top: calc(22/1440*100vw);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    top: calc(55/1440*100vw);
}

.head .wrap .right .select dd {
}

.head .wrap .right .select dd a {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(27/1440*100vw);
    display: flex;
    align-items: center;
    padding-left: calc(16/1440*100vw);
    margin-bottom: calc(6/1440*100vw);
}

.head .wrap .right .select dd img {
}

.head .wrap .right .select dd span {
}

.head .wrap .right .connect {
    border-radius: calc(72/1440*100vw);
    border: calc(1/1440*100vw) solid #FFF;
    background: rgba(255,255,255,0.10);
    float: left;
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(27/1440*100vw);
    width: calc(177/1440*100vw);
    line-height: calc(43/1440*100vw);
    text-align: center;
    text-transform: capitalize;
}

.current .head {
    background: linear-gradient(180deg,#000 -121.77%,rgb(66 66 66 / 90%) 100%);
}

.bannerBase {
    position: relative;
    overflow: hidden;
}

.bannerBase:after,.banner1:after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 3;
    background: linear-gradient(180deg,#000 -121.77%,rgba(0,0,0,0.00) 100%);
}

.banner1 {
    position: relative;
    overflow: hidden;
}

.bannerBase > img,.banner1 > img {
    width: 100%;
    z-index: 2;
    position: relative;
}

.banner1 .content1 {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0px;
    height: 100%;
    z-index: 5;
    padding: 0px calc(120/1440*100vw);
    padding-top: calc(314/1440*100vw);
}

.banner1 .content1 .title {
    color: #FFF;
    font-family: Candal;
    font-size: calc(70/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(80/1440*100vw);
}

.banner1 .content1 .dec {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(30/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: calc(75/1440*100vw);
    padding-bottom: calc(44/1440*100vw);
    width: calc(525/1440*100vw);
    max-width: 100%;
}

.banner1 .content1 .link1 {
    display: flex;
    align-items: center;
    display: none;
}

.banner1 .content1 .link1 a {
    display: inline-flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: calc(72/1440*100vw);
    border: calc(2/1440*100vw) solid #FFB303;
    background: #FFF;
    color: #000;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(27/1440*100vw);
    margin-right: calc(14/1440*100vw);
}

.banner1 .content1 .link1 span {
    padding-left: calc(24/1440*100vw);
    padding-right: calc(9/1440*100vw);
}

.banner1 .content1 .link1 img {
    width: calc(45.617/1440*100vw);
    height: calc(45.617/1440*100vw);
}

.banner1 .content1 .link2 {
    display: flex;
    align-items: center;
    padding-top: calc(30/1440*100vw);
    display: none;
}

.banner1 .content1 .link2 a {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
    display: flex;
    padding: calc(6/1440*100vw) calc(10/1440*100vw);
    justify-content: center;
    align-items: center;
    border-radius: calc(1000/1440*100vw);
    background: rgba(0,0,0,0.16);
    backdrop-filter: blur(calc(34.5/1440*100vw));
    margin-right: calc(8/1440*100vw);
}

.section1 .swiper-slide {
    width: auto !important;
}

.section1 {
    border-radius: calc(50/1440*100vw) calc(50/1440*100vw) 0 0;
    background: #090909;
    position: relative;
    z-index: 5;
    padding: calc(47/1440*100vw) 0;
    overflow: hidden;
    padding-bottom: calc(56/1440*100vw);
    margin-top: calc(-56/1440*100vw);
}

.section1 .scroll {
    display: flex;
    overflow: hidden;
    background: #2c2c2c;
}

.section1 .item {
    display: flex;
    align-items: center;
    border-right: calc(1/1440*100vw) solid #4d4d4d;
    padding: calc(13/1440*100vw) calc(18/1440*100vw);
}

.section1 .item b {
    color: #BC353A;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
}

.section1 .item span {
    color: #545C68;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
}

.section1 .item img {
    margin: 0 calc(3/1440*100vw);
    width: calc(24/1440*100vw);
}

.section1 .item strong {
    color: rgba(255,255,255,0.80);
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(21/1440*100vw);
}

.section1 .item >* {
    margin: 0 calc(4/1440*100vw);
}

.section1 .item em {
    color: #197B28;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
}

.section2 {
}

.section2 .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section2 .wrap .left {
}

.section2 .wrap .left img {
    width: calc(875/1440*100vw);
    height: calc(225/1440*100vw);
}

.section2 .wrap .right a.a1 {
    color: #545C68;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(21.895/1440*100vw);
    width: calc(308/1440*100vw);
    height: calc(110/1440*100vw);
    background: url(../images/links.png) no-repeat center center;
    background-size: 100%;
    padding-top: calc(43/1440*100vw);
}

.section2 .wrap .right a.a2 {
    color: var(--Color,#FFB303);
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(15/1440*100vw);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.section2 .wrap .right {
    margin-left: calc(24/1440*100vw);
}

.section2 .wrap .right a {
    display: block;
    text-align: center;
}

.section3 {
    padding-top: calc(170/1440*100vw);
}

.section3 .wrap {
    padding-bottom: calc(120/1440*100vw);
}

.section3 .wrap .block1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: calc(50/1440*100vw);
}

.section3 .wrap .block1 .ris >* {
    margin-left: calc(10/1440*100vw);
}

.section3 .wrap .block1 .ris {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section3 .wrap .block1 .search {
    display: flex;
    width: calc(496/1440*100vw);
    align-items: center;
    border-radius: calc(16/1440*100vw);
    border: calc(1/1440*100vw) solid #555;
    position: relative;
    overflow: hidden;
    height: calc(50/1440*100vw);
    padding-left: calc(44/1440*100vw);
}

.section3 .wrap .block1 .search .send {
    position: absolute;
    left: 0;
    top: 0;
    width: calc(40/1440*100vw);
    height: 100%;
    border: none;
    background: url(../images/search.png) no-repeat center center;
    background-size: calc(20/1440*100vw);
}

.section3 .wrap .block1 .search .words {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(24/1440*100vw);
    border: none;
    background: none;
    width: 100%;
    height: 100%;
}

.section3 .wrap .block1 .check {
    display: flex;
    height: calc(50/1440*100vw);
    padding: calc(16/1440*100vw) calc(14/1440*100vw) calc(16/1440*100vw) calc(16/1440*100vw);
    gap: calc(10/1440*100vw);
    border-radius: calc(15/1440*100vw);
    background: #1B1B1B;
}
.section3 .wrap .block1 .sec h2.h2tit{
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    white-space: nowrap;
}
    .section3 .wrap .block1 .sec dl dd:hover{
        background: #2b2b2b;
    }
    .section3 .wrap .block1 .sec dl dd{
        padding-left: 14px;
        cursor: pointer;
    }
    .section3 .wrap .block1 .sec:hover dl{
        
    visibility:visible;
    opacity:1;
    z-index:5;
        top:60px;
    }
    .section3 .wrap .block1 .sec dl{
        position: absolute;
        left: 0;
        top: 30px;
        width: 100%;
        background: #1B1B1B;
        border-radius: 10px;
        top: 70px;
        line-height: 30px;
        padding: 10px 0px;
        -webkit-transition: all 0.2s;
        -o-transition:all 0.2s;
        -moz-transition:all 0.2s;
        -ms-transition:all 0.2s;
        transition:all 0.2s;
        visibility: hidden;
        opacity: 0;
        z-index: -1;
    }
.section3 .wrap .block1 .sec {
    /* display: flex; */
    height: calc(50/1440*100vw);
    padding: calc(16/1440*100vw) calc(30/1440*100vw) calc(16/1440*100vw) calc(10/1440*100vw);
    gap: calc(7/1440*100vw);
    border-radius: calc(16/1440*100vw);
    background: url(../images/down2.png) 90% center #1B1B1B no-repeat;
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
    border: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-size: calc(13/1440*100vw);
    position: relative;
}

.section3 .wrap .block1 .link {
    display: flex;
    width: calc(50/1440*100vw);
    height: calc(50/1440*100vw);
    padding: calc(17/1440*100vw) calc(14/1440*100vw) calc(16/1440*100vw) calc(15/1440*100vw);
    flex-shrink: 0;
    border-radius: calc(16/1440*100vw);
    background: #1B1B1B;
}

.section3 .wrap .block1 .link img {
    width: calc(21/1440*100vw);
}

.section3 .wrap .block2 {
    zoom:1;overflow: hidden;
}

.section3 .wrap .block2 .item:nth-child(5n) {
    margin-right: 0;
}

.section3 .wrap .block2 .item {
    width: calc((100% - calc(88/1440*100vw))/5);
    margin-right: calc(22/1440*100vw);
    float: left;
    border-radius: calc(15/1440*100vw);
    overflow: hidden;
    margin-bottom: calc(22/1440*100vw);
}

.section3 .wrap .block2 .item .imgbox {
    position: relative;
}

.section3 .wrap .block2 .item .imgbox .pic {
    display: block;
    width: 100%;
    height: calc(123/1440*100vw);
    object-fit: cover;
}

.section3 .wrap .block2 .item .imgbox .infor .border {
    border: calc(2/1440*100vw) solid #000;
    border-radius: calc(300/1440*100vw);
}

.section3 .wrap .block2 .item .imgbox .infor {
    bottom: 0;
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    bottom: calc(-10/1440*100vw);
}

.section3 .wrap .block2 .item .imgbox .infor .lef {
    display: flex;
    align-items: center;
}

.section3 .wrap .block2 .item .imgbox .infor .lef img {
    width: calc(21/1440*100vw);
    height: calc(21/1440*100vw);
}

.section3 .wrap .block2 .item .imgbox .infor .lef span {
    display: inline-flex;
    padding: calc(4/1440*100vw) calc(10/1440*100vw) calc(5/1440*100vw) calc(11/1440*100vw);
    border-radius: calc(16/1440*100vw);
    border: calc(1/1440*100vw) solid #252B33;
    background: #010810;
    color: var(--Color,#FFB303);
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(9/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(11/1440*100vw);
    margin-left: calc(5/1440*100vw);
}

.section3 .wrap .block2 .item .imgbox .infor .ris:after {
    content: "";
    position: absolute;
    top: 0;
    width: calc(6/1440*100vw);
    height: 100%;
    right: calc(6/1440*100vw);
}

.section3 .wrap .block2 .item .imgbox .infor .ris {
    display: inline-flex;
    padding: calc(4/1440*100vw) calc(6/1440*100vw) calc(4/1440*100vw) calc(6/1440*100vw);
    gap: calc(11/1440*100vw);
    border-radius: calc(15/1440*100vw) 0 0 calc(15/1440*100vw);
    background: linear-gradient(90deg,var(--Color,#FFB303) 0%,#F4511E 100%);
    position: relative;
    padding-right: calc(23/1440*100vw);
    color: #0F0F0F;
    font-family: "Chelsea Market";
    font-size: calc(9/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(11/1440*100vw);
}

.section3 .wrap .block2 .item .imgbox .infor .ris.up:after {
    background: url(../images/up.png) no-repeat center center;
    background-size: 100%;
}

.section3 .wrap .block2 .item .imgbox .infor .ris.down:after {
    background: url(../images/down3.png) no-repeat center center;
    background-size: 100%;
}

.section3 .wrap .block2 .item .content {
    border: calc(1/1440*100vw) solid #545C68;
    border-top: none;
    border-radius: 0 0 calc(15/1440*100vw) calc(15/1440*100vw);
    padding: 0 calc(12/1440*100vw);
    padding-top: calc(17/1440*100vw);
}

.section3 .wrap .block2 .item .content .link a {
    color: inherit;
    text-decoration: underline;
}

.section3 .wrap .block2 .item .content .link {
    color: var(--Color,#FFB303);
    font-family: "Chelsea Market";
    font-size: calc(9/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(11/1440*100vw);
}

.section3 .wrap .block2 .item .content .title {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
    padding-top: calc(9/1440*100vw);
    padding-bottom: calc(6/1440*100vw);
    text-transform: uppercase;
}

.section3 .wrap .block2 .item .content .title em {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(9/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(11/1440*100vw);
}

.section3 .wrap .block2 .item .content .title2 {
    color: #545C68;
    font-family: "Chelsea Market";
    font-size: calc(9/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(10/1440*100vw);
    margin-bottom: calc(16/1440*100vw);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: calc(20/1440*100vw);
}

.section3 .wrap .block2 .item .content .line1 {
    border-bottom: calc(1/1440*100vw) solid #252B33;
}

.section3 .wrap .block2 .item .content .val {
    color: #545C68;
    font-family: "Chelsea Market";
    font-size: calc(9/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(11/1440*100vw);
    display: block;
}

.section3 .wrap .block2 .item .content .line2 {
    position: relative;
    overflow: hidden;
    width: calc(83/1440*100vw);
    height: calc(4/1440*100vw);
    border-radius: calc(6/1440*100vw);
    background: #252B33;
    margin-top: calc(5/1440*100vw);
}

.section3 .wrap .block2 .item .content .line2 i {
    width: 30%;
    display: block;
    height: 100%;
    background: linear-gradient(90deg,var(--Color,#FFB303) 0%,#F4511E 100%);
    border-radius: calc(6/1440*100vw);
}

.section3 .wrap .block2 .item .content .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(14/1440*100vw) 0;
}

.section3 .wrap .block2 .item .content .les {
}

.section3 .wrap .block2 .item .content .ris {
}

.section3 .wrap .block2 .item .content .ris a {
    margin-left: calc(3/1440*100vw);
}

.section3 .wrap .block2 .item .content .ris a img {
    height: calc(17/1440*100vw);
}

.section3 .wrap .pagesize {
    text-align: center;
    padding-top: calc(25/1440*100vw);
    font-size: 0;
}

.section3 .wrap .pagesize > *.current {
    border-radius: calc(8/1440*100vw);
    border: calc(2/1440*100vw) solid var(--Color,#FFB303);
    background: #1C2834;
    color: #FFB303;
}

.section3 .wrap .pagesize > * {
    display: flex;
    width: calc(32/1440*100vw);
    line-height: calc(28/1440*100vw);
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    display: inline-block;
    color: #5A6776;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    margin: 0 calc(4/1440*100vw);
    border-radius: calc(8/1440*100vw);
    background: #1C2834;
}

.section3 .wrap .pagesize span {
}

.section3 .wrap .block3 {
    text-align: center;
    padding-top: calc(120/1440*100vw);
}

.section3 .wrap .block3 .title {
    color: var(--Color,#FFB303);
    font-family: Candal;
    font-size: calc(52/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
}

.section3 .wrap .block3 .list {
    padding-top: calc(36/1440*100vw);
    font-size: 0;
}

.section3 .wrap .block3 .list a {
    margin: 0 calc(26/1440*100vw);
}

.section3 .wrap .block3 .list img {
    height: calc(101/1440*100vw);
}

.footer {
    background: #0F1012;
    padding: calc(40/1440*100vw) 0;
}

.footer .wrap {
    align-items: center;
    justify-content: space-between;
}

.footer .wrap .logo {
}

.footer .wrap .logo img {
    height: calc(17/1440*100vw);
    float: left;
    margin-top: calc(0/1440*100vw);
}

.footer .wrap .rig {
    float: right;
    display: flex;
    align-items: center;
}

.footer .wrap .rig a {
    margin-left: calc(40/1440*100vw);
}

.footer .wrap .rig img {
    width: calc(30/1440*100vw);
    height: calc(30/1440*100vw);
    object-fit: contain;
}

.checkItem span {
    padding-left: calc(22/1440*100vw);
    white-space: nowrap;
}

.checkItem {
    position: relative;
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(11/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
}

.checkItem input[type=radio],.checkItem input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    opacity: 0;
    z-index: 2;
}

.checkItem input[type=radio]+label,.checkItem input[type=checkbox]+label {
    cursor: pointer;
}

.checkItem input[type=radio]+label::before,.checkItem input[type=radio]+label::after,.checkItem input[type=checkbox]+label::before,.checkItem input[type=checkbox]+label::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: calc(-6/1440*100vw);
    width: calc(16/1440*100vw);
    height: calc(16/1440*100vw);
    background: #FFFFFF;
    width: calc(12/1440*100vw);
    height: calc(12/1440*100vw);
    border-radius: calc(300/1440*100vw);
    background: none;
}

.checkItem input[type=radio]+label::before,.checkItem input[type=checkbox]+label::before {
    border: calc(1/1440*100vw) solid #DEDEDE;
}

.checkItem input[type=radio]+label::before,.checkItem input[type=radio]+label::after {
    border-radius: 50%;
}

.checkItem input[type=radio]:checked+label::before,.checkItem input[type=radio]:checked+label::after,.checkItem input[type=checkbox]:checked+label::before,.checkItem input[type=checkbox]:checked+label::after {
    animation: cd-bounce .3s;
}

.checkItem input[type=radio]+label::after,.checkItem input[type=checkbox]+label::after {
    background-color: #F29700;
    background-position: center center;
    background-repeat: no-repeat;
    display: none;
    background: #FFB303;
}

.checkItem input[type=radio]+label::after {
}

.checkItem input[type=radio]:checked+label::after,.checkItem input[type=checkbox]:checked+label::after {
    display: block;
}

@keyframes cd-bounce {
    0%,100% {
        transform: scale(1)
    }

    50% {
        transform: scale(.8)
    }
}

.checkItem label:after,.checkItem label:before {
    box-sizing: border-box;
}

.banner2 {
}

.banner2.bannerBase {
}

.banner2 img {
}

.bannerBase img.jm {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
    left: 0;
}

.banner2 .content2 {
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0;
    top: 0;
    z-index: 5;
    padding-top: calc(236/1440*100vw);
}

.banner2 .content2 .title1 {
    color: #FFF;
    text-align: center;
    font-family: Candal;
    font-size: calc(64/1440*100vw);
    font-style: normal;
    font-weight: 600;
    line-height: calc(80/1440*100vw);
    text-transform: uppercase;
}

.banner2 .content2 .title1 b {
    color: #FFB303;
}

.banner2 .content2 .dec {
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(30/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: calc(13/1440*100vw);
    padding-bottom: calc(45/1440*100vw);
    width: calc(935.396/1440*100vw);
    margin: auto;
    max-width: 90%;
}

.banner2 .content2 .items {
    width: calc(880/1440*100vw);
    flex-shrink: 0;
    margin: auto;
    display: flex;
    border: calc(1/1440*100vw) solid #FFC815;
    border-radius: calc(4/1440*100vw);
    overflow: hidden;
    padding: calc(20/1440*100vw) 0;
    background: rgb(255 200 21 / 40%);
    max-width: 90%;
}

.banner2 .content2 .items p:last-child {
    border: none;
}

.banner2 .content2 .items p {
    width: 33.333%;
    border-right: calc(1/1440*100vw) solid #FFC815;
}

.banner2 .content2 .items .s1 {
    color: #FFF;
    text-align: center;
    font-family: Candal;
    font-size: calc(40.688/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    display: block;
}

.banner2 .content2 .items .s1 img {
    vertical-align: middle;
    height: calc(31/1440*100vw);
}

.banner2 .content2 .items .s1 span {
    vertical-align: middle;
}

.banner2 .content2 .items .s2 {
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
}

.section4 {
    padding-bottom: calc(113/1440*100vw);
}

.section4 .wrap {
}

.section4 .wrap .title {
    color: var(--Color,#FFB303);
    font-family: Candal;
    font-size: calc(52/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    padding-top: calc(73/1440*100vw);
    padding-bottom: calc(31/1440*100vw);
}

.section4 .wrap .list {
    zoom:1;overflow: hidden;
}

.section4 .wrap .list .item {
    background: #353535;
    float: left;
    border-radius: calc(10/1440*100vw);
    overflow: hidden;
    margin-right: calc(20/1440*100vw);
    margin-bottom: calc(20/1440*100vw);
    width: calc((100% - calc(40/1440*100vw))/3);
    padding: calc(16/1440*100vw);
}

.section4 .wrap .list .item .imgbox {
}

.section4 .wrap .list .item .imgbox img {
    width: 100%;
    height: calc(178/1440*100vw);
    object-fit: cover;
}

.section4 .wrap .list .item .infor {
    display: flex;
    align-items: center;
    padding: 0 calc(15/1440*100vw);
    margin-top: calc(-37/1440*100vw);
}

.section4 .wrap .list .item .infor .icon {
}

.section4 .wrap .list .item .infor .icon img {
    width: calc(65/1440*100vw);
    height: calc(67/1440*100vw);
    object-fit: contain;
}

.section4 .wrap .list .item .infor .rig {
    padding-left: calc(10/1440*100vw);
}

.section4 .wrap .list .item .infor .rig .tit {
    color: #FFF;
    font-family: Candal;
    font-size: calc(20/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(30/1440*100vw);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section4 .wrap .list .item .infor .rig .link {
    font-size: 0;
}

.section4 .wrap .list .item .infor .rig .link a {
    margin-left: calc(10/1440*100vw);
}

.section4 .wrap .list .item .infor .rig .link img {
    width: calc(17/1440*100vw);
}

.section4 .wrap .list .item:nth-child(3n) {
    margin-right: 0;
}

.section4 .wrap .list .item .infor .dec {
    padding-top: calc(2/1440*100vw);
    color: #C9C9C9;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.banner3 {
}

.banner3 .content2 {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 66;
    height: 100%;
    text-align: center;
}

.banner3 .content2 .title1 {
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(29.531/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(36/1440*100vw);
    padding-top: calc(131/1440*100vw);
}

.banner3 .content2 .dec {
    color: #FFF;
    text-align: center;
    font-family: Candal;
    font-size: calc(52/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(56/1440*100vw);
    text-transform: uppercase;
    padding-top: calc(12/1440*100vw);
    margin: auto;
    max-width: 90%;
    width: calc(856.654/1440*100vw);
}

.banner3 .content2 .dec b {
    color: #FFB303;
}

.section5 {
    padding-top: calc(66/1440*100vw);
}

.section5 .block1 {
    border-radius: calc(16/1440*100vw);
    border: calc(1/1440*100vw) solid var(--Color,#FFB303);
    background: #000;
    box-shadow: 0px calc(20/1440*100vw) calc(25/1440*100vw) calc(-5/1440*100vw) rgba(0,0,0,0.10),0px calc(8/1440*100vw) calc(10/1440*100vw) calc(-6/1440*100vw) rgba(0,0,0,0.10);
    padding: calc(33/1440*100vw);
}

.section5 .block1 .title1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section5 .block1 .title1 .tit {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(20/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(28/1440*100vw);
}

.section5 .block1 .title1 .ris {
}

.section5 .block1 .title1 .ris a {
    display: block;
    /* width:calc(144/1440*100vw);*/
    height: calc(32/1440*100vw);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    border-radius: calc(6/1440*100vw);
    border: calc(1/1440*100vw) solid #FFF;
    background: #FFF;
    padding-left: calc(10/1440*100vw);
    position: relative;
    padding-right: 1vw;
}

.section5 .block1 .title1 .ris a b {
    display: inline-block;
    width: calc(16/1440*100vw);
    height: calc(16/1440*100vw);
    flex-shrink: 0;
    border-radius: calc(300/1440*100vw);
    margin-right: calc(30/1440*100vw);
}

.section5 .block1 .title1 .ris a b.color1 {
    border-radius: calc(9999/1440*100vw);
    background: #DC2626;
}

.section5 .block1 .title1 .ris a b.color2 {
    background: #ffa769;
}

.section5 .block1 .title1 .ris a span {
    color: #202537;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(13.781/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(20/1440*100vw);
}

.section5 .block1 .items {
    padding-bottom: calc(32/1440*100vw);
    display: flex;
    padding-top: calc(28/1440*100vw);
}

.section5 .block1 .items p {
    flex: 1;
}

.section5 .block1 .items p .s1 {
    color: rgba(255,255,255,0.60);
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(24/1440*100vw);
    display: block;
}

.section5 .block1 .items p .s2 {
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(19.219/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(28/1440*100vw);
    display: block;
}

.section5 .block1 .line {
    height: calc(20/1440*100vw);
    flex-shrink: 0;
    border-radius: calc(300/1440*100vw);
    background: #fff;
}

.section5 .block1 .line i {
    display: block;
    width: 40%;
    height: 100%;
    border-radius: calc(300/1440*100vw);
    background: #fd9900;
}

.section5 .block1 .val {
    color: #FFF;
    text-align: right;
    font-family: Inter;
    font-size: calc(17.016/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(28/1440*100vw);
    text-align: right;
    padding-top: calc(10/1440*100vw);
}

.section5 .block2 {
    margin-top: calc(32/1440*100vw);
    border-radius: calc(16/1440*100vw);
    border: calc(1/1440*100vw) solid var(--Color,#FFB303);
    background: #000;
    box-shadow: 0px calc(20/1440*100vw) calc(25/1440*100vw) calc(-5/1440*100vw) rgba(0,0,0,0.10),0px calc(8/1440*100vw) calc(10/1440*100vw) calc(-6/1440*100vw) rgba(0,0,0,0.10);
    padding: calc(33/1440*100vw);
}

.section5 .block2 .title {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(20/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(28/1440*100vw);
}

.section5 .block2 .items {
    padding-bottom: calc(23/1440*100vw);
}

.section5 .block2 .items p {
    padding-top: calc(16/1440*100vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: calc(45/1440*100vw);
    padding-right: calc(45/1440*100vw);
}

.section5 .block2 .items p .s1 {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(24/1440*100vw);
}

.section5 .block2 .items p .s1 em {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(16/1440*100vw);
}

.section5 .block2 .items p .s2 {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(15.375/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(24/1440*100vw);
}

.section5 .block2 .items p .s2 a {
    display: flex;
    width: calc(45.94/1440*100vw);
    height: calc(24/1440*100vw);
    padding: calc(4/1440*100vw) calc(8.8/1440*100vw) calc(5/1440*100vw) calc(9/1440*100vw);
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: calc(6/1440*100vw);
    border: calc(1/1440*100vw) solid var(--Color,#FFB303);
    background: rgba(255,255,255,0.00);
    box-shadow: 0px calc(4/1440*100vw) calc(6/1440*100vw) calc(-1/1440*100vw) rgba(0,0,0,0.10),0px calc(2/1440*100vw) calc(4/1440*100vw) calc(-2/1440*100vw) rgba(0,0,0,0.10);
    color: var(--Color,#FFB303);
    text-align: center;
    font-family: Inter;
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 600;
    line-height: calc(12/1440*100vw);
    text-transform: uppercase;
}

.section5 .block2 .textwords {
    margin: 0px calc(45/1440*100vw);
    height: calc(48/1440*100vw);
    padding: calc(14.5/1440*100vw) calc(26.19/1440*100vw) calc(14.5/1440*100vw) calc(5/1440*100vw);
    align-items: center;
    flex-shrink: 0;
    border-radius: calc(2/1440*100vw);
    border: calc(1/1440*100vw) solid var(--Color,#FFB303);
    background: #000;
    height: calc(48/1440*100vw);
    padding: 0;
    position: relative;
    margin-bottom: calc(16/1440*100vw);
    overflow: hidden;
}

.section5 .block2 .textwords .words {
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    color: #FFF;
    font-family: Poppins;
    font-size: calc(15/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: calc(5/1440*100vw);
}

.section5 .block2 .textwords .dw {
    position: absolute;
    color: #FFF;
    font-family: Poppins;
    font-size: calc(15/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    top: calc(13/1440*100vw);
    right: calc(41/1440*100vw);
}

.section5 .block2 .textwords .js {
    position: absolute;
    right: 0;
    top: 0px;
    width: calc(19.38/1440*100vw);
    padding: calc(2/1440*100vw) 0px;
    height: 100%;
}

.section5 .block2 .textwords .js i {
    display: block;
    height: 50%;
    text-align: center;
    cursor: pointer;
    fill: rgba(0,0,0,0.10);
    box-shadow: calc(-1/1440*100vw) calc(-1/1440*100vw) calc(3/1440*100vw) 0px rgba(0,0,0,0.10) inset,calc(1/1440*100vw) calc(1/1440*100vw) calc(3/1440*100vw) 0px rgba(255,255,255,0.70) inset;
    line-height: calc(21/1440*100vw);
    font-style: normal;
}

.section5 .block2 .send {
    display: block;
    margin: auto;
    display: flex;
    width: calc(127.98/1440*100vw);
    height: calc(48/1440*100vw);
    padding: calc(15/1440*100vw) calc(16.8/1440*100vw) calc(16/1440*100vw) calc(17/1440*100vw);
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: none;
    border-radius: calc(6/1440*100vw);
    border-radius: calc(6/1440*100vw);
    background: #FFB303;
    box-shadow: 0px calc(4/1440*100vw) calc(6/1440*100vw) calc(-1/1440*100vw) rgba(0,0,0,0.10),0px calc(2/1440*100vw) calc(4/1440*100vw) calc(-2/1440*100vw) rgba(0,0,0,0.10);
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(14/1440*100vw);
    text-transform: uppercase;
    margin-top: calc(32/1440*100vw);
}

.section5 .block2 .send.dasabled {
    background: rgba(255,255,255,0.20);
    box-shadow: 0px calc(4/1440*100vw) calc(6/1440*100vw) calc(-1/1440*100vw) rgba(0,0,0,0.10),0px calc(2/1440*100vw) calc(4/1440*100vw) calc(-2/1440*100vw) rgba(0,0,0,0.10);
    pointer-events: none;
    cursor: not-allowed;
    color: rgba(255,255,255,0.20);
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(14/1440*100vw);
    text-transform: uppercase;
}

.banner3 {
}

.bannerBase {
}

.banner3 .jm {
}

.banner3 .content {
    z-index: 3;
    position: absolute;
    left: 0;
    top: calc(0/1440*100vw);
    width: 100%;
    text-align: left;
    height: 100%;
    z-index: 6;
    padding-left: calc(119/1440*100vw);
    padding-top: calc(274/1440*100vw);
}

.banner3 .title1 {
    color: #FFF;
    font-family: Candal;
    font-size: calc(80/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(80/1440*100vw);
    text-transform: uppercase;
}

.banner3 .title1 b {
    color: #FFB303;
}

.banner3 .dec {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(30/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: calc(525/1440*100vw);
    padding-top: calc(50/1440*100vw);
    max-width: 90%;
}

.section6 {
    border-radius: calc(50/1440*100vw) calc(50/1440*100vw) calc(0/1440*100vw) calc(0/1440*100vw);
    background: #ccc;
    position: relative;
    z-index: 33;
    padding-top: calc(131/1440*100vw);
    margin-top: calc(-30/1440*100vw);
    background: #090909;
}

.section6 .wrap2 {
}

.wrap2:after {
    content: "";
    display: table;
    clear: both;
}

.wrap2 {
    margin: 0px calc(92/1440*100vw);
}

.section6 .block1 {
}

.section6 .titlemodel2 b {
    color: #FFB303;
}

.section6 .titlemodel2 {
    color: #FFF;
    font-family: Candal;
    font-size: calc(52/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
}

.section6 .block1 .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section6 .block1 .content .left {
    width: calc(730/1440*100vw);
}

.section6 .block1 .content .right img {
    width: calc(645/1440*100vw);
}

.section6 .block1 .content .left .dec {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(32/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.section6 .block1 .content .left .dec2 {
    color: #BFBDBD;
    font-family: "Chelsea Market";
    font-size: calc(20/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding-top: calc(28/1440*100vw);
}

.section6 .block2 {
    padding-top: calc(198/1440*100vw);
}

.section6 .block2 .titlemodel2 {
}

.section6 .block2 .items {
    zoom:1;overflow: hidden;
    padding-top: calc(40/1440*100vw);
    display: flex;
    justify-content: space-between;
    padding-bottom: calc(200/1440*100vw);
}

.section6 .block2 .items .item {
    border-radius: calc(16/1440*100vw);
    border: calc(1/1440*100vw) solid #212429;
    background: var(--colors-alias-black-white-black-800,#0D0E14);
    width: calc((100% - calc(60/1440*100vw))/2);
    height: calc(335/1440*100vw);
    padding-top: calc(46/1440*100vw);
    padding-left: calc(38/1440*100vw);
}

.section6 .block2 .items .item .ico img {
    height: calc(108.843/1440*100vw);
}

.section6 .block2 .items .item .tit {
    color: #FFB303;
    font-family: Candal;
    font-size: calc(32/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: calc(-2/1440*100vw);
    padding: calc(17/1440*100vw) calc(0/1440*100vw);
}

.section6 .block2 .items .item .dec {
    color: #BFBDBD;
    font-family: "Chelsea Market";
    font-size: calc(18/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    width: calc(543/1440*100vw);
    max-width: 90%;
}

.section6 .block3 {
}

.section6 .block3 .titlemodel2 {
    margin-bottom: calc(40/1440*100vw);
}

.section6 .block3 .items {
    zoom:1;overflow: hidden;
}

.section6 .block3 .items .item {
    width: calc(302.898/1440*100vw);
    height: calc(294.379/1440*100vw);
    padding: calc(0/1440*100vw) calc(41.949/1440*100vw) calc(32.656/1440*100vw) calc(41.949/1440*100vw);
    flex-direction: column;
    align-items: center;
    gap: calc(14.74/1440*100vw);
    flex-shrink: 0;
    float: left;
    border-radius: calc(16/1440*100vw);
    border: calc(1/1440*100vw) solid #212429;
    background: var(--colors-alias-black-white-black-800,#0D0E14);
    width: calc((100% - calc(48/1440*100vw))/4);
    margin-right: calc(16/1440*100vw);
    padding-top: calc(21/1440*100vw);
    text-align: center;
}

.section6 .block3 .items .item:nth-child(4n) {
    margin-right: calc(0/1440*100vw);
}

.section6 .block3 .items .item .icon img {
    height: calc(100/1440*100vw);
}

.section6 .block3 .items .item .title b {
    color: #FFB303;
    font-family: Candal;
    font-size: calc(60/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.section6 .block3 .items .item .title {
    padding-top: calc(36/1440*100vw);
    color: var(--Base,#FFF);
    font-family: Candal;
    font-size: calc(60/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.section6 .block3 .items .item .dec {
    color: #BFBDBD;
    font-family: "Chelsea Market";
    font-size: calc(18/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.section6 .block4 {
}

.section6 .block4 .titlemodel2 {
    padding-top: calc(200/1440*100vw);
    margin-bottom: calc(40/1440*100vw);
}

.section6 .block4 .tablelist {
}

.section6 .block4 .tablelist table {
    border-right: calc(1.91/1440*100vw) solid #B9B9B9;
    border-bottom: calc(1.91/1440*100vw) solid #B9B9B9;
    background: rgba(255,255,255,0.00);
    border-radius: calc(5/1440*100vw);
    overflow: hidden;
}

.section6 .block4 .tablelist table th {
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(24/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    border-top: calc(1.91/1440*100vw) solid #B9B9B9;
    border-left: calc(1.91/1440*100vw) solid #B9B9B9;
    background: #FFB303;
    height: calc(68/1440*100vw);
}

.section6 .block4 .tablelist table td {
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(24/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    border-top: calc(1.91/1440*100vw) solid #B9B9B9;
    border-left: calc(1.91/1440*100vw) solid #B9B9B9;
    background: rgba(255,255,255,0.00);
    height: calc(68/1440*100vw);
}

.section6 .block5 {
}

.section6 .block5 .titlemodel2 {
    padding-bottom: calc(40/1440*100vw);
}

.section6 .block5 .list:after {
    content: "";
    position: absolute;
    background: linear-gradient(90deg,rgba(255,255,255,0.00) 0%,#FFB303 66.91%);
    width: 100%;
    height: calc(2/1440*100vw);
    top: calc(50/1440*100vw);
}

.section6 .block5 .list {
    position: relative;
    margin-bottom: calc(181/1440*100vw);
}

.section6 .block5 .list .swiper-container {
}

.section6 .block5 .list .swiper-container .swiper-wrapper {
}

.section6 .block5 .list .swiper-container .swiper-slide {
    text-align: center;
    cursor: pointer;
}

.section6 .block5 .list .swiper-container .swiper-slide .time {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(24/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(24/1440*100vw);
    letter-spacing: calc(0.18/1440*100vw);
}

.section6 .block5 .list .swiper-container .swiper-slide .circle {
    width: calc(127/1440*100vw);
    height: calc(127/1440*100vw);
    flex-shrink: 0;
    margin: auto;
    background: url(../images/cir.png) no-repeat center center;
    background-size: 100%;
    margin-top: calc(-21/1440*100vw);
}

.section6 .block5 .list .swiper-container .swiper-slide:hover .dec {
    border-radius: calc(16/1440*100vw);
    border: calc(0.5/1440*100vw) solid #FFB303;
    background: var(--colors-alias-black-white-black-800,#0D0E14);
}

.section6 .block5 .list .swiper-container .swiper-slide .dec {
    border-radius: calc(16/1440*100vw);
    border: calc(1/1440*100vw) solid #212429;
    background: var(--colors-alias-black-white-black-800,#0D0E14);
    max-width: 90%;
    margin: auto;
    width: calc(300/1440*100vw);
    height: calc(250/1440*100vw);
    color: rgba(255,255,255,0.70);
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(24/1440*100vw);
    letter-spacing: calc(0.18/1440*100vw);
    padding: calc(17/1440*100vw);
    text-align: left;
    margin-top: calc(-10/1440*100vw);
}

.section6 .block5 .list .swiper-container .swiper-slide .dec p {
    position: relative;
    padding-left: calc(14/1440*100vw);
}

.section6 .block5 .list .swiper-container .swiper-slide .dec p:after {
    content: "·";
    position: absolute;
    left: 0;
    top: calc(1/1440*100vw);
    left: 0;
}

.section6 .block6 {
    padding-bottom: calc(250/1440*100vw);
}

.section6 .block6 .titlemodel2 {
}

.section6 .block6 .list {
    padding-top: calc(40/1440*100vw);
    font-size: 0px;
}

.section6 .block6 .list a {
    margin-right: calc(52/1440*100vw);
}

.section6 .block6 .list a img {
    height: calc(100/1440*100vw);
}

.jsbg {
    position: relative;
    background: url(../images/bg5.png) no-repeat center bottom;
    background-size: 100%;
    padding-top: calc(200/1440*100vw);
}

.jsbg .js {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
}

.jsbg .wrap2 {
    position: relative;
    z-index: 5;
}

.section6_1:after {
    content: "";
}

.section6_1 {
    padding: 0;
    position: relative;
    z-index: 4;
    padding-bottom: calc(80/1440*100vw);
    padding-top: calc(186/1440*100vw);
    background: url(../images/bg6.png) no-repeat center 0;
    background-size: 100%;
    background-attachment: fixed;
}

.section6_1 .title .s1 b {
    color: var(--Color,#FFB303);
}

.section6_1 .block1 .left .imgfile .title em {
    display: block;
    font-style: normal;
}

.section6_1 .content {
}

.section6_1 .block1 {
    zoom:1;overflow: hidden;
}

.section6_1 .block1 .left {
    float: left;
    width: calc(175/1440*100vw);
}

.section6_1 .title {
    font-family: Georgia;
    font-weight: normal;
    font-size: calc(16/1440*100vw);
    color: #fff;
    margin-bottom: calc(10/1440*100vw);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: capitalize;
}

.section6_1 .block1 .left .title .s1 {
}

.section6_1 .block1 .left .imgfile {
    height: calc(175/1440*100vw);
    background: url(../images/upload.png) no-repeat center center;
    border-radius: calc(10/1440*100vw);
    position: relative;
    overflow: hidden;
    background-size: cover;
}

.section6_1 .block1 .left .imgfile .title {
    position: absolute;
    display: block;
    margin: 0;
    padding-left: 0;
    width: 100%;
    height: 100%;
    padding-top: calc(67/1440*100vw);
    text-align: center;
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: calc(12/1440*100vw);
    line-height: calc(14/1440*100vw);
    color: #BCBDBD;
}

.section6_1 .block1 .left .imgfile .uploads {
    display: inline-flex;
    width: calc(75/1440*100vw);
    justify-content: center;
    align-items: center;
    border-radius: calc(7/1440*100vw);
    background: #FFF;
    margin-top: calc(36/1440*100vw);
    border: none;
    height: calc(26/1440*100vw);
    color: #0F0F0F;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(10/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(11/1440*100vw);
}

.section6_1 .block1 .left .imgfile .filesWrap {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.section6_1 .block1 .right {
    float: right;
    width: calc(516/1440*100vw);
}

.section6_1 .block1 .right .words {
    margin-bottom: calc(23/1440*100vw);
}

.section6_1 .block1 .right .title .s1 {
}

.section6_1 .block1 .right .title .s2 {
    font-size: calc(18/1440*100vw);
    color: #999999;
}

.section6_1 .words {
    height: calc(50/1440*100vw);
    background: #000000;
    background: #323232;
    border-radius: calc(12/1440*100vw);
    border-radius: calc(10/1440*100vw);
    width: 100%;
    display: block;
    border: none;
    padding: 0 calc(20/1440*100vw);
    font-size: calc(16/1440*100vw);
    color: #fff;
    border-radius: calc(6/1440*100vw);
    border: calc(1/1440*100vw) solid #464647;
    background: rgba(81,81,81,0.10);
}

.section6_1 .block2 {
}

.section6_1 .block2 .title {
}

.title {
}

.section6_1 .block2 .title .s1 em {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: calc(16/1440*100vw);
    color: #999999;
    font-style: normal;
}

.section6_1 .block2 .title .s1 {
}

.section6_1 .block2 .title .s2 {
    color: #999999;
}

.section6_1 .block2 .txt {
    height: calc(120/1440*100vw);
    background: #323232;
    border-radius: calc(10/1440*100vw);
    margin-bottom: calc(23/1440*100vw);
    resize: none;
    border: none;
    width: 100%;
    display: block;
    padding: calc(20/1440*100vw);
    font-size: calc(16/1440*100vw);
    color: #fff;
    border-radius: calc(6/1440*100vw);
    border: calc(1/1440*100vw) solid #464647;
    background: rgba(81,81,81,0.10);
}

.section6_1 .block2 .words {
    margin-bottom: calc(26/1440*100vw);
}

.section6_1 .block2 .txtwrap {
    position: relative;
    overflow: hidden;
}

.section6_1 .block2 .txtwrap .words2 {
    padding-right: calc(140/1440*100vw);
}

.section6_1 .block2 .txtwrap .tit {
    position: absolute;
    right: 0;
    top: 0;
    font-family: Georgia;
    font-weight: bold;
    font-size: calc(20/1440*100vw);
    color: #FFFFFF;
    right: calc(23/1440*100vw);
    line-height: calc(98/1440*100vw);
}

.section6_1 .block2 .txtwrap .tit span {
    display: inline-block;
    vertical-align: middle;
}

.section6_1 .block2 .txtwrap .tit img {
    width: calc(34/1440*100vw);
    margin-left: calc(11/1440*100vw);
}

.section6_1 .block2 .send {
    width: 100%;
    height: calc(89/1440*100vw);
    background: #000000;
    border-radius: calc(10/1440*100vw);
    display: block;
    margin: auto;
    margin-top: calc(46/1440*100vw);
    border: none;
    font-family: Georgia;
    font-weight: bold;
    font-size: calc(20/1440*100vw);
    color: #fff;
    height: calc(48/1440*100vw);
    background: #F7D339;
    border-radius: calc(123/1440*100vw);
    font-family: PingFangSC,PingFang SC;
    font-weight: 600;
    font-size: calc(28/1440*100vw);
    color: #091743;
    border-radius: calc(6/1440*100vw);
    border: calc(1/1440*100vw) solid rgba(0,0,0,0.00);
    background: var(--Linear,linear-gradient(90deg,#FFB303 0%,#F4511E 100%));
    box-shadow: 0px calc(2/1440*100vw) 0px 0px rgba(105,255,5,0.06);
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(20/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(22/1440*100vw);
    border: none;
}

.section6_1 .block2 .inputwords {
    height: calc(112/1440*100vw);
    background: #323232;
    border-radius: calc(12/1440*100vw);
    padding: calc(24/1440*100vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section6_1 .block2 .inputwords .lef {
}

.section6_1 .block2 .inputwords .lef .words {
    font-family: PingFangSC,PingFang SC;
    font-weight: 600;
    font-size: calc(24/1440*100vw);
    color: #fff;
    height: calc(32/1440*100vw);
    margin: 0;
    width: calc(320/1440*100vw);
    padding: 0px 0;
}

.section6_1 .block2 .inputwords .tit {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: calc(16/1440*100vw);
    color: #666666;
    margin-top: calc(10/1440*100vw);
}

.section6_1 .block2 .inputwords .ris {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: calc(24/1440*100vw);
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.section6_1 .block2 .inputwords .ris img {
    margin-left: calc(10/1440*100vw);
    width: calc(32/1440*100vw);
}

.section6_1 .wrap3 {
    width: calc(741/1440*100vw);
    max-width: 90%;
    margin: auto;
}

.chooselist1 {
    font-size: 0;
    padding-bottom: calc(5/1440*100vw);
}

.chooselist1 a {
    display: flex;
    width: calc(171/1440*100vw);
    line-height: calc(50/1440*100vw);
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    display: inline-block;
    margin-bottom: calc(18/1440*100vw);
    margin-right: calc(19/1440*100vw);
    border-radius: calc(6/1440*100vw);
    border: calc(1/1440*100vw) solid #464647;
    text-align: center;
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(18/1440*100vw);
    font-style: normal;
    font-weight: 400;
}

.chooselist1 a:nth-child(4n) {
    margin-right: 0px;
}

.chooselist1 a img {
    margin-right: calc(5/1440*100vw);
    height: calc(22/1440*100vw);
}

.chooselist1 a span {
    margin-left: calc(6/1440*100vw);
}

.chooselist1 a.current {
    border: calc(1/1440*100vw) solid #FFB303;
}

.chooselist2 {
    font-size: 0;
    padding-bottom: calc(10/1440*100vw);
}

.chooselist2 a {
    display: inline-block;
    width: calc(88/1440*100vw);
    line-height: calc(58/1440*100vw);
    color: #545C68;
    font-family: "Chelsea Market";
    font-size: calc(18/1440*100vw);
    font-style: normal;
    font-weight: 400;
    border-radius: calc(6/1440*100vw);
    border: calc(1/1440*100vw) solid #464647;
    margin-right: calc(10/1440*100vw);
    margin-bottom: calc(10/1440*100vw);
    text-align: center;
}

.chooselist2 a.current {
    border-radius: calc(6/1440*100vw);
    border: calc(1/1440*100vw) solid #FFB303;
    color: #fff;
}

.Switch {
    display: flex;
    align-items: center;
}

.Switch input {
    display: none;
}

.Switch span {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(17/1440*100vw);
    padding-left: calc(13/1440*100vw);
}

.Switch label {
    width: calc(52/1440*100vw);
    background: #CCC;
    height: calc(28/1440*100vw);
    border-radius: calc(14/1440*100vw);
    box-shadow: 0 calc(1/1440*100vw) calc(2/1440*100vw) rgba(0,0,0,.1) inset;
    display: inline-block;
    width: calc(58/1440*100vw);
    height: calc(30/1440*100vw);
    flex-shrink: 0;
    border-radius: calc(100/1440*100vw);
    background: #252B33;
    cursor: pointer;
}

.Switch label em {
    width: calc(26/1440*100vw);
    height: calc(26/1440*100vw);
    float: left;
    margin: calc(2/1440*100vw);
    border-radius: calc(13/1440*100vw);
    box-shadow: calc(2/1440*100vw) calc(3/1440*100vw) calc(8/1440*100vw) rgba(0,0,0,.1);
    background: #FFF;
    width: calc(26/1440*100vw);
    height: calc(26/1440*100vw);
    flex-shrink: 0;
    background: #545c68;
}

.Switch input:checked + label {
    background: #FFB303;
}

.Switch input:checked + label em {
    float: right;
}

.section6_1 .block2 .last {
    padding-top: 17px;
    height: 0;
    overflow: hidden;
}

.section6_1 .block2 .last .per a {
    display: inline-block;
    width: calc(88 / 1440* 100vw);
    line-height: calc(58 / 1440* 100vw);
    color: #545C68;
    font-family: "Chelsea Market";
    font-size: calc(18 / 1440* 100vw);
    font-style: normal;
    font-weight: 400;
    border-radius: calc(6 / 1440* 100vw);
    border: calc(1 / 1440* 100vw) solid #464647;
    margin-right: calc(10 / 1440* 100vw);
    margin-bottom: calc(10 / 1440* 100vw);
    text-align: center;
}

.section6_1 .block2 .last .per a.current {
    border-radius: calc(6 / 1440* 100vw);
    border: calc(1 / 1440* 100vw) solid #FFB303;
    color: #fff;
}

.section6_1 .block2 .time {
    background: url(../images/date.png) no-repeat calc(700/1440*100vw) center;
    background-size: calc(24/1440*100vw);
}

.section6_1 .block2 .last .per {
    font-size: 0;
    padding-bottom: calc(10/1440*100vw);
}

.section6_1 .block2 .last.show {
    height: auto;
}

.section8 .wrap {display: flex;}

.section8 .wrap .left {
    width: calc(735/1440*100vw);
    float: left;
    border-radius: calc(16/1440*100vw);
    border: calc(1/1440*100vw) solid #252B33;
    background: rgba(81,81,81,0.10);
    padding: calc(17/1440*100vw) calc(22/1440*100vw);
    padding-bottom: 0;
    border: 1px solid #252B33;
    padding-bottom: 2vw;
}

.section8 .wrap .left .block1 {
    display: flex;
    justify-content: space-between;
}

.section8 .wrap .left .block1 .lef {
}

.section8 .wrap .left .block1 .lef .tit img {
    width: calc(30/1440*100vw);
    height: calc(30/1440*100vw);
    border-radius: calc(300/1440*100vw);
    object-fit: cover;
    margin-right: calc(5/1440*100vw);
}

.section8 .wrap .left .block1 .lef .tit .titlef {
    display: flex;
    align-items: center;
}

.section8 .wrap .left .block1 .lef .tit {
    display: flex;
    align-items: center;
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(20/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(25/1440*100vw);
    /* 125% */
}

.section8 .wrap .left .block1 .lef .tags {
    font-size: 0;
    padding-top: calc(10/1440*100vw);
}

.section8 .wrap .left .block1 .lef .tags .item b {
    color: var(--Color,#FFB303);
}

.section8 .wrap .left .block1 .lef .tags .item span {
    color: #fff;
}

.section8 .wrap .left .block1 .lef .tags .item * {
    vertical-align: middle;
    display: inline-block;
}

.section8 .wrap .left .block1 .lef .tags .item .copy {
    width: calc(12/1440*100vw);
    height: calc(12/1440*100vw);
    flex-shrink: 0;
    border: none;
    background: url(../images/copy.png) no-repeat center center;
    background-size: 100%;
    vertical-align: middle;
}

.section8 .wrap .left .block1 .lef .tags .item {
    display: inline-flex;
    padding: calc(3/1440*100vw) calc(18/1440*100vw) calc(4/1440*100vw) calc(10/1440*100vw);
    align-items: flex-start;
    gap: calc(3/1440*100vw);
    border-radius: calc(7/1440*100vw);
    background: #35332F;
    margin-right: calc(5/1440*100vw);
    margin-bottom: calc(5/1440*100vw);
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(10/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(12/1440*100vw);
    /* 120% */
    color: #545C68;
}

.section8 .wrap .left .block1 .rig {
}

.section8 .wrap .left .block1 .rig .by {
    display: flex;
    align-items: center;
}

.section8 .wrap .left .block1 .rig .by .tit {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
    /* 128.571% */
    white-space: nowrap;
}

.section8 .wrap .left .block1 .rig .by .val img {
    height: calc(30/1440*100vw);
}

.section8 .wrap .left .block1 .rig .by .val {
    display: flex;
    width: calc(130/1440*100vw);
    height: calc(32/1440*100vw);
    padding: calc(1/1440*100vw) calc(27/1440*100vw) calc(1/1440*100vw) calc(1/1440*100vw);
    align-items: center;
    gap: calc(8/1440*100vw);
    flex-shrink: 0;
    border-radius: calc(8/1440*100vw);
    border: calc(1/1440*100vw) solid var(--Color,#FFB303);
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(10/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(12/1440*100vw);
    /* 120% */
    overflow: hidden;
    margin-left: calc(10/1440*100vw);
}

.section8 .wrap .left .block1 .rig .ps p {
    margin-bottom: calc(7/1440*100vw);
}

.section8 .wrap .left .block1 .rig .ps {
    color: var(--Color,#FFB303);
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
    /* 128.571% */
    padding-top: calc(10/1440*100vw);
}

.section8 .wrap .left .block2 img {
    width: 100%;
}

.section8 .wrap .left .block2 {
    padding-top: calc(51/1440*100vw);
    padding-bottom: calc(47/1440*100vw);
}

.section8 .wrap .left .block3 {
}

.section8 .wrap .left .block3 .hd {
    border-bottom: calc(1/1440*100vw) solid #3c424a;
}

.section8 .wrap .left .block3 .hd a.current {
    border-bottom: calc(3/1440*100vw) solid var(--Color,#FFB303);
    color: #fff;
}

.section8 .wrap .left .block3 .hd a img {
    margin-right: calc(10/1440*100vw);
    height: calc(18/1440*100vw);
}

.section8 .wrap .left .block3 .hd a {
    color: #545C68;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(21/1440*100vw);
    /* 131.25% */
    position: relative;
    padding-bottom: calc(21/1440*100vw);
    display: inline-block;
    margin-right: calc(51/1440*100vw);
}

.section8 .wrap .left .block3 .bd {
}

.section8 .wrap .left .block3 .bd .model {
}

.section8 .wrap .left .block3 .bd .tablelist {
}

.section8 .wrap .left .block3 .bd .tablelist table {
}

.section8 .wrap .left .block3 .bd .tablelist table tr:not(.section8 .wrap .left .block3 .bd .tablelist table tr:nth-child(1)) {
    border-radius: calc(15/1440*100vw);
}

.section8 .wrap .left .block3 .bd .tablelist table tr th:nth-child(1),.section8 .wrap .left .block3 .bd .tablelist table tr td:nth-child(1) {
    text-align: left;
    padding-left: calc(10/1440*100vw);
    border-radius: calc(15/1440*100vw) 0px 0px calc(15/1440*100vw);
}

.section8 .wrap .left .block3 .bd .tablelist table tr th:last-child,.section8 .wrap .left .block3 .bd .tablelist table tr td:last-child {
    text-align: right;
    padding-right: calc(24/1440*100vw);
    border-radius: 0px calc(15/1440*100vw) calc(15/1440*100vw) 0px;
}

.section8 .wrap .left .block3 .bd .tablelist table tr th {
    color: #545C68;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(15/1440*100vw);
    padding-top: calc(24/1440*100vw);
    padding-bottom: calc(15/1440*100vw);
    text-align: center;
}

.section8 .wrap .left .block3 .bd .tablelist table tr td a.txn {
}

.section8 .wrap .left .block3 .bd .tablelist table tr td a.txn img {
    height: calc(18/1440*100vw);
}

.section8 .wrap .left .block3 .bd .tablelist table tr td b {
    color: #545C68;
}

.section8 .wrap .left .block3 .bd .tablelist table tr:nth-child(2n+1) td {
    background: none;
    height: calc(10/1440*100vw);
}

.section8 .wrap .left .block3 .bd .tablelist table tr td {
    color: #CA4A4A;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(15/1440*100vw);
    text-align: center;
    height: calc(50/1440*100vw);
    background: rgba(81,81,81,0.20);
}

.section8 .wrap .left .block3 .bd .tablelist table tr td .val img {
    height: calc(28/1440*100vw);
    margin-right: calc(8/1440*100vw);
}

.section8 .wrap .left .block3 .bd .tablelist table tr td .val {
    display: flex;
    width: calc(132/1440*100vw);
    height: calc(30/1440*100vw);
    padding: calc(1/1440*100vw) calc(13/1440*100vw) calc(1/1440*100vw) calc(1/1440*100vw);
    align-items: center;
    gap: calc(12/1440*100vw);
    flex-shrink: 0;
    border-radius: calc(8/1440*100vw);
    border: calc(1/1440*100vw) solid var(--Color,#FFB303);
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(10/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(12/1440*100vw);
    justify-content: flex-start;
    overflow: hidden;
}

.section8 .wrap .left .block3 .bd .tablelist table tr td .txn {
}

.section8 .wrap .right {
    float: right;
    width: calc(440/1440*100vw);
    margin-left: calc(15/1440*100vw);
}

.section8 .wrap .right .block1 {
    border-radius: calc(15/1440*100vw);
    border: calc(1/1440*100vw) solid #252B33;
    background: rgba(81,81,81,0.10);
    padding: calc(20/1440*100vw) calc(20/1440*100vw) calc(16/1440*100vw);
}

.section8 .wrap .right .block1 .title .lf {
    display: flex;
    align-items: center;
}

.section8 .wrap .right .block1 .title {
    display: flex;
    align-items: center;
}

.section8 .wrap .right .block1 .title .tit img {
    height: calc(16/1440*100vw);
    margin-left: calc(3/1440*100vw);
}

.section8 .wrap .right .block1 .title .tit {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
    position: relative;
}

.section8 .wrap .right .block1 .title .tit .slide {
}

.section8 .wrap .right .block1 .title .Switch {
    margin-left: calc(13/1440*100vw);
}

.section8 .wrap .right .block1 .title .Switch label {
    width: calc(48/1440*100vw);
    height: calc(24/1440*100vw);
}

.section8 .wrap .right .block1 .title .Switch label em {
    width: calc(20/1440*100vw);
    height: calc(20/1440*100vw);
    margin: calc(2/1440*100vw);
}

.section8 .wrap .right .block1 .hd {
    zoom:1;overflow: hidden;
    border-radius: calc(13/1440*100vw);
    overflow: hidden;
    background: #3b3b3b;
    margin-top: calc(22/1440*100vw);
    margin-bottom: calc(15/1440*100vw);
}

.section8 .wrap .right .block1 .hd a.current {
    border-radius: calc(13/1440*100vw);
    border: calc(1/1440*100vw) solid var(--Color,#FFB303);
    color: #fff;
}

.section8 .wrap .right .block1 .hd a {
    float: left;
    width: 50%;
    text-align: center;
    color: #545C68;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(21/1440*100vw);
    line-height: calc(38/1440*100vw);
}

.section8 .wrap .right .block1 .bd {
}

.section8 .wrap .right .block1 .bd .model {
    /* display:none;*/
    zoom:1;overflow: hidden;
}

.section8 .wrap .right .block1 .bd .model .infor1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section8 .wrap .right .block1 .bd .model .infor1 .lef {
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(10/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(12/1440*100vw);
    display: flex;
    height: calc(18/1440*100vw);
    padding: calc(3/1440*100vw) calc(11/1440*100vw) calc(3/1440*100vw) calc(10/1440*100vw);
    justify-content: center;
    align-items: center;
    border-radius: calc(7/1440*100vw);
    background: #252B33;
}

.section8 .wrap .right .block1 .bd .model .infor1 .ris .set {
    width: calc(20/1440*100vw);
    height: calc(18/1440*100vw);
    flex-shrink: 0;
    margin-left: calc(8/1440*100vw);
    background: url(../images/set.png) no-repeat center center;
    background-size: 100%;
}

.section8 .wrap .right .block1 .bd .model .infor1 .ris .max {
    display: flex;
    width: calc(40/1440*100vw);
    height: calc(18/1440*100vw);
    padding: calc(3/1440*100vw) calc(8/1440*100vw) calc(3/1440*100vw) calc(9/1440*100vw);
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: calc(7/1440*100vw);
    background: #252B33;
    border: none;
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(10/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(12/1440*100vw);
}

.section8 .wrap .right .block1 .bd .model .infor1 .ris {
    display: flex;
    align-items: center;
}

.section8 .wrap .right .block1 .bd .model .infor2 {
}

.section8 .wrap .right .block1 .bd .model .infor2 .tit {
    color: #545C68;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(15/1440*100vw);
    padding-top: calc(7/1440*100vw);
    padding-bottom: calc(12/1440*100vw);
}

.section8 .wrap .right .block1 .bd .model .infor2 .textwords {
    width: calc(400/1440*100vw);
    height: calc(50/1440*100vw);
    flex-shrink: 0;
    width: 100%;
    position: relative;
    border-radius: calc(12/1440*100vw);
    border: calc(1/1440*100vw) solid #3E3F40;
    background: rgba(81,81,81,0.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section8 .wrap .right .block1 .bd .model .infor2 .textwords .words {
    padding: 0px calc(10/1440*100vw);
    font-size: calc(16/1440*100vw);
    color: #fff;
    background: none;
    border: none;
    width: calc(239/1440*100vw);
    height: 100%;
}

.section8 .wrap .right .block1 .bd .model .infor2 .textwords .ris {
    display: flex;
    align-items: center;
}

.section8 .wrap .right .block1 .bd .model .infor2 .textwords .ris span {
    color: #545C68;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(21/1440*100vw);
}

.section8 .wrap .right .block1 .bd .model .infor2 .textwords .ris .change {
    width: calc(42/1440*100vw);
    height: calc(22/1440*100vw);
    background: url(../images/change.png) no-repeat center center;
    background-size: 45%;
    cursor: pointer;
    border-left: 1px solid #444444;
    padding-left: calc(22/1440*100vw);
}

.section8 .wrap .right .block1 .bd .model .infor2 .textwords .ris img {
    width: calc(22/1440*100vw);
    margin-left: calc(7/1440*100vw);
    margin-right: calc(16/1440*100vw);
    border-radius: 300px;
}

.section8 .wrap .right .block1 .bd .model .infor3 {
    padding-top: calc(10/1440*100vw);
    font-size: 0;
}

.section8 .wrap .right .block1 .bd .model .infor3 button.current {
    background: var(--Linear,linear-gradient(90deg,#FFB303 0%,#F4511E 100%));
    color: #fff;
}

.section8 .wrap .right .block1 .bd .model .infor3 button {
    padding: calc(3/1440*100vw) calc(12/1440*100vw);
    justify-content: center;
    align-items: center;
    gap: calc(10/1440*100vw);
    border-radius: calc(7/1440*100vw);
    background: #252B33;
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(10/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(12/1440*100vw);
    border: none;
    margin-right: calc(12/1440*100vw);
    margin-bottom: calc(6/1440*100vw);
}

.section8 .wrap .right .block1 .send {
    display: flex;
    width: 100%;
    height: calc(50/1440*100vw);
    padding: calc(14/1440*100vw);
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: none;
    border-radius: calc(12/1440*100vw);
    border: calc(1/1440*100vw) solid rgba(0,0,0,0.00);
    background: var(--Linear,linear-gradient(90deg,#FFB303 0%,#F4511E 100%));
    box-shadow: 0px calc(2/1440*100vw) 0px 0px rgba(105,255,5,0.06);
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(20/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(22/1440*100vw);
}

.section8 .wrap .right .block2 {
    padding-top: calc(13/1440*100vw);
    text-align: center;
}

.section8 .wrap .right .block2 .icon img {
    width: calc(105/1440*100vw);
    height: calc(105/1440*100vw);
    border-radius: calc(3000/1440*100vw);
    object-fit: cover;
}

.section8 .wrap .right .block2 .icon {
    display: inline-block;
    display: flex;
    width: calc(132/1440*100vw);
    height: calc(132/1440*100vw);
    padding: calc(14/1440*100vw) calc(13/1440*100vw) calc(13/1440*100vw) calc(14/1440*100vw);
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin: auto;
    border-radius: calc(9999/1440*100vw);
    border: calc(1/1440*100vw) solid #253133;
    background: linear-gradient(180deg,rgba(81,81,81,0.20) 0%,rgba(81,81,81,0.00) 100%);
    position: relative;
    z-index: 3;
}

.section8 .wrap .right .block2 .content {
    border-radius: calc(16/1440*100vw);
    border: calc(1/1440*100vw) solid #252B33;
    background: rgba(81,81,81,0.10);
    height: calc(306/1440*100vw);
    padding-top: calc(77/1440*100vw);
    margin-top: calc(-65/1440*100vw);
}

.section8 .wrap .right .block2 .content .title {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(24/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(30/1440*100vw);
}

.section8 .wrap .right .block2 .content .ai {
    display: flex;
    width: calc(60/1440*100vw);
    height: calc(20/1440*100vw);
    padding: calc(3/1440*100vw) 0px calc(2/1440*100vw) 0px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin: auto;
    border-radius: calc(16/1440*100vw);
    border: calc(1/1440*100vw) solid #515255;
    color: #545C68;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(15/1440*100vw);
    margin-top: calc(7/1440*100vw);
    margin-bottom: calc(1/1440*100vw);
}

.section8 .wrap .right .block2 .content .link {
    font-size: 0;
}

.section8 .wrap .right .block2 .content .link a {
    margin: 0px calc(1.5/1440*100vw);
}

.section8 .wrap .right .block2 .content .link img {
    height: calc(40/1440*100vw);
}

.section8 .wrap .right .block2 .content .desc p {
    padding-bottom: calc(7/1440*100vw);
}

.section8 .wrap .right .block2 .content .desc {
    padding-top: calc(21/1440*100vw);
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
    width: calc(313/1440*100vw);
    margin: auto;
    max-width: 90%;
}

.section8 .wrap .right .block3 {
}

.section8 .wrap .right .block3 .title {
    color: #545C68;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(20/1440*100vw);
    padding-top: calc(20/1440*100vw);
    padding-bottom: calc(16/1440*100vw);
}

.section8 .wrap .right .block3 .line {
    border-radius: calc(100/1440*100vw);
    background: #253133;
    height: calc(10/1440*100vw);
    margin-bottom: calc(30/1440*100vw);
}

.section8 .wrap .right .block3 .line i {
    display: block;
    height: 100%;
    width: 30%;
    background: var(--Linear,linear-gradient(90deg,#FFB303 0%,#F4511E 100%));
    border-radius: calc(30/1440*100vw);
}

.section8 .wrap .right .block3 .desc p {
    padding-bottom: calc(16/1440*100vw);
}

.section8 .wrap .right .block3 .desc b {
    color: var(--Color,#FFB303);
}

.section8 .wrap .right .block3 .desc span {
    color: #fff;
    font-weight: bold;
}

.section8 .wrap .right .block3 .desc {
    color: #545C68;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(14/1440*100vw);
}

.section8 .wrap .right .block4 {
    margin-top: calc(2/1440*100vw);
    border-radius: calc(15/1440*100vw);
    background: rgba(81,81,81,0.10);
    padding: calc(23/1440*100vw) calc(20/1440*100vw);
}

.section8 .wrap .right .block4 .infor1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section8 .wrap .right .block4 .infor1 .s1 {
    color: #545C68;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(14/1440*100vw);
}

.section8 .wrap .right .block4 .infor1 .s2 {
    display: flex;
    height: calc(26/1440*100vw);
    padding: calc(6/1440*100vw) calc(7/1440*100vw) calc(5/1440*100vw) calc(7/1440*100vw);
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: calc(6/1440*100vw);
    background: #252B33;
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(15/1440*100vw);
}

.section8 .wrap .right .block4 .infor2 {
    color: #545C68;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(14/1440*100vw);
    padding-top: calc(15/1440*100vw);
    display: flex;
    justify-content: space-between;
    padding-bottom: calc(25/1440*100vw);
}

.section8 .wrap .right .block4 .infor3 {
}

.section8 .wrap .right .block4 .infor3 p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    height: calc(34/1440*100vw);
    border-top: calc(1/1440*100vw) solid #4e545c;
}

.section8 .wrap .right .block4 .infor3 p .s1 b {
    color: var(--Color,#FFB303);
}

.section8 .wrap .right .block4 .infor3 p .s2 {
}

.section8 {
    background: url(../images/bg6.png) no-repeat center 0 #000;
    background-size: 100%;
    background-attachment: fixed;
    padding-top: calc(140/1440*100vw);
    padding-bottom: calc(181/1440*100vw);
}

.section9 {
    background: url(../images/bg6.png) no-repeat center 0 #000;
    background-size: 100%;
    background-attachment: fixed;
    padding-top: calc(169/1440*100vw);
}

.section9 .wrap {
}

.section9 .wrap .item:nth-child(2n) {
    float: right;
}

.section9 .wrap .item {
    float: left;
    width: calc((100% - calc(56/1440*100vw))/2);
    margin-bottom: calc(56/1440*100vw);
    margin-bottom: calc(41/1440*100vw);
}

.section9 .wrap .item .title {
    color: var(--Color,#FFB303);
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(21/1440*100vw);
    text-align: center;
    padding-bottom: calc(8/1440*100vw);
}

.section9 .wrap .item .tablelist {
    border-radius: calc(16/1440*100vw);
    border: calc(1/1440*100vw) solid #252B33;
    background: var(--Linear,linear-gradient(90deg,#FFB303 0%,#F4511E 100%));
    box-shadow: 0px calc(5/1440*100vw) calc(10/1440*100vw) 0px rgba(244,81,30,0.80);
    padding: 0px calc(33/1440*100vw);
    padding-bottom: calc(45/1440*100vw);
}

.section9 .wrap .item .tablelist table tr th:nth-child(1) {
    padding-left: calc(8/1440*100vw);
}

.section9 .wrap .item .tablelist table tr td:nth-child(1) {
    padding-left: calc(16/1440*100vw);
}

.section9 .wrap .item .tablelist table {
}

.section9 .wrap .item .tablelist table tr {
}

.section9 .wrap .item .tablelist table tr th {
    color: #000914;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(15/1440*100vw);
    padding-top: calc(46/1440*100vw);
    padding-bottom: calc(10/1440*100vw);
    text-align: left;
}

.section9 .wrap .item .tablelist table tr td {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(15/1440*100vw);
    height: calc(50/1440*100vw);
    background: rgba(0,10,22,0.80);
}

.section9 .wrap .item .tablelist table tr td .val {
    display: flex;
    align-items: center;
    border-radius: calc(9999/1440*100vw);
    border: calc(1/1440*100vw) solid var(--Color,#FFB303);
    width: auto;
    display: inline-block;
    align-items: center;
    font-size: 0;
}

.section9 .wrap .item .tablelist table tr td .val .icon {
    width: calc(28/1440*100vw);
    height: calc(28/1440*100vw);
    border-radius: calc(9999/1440*100vw);
    border: calc(1/1440*100vw) solid var(--Color,#FFB303);
    overflow: hidden;
    display: inline-block;
    vertical-align: middle;
}

.section9 .wrap .item .tablelist table tr td .val img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section9 .wrap .item .tablelist table tr td .val span {
    color: #FFF;
    text-align: right;
    font-family: "Chelsea Market";
    font-size: calc(10/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(12/1440*100vw);
    padding: 0px calc(14/1440*100vw);
    vertical-align: middle;
}

.section9 .wrap .item .tablelist table tr td .icons {
    width: calc(16/1440*100vw);
    height: calc(16/1440*100vw);
    vertical-align: text-bottom;
    object-fit: cover;
    border-radius: calc(300/1440*100vw);
}

.section9 .wrap .item .tablelist table tr td:nth-child(1) {
    border-radius: calc(16/1440*100vw) 0px 0px calc(16/1440*100vw);
}

.section9 .wrap .item .tablelist table tr td:last-child {
    border-radius: 0px calc(16/1440*100vw) calc(16/1440*100vw) 0px;
}

.section9 .wrap .item .tablelist table tr:nth-child(2n+1) td {
    background: none;
    height: calc(10/1440*100vw);
}

.section10 {
    background: url(../images/bg7.png) no-repeat center center;
    background-size: cover;
    text-align: center;
}

.section10 .wrap {
}

.section10 .wrap .title {
    color: var(--Color,#FFB303);
    font-family: Candal;
    font-size: calc(40/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
    padding-top: calc(185/1440*100vw);
}

.section10 .wrap .dec {
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
    padding-top: calc(33/1440*100vw);
    padding-bottom: calc(79/1440*100vw);
    width: calc(1196/1440*100vw);
    max-width: 100%;
    margin: auto;
}

.section10 .wrap .list {
    /* padding-top:calc(79/1440*100vw);*/
    padding-bottom: calc(173/1440*100vw);
    display: block;
    zoom:1;overflow: hidden;
}

.section10 .wrap .list p:nth-child(6) {
    margin: 0px;
}

.section10 .wrap .list p {
    width: calc((100% - calc(300/1440*100vw))/6);
    float: left;
    text-align: center;
    margin-right: calc(60/1440*100vw);
}

.section10 .wrap .list p:nth-child(2n) .icon {
    background: #fff;
}

.section10 .wrap .list p .icon {
    display: block;
    display: flex;
    width: calc(150/1440*100vw);
    height: calc(150/1440*100vw);
    padding: calc(45/1440*100vw);
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: calc(50/1440*100vw);
    background: var(--Color,#FFB303);
    position: relative;
    margin: auto;
}

.section10 .wrap .list p .icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: calc(60/1440*100vw);
}

.section10 .wrap .list p .txt {
    display: block;
    margin: auto;
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(14/1440*100vw);
    padding-top: calc(16/1440*100vw);
}

.section11 {
    background: linear-gradient(45deg,#FFB303 5.38%,#E6D398 29.75%,#F9F2E2 66.22%);
    padding-bottom: calc(80/1440*100vw);
}

.section11 .wrap {
}

.section11 .wrap .title {
    color: #0F0F0F;
    font-family: "Chelsea Market";
    font-size: calc(32/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(40/1440*100vw);
    text-align: center;
    padding-top: calc(90/1440*100vw);
    padding-bottom: calc(56/1440*100vw);
}

.section11 .wrap .list {
    display: flex;
    flex-wrap: wrap;
}

.section11 .wrap .list .item {
    display: flex;
    padding: calc(18/1440*100vw) calc(30/1440*100vw) calc(18/1440*100vw) calc(24/1440*100vw);
    align-items: center;
    border-radius: calc(40/1440*100vw);
    background: #FFF;
    width: calc((100% - calc(24/1440*100vw))/2);
    margin-bottom: calc(78/1440*100vw);
}

.section11 .wrap .list .item:nth-child(2n) {
    margin-left: calc(24/1440*100vw);
}

.section11 .wrap .list .item:nth-child(4) {
    border-radius: calc(40/1440*100vw);
    background: #FDEED3;
}

.section11 .wrap .list .item:nth-child(2),.section11 .wrap .list .item:nth-child(3),.section11 .wrap .list .item:nth-child(6) {
    background: #212121;
}

.section11 .wrap .list .item:nth-child(2) .ris .tit,.section11 .wrap .list .item:nth-child(3) .ris .tit,.section11 .wrap .list .item:nth-child(6) .ris .tit {
    color: #fff;
}

.section11 .wrap .list .item .icon {
    width: calc(150/1440*100vw);
    text-align: center;
}

.section11 .wrap .list .item .icon img {
    max-width: 90%;
}

.section11 .wrap .list .item .ris {
    width: calc(390/1440*100vw);
}

.section11 .wrap .list .item .ris .tit {
    color: #181818;
    font-family: "Chelsea Market";
    font-size: calc(24/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(30/1440*100vw);
}

.section11 .wrap .list .item .ris .dec {
    color: #7C7C7C;
    font-family: "Chelsea Market";
    font-size: calc(13/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
    padding-top: calc(15/1440*100vw);
}

.section12 {
    padding: calc(88/1440*100vw) 0px;
}

.section12 .wrap {
}

.section12 .wrap .content {
    border-radius: calc(40/1440*100vw);
    background: linear-gradient(45deg,#FFB303 5.38%,#E6D398 29.75%,#F9F2E2 66.22%);
    text-align: center;
}

.section12 .wrap .content .title {
    color: #0F0F0F;
    font-family: "Chelsea Market";
    font-size: calc(32/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(40/1440*100vw);
    padding-top: calc(81/1440*100vw);
    padding-bottom: calc(11/1440*100vw);
}

.section12 .wrap .content .dec {
    color: #0F0F0F;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(18/1440*100vw);
    padding-bottom: calc(39/1440*100vw);
}

.section12 .wrap .content .link {
    font-size: 0;
    padding-bottom: calc(57/1440*100vw);
}

.section12 .wrap .content .link a {
    display: flex;
    width: calc(272/1440*100vw);
    height: calc(70/1440*100vw);
    padding: calc(6/1440*100vw) calc(10/1440*100vw) calc(6/1440*100vw) calc(6/1440*100vw);
    align-items: center;
    gap: calc(4/1440*100vw);
    flex-shrink: 0;
    display: inline-block;
    color: #FFF;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(17/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(23/1440*100vw);
    border-radius: calc(9999/1440*100vw);
    background: #0699E2;
    text-align: left;
}

.section12 .wrap .content .link a.color2 {
    border-radius: calc(9999/1440*100vw);
    background: #FFC917;
    margin-left: calc(63/1440*100vw);
}

.section12 .wrap .content .link a .icon {
}

.section12 .wrap .content .link a .icon img {
    width: calc(58/1440*100vw);
    height: calc(58/1440*100vw);
}

.section12 .wrap .content .link a span {
}

@font-face {
    font-family: 'Chelsea Market';
    src: url('ChelseaMarket-Regular.ttf')
}

@font-face {
    font-family: 'Candal';
    src: url('Candal.ttf')
}

.head,.head * {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
}

.head .wrap .right .lan dl:after,.head .wrap .right .connectS dl:after {
    width: calc(0/1440*100vw);
    height: calc(0/1440*100vw);
    border-style: solid;
    border-width: calc(0/1440*100vw) calc(10/1440*100vw) calc(10/1440*100vw) calc(10/1440*100vw);
    border-color: transparent transparent #ffb303 transparent;
    position: absolute;
    top: calc(-9/1440*100vw);
    left: 50%;
    -o-transform: translate(-50%,0%);
    -webkit-transform: translate(-50%,0%);
    -moz-transform: translate(-50%,0%);
    -ms-transform: translate(-50%,0%);
    transform: translate(-50%,0%);
    content: "";
}

.head .wrap .right .connectS {
    float: left;
    position: relative;
    margin-left: calc(19/1440*100vw);
}

.head .wrap .right .connectS dl {
    position: absolute;
    width: 100%;
    background: #FFB303;
    border-radius: calc(10/1440*100vw);
    padding: calc(5/1440*100vw) calc(12/1440*100vw);
    top: calc(62/1440*100vw);
}

.head .wrap .right .connectS dd a {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(14/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: 3;
    text-transform: capitalize;
    display: block;
}

.head .wrap .right .connectS dd a img {
    width: calc(27/1440*100vw);
}

.head .wrap .right .connectS dd a span {
}

.head .wrap .right .lan {
    float: left;
    position: relative;
    margin-left: calc(13/1440*100vw);
}

.head .wrap .right .lan .h2tit {
    width: calc(44/1440*100vw);
    height: calc(44/1440*100vw);
    background: url(../images/dq.png) no-repeat center center;
    background-size: 86%;
    cursor: pointer;
}

.head .wrap .right .lan dl {
    position: absolute;
    width: 200%;
    background: #FFB303;
    border-radius: calc(10/1440*100vw);
    padding: calc(5/1440*100vw) calc(12/1440*100vw);
    top: calc(62/1440*100vw);
    left: -50%;
}

.head .wrap .right .lan dd a {
    display: block;
    color: #fff;
    line-height: 2;
    text-align: center;
}

.head .wrap .right .lan dl,.head .wrap .right .connectS dl {
    top: calc(72/1440*100vw);
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

.head .wrap .right .lan:hover dl,.head .wrap .right .connectS:hover dl {
    top: calc(62/1440*100vw);
    visibility: visible;
    opacity: 1;
    z-index: 5;
}

.section8 .wrap .right .block1 .bd .model .infor4 {
    color: #606664;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    float: right;
    padding-left: calc(24/1440*100vw);
    background: url(../images/uy.png) no-repeat left center;
    background-size: auto 98%;
    margin-top: calc(15/1440*100vw);
    margin-bottom: calc(25/1440*100vw);
}

.section8 .wrap .right .block1 .bd .model .infor4 span {
    color: var(--Color,#FFB303);
    text-transform: uppercase;
    cursor: pointer;
}

.section8 .wrap .right .block1 .txt {
    text-align: center;
    color: #616661;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: calc(16/1440*100vw);
}

.section6_1 .block2 .title strong {
    color: #545C68;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(14/1440*100vw);
    /* 116.667% */
}

.inputwords2 {
    height: calc(66/1440*100vw);
    border-radius: calc(6/1440*100vw);
    border: calc(1/1440*100vw) solid #464647;
    background: rgba(81,81,81,0.10);
    position: relative;
    padding: calc(11/1440*100vw) calc(16/1440*100vw);
}

.inputwords2 .words3 {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(25/1440*100vw);
    /* 156.25% */
    width: 100%;
    display: block;
    border: none;
    background: none;
    width: calc(300/1440*100vw);
    height: calc(25/1440*100vw);
}

.inputwords2 .txt2 {
    color: #545C68;
    font-family: "Chelsea Market";
    font-size: calc(12/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(14/1440*100vw);
    /* 116.667% */
}

.inputwords2 .icon {
    display: flex;
    align-items: center;
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(18/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(20/1440*100vw);
    /* 111.111% */
    position: absolute;
    top: calc(22/1440*100vw);
    right: calc(16/1440*100vw);
}

.inputwords2 .icon img {
    width: calc(22/1440*100vw);
    height: calc(22/1440*100vw);
    margin-right: calc(6/1440*100vw);
}

.sectionCenter {
    background: url(../images/bg6.png) no-repeat center 0;
    background-size: 100%;
    padding-top: calc(138/1440*100vw);
    padding-bottom: calc(220/1440*100vw);
}

.sectionCenter .wrap {
}

.sectionCenter .block1 {
    border-radius: calc(6/1440*100vw);
    border: calc(1/1440*100vw) solid #464647;
    background: rgba(81,81,81,0.10);
    padding: calc(13/1440*100vw) calc(112/1440*100vw);
    padding-bottom: calc(25/1440*100vw);
}

.sectionCenter .block1 .title {
    position: relative;
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(32/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(66.151/1440*100vw);
    /* 206.722% */
    text-transform: capitalize;
}

.sectionCenter .block1 .title img {
    height: calc(66/1440*100vw);
    position: absolute;
    left: calc(-83/1440*100vw);
}

.sectionCenter .block1 .title span {
}

.sectionCenter .block1 .dec {
    padding-top: calc(35/1440*100vw);
}

.sectionCenter .block1 .dec .p1 {
    display: inline-block;
    background: url(../images/copy3.png) no-repeat right center;
    padding-right: calc(30/1440*100vw);
    background-size: auto 100%;
    margin-bottom: calc(55/1440*100vw);
}

.sectionCenter .block1 .dec p {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(18/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(20/1440*100vw);
    /* 111.111% */
}

.sectionCenter .block1 .log:after {
    content: "";
    position: absolute;
    width: calc(24/1440*100vw);
    height: calc(24/1440*100vw);
    left: calc(16/1440*100vw);
    top: calc(9.5/1440*100vw);
    background: url(../images/log3.png) no-repeat center center;
    background-size: 100%;
}

.sectionCenter .block1 .log {
    margin-top: calc(44/1440*100vw);
    width: calc(131/1440*100vw);
    line-height: calc(43/1440*100vw);
    border-radius: calc(6/1440*100vw);
    background: var(--Linear,linear-gradient(90deg,#FFB303 0%,#F4511E 100%));
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    /* 168.75% */
    text-transform: capitalize;
    padding-left: calc(48/1440*100vw);
    position: relative;
}

.sectionCenter .block2 {
    padding-top: calc(40/1440*100vw);
}

.sectionCenter .block2 .hd {
    margin-bottom: calc(41/1440*100vw);
}

.sectionCenter .block2 .hd .scroll {
    display: inline-block;
    background: #E7E7E8;
    border-radius: calc(10/1440*100vw);
    overflow: hidden;
    border-radius: calc(12/1440*100vw);
    background: rgba(81,81,81,0.20);
}

.sectionCenter .block2 .hd a {
    color: #E7E7E8;
    text-align: center;
    font-family: "Chelsea Market";
    font-size: calc(20/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(21/1440*100vw);
    /* 105% */
    display: inline-block;
    line-height: calc(45/1440*100vw);
    width: calc(240/1440*100vw);
}

.sectionCenter .block2 .hd a.current {
    border-radius: calc(12/1440*100vw);
    border: calc(1/1440*100vw) solid var(--Color,#FFB303);
    background: #FFB303;
    color: #fff;
}

.sectionCenter .block2 .bd {
}

.sectionCenter .block2 .bd .model {
    border-radius: calc(6/1440*100vw);
    border: calc(1/1440*100vw) solid #464647;
    background: rgba(81,81,81,0.10);
    padding: 0 calc(32/1440*100vw);
    padding-bottom: calc(55/1440*100vw);
}

.sectionCenter .block2 .bd .model table {
}

.sectionCenter .block2 .bd .model table tr {
}

.sectionCenter .block2 .bd .model table tr th {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(28/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: calc(77/1440*100vw);
    /* 236.254% */
    text-transform: capitalize;
    text-align: center;
    height: calc(112/1440*100vw);
    border-bottom: calc(1/1440*100vw) solid #FFB303;
    vertical-align: baseline;
}

.sectionCenter .block2 .bd .model table tr td {
    padding: calc(20/1440*100vw) 0;
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(20/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

.sectionCenter .block2 .bd .model table tr td:nth-child(1) {
    padding-top: calc(32/1440*100vw) ;
}

.sectionCenter .block2 .bd .model table tr td p {
}

.sectionCenter .block2 .bd .model table tr td p b {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(16/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.sectionCenter .block2 .bd .model table tr td .icontxt {
    display: flex;
    align-items: center;
}

.sectionCenter .block2 .bd .model table tr td .icontxt .icon {
}

.sectionCenter .block2 .bd .model table tr td .icontxt .icon img {
    width: calc(100/1440*100vw);
    height: calc(100/1440*100vw);
}

.sectionCenter .block2 .bd .model table tr td .icontxt .txt {
    padding-left: calc(24/1440*100vw);
    text-align: left;
}

.sectionCenter .block2 .bd .model table tr td .icontxt .txt .title {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(32/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.sectionCenter .block2 .bd .model table tr td .icontxt .txt .dec {
    color: #FFF;
    font-family: "Chelsea Market";
    font-size: calc(18/1440*100vw);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-top: calc(11/1440*100vw);
}

.sectionCenter .block2 .bd .model table tr td .icontxt .txt .dec b {
}

.sectionCenter .block2 .bd .model table tr td .icontxt .txt .dec .b1 {
    color: #36E150;
}

.sectionCenter .block2 .bd .model table tr td .icontxt .txt .dec .b2 {
    color: red;
}

.sectionCenter .block2 .bd .model table tr th:nth-child(1) {
    text-align: left;
}

.sectionCenter .block2 .bd .model table tr th:last-child,.sectionCenter .block2 .bd .model table tr td:last-child {
    text-align: right;
}

.sectionCenter .block2 .bd .model table tr td .more {
    margin-left: calc(20/1440*100vw);
}

.sectionCenter .block2 .bd .model table tr td .more img {
    width: calc(32/1440*100vw);
}

    .section3 .wrap .block2 .item .content .flex{
        
display: flex;
        
align-items: center;
    }
    .section3 .wrap .block2 .item .content .flex .val2{
        
color: #FFF;
        
font-family: "Chelsea Market";
        
font-size: 9px;
        
font-style: normal;
        
font-weight: 400;
        
line-height: 11px; /* 122.222% */
        
margin-left: 3px;
        
margin-top: calc(5 / 1440 * 100vw);
    }


    .alertModel {
    background: rgba(0, 0, 0, 0.80);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}  

.alertModel .center {  
    border-radius: calc(16/1920*100vw);  
    border: calc(1/1920*100vw) solid var(--Linear, #FFB303);  
    background: #141519;  
    width: calc(464/1920*100vw);  
    position: absolute;  
    top: 50%;  
    left: 50%;  
    -o-transform: translate(-50%, -50%);  
    -webkit-transform: translate(-50%, -50%);  
    -moz-transform: translate(-50%, -50%);  
    -ms-transform: translate(-50%, -50%);  
    transform: translate(-50%, -50%);  
    padding: 0px calc(32/1920*100vw);  
    padding-bottom: calc(32/1920*100vw);  
}  
.alertModel .close {  
    width: calc(24/1920*100vw);  
    height: calc(24/1920*100vw);  
    flex-shrink: 0;  
    position: absolute;  
    right: calc(16/1920*100vw);  
    top: calc(16/1920*100vw);  
    cursor: pointer;  
    background: url(../images/close.png) no-repeat center center;  
    background-size: 100%;  
}  
.alertModel .title {  
    color: #FFF;  
    text-align: center;  
    font-family: "Potta One";  
    font-size: calc(16/1920*100vw);  
    font-style: normal;  
    font-weight: 400;  
    line-height: calc(16.575/1920*100vw);  
    letter-spacing: calc(0.668/1920*100vw);  
    text-transform: uppercase;  
    padding-top: calc(32/1920*100vw);  
    padding-bottom: calc(54/1920*100vw);  
}  
.alertModel .valChoose {  
    display: flex;  
    align-items: center;  
    justify-content: space-between;  
}  
.alertModel .left {  
    border-radius: calc(8/1920*100vw);  
    background: #202125;  
    width: calc(265/1920*100vw);  
    height: calc(38/1920*100vw);  
    display: flex;  
    overflow: hidden;  
}  
.alertModel .left button {  
    float: left;  
    flex: 1;  
    border: none;  
    background: none;  
    color: #FFF;  
    text-align: center;  
    font-family: "Chelsea Market";  
    font-size: calc(16/1920*100vw);  
    font-style: normal;  
    font-weight: 400;  
    text-transform: capitalize;  
}  
.alertModel .right {  
    border-radius: calc(8/1920*100vw);  
    background: #202125;  
    width: calc(105/1920*100vw);  
    height: calc(38/1920*100vw);  
    display: flex;  
    align-items: center;  
}  
.alertModel .right input {  
    color: #FFF;  
    text-align: center;  
    font-family: "Chelsea Market";  
    font-size: calc(16/1920*100vw);  
    font-style: normal;  
    font-weight: 400;  
    line-height: calc(22/1920*100vw);  
    text-transform: capitalize;  
    width: calc(72/1920*100vw);  
    border: none;  
    background: none;  
    text-align: center;  
}  
.alertModel .right .txt {  
    color: #545C68;  
    text-align: center;  
    font-family: "Chelsea Market";  
    font-size: calc(16/1920*100vw);  
    font-style: normal;  
    font-weight: 400;  
    line-height: calc(22/1920*100vw);  
    text-transform: capitalize;  
}  
.alertModel .send {  
    border-radius: calc(12/1920*100vw);  
    border: calc(1/1920*100vw) solid rgba(0, 0, 0, 0.00);  
    background: var(--Linear, linear-gradient(90deg, #FFB303 0%, #F4511E 100%));  
    box-shadow: 0 calc(2/1920*100vw) 0 0 rgba(105, 255, 5, 0.06);  
    display: block;  
    margin-top: calc(54/1920*100vw);  
    width: 100%;  
    border: none;  
    color: #FFF;  
    text-align: center;  
    font-family: "Chelsea Market";  
    font-size: calc(20/1920*100vw);  
    font-style: normal;  
    font-weight: 400;  
    line-height: calc(22/1920*100vw);  
    text-transform: capitalize;  
    height: calc(50/1920*100vw);  
}



.section8 .wrap .left .block3 .bd .model .ly {
    background: #212121;
    border-radius: calc(12/1920*100vw);
    padding: calc(24/1920*100vw);
    padding-bottom: 0;
    margin-top: calc(25 / 1920* 100vw);
    border: 1px solid #252B33;
    background: rgba(81, 81, 81, 0.10);
    border: 1px solid #252B33;
}

.section8 .wrap .left .block3 .bd .model .ly .text {
    height: calc(235/1920*100vw);
    background: #2E2E2E;
    position: relative;
    border-radius: calc(12/1920*100vw);
    background: rgba(81, 81, 81, 0.20);
    margin-bottom: calc(24/1920*100vw);
}

.section8 .wrap .left .block3 .bd .model .ly .text textarea {
    height: calc(166/1920*100vw);
    border: none;
    background: none;
    width: 100%;
    resize: none;
    padding: calc(9/1920*100vw) calc(24/1920*100vw);
    font-family: PingFangSC,PingFang SC;
    font-weight: 600;
    font-size: calc(16/1920*100vw);
    color: #fff;
}

.section8 .wrap .left .block3 .bd .model .ly .text .total {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: calc(15/1920*100vw);
    left: calc(24/1920*100vw);
    bottom: calc(33/1920*100vw);
    position: absolute;
    color: #545C68;
}

.section8 .wrap .left .block3 .bd .model .ly .text .ris {
    position: absolute;
    right: calc(20/1920*100vw);
    bottom: calc(20/1920*100vw);
    display: flex;
    align-items: center;
}

.section8 .wrap .left .block3 .bd .model .ly .text .ris .bq {
    margin-right: calc(16/1920*100vw);
    width: calc(24/1920*100vw);
    height: calc(24/1920*100vw);
    background: url(../images/biaoqing.png) no-repeat center center;
    background-size: 100%;
    cursor: pointer;
}

.section8 .wrap .left .block3 .bd .model .ly .text .ris button.send {
    width: calc(140/1920*100vw);
    height: calc(46/1920*100vw);
    background: #18F1D9;
    border-radius: calc(8/1920*100vw);
    border: none;
    border-radius: calc(12/1920*100vw);
    border: none;
    background: var(--Linear, linear-gradient(90deg, #FFB303 0%, #F4511E 100%));
    box-shadow: 0 2px 0 0 rgba(105, 255, 5, 0.06);
    color: #fff;
    font-size: calc(20/1920*100vw);
}

.section8 .wrap .left .block3 .bd .model .ly .infor1 {
    display: flex;
    align-items: center;
}

.section8 .wrap .left .block3 .bd .model .ly .infor1 .id {
    padding: calc(16/1920*100vw);
    border-radius: unset;
    text-align: center;
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: var(--Color, #FFB303);
    border-radius: calc(12/1920*100vw);
    border: 1px solid var(--Color, #FFB303);
}

.section8 .wrap .left .block3 .bd .model .ly .infor1 .time {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #545C68;
    margin-left: calc(24/1920*100vw);
}
.section8 .wrap .left .block3 .bd .model .ly .itemModel:last-child .infor2{
    border:none;
}
.section8 .wrap .left .block3 .bd .model .ly .infor2 {
    font-family: PingFangSC,PingFang SC;
    font-weight: 600;
    font-size: calc(20/1920*100vw);
    color: #FFFFFF;
    border-bottom: calc(1/1920*100vw) solid #545C68;
    padding-top: calc(16/1920*100vw);
    padding-bottom: calc(32/1920*100vw);
    line-height: 1.4;
    margin-bottom: calc(32/1920*100vw);
}

.section8 .wrap .left .block3 .bd .model .ly .last {
    font-family: PingFangSC,PingFang SC;
    font-weight: 400;
    font-size: calc(16/1920*100vw);
    color: #666666;
    text-align: center;
    padding-top: calc(16/1920*100vw);
    padding-bottom: calc(24/1920*100vw);
}