/*轮播图*/
.swiper{
    overflow: hidden;
}
@media screen and (max-width: 1200px) {
    .swiper {
        height: 1000rem !important; /* Remove height property when width is less than 1200px */
    }
}
@media screen and (min-width: 1200px) {
    .swiper {
        height: 100% !important; /* Set height to 100% when width is greater than or equal to 1200px */
    }
}
.swiper-slide img{
    width: 100%;
    height: 100%;
}