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;
    }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0.48rem 0.72rem 0;
}

.header .logo img {
    width: 2.92rem;
    object-fit: contain;
}

.header .links a img {
    width: 1.44rem;
    object-fit: contain;
}

.header .links a:nth-child(2) {
    margin-left: 0.22rem;
}

.swiper {
    width: 19.2rem;
    height: 100vh;
    overflow: hidden;
    --swiper-pagination-bullet-width: 14px;
    --swiper-pagination-bullet-size: 14px;
    --swiper-theme-color: rgba(234, 57, 115, 0.71);
    --swiper-pagination-bullet-inactive-color: rgba(234, 57, 115, 0.4);
    --swiper-pagination-bullet-inactive-opacity: 1;
    --swiper-pagination-right: 0.4rem;
    --swiper-pagination-bullet-vertical-gap: 20px;
}

.swiper .swiper-pagination-bullet {
    border: 2px solid rgba(234, 57, 115, 0.4);
}

.swiper .swiper-pagination-bullet-active {
    --swiper-pagination-bullet-height: 80px;
    --swiper-pagination-bullet-border-radius: 10px;
}


.swiper .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper .swiper-slide .slide_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.swiper .swiper-slide .slide_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 0;
}

.swiper .swiper-slide .slide_left {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 8;
}

.swiper .swiper-slide .slide_left img {
    width: 6.4rem;
    object-fit: contain;
}

.swiper .swiper-slide .slide_right {
    position: absolute;
    right: 0.72rem;
    bottom: 0.4rem;
    z-index: 8;
}

.swiper .swiper-slide .slide_right img {
    width: 7.84rem;
    object-fit: contain;
}

.swiper .swiper-slide .slide_word {
    position: absolute;
    left: 6.5rem;
    bottom: 2.2rem;
    z-index: 9;
}

.swiper .swiper-slide .slide_word img {
    width: 4.8rem;
    object-fit: contain;
}

.qrcode {
    position: fixed;
    left: 4rem;
    bottom: 0.6rem;
    width: 7.28rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 10;
}

.qrcode .bg {
    width: 2.16rem;
    height: 2.16rem;
    background-image: linear-gradient(to bottom, #c2c263, #d4d3ae);
    border-radius: 0.05rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qrcode .bg .qr {
    width: 2.08rem;
    height: 2.08rem;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qrcode .bg .qr #qr {
    width: 2rem;
    height: 2rem;
}

.qrcode .bg .qr #qr img {
    width: 100%;
    height: 100%;
}

.qrcode .tip img {
    width: 4.8rem;
    object-fit: contain;
}