/* 轮播图样式 */
.banner-section {
    width: 100%;
    height: 70vh;
    min-height: 400px;
    max-height: 800px;
}

.banner-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 导航按钮样式 */
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

/* 分页器样式 */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .banner-section {
        height: 50vh;
        min-height: 300px;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        width: 36px;
        height: 36px;
    }
    
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 16px;
    }
} 