/* 1. 整个轮播区域高度 = 6 行的总和 */
.box3 .swiper {
    height: 720px;      /* 6 行 × 120px 示例单高，可按需改 */
}

/* 2. 单张卡片高度（Swiper 会自动均分，这里写死也可） */
.box3 .swiper-slide {
    height: calc(100% / 6 - 20px * 5 / 6) !important; /* 减去五行间距 */
    box-sizing: border-box;
    overflow: hidden;
}

