/* 计算根字体大小的区间 */
@media screen and (min-width: 300px) {
    html {
        font-size: calc(100vw / 3.75)
    }
}

@media screen and (max-width:299px) {
    html {
        font-size: 80px;
    }
}

@media screen and (min-width:541px) {
    html {
        font-size: 144px;
    }
}

body {
    width: 100%;
    height: auto;
    position: relative;
    background-color: white;
}

.mobile {
    color: black;
    position: relative;
}

.mobile .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile .logo img {
    position: relative;
    width: 1.44rem;
}

.mobile .links {
    position: relative;
    display: flex;
    padding: 1px 12px 1px 30px;
}

.mobile .links a:nth-child(2) {
    margin: 0 16px;
}

.mobile .links a img {
    width: 40px;
}

.mobile .full-page .section {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mobile .full-page .section .content-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.mobile .full-page .section .content-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 0;
}

.mobile .full-page .section .content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile .full-page .section .content .image {
    margin-top: -10vh;
}

.mobile .full-page .section .content .image img {
    width: 43vh;
}

.mobile .fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.16rem 0.12rem 0;
    text-align: center;
    z-index: 9;
    background-color: transparent;
}

.mobile .fixed-footer .footer-tips {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.mobile .fixed-footer img {
    width: 100%;
    box-sizing: border-box;
    padding: 0 12px;
}

.mobile .btn-list {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.16rem;
}

.mobile .btn-list img {
    object-fit: contain;
}

.mobile .fixed-footer .jump-to img {
}

/* cover fullpage */
#fp-nav.fp-right{
    right: 0;
}
#fp-nav ul li, .fp-slidesNav ul li{
    height: auto;
}
#fp-nav ul li a span, .fp-slidesNav ul li a span{
    position: relative;
    display: block;
    background: #d55068;
    font-size: 0;
    text-indent: -1000px;
    width: 9px;
    height: 9px;
    border: 2px solid white;
}
#fp-nav ul li a span.fp-sr-only, .fp-slidesNav ul li a span.fp-sr-only{
    position: absolute;
}
#fp-nav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li a.active span, .fp-slidesNav ul li:hover a.active span{
    height: 20px;
    width: 8px;
    margin: -2px 0 0 -2px;
    border-radius: 11px;
    background: white;
}
#fp-nav ul li, .fp-slidesNav ul li{
    margin: 14px;
}

.android-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    background: #fff;
    overflow-y: auto;
    overflow-x: hidden;
}

.android-modal .header {
    width: 100%;
    display: flex;
    align-items: center;
    color: #000;
    padding: 0.024rem 0.048rem;
    box-shadow: 0 0.03rem 0.05rem rgba(57, 63, 72, 0.1);
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    height: 0.42rem;
    background: #fff;
}

.android-modal .header .android-modal-arrow img {
    width: 0.2rem;
}

.android-modal .header .title {
    font-size: 0.14rem;
    color: #000;
}

.android-modal .content {
    padding: 0.13rem 0.048rem;
}

.android-modal .content .platform-item img {
    width: 100%;
}

.android-modal .content .pic img {
    width: 100%;
}

.android-modal .contentAnser {
    display: none;
}