body::-webkit-scrollbar {
    display: none;
}

body {
    scrollbar-width: 0;
    -ms-overflow-style: none;
}

@media screen and (min-width: 900px) {
    html {
        font-size: calc(100vw / 19.2)
    }
}

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

body {
    width: 100vw;
    height: 100vh;
}

.page {
    position: relative;
}

/*header*/
.page .header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5vh 7.5vh;
}

.page .header .action img{
    width: 15vh;
    object-fit: contain;
}

.page .header .telegram {
    margin-left: 2vh;
}

/*main*/
.main {
    position: absolute;
    right: min(20vh, 10vw);
    bottom: min(12vh, 6vw);
    z-index: 10;
    display: flex;
    align-items: flex-end;
}

.main .qrcode-warp {
    margin-right: min(7.5vh,3.75vw);
    width: min(22vh,11vw);
    height: min(22vh,11vw);
    z-index: 11;
    border-radius: min(1.2vh,0.6vw);
    background-image: linear-gradient(to bottom,#e9b76b,#ffb07a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main .qrcode-warp .qrcode {
    width: min(20vh,10vw);
    height: min(20vh,10vw);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main .qrcode-warp .qrcode img {
    width: min(19vh,9.5vw);
    height: min(19vh,9.5vw);
}

.main .main-img img{
    height: min(13.333vh,6.6665vw);
    object-fit: contain;
}

/*full-page*/
.full-page .section {
    height: 100%;
    width: 100%;
    position: relative;
}

.full-page .section .bg img{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 0 0;
    z-index: -1;
}

.full-page .section .section-left-img {
    position: relative;
    text-align: center;
    height: min(100vh,50vw);
    width: min(96.25vh,48.125vw);
}

.full-page .section .section-left-img .left {
    position: absolute;
    bottom: 0;
    left: 0;
}

.full-page .section .section-left-img .left img {
    height: min(100vh,50vw);
    object-fit: contain;
}

.full-page .section .section-left-img .word {
    position: absolute;
    width: 100%;
    bottom: min(8.75vh,4.375vw);
    z-index: 2;
}

.full-page .section .section-left-img .word img {
    height: min(26.25vh,13.125vw);
    object-fit: contain;
}

.full-page .section .section-right-text img {
    position: absolute;
    top:min(40.833vh,20.4165vw);
    right: min(8.75vh,4.375vw);
    height: min(17.5vh,8.75vw);
}

.full-page .section.active .section-title {
    animation: 0.7s sectionTile 0.2s both;
    transform-origin: left bottom;
}
/* 动画 */
@keyframes sectionTile {
    0%{
        transform: rotate(10deg) scale(0);
    }
    40%{
        transform: rotate(10deg) scale(1);
    }
    100%{
        transform: rotate(0deg) scale(1);
    }
}
/* cover fullpage */
#fp-nav {
    height: 28px;
}

#fp-nav ul li a {
    height: auto;
}
#fp-nav.fp-right{
    right: 10px;
}
#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: #fff;
    font-size: 0;
    text-indent: -1000px;
    width: 9px;
    height: 9px;
    margin: 0 !important;
    border: 1px solid transparent;
}
#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{
    background-image: linear-gradient(to bottom,#d442ff,#5445ff);
    border-color: #fff;
}
#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: 45px;
    width: 9px;
    margin: -6px 0 0 -6px;
    border-radius: 11px;
}
#fp-nav ul li, .fp-slidesNav ul li{
    margin: 14px;
}