/* 轮播基础样式 */
.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    flex-shrink: 0;
    width: 100%;
}

/* 按钮样式 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
    cursor: pointer;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.9);
}

.carousel-btn-prev {
    left: 0.75rem;
}

.carousel-btn-next {
    right: 0.75rem;
}

/* 指示器样式 */
.indicator {
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}


    