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

body {
    scrollbar-width: 0;
    -ms-overflow-style: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

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

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

.header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    padding: 4vh 6vh 4vh 8vh;
}

.header img {
    object-fit: cover;
}

.header .logo img {
    height: 8vh;
}

.header .links img {
    width: 17vh;
}

.header .links {
    display: flex;
    gap: 2vh;
}

main .swiper-container {
    width: 100vw;
    height: 100vh;
}

main .swiper-container .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .swiper-container .swiper-slide .slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

main .swiper-container .swiper-slide .slide-bg img {
    width: 100%;
    height: 100%;
}

main .swiper-container .swiper-slide .left img {
    position: relative;
    z-index: 1;
    width: 60vh;
    margin-top: 5vh;
}

main .swiper-container .swiper-slide .right {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    margin-left: 5vh;
}

main .swiper-container .swiper-slide .right .title img {
    width: 80vh;
}

main .swiper-container .swiper-slide .right .qrcode-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3vh;
    margin-top: 3vh;
}

main .swiper-container .swiper-slide .right .qrcode-section .qrcode-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

main .swiper-container .swiper-slide .right .qrcode-section .qrcode-box .qr-bg {
    width: 100%;
    height: 100%;
}

main .swiper-container .swiper-slide .right .qrcode-section .qrcode-box .qr-bg img {
    width: 20vh;
}

main .swiper-container .swiper-slide .right .qrcode-section .qrcode-box .qrcode {
    position: absolute;
    top: 20.2%;
    left: 19%;
    width: 100%;
    z-index: 3;
}

main .swiper-container .swiper-slide .right .qrcode-section .qrcode-tips img {
    width: 40vh;
}

