        /* Swiper 容器样式 */
		.swiper-container {
			width: 100%;
		  }

		  /* 小屏幕样式 */
		.swiper-slide {
			height: 300px;
		  }

		  /* 大屏幕样式 */
		@media (min-width: 768px) {
			.swiper-slide {
			  height: auto;
			}
		  }
        
        /* 轮播图片样式 */
        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        /* 自定义分页器样式 */
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: rgba(255,255,255,0.7);
            opacity: 0.8;
        }
        
        .swiper-pagination-bullet-active {
            background: #fff;
            transform: scale(1.2);
        }