/* 支持滑动的轮播图样式 */
.swiper {
    position: relative;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.3s ease;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: block;
}

.swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.swiper-pagination-bullet {
    border-radius: 4px;
    width: 20px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: #ff9900;
}