/* SEE 教育大会卡片：新增一列并保持原有单卡宽度 */
.see-event-cards {
    gap: 16px;
    max-width: 1174px;
}

.see-2026-card .card-image {
    max-height: none;
    aspect-ratio: 2.3 / 1;
}

/* 行业交流会轮播：复用 SEE 2026 大图与缩略图联动样式 */

.industry-live-carousel {
    position: relative;
    width: 100%;
    max-width: 960px;
    height: 768px;
    margin: 0 auto;
    overflow: hidden;
}

.industry-live-carousel .swiper-wrapper {
    display: flex;
    grid-template-columns: none;
    gap: 0;
}

.industry-live-carousel img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

#industry-gallery-top {
    width: 100%;
    max-width: none;
    height: 80%;
}

#industry-gallery-top .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#industry-gallery-top img:hover {
    transform: scale(1.2);
}

#industry-gallery-thumbs {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    height: 20%;
    padding: 10px 0;
}

#industry-gallery-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    overflow: hidden;
    opacity: 0.4;
    cursor: pointer;
}

#industry-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

@media (max-width: 900px) {
    .see-event-cards {
        max-width: 960px;
    }

    .industry-live-carousel {
        height: auto;
    }

    #industry-gallery-top {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    #industry-gallery-thumbs {
        display: none;
    }

    #industry-gallery-top img:hover {
        transform: scale(1);
    }
}
