/* 轮播图样式 */
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
}

.slideshow-slide {
    display: none;
}

.slideshow-slide img {
    width: 100%;
    vertical-align: middle;
    border-radius: 8px;
}

.slideshow-prev, .slideshow-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

.slideshow-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.slideshow-dots {
    text-align: center;
    padding: 10px 0;
}

.slideshow-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .slideshow-dot:hover {
    background-color: #717171;
}

.reward-slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 20px auto;
}

.reward-slideshow {
    display: flex;
    overflow: hidden;
}

.reward-slide {
    width: 100%;
    flex-shrink: 0;
    transition: transform 0.5s ease;
    border-radius: 8px;
}

.reward-prev, .reward-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

.reward-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.reward-dots {
    text-align: center;
    padding: 10px 0;
}

.reward-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.reward-dot.active, .reward-dot:hover {
    background-color: #717171;
}