
:root{
    /* 270px; */
    --side-left-width: 0px;
    --color-border: rgba(0, 0, 0, 0.08);
}
#root{
    margin-bottom: 50px;
}
.App{
    max-width: 800px;
    margin: auto;
}
.wow {
    opacity: 0;
}

.mobile {
    width: 100%;
}

.mobile-inner {
    margin-right: auto;
    margin-left: auto;
    /* background-color: ; */
    position: relative;
}

.mobile-inner img {
}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0px;
}

.mobile-inner-header {
    width: 100%;
    height: 50px;
    position: relative;
    top: 0px;
    z-index: 666;
    left: 0px;
}

.mobile-inner-header-icon {
    color: #ffffff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    float: right;
    width: 50px;
    position: relative;
    -webkit-transition: background 0.5s;
    -moz-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
}

.mobile-inner-header-icon:hover {
    background-color: rgba(255,255,255,0.2);
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px) / 2);
    top: calc((100% - 1px) / 2);
    width: 25px;
    height: 1px;
    background-color: #fff;
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg);
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg);
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clickfirst;
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: clicksecond;
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(0) rotate(-45deg);
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outfirst;
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: outsecond;
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg);
    }

    100% {
        transform: translateY(-4px) rotate(0deg);
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    100% {
        transform: translateY(4px) rotate(0deg);
    }
}

.mobile-inner-nav {
    overflow: auto;
    height: 100vh;
    padding-top: 50px;
}

.mobile-inner-nav {
    background: linear-gradient(270deg,#0866b1c9,#076cc3);
    width: 100%;
    position: absolute;
    top: 0;
    padding-bottom: 0%;
    display: none;
    z-index: 444;
}

.mobile-inner-nav a {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    color: #fff;
    transition: all 0.5s;
}

.mobile-inner-nav dl {
    display: none;
}

.mobile-inner-nav dl dd {
    line-height: 33px;
    text-decoration: none;
    text-indent: 3em;
    font-size: 16px;
    color: #FFFFFF;
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
    font-size: 14px;
}

.mobile-inner-nav li {
    border-bottom: solid 1px rgba(255,255,255,0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 53px;
    text-indent: 20px;
}

.mobile-inner-nav h2 .h2tit {
    line-height: 50px;
    text-decoration: none;
    text-indent: 2em;
    font-size: 16px;
    color: #FFFFFF;
    /* border-bottom:solid 1px rgba(255,255,255,0.3);*/
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 300;
}

.mobile-inner-nav h2.h2tit a {
    color: #FFFFFF;
}

.mobile-inner-nav a {
    border-bottom: none;
}

.mobile-inner-nav li {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@keyframes resize {
    from,60%,75%,90%,to {
        -webkit-animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
        animation-timing-function: cubic-bezier(0.215,0.610,0.355,1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale(5,5);
        transform: scale(5,5);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1,1);
        transform: scale(1,1);
    }
}

@-webkit-keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0,100%,0);
        transform: translate3d(0,100%,0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.mobile-inner-nav li:last-child h2.h2tit {
    border-bottom: none;
}

.mobile-inner-nav li .h3tit {
    height: 50px;
    position: relative;
    background: url(../images/51_icon_search@2x.png) no-repeat 30px center;
    background-size: 17px;
}

.mobile-inner-nav li .words {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    text-indent: 60px;
    font-size: 15px;
    color: #fff;
    background: url(../images/search2.png) no-repeat 30px center;
    background-size: 20px;
}

.mobile-inner-nav li:last-child {
    border-bottom: none;
}

.mobile-inner-nav li form {
    display: block;
    width: 100%;
    height: 100%;
}

@charset "utf-8";@charset "UTF-8";.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    animation-duration: 2s;
}

.fadeInUp {
    animation-duration: 1.76s;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0,40px,0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

* {
    font-family: 'DMSans';
}

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;
}


body {
    /* font-size: calc(14/1920*100vw); */
    font-size: 12px;
}

html,body {
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

body {
    font-family: "Microsoft YaHei" ! important;
    color: #000000;
    background: rgba(0, 0, 0, 0.02);
    margin: 0 auto;
    padding: 0px;
    overflow: auto;
}

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;
    line-height: 1;
    background: url(../images/bg.jpg) no-repeat center center;
    background-size: cover;
} */

* {
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    user-select: none;
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg)
    }

    to {
        -moz-transform: rotate(360deg)
    }
}

@-ms-keyframes rotate {
    from {
        -ms-transform: rotate(0deg)
    }

    to {
        -ms-transform: rotate(360deg)
    }
}

@-o-keyframes rotate {
    from {
        -o-transform: rotate(0deg)
    }

    to {
        -o-transform: rotate(360deg)
    }
}

.xuanzhuan {
    animation: 2s linear 0s normal forwards infinite rotate;
    -webkit-animation: 2s linear 0s normal forwards infinite rotate;
    -moz-animation: 2s linear 0s normal forwards infinite rotate;
    -o-animation: 2s linear 0s normal forwards infinite rotate;
}

.xuanzhuan img {
    display: block;
    width: 100%;
}

.pc {
    display: block;
}

.wap {
    display: none;
}

.clearflex:after {
    content: "";
    display: table;
    clear: both;
}

.moveAni {
    animation: move .8s infinite;
    -moz-animation: move .8s infinite;
    -webkit-animation: move .8s infinite;
    -o-animation: move .8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.tadaAni {
    animation: tada 2s infinite;
}

.pulseAni {
    animation: pulse 1s infinite;
}

.bounceInAni {
    animation: bounceIn 2s infinite;
}

.flashInAni {
    animation: flash 2s infinite;
}

.swingAni {
    animation: swing 2s infinite;
    transform-origin: right top;
}

.rubberBandAni {
    animation: rubberBand 1s infinite;
}

.bounceAni {
    animation: bounce 1s infinite;
}

.tdAni {
    animation: td .4s infinite;
    -moz-animation: td .4s infinite;
    -webkit-animation: td .4s infinite;
    -o-animation: td .4s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.heartbeatAni {
    animation: heartbeat 1.4s infinite;
    -moz-animation: heartbeat 1.4s infinite;
    -webkit-animation: heartbeat 1.4s infinite;
    -o-animation: heartbeat 1.4s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

.shing {
    animation: shing 1s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@keyframes shing {
    0% {
        opacity: 1;
    }

    100% {
        opacity: .6;
    }
}

@keyframes move2 {
    0% {
        transform: translate(0%,0px);
    }

    100% {
        transform: translate(0%,10px);
    }
}

.moveAni2 {
    animation: move2 1s infinite;
}

.moveAni {
    animation: move .8s infinite;
    -moz-animation: move .8s infinite;
    -webkit-animation: move .8s infinite;
    -o-animation: move .8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
    -webkit-animation-timing-function: cubic-bezier(0.46,0.02,0.97,0.36);
}

@keyframes move {
    from {
        -o-transform: translate(0%,0%);
        -webkit-transform: translate(0%,0%);
        -moz-transform: translate(0%,0%);
        -ms-transform: translate(0%,0%);
        transform: translate(0%,0%);
    }

    to {
        -o-transform: translate(0%,30px);
        -webkit-transform: translate(0%,30px);
        -moz-transform: translate(0%,30px);
        -ms-transform: translate(0%,30px);
        transform: translate(0%,30px);
    }
}

@keyframes td {
    from {
        -o-transform: translate(0%,0%);
        -webkit-transform: translate(0%,0%);
        -moz-transform: translate(0%,0%);
        -ms-transform: translate(0%,0%);
        transform: translate(0%,0%);
    }

    to {
        -o-transform: translate(0%,20px);
        -webkit-transform: translate(0%,20px);
        -moz-transform: translate(0%,20px);
        -ms-transform: translate(0%,20px);
        transform: translate(0%,20px);
    }
}

@keyframes heartbeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    14% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    28% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    42% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    70% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes moveAni2 {
    0% {
        transform: translate(0%,0px);
    }

    100% {
        transform: translate(100vw,0px);
    }
}

.moveAni2 {
    animation: moveAni2 5.5s linear infinite;
}

@keyframes scrollAni1 {
    0% {
        transform: translate(0%,0px) rotate(0);
    }

    100% {
        transform: translate(-100%,0px) rotate(-360deg);
    }
}

.scrollAni1 {
    animation: scrollAni1 1.8s infinite;
    -moz-animation: scrollAni1 1.8s infinite;
    -webkit-animation: scrollAni1 1.8s infinite;
    -o-animation: scrollAni1 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
}

@keyframes scrollAni2 {
    0% {
        transform: translate(30%,0px) rotate(0);
    }

    100% {
        transform: translate(0%,0px);
    }
}

.scrollAni2 {
    animation: scrollAni2 1.8s infinite;
    -moz-animation: scrollAni2 1.8s infinite;
    -webkit-animation: scrollAni2 1.8s infinite;
    -o-animation: scrollAni2 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni3 {
    0% {
        transform: translate(0%,-20px);
    }

    100% {
        transform: translate(0%,0%);
    }
}

.scrollAni3 {
    animation: scrollAni3 1.8s infinite;
    -moz-animation: scrollAni3 1.8s infinite;
    -webkit-animation: scrollAni3 1.8s infinite;
    -o-animation: scrollAni3 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni4 {
    0% {
        transform: translate(0%,10px);
    }

    100% {
        transform: translate(0%,0%);
    }
}

.scrollAni4 {
    animation: scrollAni4 1.8s infinite;
    -moz-animation: scrollAni4 1.8s infinite;
    -webkit-animation: scrollAni4 1.8s infinite;
    -o-animation: scrollAni4 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni5 {
    0% {
        transform: none;
    }

    100% {
        transform: scale(1.35,1.35);
    }
}

.scrollAni5 {
    animation: scrollAni5 1.8s infinite;
    -moz-animation: scrollAni5 1.8s infinite;
    -webkit-animation: scrollAni5 1.8s infinite;
    -o-animation: scrollAni5 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes scrollAni6 {
    0% {
        transform: scale(1.05,1.05);
    }

    100% {
        transform: none;
    }
}

.scrollAni6 {
    animation: scrollAni6 1.8s infinite;
    -moz-animation: scrollAni6 1.8s infinite;
    -webkit-animation: scrollAni6 1.8s infinite;
    -o-animation: scrollAni6 1.8s infinite;
    animation-direction: alternate;
    -webkit-animation-direction: alternate;
    animation-timing-function: linear;
}

@keyframes bubbleMover3 {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(5px) translateX(4px) rotate(9deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(-3px) translateX(1px) rotate(-6deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(-1px) translateX(-5px) rotate(-2deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes bubbleMover2 {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(5px) translateX(4px) rotate(5deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(-4px) translateX(2px) rotate(-3deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(-3px) translateX(-3px) rotate(-3deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes bubbleMover {
    0% {
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        transform: translateY(3px) translateX(5px) rotate(5deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        transform: translateY(5px) translateX(10px) rotate(10deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        transform: translateY(3px) translateX(5px) rotate(4deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes rotateAni {
    0% {
        transform: none;
    }

    100% {
        transform: rotateY(180deg);
    }
}

.rotateAni {
    -webkit-animation: rotateAni linear infinite 2s;
    -moz-animation: rotateAni linear infinite 2s;
    -o-animation: rotateAni linear infinite 2s;
    animation: rotateAni linear infinite 2s;
}

.pfAni1 {
    -webkit-animation: bubbleMover linear infinite 5s;
    -moz-animation: bubbleMover linear infinite 5s;
    -o-animation: bubbleMover linear infinite 5s;
    animation: bubbleMover linear infinite 5s;
}

.pfAni2 {
    -webkit-animation: bubbleMover2 linear infinite 5s;
    -moz-animation: bubbleMover2 linear infinite 5s;
    -o-animation: bubbleMover2 linear infinite 5s;
    animation: bubbleMover2 linear infinite 5s;
}

.pfAni3 {
    -webkit-animation: bubbleMover3 linear infinite 5s;
    -moz-animation: bubbleMover3 linear infinite 5s;
    -o-animation: bubbleMover3 linear infinite 5s;
    animation: bubbleMover3 linear infinite 5s;
}

@keyframes scalc {
    0% {
        -webkit-transform: scale(2.05,2.05);
        -o-transform: scale(2.05,2.05);
        -moz-transform: scale(2.05,2.05);
        -ms-transform: scale(2.05,2.05);
        transform: scale(2.05,2.05);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.sclani {
    animation: scalc 7s forwards;
    animation-timing-function: ease-out;
}

@keyframes scalc2 {
    0% {
        transform: scale(1.2,1.2);
    }

    100% {
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

.sclani2 {
    animation: scalc2 7s forwards;
    animation-timing-function: ease-out;
}

@keyframes clipAni {
    0% {
        clip: rect(auto,0,auto,auto);
    }

    100% {
        clip: rect(auto,300px,auto,auto);
    }
}

.txtModel i {
    animation: clipAni ease-out infinite 2s alternate;
}

.swingAni {
    transform-origin: top center;
    animation: swing 3s infinite ease-in-out;
}

@keyframes swing {
    0% {
        transform: rotate(-6deg);
    }

    50% {
        transform: rotate(6deg);
    }

    100% {
        transform: rotate(-6deg);
    }
}

.swingAni2 {
    -webkit-animation-name: routate;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-name: routate;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes routate {
    0% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
    }

    50% {
        -webkit-transform: rotate(-7deg);
        -ms-transform: rotate(-7deg);
        transform: rotate(-7deg);
    }

    100% {
        -webkit-transform: rotate(7deg);
        -ms-transform: rotate(7deg);
        transform: rotate(7deg);
    }
}

.bouncing-ball {
    -webkit-mask: radial-gradient(ellipse at center,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,black 20.1%,black 75%,black 100%);
    mask: radial-gradient(ellipse at center,rgba(0,0,0,0) 0%,rgba(0,0,0,0) 20%,black 20.1%,black 75%,black 100%);
    -webkit-animation: bouncing-ball 1.5s linear infinite;
    animation: bouncing-ball 1.5s linear infinite;
}

@keyframes bouncing-ball {
    0% {
        transform: scale(1,1) translateY(-80%);
    }

    25% {
        transform: scale(1,1.1) translateY(-45%);
    }

    50% {
        transform: scale(1,1.5) translateY(10%);
    }

    66% {
        transform: scale(2,0.75) translateY(25%);
    }

    75% {
        transform: scale(1,1.25) translateY(10%);
    }

    100% {
        transform: scale(1,1) translateY(-80%);
    }
}

.small_Big {
    -webkit-animation: scaleCircles 2s infinite cubic-bezier(0.55,0.15,0.45,0.85) alternate;
    animation: scaleCircles 2s infinite cubic-bezier(0.55,0.15,0.45,0.85) alternate;
}

@keyframes scaleCircles {
    0% {
        z-index: 1;
        transform: scale3d(0,0,0);
    }

    100% {
        z-index: 2;
        transform: scale3d(1,1,1);
    }
}

.index * {
    opacity: 1;
}

.index {
    overflow: hidden;
}

.wrap:after {
    content: "";
    display: table;
    clear: both;
}

.fadeInUpGroup.animated {
    animation-fill-mode: both;
    animation-name: fadeInLeft3;
    opacity: 0;
}

.fadeInUpGroup.animated:nth-child(1) {
    animation-duration: .5s !important;
    animation-delay: .1s !important;
}

.fadeInUpGroup.animated:nth-child(2) {
    animation-duration: 1s !important;
    animation-delay: .6s !important;
}

.fadeInUpGroup.animated:nth-child(3) {
    animation-duration: 1.5s !important;
    animation-delay: .9s !important;
}

.fadeInUpGroup.animated:nth-child(4) {
    animation-duration: 2s !important;
    animation-delay: 1.1s !important
}

.fadeInUpGroup.animated:nth-child(5) {
    animation-duration: 1.5s !important;
    animation-delay: 1.6s !important;
}

.head {
    position: fixed;
    left: 0;
    right: 0px;
    top: 0;
    z-index: 5555;
    /* padding-top: calc(27/1920*100vw);
    padding-left: calc(164/1920*100vw);
    padding-right: calc(164/1920*100vw); */
    max-width: 1200px;
    margin: 0px auto;
    padding-top: 20px;
    width: 100%;
}

.head .bg {
    background: linear-gradient(89deg, #BEBEBE, #EEEEEE, #D2D2D2);
     /* backdrop-filter: blur(10px); */
    border-radius: calc(37/1920*100vw);
    padding: calc(3/1920*100vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.head .logo {
}

.head .logo a {
}

.head .logo a img {
    height: calc(68/1920*100vw);
}

.head .link {
    padding-right: calc(16/1920*100vw);
    font-size: 0;
    display: flex;
}

.head .link a {
    margin-left: calc(6/1920*100vw);
}

.head .link a img {
    height: calc(58/1920*100vw);
}

.index {
    margin-top: 100px;
}

.index .wrap {
    max-width: 1200px;
    padding: 0px 20px;
    padding-bottom: 20px;
    margin: auto;
}

.index .section1 {
}

.index .section1 .title {
    text-align: center;
    padding-top: calc(174/1920*100vw);
    padding-bottom: calc(37/1920*100vw);
    font-size: 0;
}

.index .section1 .title img {
    height: calc(81/1920*100vw);
}

.index .section1 .title2 {
    text-align: center;
    padding-top: calc(34/1920*100vw);
    padding-bottom: calc(37/1920*100vw);
    font-size: 0;
}
.index .section1 .title3 {
    text-align: center;
    padding-top: calc(34/1920*100vw);
    padding-bottom: calc(37/1920*100vw);
    font-size: 0;
}

.index .section1 .title2 img {
    height: calc(121/1920*100vw);
}


.index .section1 .title3 img {
    height: calc(281/1920*100vw);
}










.index .section1 .title span {
    vertical-align: middle;
    font-family: DMSans;
    font-weight: 400;
    font-size: calc(71/1920*100vw);
    color: #565A5B;
    padding-left: calc(34/1920*100vw);
}









.index .section1 .title3 span {
    vertical-align: middle;
    font-family: DMSans;
    font-weight: 400;
    font-size: calc(71/1920*100vw);
    color: #565A5B;
    padding-left: calc(34/1920*100vw);
}







.index .section1 .list {
    background: #FFFFFF;
    border-radius: calc(29/1920*100vw);
    padding: calc(54/1920*100vw) calc(44/1920*100vw);
    padding-bottom: calc(39/1920*100vw);
    margin-bottom: calc(82/1920*100vw);
    box-shadow: 0px 0px calc(40/1920*100vw) #ccc;
}

.index .section1 .list .swiper-container {
    padding-bottom: calc(48/1920*100vw);
}

.index .section1 .list .swiper-wrapper {
}

.index .section1 .list .swiper-slide {
    overflow: hidden;
    cursor: pointer;
}

.index .section1 .list .swiper-slide img:hover{
-webkit-transform: scale(1.05,1.05);
-o-transform: scale(1.05,1.05);
-moz-transform: scale(1.05,1.05);
-ms-transform: scale(1.05,1.05);
transform: scale(1.05,1.05);
}
.index .section1 .list .swiper-slide img {
    width: 100%;
    -webkit-transition:all 0.4s;
-o-transition:all 0.4s;
-moz-transition:all 0.4s;
-ms-transition:all 0.4s;
transition:all 0.4s;
}

.index .section1 .list .swiper-pagination {
    bottom: 0;
}

.index .section1 .tab {
    display: flex;
}

.index .section1 .tab .left {
    background: #FFFFFF;
    border-radius: calc(29/1920*100vw);
    /* float: left; */
    width: 180px;
    box-shadow: 0px 0px calc(40/1920*100vw) #ccc;
    padding-top: calc(25/1920*100vw);
}

.index .section1 .tab .left .title2:after {
    content: "";
    position: absolute;
    width: calc(28/1920*100vw);
    height: calc(28/1920*100vw);
    left: calc(17/1920*100vw);
    top: calc(13/1920*100vw);
    background: url(../images/func.png) no-repeat center center;
    background-size: 100%;
}

.index .section1 .tab .left .title2 {
    font-family: DMSans;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #000000;
    line-height: calc(53/1920*100vw);
    background: url(../images/kbs.png) no-repeat left center;
    background-size: auto 100%;
    font-family: DMSans;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #000000;
    padding-left: calc(54/1920*100vw);
    position: relative;
    margin-bottom: calc(30/1920*100vw);
}

.index .section1 .tab .left .block {
    margin-left: calc(12/1920*100vw);
    margin-right: calc(18/1920*100vw);
    background: rgb(86 90 91 / 5%);
}

.index .section1 .tab .left .block .h2tit.type1 {
    /* padding-bottom: calc(27/1920*100vw); */
    background-color: #fff!important;
}
.index .section1 .tab .left .block .h2tit.type2 b{
    position: absolute;
    
top: 50%;
    
left: 0;
    
-o-transform: translate(0%, -50%);
    
-webkit-transform: translate(0%, -50%);
    
-moz-transform: translate(0%, -50%);
    
-ms-transform: translate(0%, -50%);
    
transform: translate(0%, -50%);
    
margin-left: 21px;
}
.index .section1 .tab .left .block .h2tit.type2 img{

}
    .index .section1 .tab .left .block .h2tit.type2 span{
        
margin: 0;
    }
.index .section1 .tab .left .block .h2tit.type2 {
    line-height: calc(73/1920*100vw);
    padding-top: 0;
    background: rgb(86 90 91 / 5%);
    border-bottom: calc(1/1920*100vw) solid #fff;
    position: relative;
}

.index .section1 .tab .left .block .h2tit {
    position: relative;
    cursor: pointer;
    /* text-align: center; */
    padding-top: calc(8/1920*100vw);
    
    /* display: flex;
    justify-content: space-around; */
    text-align: left;
    padding-left: 10px;
}

.index .section1 .tab .left .block .h2tit img {
}

.index .section1 .tab .left .block .h2tit span {
    font-family: DMSans;
    font-weight: 400;
    font-size: 14px;
    color: #000000;
    vertical-align: middle;
    padding-left: 6px;
}

.index .section1 .tab .left .block dl {
    padding: 0px calc(25/1920*100vw);
}

.index .section1 .tab .left .block dd {
}

.index .section1 .tab .left .block dd:last-child a {
    border: none;
}

.index .section1 .tab .blocktype2 {
    height: calc(496/1920*100vw);
    margin-top: calc(38/1920*100vw);
}

.index .section1 .tab .left .block dd a {
    display: block;
    font-family: DMSans;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #000000;
    text-align: center;
    line-height: calc(64/1920*100vw);
    border-bottom: calc(1/1920*100vw) solid #949494;
}

.index .section1 .tab .right {
    box-shadow: 0px 0px calc(40/1920*100vw) #ccc;
    margin-left: 20px;
    flex: 1;
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
}
.index .section1 .tab .right-inner {
    flex: 1;
}

.index .section1 .tab .right .textareablock {
    height: calc(188/1920*100vw);
    background: url(../images/logo2.png) no-repeat center center;
    /* box-shadow:0px calc(12/1920*100vw) calc(7/1920*100vw) 0px rgba(0,0,0,0.09);*/
    border-radius: calc(29/1920*100vw);
    display: block;
    position: relative;
    background-size: cover;
    margin-bottom: calc(41/1920*100vw);
}

.index .section1 .tab .right .generated-textarea {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    background: none;
    resize: none;
    font-family: DMSans;
    font-weight: 400;
    font-size: 14px;
    padding: calc(44/1920*100vw);
}

.index .section1 .tab .right .words {
    right: calc(35/1920*100vw);
    bottom: calc(30/1920*100vw);
    position: absolute;
    font-family: DMSans;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #000000;
    z-index: 3;
    background-color: transparent;
}






.index .section1 .tab .right .words2 {
    right: calc(35/1920*100vw);
    bottom: 160px;
    position: absolute;
    font-family: DMSans;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #000000;
    z-index: 3;
    height: 30px;
    background-color: transparent;
    padding: 0px 10px;
}



.index .section1 .tab .right .words3 {
    right: calc(35/1920*100vw);
    bottom: 100px;
    position: absolute;
    font-family: DMSans;
    font-weight: 400;
    font-size: calc(18/1920*100vw);
    color: #3d3c3c;
    z-index: 3;
    background-color: transparent;
    width: 30%;
    padding: 0px 10px;
    height: 50px;
}









.preview-title{
    margin-bottom: 20px;
    font-size: 16px;
}
.preview-img{
    width: 400px;
    height: 400px;
    background-color: rgba(0,0,0,0.2);
}

.g-cancel{
    cursor: pointer;
    /* height: calc(103/1920*100vw); */
    border: 1px solid #000;
    padding: 10px 20px;
    border-radius: 30px;
    display: block;
    font-family: DMSans;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    /*text-transform: uppercase;*/
    margin: auto;
    display: block;
    max-width: 9;
    margin-top: 20px;
    margin-bottom: 20px;
}
.post{
    cursor: pointer;
    /* height: calc(103/1920*100vw); */
    background: #000;
    padding: 10px 20px;
    border-radius: 30px;
    display: block;
    /* width: calc(1228/1920*100vw); */
    border: none;
    font-family: DMSans;
    font-weight: 400;
    font-size: calc(24/1920*100vw);
    color: #FFFFFF;
    /*text-transform: uppercase;*/
    margin: auto;
    display: block;
    max-width: 9;
    margin-top: 20px;
}
.wallet-obj:hover{
    background-color: rgba(0, 0, 0, 0.1);
}

.dark .wallet-obj:hover{
    background-color: rgba(255, 255, 255, 0.1);
}
.connect-address-box:hover .address-dropdown-menu{
    visibility: visible!important;
}
.index .section1 .tab .right .send {
    height: 80px;
    background: #565A5B;
    border-radius: 24px;
    display: block;
    width: 100%;
    border: none;
    font-family: DMSans;
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
    margin: auto;
    display: block;
    max-width: 9;
}

.index .section1 .tab .right .send img {
    position: relative;
    top: calc(-4/1920*100vw);
    margin-left: calc(10/1920*100vw);
    width: calc(33/1920*100vw);
}

.masonry {
    column-count:4;
    column-gap: 10px;
    /* width: 70%; */
    margin:10px auto;
    font-size: 14px;
    min-height: 100px;
  }
  

  .item {
    padding: 10px;
    margin-bottom: 20px;
    -moz-page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
    /* color: #fff; */
    text-align: left;
    cursor: pointer;
  }
  .item-inner{
    padding: 12px;
  }
  .item-title{
    font-weight: 600;
  }
  .item-desc{
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .item a{
    display: block;
  }
  .item img:hover{
    /* opacity: 0.8; */
    filter:brightness(0.5)
  }
  .item img{
    width: 100%;
    outline: 1px solid var(--color-border);
    border-radius: 16px;
  }
  .item .content-lar {
    height: 200px;
  }
  .item .content-mid {
    height: 100px;
  }
  .item .content-sma {
    height: 50px;
  }


@font-face {
    font-family: 'DMSans';
    src: url('../fonts/dmsansregular-zvwm3.ttf') 
    
}


.p-user{
    text-align: left;
    padding-left: calc(164/1920*100vw);
    padding-right: calc(164/1920*100vw);
}

.p-user .inner{
  margin-top: 100px;
}


@media (max-width: 768px) {
    
    .post-time{
        display: none;
    }
    .post-title{
        white-space: nowrap;        /* 强制单行 */
        overflow: hidden;           /* 隐藏超出部分 */
        text-overflow: ellipsis;    /* 用省略号替代 */
        max-width: calc(100vw - 200px);
    }
    .p-loop-maxinner-container {
        margin-left: 0px!important;
        margin-top: 0px!important;
    }
    .p-loopt-header-box{
        position: relative!important;
        top: 0px!important;
    }
    .p-loopt-sidebar {
        position: relative!important;
        top: 0px!important;
        
        height: auto;
        overflow: auto;
    }
    /* .p-loopt-topic-post-img, .p-loopt-topic-post-fallback {
        display: none;   
    } */
    .p-loopt-topic-container{
        padding: 0px!important;
    }
    .p-loopt-header{
        gap: 10px!important;
    }
    .mobile-none{
        display: none;
    }
    /* .p-loopt-search{
        display: none;
    } */
    .create-post-button{
        display: none!important;
    }

    .home-right-selct-box{
        display: none;
    }
    .preview-img{
        max-width: 300px;
        height: 300px;
    }
    .preview-inner-box{
        padding: 20px!important;
    }

    .index {
        margin-top: 80px;
    }
    .masonry {
        column-count:2;
    }
    
    .index .section1 .tab {
        display: block;
        padding: 0px;
    }
    .index .section1 .tab .left {
        padding: 0px;
        width: 100%;
        margin-bottom: 20px;
        height: auto;
    }
    .index .section1 .tab .left .block{
        height: auto;
        display: flex;
        flex-direction: row;
        margin: 0px;
    }
    .index .section1 .tab .left .block .h2tit{
        text-align: center;
        padding: 10px 5px;
        padding-top: 10px!important;
    }
    .index .section1 .tab .blocktype2{
        margin-top: 0px;
    }
    .right{
        margin-left: 0px!important;
        border-radius: 10px!important;
        padding: 10px!important;
    }
    .textareablock{
        min-height: 100px;
    }
    .generated-textarea{
    }
    .send{
        border-radius: 6px!important;
        height: auto!important;
        padding: 10px 0px;
        font-size: 16px!important;
    }




    .head{
        padding: 10px;
    }
    .head .bg{
        padding: 10px;
    }
    .head .logo a img{
        height: 30px;
    }
    .head .link a img{
        height: 30px;
    }
    .head .link a{
        margin-left: 8px;
    }
    .connect-address-box .connect-address{
        width: 30px!important;
        height: 30px!important;
        line-height: 30px!important;
    }
}

.donate-box{
    background-color: #ea6363!important;
    display: inline-block;
    font-size: 14px;
    margin-top: 20px;
    border-radius: 4px;
    padding: 6px 10px;
}
.donate-box .donate{
    color: #fff;
}
.donate-list{
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.donate-list > span{
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #ea6363;
    color: #ea6363;
    font-size: 14px;
    cursor: pointer;
}


 .p-loopt-back-btn {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 14px;
    background: white;
    color: black;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    border:  1px solid;
}


.follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.follow-btn:hover:not(:disabled) {
  background-color: #222;
}

.follow-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.follow-btn.followed {
  background-color: #333;
}

.follow-btn .icon {
  margin-right: 6px;
}

.spin {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


.create-post-button {
  background: transparent;
  color: #000;
  font-size: 12px;
  padding: 11px 16px;
  border: 0px solid #ccc;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: var(--rk-shadows-connectButton);
  /* transition: 0.125s ease; */
  font-weight: 550;
}

.create-post-button .icon {
  width: 20px;
  height: 20px;
  color: #000;
}

.create-post-button:hover {
  /* background: #f5f5f5;
  border-color: #999; */
    /* transform: scale(var(--_12cbo8i0)); */
    transform: scale(1.025);
}




.sidebar-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* font-weight: 600; */
  font-size: 16px;
  cursor: pointer;
  padding: 10px 8px;
  color: #111;
  transition: background 0.2s;
}

.sidebar-group-header:hover {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}
.side-community-item{
    color: #000;
    display: block;
    text-align: left;
    font-size: 14px;
    padding: 6px 20px;
}
.side-community-item:hover{
  background: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}

.arrow svg{
    width: 16px;
}
.arrow {
  transition: transform 0.3s ease;
}

.arrow.open {
  transform: rotate(180deg);
}

.sidebar-items {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  padding: 0px 10px;
}

.sidebar-items.expanded {
  max-height: 500px;
  opacity: 1;
}

.sidebar-items.collapsed {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}

.sidebar-item {
  padding: 8px 12px;
  font-size: 15px;
  color: #333;
  border-radius: 4px;
  transition: background 0.2s;
  cursor: pointer;
}

.sidebar-item:hover {
  background: rgba(0, 0, 0, 0.06);
}

.create-community-btn {
    margin-top: 8px;
    height: 40px;
    padding: 6px 10px;
    font-size: 13px;
    background-color: #fff;
    border: 0px solid #ccc;
    color: #000;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    width: 90%;
    text-align: left;
    margin-left: 12px;
    box-shadow: var(--rk-shadows-connectButton);
    margin-bottom: 10px;
    white-space: nowrap;
    padding: 0px 20px;
}

.create-community-btn:hover {
  /* background-color: #e4e4e4; */
  transform: scale(1.025);
}

/* Coming soon 样式 */
.p-loopt-dropdown-item.disabled {
  color: #999;
  cursor: not-allowed;
}

.p-loopt-dropdown-item.disabled:hover {
  background-color: #fff;
}
.p-loopt-divider {
  height: 1px;
  background-color: #e0e0e0;
  margin: 16px 0;
}
.p-loopt-dropdown-btn.no-border {
  border: none;
  background-color: transparent;
  font-weight: 500;
  padding: 6px 10px;
}

.p-loopt-dropdown-btn.no-border:hover {
  background-color: #f2f2f2;
  border-radius: 6px;
}



.footer {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100vw;
    background-color: #fff;
    box-shadow: 0 -2px 10px #0000000d;
    padding: 5px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #000;
}

.footer a{
    color: #000;
}
.footer-act{
    color: #ea6363!important;
}
.footer-act svg{
    fill: #ea6363;
}
.footer .footer-item{
    
}
.footer svg{
    width: 16px;
}

.docs-button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 8px 16px;
    color: #4a4a4a; /* 深灰色文字 */
    background-color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    border: 1px solid #ddd; /* 浅灰边框 */
    margin-top: 90px;
  }

  .docs-button:hover {
    background-color: #f0f0f0; /* 浅灰背景 */
    color: #000000; /* 变黑 */
  }

  .docs-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(21, 156, 228, 0.4); /* 蓝色聚焦框 */
  }