
        .banner-container {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
        }
        
        .swiper {
            width: 100%;
            height: auto;
        }
        
        .swiper-slide {
            position: relative;
            width: 100%;
        }
        
        .swiper-slide img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }
        
        /* 自定义分页器样式 */
        .swiper-pagination {
            bottom: 15px !important;
            text-align: right !important;
            padding-right: 20px !important;
        }
        
        .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: rgba(255,255,255,0.5);
            opacity: 1;
            margin: 0 4px !important;
        }
        
        .swiper-pagination-bullet-active {
            background: #e91e8c;
        }
        
        /* 响应式调整 */
        @media screen and (max-width: 768px) {
            .swiper-pagination {
                bottom: 10px !important;
                padding-right: 15px !important;
            }
            
            .swiper-pagination-bullet {
                width: 8px;
                height: 8px;
            }
        }