html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.container {
    height: 100%;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}
/* Webkit 浏览器（如 Chrome 和 Safari） */
.container::-webkit-scrollbar {
display: none;
}

.page {
    scroll-snap-align: start;
    scroll-snap-stop: always; /* 确保每次滚动只能到下一个页面 */
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative; /* 相对定位，用于定位内部的绝对定位元素 */
    overflow: hidden;
}



.page .next-page {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -0%);
    background-color: rgba(0, 0, 0, 0.199);
    border-radius: 50%;
    padding: 10px;
    color: white;
    font-size: 30px;
    transition: all 0.3s ease;
    animation: moveUpDown 1s infinite alternate ease-in-out;
    cursor: pointer;
}

.page .next-page:hover {
    background-color: rgba(0, 0, 0, 0.315);
}

@keyframes moveUpDown {
    0% {
        transform: translate(-50%, -0%);
    }
    100% {
        transform: translate(-50%, calc(-0% - 10px));
    }
}
