.list-banner-V1 {
    box-sizing: border-box;
    width: 100%;
}
.list-banner-V1 * {
    box-sizing: inherit;
}

.list-banner-V1 .section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.list-banner-V1 .section-content {
    width: 100%;
    padding: 0;
    margin: 0;
}

.list-banner-V1 .content-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
    margin-top: 10px;
}

.list-banner-V1 .img-col {
    flex: 0 0 70%;
    position: relative;
    height: 0;
    padding-top: 38%; /* 380/600≈63.333% 严格保持600*380比例 */
    overflow: hidden;
}
.list-banner-V1 .img-col .main-banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* 主图动画：缩放+淡入淡出+贝塞尔曲线（更丝滑） */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
    transform: scale(1);
    /* 可选：加一点点旋转，更灵动 */
    /* transform: scale(1) rotate(0deg); */
}
/* 主图切换时的过渡状态（JS控制） */
.list-banner-V1 .img-col .main-banner-img.fade-out {
    opacity: 0;
    transform: scale(0.95);
    /* transform: scale(0.95) rotate(-1deg); */
}

/* 文本区域样式 */
.list-banner-V1 .text-col {
    flex: 0 0 30%;
    line-height: 1.6;
    padding: 0;
    margin: 0;
}

.list-banner-V1 h1 {
    font-size: 26px;
    color: #FF6B00;
    font-weight: 400;
    margin: 0 0 10px;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-all;
    width: 100%;
    line-height: 1.4;
}

.list-banner-V1 h2 {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    margin-top: 10px;
    margin-bottom: 8px;
}
.list-banner-V1 p {
    font-size: 14px;
    margin: 0 0 8px;
}
.list-banner-V1 .thumb-list-wrap {
    background-color: #e8e7e7;
    border: 1px solid #f5e8df;
    border-radius: 6px;
    padding: 10px;
    box-sizing: border-box;
    margin-top: 20px;
    width: 70%;
    overflow-x: visible; /* 平铺换行，无需横向滚动 */
}

/* 缩略图列表：平铺核心 - flex-wrap: wrap 允许换行 */
.list-banner-V1 .thumb-list {
    display: flex;
    flex-wrap: wrap; /* 自动换行，实现平铺 */
    gap: 12px; /* 缩略图间距 */
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%; /* 铺满容器 */
    justify-content: flex-start; /* 左对齐平铺（也可改space-between均匀分布） */
}

/* 缩略图项：增强动画+多层反馈 */
.list-banner-V1 .thumb-item {
    flex: 0 0 calc((100% - 36px) / 4);
    height: 0;
    padding-top: 13%; /* 和主图同比例600×380，避免变形 */
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    /* 缩略图过渡：全属性+贝塞尔曲线，更跟手 */
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
    transform: scale(1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
/* 缩略图悬停：边框+缩放+阴影+图片亮度（多层反馈） */
.list-banner-V1 .thumb-item:hover {
    border-color: #FF6B00;
    transform: scale(1.05); /* 轻微放大，突出交互 */
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.15); /* 主题色浅阴影 */
}
/* 缩略图选中：比悬停更突出 */
.list-banner-V1 .thumb-item.active {
    border-color: #FF6B00;
    transform: scale(1.08); /* 更大的缩放 */
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.2); /* 更深的主题色阴影 */
}
/* 缩略图图片：hover时轻微提亮，增强层次感 */
.list-banner-V1 .thumb-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: brightness 0.3s ease;
}
.list-banner-V1 .thumb-item:hover img {
    filter: brightness(1.05); /* 轻微提亮 */
}

@media (max-width: 768px) {
    .list-banner-V1 .content-layout {
        flex-direction: column;
        gap: 16px;
    }
    .list-banner-V1 .img-col,
    .list-banner-V1 .text-col {
        width: 410px;
        flex: 0 0 100%;
    }
    .list-banner-V1 .box-list {
        padding: 10px;
    }
    .list-banner-V1 h1 {
        font-size: 22px;
        width: 100%;
    }

    .list-banner-V1 .thumb-item {
        flex: 0 0 61px;
        padding-top: 0;
        height: 61px;
        transition: all 0.2s ease; 
    }
    .list-banner-V1 .thumb-item:hover {
        transform: scale(1.1);
        box-shadow: 0 2px 8px rgba(255, 107, 0, 0.1);
    }
    .list-banner-V1 .thumb-item.active {
        transform: scale(1.12);
        box-shadow: 0 3px 10px rgba(255, 107, 0, 0.15);
    }
    .list-banner-V1 .thumb-list-wrap{
        width: 75%;
    }
}
