.carousel-container {
    position: relative;
    width: 100%;
    height: 26vh;
    max-width: 600px;
    margin-top: 74px;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.carousel-wrapper img {
    display: block;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.carousel-wrapper a {
    display: block;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #fff;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .carousel-container {
        height: 14rem;
        margin-top: 64px;
    }
}