/* ========== list_exhibition 页面专用样式 ========== */

/* Banner区域样式 - 与category_product保持一致 */
.home-banner {
    height: 600px;
}

.home-banner .swiper-slide {
    height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.home-banner .swiper-slide::before {
    display: none;
}

.home-banner .container.banner-container {
    height: auto;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.home-banner .box-slider-text {
    max-width: 800px;
    position: relative;
    z-index: 2;
    color: #fff;
}

.home-banner .box-slide-title {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    animation: slideInUp 0.8s ease;
}

.home-banner .box-slide-sub-title {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-size: 70px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    animation: slideInUp 1s ease;
}

.home-banner .box-slide-description {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.9);
    animation: slideInUp 1.2s ease;
}

/* Banner按钮组 */
.home-banner .banner-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    animation: slideInUp 0.8s ease 0.4s both;
}

.home-banner .banner-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.home-banner .banner-buttons .btn svg {
    width: 20px;
    height: 20px;
}

/* 点击咨询按钮 - 蓝色实心 */
.home-banner .banner-buttons .btn-consult {
    background: #1366EE;
    color: #fff;
    border: 2px solid #1366EE;
    box-shadow: 0 4px 15px rgba(19, 102, 238, 0.4);
}

.home-banner .banner-buttons .btn-consult:hover {
    background: #0d4bb5;
    border-color: #0d4bb5;
    box-shadow: 0 6px 20px rgba(19, 102, 238, 0.5);
    transform: translateY(-2px);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式调整 */
@media (max-width: 991px) {
    .home-banner {
        height: 400px;
    }

    .home-banner .swiper-slide {
        height: 400px;
    }

    .home-banner .box-slide-title,
    .home-banner .box-slide-sub-title {
        font-size: 48px;
    }

    .home-banner .box-slide-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .home-banner {
        height: 300px;
    }

    .home-banner .swiper-slide {
        height: 300px;
    }

    .home-banner .box-slide-title,
    .home-banner .box-slide-sub-title {
        font-size: 36px;
    }

    .home-banner .box-slide-description {
        font-size: 14px;
    }
}

/* ========== 实时动向区域 ========== */

/* 实时动向区域 */
.news-section {
    padding: 80px 0;
}

.news-container {
    max-width: 1440px;
    margin: 0 auto;
}

.news-title {
    font-weight: bold;
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.news-subtitle {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #666;
}

.news-subtitle .news-highlight {
    color: #0066FF;
    font-weight: 700;
}

/* 实时动向内容布局 */
.news-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

/* 左侧视频 */
.news-image {
    width: 706px;
    height: 420px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

/* 没有文件提示 */
.news-image .no-file {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #999;
    font-size: 16px;
}

/* 播放按钮 */
.news-image .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.news-image .play-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.news-image .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* 右侧新闻列表 */
.news-list {
    width: 706px;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 420px;
    overflow-y: auto;
}

.news-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}

.news-item:last-child {
    margin-bottom: 0;
}

.news-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.news-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-item-title a:hover {
    color: #1366EE;
}

.news-item-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ========== 更多案例区域 ========== */

/* 更多案例标题样式 */
.more-title-main {
    font-weight: bold;
    font-size: 48px;
    color: #000000;
    margin-bottom: 20px !important;
    margin: 0;
}

.more-subtitle {
    font-family: 'Alibaba PuHuiTi 3.0', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: left;
    color: #666;
    margin: 0;
}

.more-subtitle .more-highlight {
    color: #0066FF;
    font-weight: 700;
}

/* 更多案例区域 */
.more-section {
    background: #F5F7FA;
    padding: 60px 0;
}

.more-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 更多案例头部左右布局 */
.more-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.more-header-left {
    flex: 1;
}

.more-header-right {
    flex-shrink: 0;
}

/* 查看更多按钮 */
.more-view-btn {
    width: 180px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    color: #1366EE;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 0.5px solid #1366EE;
    box-shadow: 9.76px 9.76px 24.41px 0px #3763AA1A;
}

.more-view-btn svg {
    width: 18px;
    height: 18px;
}

.more-view-btn:hover {
    border-color: #0066FF;
    color: #0066FF;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.15);
}

/* 更多案例网格布局 */
.more-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* 更多案例卡片 */
.more-card {
    width: 340px;
    height: 340px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.more-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* 更多案例卡片图片 */
.more-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #1366EE;
}

.more-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.more-card:hover .more-card-image img {
    transform: scale(1.05);
}

.more-card-placeholder {
    width: 100%;
    height: 100%;
    background: #1366EE;
}

/* 更多案例卡片内容 */
.more-card-content {
    flex: 1;
    padding: 16px;
}

.more-card-title {
    font-size: 26px;
    font-weight: 600;
    color: #303030;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin: 0 0 8px 0;
}

.more-card-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    height: 45px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

/* 空状态提示 */
.more-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 80px 20px;
    color: #999;
    font-size: 16px;
    text-align: center;
}

/* ========== 信息展示区域 ========== */

/* 信息展示区域 */
.info-section {
    padding: 80px 0;
}

.info-container {
    width: 1440px;
    margin: 0 auto;
}

.info-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* 信息卡片 */
.info-card {
    width: 723px;
    height: 440px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.info-content {
    padding: 60px 80px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-content>img {
    width: 31px;
    height: 21px;
    margin-bottom: 20px;
}

.info-title {
    font-weight: bold;
    font-size: 26px;
    color: #fff;
    margin: 0 0 15px 0;
}

.info-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 0;
}

.info-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

.info-stats {
    display: flex;
    gap: 40px;
}

.info-stat-item {
    text-align: left;
}

.info-stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.info-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}