body {
    background-color: #291959;
    margin: 0;
}
.box {
    border: 6rpx solid #e8d6fe;
    width: 688rpx;
    margin: 25rpx 0 25rpx 25rpx;
}
.title{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-80%, -60%);
    color: rgba(245, 217, 0); 
    font-size: 9vw;
    text-shadow: 0 0 5px rgba(239, 215, 20, 0.8), 0 0 10px rgba(239, 215, 20, 0.5), 0 0 15px rgba(239, 215, 20, 0.3);
    letter-spacing: 2px;
    font-weight: bold;
    animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(239, 239, 20, 0.8), 0 0 10px rgba(239, 239, 20, 0.5), 0 0 15px rgba(239, 239, 20, 0.3);
    }
    to {
        text-shadow: 0 0 10px rgba(239, 239, 20, 0.9), 0 0 20px rgba(239, 239, 20, 0.7), 0 0 30px rgba(239, 239, 20, 0.5), 0 0 40px rgba(239, 255, 20, 0.3);
    }
}

.kf {
    position: fixed;
    right: 0rpx;
    top: 30%;
    width: 210rpx;
}

.wmax {
    width: 100vw;
}


.content {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #291959;
}

.top {
    top: 0;
    left: 0;
    position: fixed;
    width: 100vw;
    z-index: 9;
}
.scroll-container {
    width: 100vw;
    position: relative;
}

.scroll-box {
    width: 100vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    display: flex;
    gap: 0;
}

.scroll-box img {
    width: 100vw;;
    height: auto;
    scroll-snap-align: start;
    flex: 0 0 auto;
}

.pagination-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background-color: white;
}