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;
    align-items: flex-start;
    justify-content: space-between;
    padding: 5vh 7vh 0 12vh;
}

.header img {
    object-fit: cover;
}

.header .logo img {
    width: 22vh;
}

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

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

.header .links .link {
    height: auto;
}

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

main .swiper-container .swiper-slide {
    position: relative;
    display: flex;
    align-items: 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 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-left: 12vh;
    padding-bottom: 10vh;
}

main .swiper-container .swiper-slide .left .title img {
    width: 75vh;
    margin-bottom: 25vh;
    margin-left: -5vh;
}

main .swiper-container .swiper-slide .left .qrcode-section {
    display: flex;
    align-items: center;
    position: relative;
    gap: 2vh;
}

main .swiper-container .swiper-slide .left .qrcode-section .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5vh;
}
main .swiper-container .swiper-slide .left .qrcode-section .buttons .button img {
    width: 17vh;
}

main .swiper-container .swiper-slide .qrcode-section .qrcode {
    background-color: white;
    padding: 5px;
    border-radius: 3px;
}

main .swiper-container .swiper-slide .left .qrcode-section .qr-tips {
    display: flex;
    flex-direction: column;
    gap: 1vh;
}

main .swiper-container .swiper-slide .left .qrcode-section .qr-tips .tips1 img {
    width: 18vh;
}

main .swiper-container .swiper-slide .left .qrcode-section .qr-tips .tips2 img {
    width: 27vh;
}


