.slideshow {
    height: 400px;
    object-fit: cover;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .slideshow {
        height: auto;
        min-height: 200px;
        width: 100%;
    }
    
    /* 确保swiper容器在移动端正确显示 */
    .swiper-container {
        height: auto !important;
        min-height: 200px;
    }
    
    .swiper-slide {
        height: auto !important;
    }
    
    .swiper-slide img {
        height: auto !important;
        min-height: 200px;
        object-fit: cover;
    }
}
