﻿/* 轮播图样式 */
.banner-box {
    position: relative;
    overflow: hidden;
}

.banner-swiper {
    width: 100%;
    height: 100%;
}

    .banner-swiper .swiper-slide {
        text-align: center;
    }

    .banner-swiper img {
        width: 100%;
        max-width: 1920px;
        height: 100%;
        object-fit: cover;
    }

    .banner-swiper .swiper-pagination {
        bottom: 20px;
    }

    .banner-swiper .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 1;
    }

    .banner-swiper .swiper-pagination-bullet-active {
        background: #fff;
    }

    .banner-swiper .swiper-button-next,
    .banner-swiper .swiper-button-prev {
        color: #fff;
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.3);
        border-radius: 50%;
    }

        .banner-swiper .swiper-button-next:after,
        .banner-swiper .swiper-button-prev:after {
            font-size: 20px;
        }

/* 响应式调整 */
@media (max-width: 768px) {
    .banner-swiper .swiper-button-next, .banner-swiper .swiper-button-prev {
        display: none;
    }
}
