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;
}

.recommender-container {
    position: relative;
    display: inline-block;
}
#recommender {
    position: absolute;
    top: 13%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.8), rgba(49, 27, 146, 0.8));
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 6vw;
    font-family: "Poppins", "Segoe UI", sans-serif;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(106, 27, 154, 0.6), 0 0 40px rgba(49, 27, 146, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}
#recommender:hover {
    background: linear-gradient(135deg, rgba(106, 27, 154, 1), rgba(49, 27, 146, 1));
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(106, 27, 154, 0.8), 0 0 50px rgba(49, 27, 146, 0.6);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}