* {
    margin: 0;
    box-sizing: border-box;
}

img {
    width: 100%;
    display: block;
}

a {
    display: block;
    width: 100%;
    height: 100%;
}

.wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0 auto;
    height: 100vh;
}

.wrap {
    min-height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.scroll-area {
    scrollbar-width: none;
    flex: 1;
    /* 自适应高度，内容多了就滚动 */

    overflow-x: hidden;
    overflow-y: auto;
}

.wrap-pc {
    max-width: 750px;
}

.play-btn {
    position: absolute;
    top: 66%;
    left: 0;
    width: 100%;
    height: 6%;
}

.logo{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
}

.service {
    position: absolute;
    top: 17%;
    right: 4%;
    width: 13%;
}

.kodeQr {
    position: absolute;
    top: 22%;
    right: 3%;
    width: 15%;
}

.kode-qr-content {
    max-width: 556px;
    max-height: 610px;
    margin: 0 40px;
    position: relative;
    display: flex;
    justify-content: center;
}

#qrcode {
    position: absolute;
    width: 70%;
    bottom: 10%;
    display: flex;
}

#qrcode svg{
    width: 100% !important;
    height: 100% !important;
}

.close {
    position: absolute;
    top: 4%;
    right: 4%;
    width: 6%;
}

.kode-qr-modal {
    display: none;
}

.flex {
    display: flex;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.w-screen {
    width: 100vw;
}

.h-screen {
    height: 100vh;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.fixed {
    position: fixed;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}