/* 轮播图样式 */
.slideshow-container {
    width: 380px;
    height: 320px;
    position: relative;
    overflow: hidden;
    border-radius: 4px; /* 可选：圆角 */
}

.slideshow-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 裁剪适应 */
    /* object-fit: contain;  完整显示 */
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slideshow-container img.active {
    opacity: 1;
}

@media (max-width: 600px) {
    .slideshow-container {
        width: 280px;
        height: 200px;
    }
}