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 (min-width: 1920px) {
    html {
        font-size: 100px;
    }
}

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

body {
    background: url('../images/pc/pc-bg.jpg') center center no-repeat;
    background-size: cover;
}

video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: url('../images/pc/pc-bg.jpg') center/cover no-repeat;
    z-index: 0;
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 0.62rem 0 0.67rem;
}

.header>h1 {
    width: 3.05rem;
    height: 0.94rem;
    margin-top: 0.37rem;
}

.header>h1>img {
    width: 100%;
    height: 100%;
}

.header>a {
    margin-top: 0.45rem;
}

.header>a:nth-of-type(1) {
    margin-left: auto;
}

.header>a:nth-of-type(2) {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
}

.header>a>img {
    width: 1.88rem;
    height: 0.54rem;
}

.main {
    width: 19.2rem;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 0.88rem 0 1.42rem;
}

.main>h2 {
    width: 6.54rem;
    height: 2.92rem;
    margin-top: 2.8rem;
}

.main>h2>img {
    width: 100%;
    height: 100%;
}

.code {
    width: 4.91rem;
    height: 2.32rem;
    background: url('../images/pc/qr-bg.png') center center no-repeat;
    background-size: 100% 100%;
    margin-top: 3.08rem;
    position: relative;
}

#qr {
    position: absolute;
    left: 0.37rem;
    top: 0.37rem;
    z-index: 10;
    width: 1.6rem;
    height: 1.6rem;
}

#qr>img {
    width: 100%;
    height: 100%;
}

.wrap {
    position: fixed;
    bottom: 0.59rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 19.2rem;
    overflow: hidden;
}

.img-list {
    display: flex;
    flex-shrink: 0;
    font-size: 0;
    animation: move 20s linear infinite;
    font-size: 0;
}

.img-list img {
    width: 29.9rem;
    flex: 0 0 auto;
    display: block;
}

@keyframes move {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-29.9rem);
    }
}