/* 服务页面样式 */

/* 行业共建区域 - 与页头一致的渐变背景 */
.services-page .industry-partnership-section {
    background-color: #0a2540 !important;
    color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

.services-page .industry-partnership-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 标题区域 - 左对齐 */
.services-page .industry-partnership-header {
    text-align: center;
    margin-bottom: 0px;
    padding: 0 20px;
}

/* 标题 - 与资源优势标题样式完全一致 */
.services-page .industry-partnership-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px;
    font-family: 'Noto Sans SC', sans-serif;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    line-height: 1.5;
    z-index: 2;
    text-align: center;
    top: 0;
}

.services-page .industry-partnership-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -20px;
    width: calc(100% + 40px);
    height: 30%;
    background-color: #20b2aa;
    z-index: -1;
}

/* 副标题 - 与资源优势副标题样式一致 */
.services-page .industry-partnership-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Noto Sans SC', sans-serif;
    margin: 10px 0;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

/* 内容区域 */
.services-page .industry-partnership-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* 卡片样式 */
.services-page .partnership-card {
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
}

.services-page .partnership-card:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.services-page .partnership-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

/* 图片区域 */
.services-page .partnership-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: block;
}

.services-page .partnership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.services-page .partnership-card:hover .partnership-image img {
    transform: scale(1.1);
}

/* 信息区域 */
.services-page .partnership-info {
    padding: 0;
    box-sizing: border-box;
    height: 0;
    overflow: hidden;
}

/* 卡片底部文字样式 */
.services-page .partnership-card-wrapper {
    display: flex;
    flex-direction: column;
    width: calc(50% - 20px);
    min-width: 350px;
}

.services-page .partnership-card-footer-text {
    padding: 15px 0;
    font-size: 1.4rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin-top: 0px;
}

.services-page .partnership-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.4;
}

.services-page .partnership-card-description {
    font-size: 1rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-family: 'Noto Sans SC', sans-serif;
    min-height: 60px;
}

/* 下载区域 */
.services-page .partnership-card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.services-page .download-text {
    font-size: 1rem;
    color: #20b2aa;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Noto Sans SC', sans-serif;
    position: relative;
    padding-right: 20px;
}

.services-page .download-text::after {
    content: '>';
    position: absolute;
    right: 0;
    top: 0;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.services-page .partnership-card:hover .download-text {
    color: #ffffff;
}

.services-page .partnership-card:hover .download-text::after {
    transform: translateX(5px);
}

/* 响应式样式 - 平板 */
@media (max-width: 768px) {
    .services-page .industry-partnership-section {
        padding: 60px 0;
    }
    
    .services-page .industry-partnership-title {
        font-size: 2rem;
    }
    
    .services-page .industry-partnership-subtitle {
        font-size: 1rem;
    }
    
    .services-page .industry-partnership-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .services-page .partnership-card {
        width: 100%;
        min-width: auto;
        max-width: 500px;
    }
    
    .services-page .partnership-image {
        height: 160px;
    }
}

/* 响应式样式 - 手机 */
@media (max-width: 576px) {
    .services-page .industry-partnership-section {
        padding: 40px 0;
    }
    
    .services-page .industry-partnership-container {
        padding: 0 15px;
    }
    
    .services-page .industry-partnership-title {
        font-size: 1.8rem;
    }
    
    .services-page .industry-partnership-subtitle {
        font-size: 0.95rem;
    }
    
    .services-page .partnership-info {
        padding: 25px;
    }
    
    .services-page .partnership-card-title {
        font-size: 1.4rem;
    }
    
    .services-page .partnership-card-description {
        font-size: 0.95rem;
    }
    
    .services-page .download-text {
        font-size: 0.95rem;
    }
}



/* 强制固定导航栏，确保不跟随页面滚动 */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
}

/* 为整个页面内容添加顶部边距，避免被固定导航栏遮挡 */
main {
    padding-top: 0px; /* 根据导航栏高度调整 */
}

/* 修改智能大屏部分，确保不被导航栏遮挡且只占一屏 */
#smart-screen.hero {
    padding-top: 80px; /* 确保内容不被导航栏遮挡 */
    height: 100vh; /* 设置高度为全屏 */
    overflow: hidden; /* 防止内容溢出 */
    box-sizing: border-box; /* 确保padding不增加总高度 */
    position: relative;
    width: 100%; /* 确保宽度满屏 */
}

/* 确保视频容器完全覆盖父元素 */
#smart-screen.hero .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* 确保视频完全覆盖容器，不留任何白边 */
#smart-screen.hero .video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
    display: block;
    z-index: -1;
}

/* 额外的样式确保没有白边 */
#smart-screen.hero .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}



/* 资源优势部分 - 基础样式 */
.resource-advantages {
    /* 基础样式 - 所有资源优势类共享 */
    color: #333;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-sizing: border-box;
}

/* 资源优势 - 独立样式 */
.resource-advantages.resource-advantages-light {
    background-color: #0a2540;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 80vh;
    position: relative;
    overflow: visible !important;
}

/* 确保资源优势内容区域正确显示为三列 */
.resource-advantages.resource-advantages-light .resource-content.resource-advantages-content {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

/* 资源优势三列布局 - 文本列 */
.resource-advantages.resource-advantages-light .resource-text {
    flex: 0.5;
    padding: 0 20px;
    align-self: flex-start;
    margin-top: 0;
}

/* 资源优势部分的特定样式 */
.resource-advantages-section {
    padding-bottom: 0; /* 进一步减少与核心资源部分的间隙到最小 */
    position: relative;
    overflow: visible !important;
}

/* 资源优势部分的文本列 - 特定样式 */
.resource-advantages.resource-advantages-light.resource-advantages-section .resource-text {
    flex: 0.5;
    padding: 0 20px 0 50px !important;
    align-self: flex-start;
    margin-top: 35px !important; /* 增加margin-top值到35px，使飞利浦相关元素整体向下移动更多 */
}

/* 核心资源部分的文本列 - 特定样式 */
.resource-advantages.resource-advantages-light.core-resources-section .resource-text {
    flex: 0.5;
    padding: 0 20px;
    align-self: flex-start;
    margin-top: 80px;
    order: 3;
}

/* 资源优势三列布局 - 分隔线 */
.resource-advantages.resource-advantages-light .resource-divider {
    width: 2px;
    height: 260px;
    background-color: #ffffff;
    margin: 80px 20px 0 20px;
    flex-shrink: 0;
    align-self: flex-start;
    position: relative;
}

/* 资源优势部分的分隔线 - 特定样式 */
.resource-advantages-section .resource-divider {
    width: 2px;
    height: 260px;
    background-color: #ffffff;
    margin: 80px 20px 0 20px;
    flex-shrink: 0;
    align-self: flex-start;
    position: relative;
}

/* 核心资源部分的分隔线 - 特定样式 */
.core-resources-section .resource-divider {
    width: 2px;
    height: 260px;
    background-color: #ffffff;
    margin: 60px 20px 0 20px;
    flex-shrink: 0;
    align-self: flex-start;
    position: relative;
    order: 2;
}

/* 资源优势三列布局 - 图片列 */
.resource-advantages.resource-advantages-light .resource-report {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 20px;
    align-self: flex-start;
    position: relative;
    min-height: 260px;
}

/* 资源优势部分的图片列 - 特定样式 */
.resource-advantages-section .resource-report {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 20px;
    align-self: flex-start;
    position: relative;
    min-height: 260px;
}

/* 核心资源部分的图片列 - 特定样式 */
.core-resources-section .resource-report {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 40px;
    align-self: flex-start;
    position: relative;
    min-height: 260px;
    order: 1;
}

/* 资源优势图片样式 */
.resource-advantages.resource-advantages-light .report-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

/* 资源优势视频样式 */
.resource-advantages.resource-advantages-light .report-video {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* 核心资源 - 独立样式 */
.resource-advantages.core-resources {
    background-color: #f8f9fa;
    padding: 100px 0;
}

/* 核心资源部分的特定样式 */
.core-resources-section {
    padding-top: 0 !important; /* 进一步减少核心资源部分的顶部内边距到最小，保持与资源优势部分的一致性 */
    padding-bottom: 0 !important; /* 进一步减少核心资源部分的底部内边距到最小，减小与外资OTT高端优势部分的间隙 */
    position: relative;
    overflow: visible !important;
}

/* 核心资源部分的特定样式 - 更具体的选择器确保优先级 */
.resource-advantages.resource-advantages-light.core-resources-section {
    padding: 0 0 0 !important; /* 完全覆盖基础padding: 100px 0 */
    margin-bottom: 0 !important;
}

/* 资源优势部分 - 深色背景（专业服务） */
.resource-advantages-dark {
    background-color: #ffffff; /* 与hot-news保持一致 */
    color: #333; /* 与hot-news保持一致 */
    height: auto;
    padding: 100px 0;
    margin: 0;
    display: block;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

/* 核心代理部分 - 深蓝色背景 */
.resource-advantages.resource-advantages-dark.core-agents-section {
    background-color: #0a2540;
    color: #ffffff;
}

/* 资源优势容器 - 基础样式（专业服务） */
.resource-advantages-container,
.resource-advantages-dark .resource-advantages-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px; /* 与hot-news-container保持一致 */
    height: auto;
    width: 100%;
}

/* 资源优势容器 - 三列布局专用 */
.resource-advantages.resource-advantages-light .resource-advantages-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

/* 资源优势标题 - 基础样式 */
.resource-advantages-header,
.resource-advantages-dark .resource-advantages-header {
    margin-bottom: 60px;
    text-align: center;
    width: 100%;
}

/* 各部分独立的标题头部样式 */
.resource-advantages.resource-advantages-light .resource-advantages-header {
    /* 资源优势标题头部独立样式 */
    margin-bottom: 60px;
    text-align: left;
}

.resource-advantages.core-resources .resource-advantages-header {
    /* 核心资源标题头部独立样式 */
    margin-bottom: 60px;
    text-align: center;
}

/* 专业服务标题头部样式 - 与hot-news-header保持一致 */
.resource-advantages-dark .resource-advantages-header {
    /* 专业服务标题头部独立样式 */
    margin-bottom: 80px; /* 与hot-news-header保持一致 */
    padding: 0;
    max-width: 1200px;
    margin-left: 0;
    margin-right: auto;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
}

/* 确保专业服务部分的内容从顶部开始排列，避免间隙过大 */
section.resource-advantages-dark .resource-advantages-container .resource-content {
    margin-top: 0;
    justify-content: flex-start;
}

/* 专业服务第三层（深色背景）的服务描述列表样式 */
.professional-services-footer-section .service-description-list {
    margin-top: 0; /* 移除负margin，避免内容被拉到第二层 */
    justify-content: center;
}

/* 确保专业服务第三层的resource-content正常显示 */
.professional-services-footer-section .resource-content {
    justify-content: center;
    align-items: flex-start;
    padding-top: 0;
}

/* 资源优势标题 - 基础样式 */
.resource-advantages-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
    font-family: 'Noto Sans SC', sans-serif;
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    padding: 0 20px;
    line-height: 1.2;
    z-index: 1;
}

/* 资源优势标题图片样式 */
.resource-title-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 1;
}

/* 专业服务标题在白色背景上显示为深色 */
.resource-advantages-dark .resource-advantages-title {
    color: #333;
    font-weight: 700; /* 与热点资讯标题保持一致 */
}

/* 行业共建 - 独立样式 */
.hot-news {
    background-color: #f8f9fa;
    color: #333;
    min-height: 100vh;
    max-height: none; /* 移除最大高度限制，支持多屏显示 */
    overflow: visible; /* 允许内容溢出，支持多屏显示 */
    padding: 100px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.hot-news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
}

.hot-news-header {
    margin-bottom: 60px;
    text-align: center;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    justify-content: center;
    padding: 0;
}

/* 行业共建标题样式 - 与资源优势保持一致 */
.hot-news-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px; /* 与核心资源保持一致 */
    color: #333;
    font-family: 'Noto Sans SC', sans-serif;
    position: relative;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    padding: 0 20px;
    line-height: 1.2;
    z-index: 1;
    transform: none;
    /* 确保标题与副标题间距稳定 */
    transition: font-size 0.3s ease;
}

/* 行业共建标题背景条样式 - 与资源优势保持一致 */
.hot-news-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -20px;
    width: calc(100% + 40px);
    height: 20%;
    background-color: #20b2aa;
    z-index: -1;
    transform: translateX(0);
}

/* 行业共建副标题样式 */
.hot-news-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    font-family: 'Noto Sans SC', sans-serif;
    margin-top: 0; /* 确保与标题间距稳定 */
    margin-bottom: 30px; /* 与核心资源保持一致 */
    padding: 0 20px;
    line-height: 1.4;
    text-align: center;
    position: relative;
    transform: none; /* 移除所有偏移 */
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
    height: auto;
    flex-shrink: 0; /* 防止副标题被压缩 */
    /* 确保副标题在不同屏幕尺寸下稳定 */
    transition: font-size 0.3s ease;
    display: block;
}

/* 资源优势标题背景条 - 基础样式 */
.resource-advantages-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: #20b2aa;
    z-index: -1;
    transform: translateX(0);
}

/* 资源优势内容布局 */
.resource-advantages.resource-advantages-light .resource-content.resource-advantages-content,
.resource-content.resource-advantages-content,
.resource-advantages-content {
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    flex-wrap: nowrap !important;
}

/* 资源优势分隔线样式 */
.resource-divider {
    width: 2px;
    height: 200px;
    background-color: #ffffff;
    margin: 0 30px;
    flex-shrink: 0;
    align-self: flex-end;
    margin-top: 0;
}

/* 资源优势左侧文本样式 */
.resource-text {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
    margin-top: 0;
}

.resource-subtitle {
    color: #ffffff;
    font-family: 'Noto Sans SC', sans-serif;
    margin: 20px 0;
    line-height: 1.2;
}

.resource-text h3.resource-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin: 20px 0;
    text-align: left;
    width: 100%;
}

/* 使第一个副标题"百年精工"左对齐并向右移动 */
.resource-text h3.resource-subtitle:first-of-type {
    text-align: left;
    padding-left: 90px;
}

/* 使第二个副标题"以可靠刻入人心"保持与百年精工相同的样式 */
.resource-text h3.resource-subtitle:nth-of-type(2) {
    margin: 20px 0;
    padding-left: 40px;
}

/* 使第三个副标题"飞利浦即信赖"向右移动一点 */
.resource-text h3.resource-subtitle:nth-of-type(3) {
    padding-left: 50px;
}

.resource-text h4.resource-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 20px 0;
    opacity: 0.9;
    text-align: left;
    width: 100%;
}

/* 资源优势右侧报告图片样式 */
.resource-report {
    flex: 2;
    max-width: 600px;
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    margin-top: 0;
}

.report-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: inline-block;
    margin: 0;
}

/* 资源优势背景PHILIPS图片 - 响应式设计 */
.philips-bg {
    position: absolute;
    bottom: -20px;
    left: -20px;
    transform: none;
    z-index: 0;
    width: 100%;
    max-width: 600px;
    opacity: 0.15;
}

/* 资源优势部分的PHILIPS图片 - 特定样式 */
.resource-advantages-section .philips-bg,
.resource-advantages-section .philips-bg.philips-bg-specific {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    z-index: 0 !important;
    width: 100% !important;
    max-width: 400px !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    transform: translateX(20px) !important;
    box-sizing: border-box !important;
}

/* Philips内容整体向右移动 */
.philips-content {
    padding-left: 70px !important;
}

/* Philips logo特定样式 */
.philips-logo.philips-logo-specific {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    transform: translateX(0) !important;
    box-sizing: border-box !important;
    float: none !important;
    max-width: 300px;
}

/* 核心资源背景SHARP图片 - 特定样式 */
.core-resources-section .philips-bg.sharp-bg {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    z-index: 0 !important;
    width: 100% !important;
    max-width: 400px !important;
    opacity: 1 !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    box-sizing: border-box !important;
    display: block !important;
    visibility: visible !important;
}

.philips-logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Sharp logo特定样式 */
.philips-logo.sharp-logo {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translateX(20px) !important;
    box-sizing: border-box !important;
    float: none !important;
    max-width: 300px;
}

/* 针对不同屏幕尺寸的进一步优化 */
@media (max-width: 768px) {
    .philips-bg {
        max-width: 400px;
    }
    
    /* 资源优势部分的PHILIPS图片 - 响应式 */
    .resource-advantages-section .philips-bg {
        max-width: 400px;
    }
    
    /* 核心资源部分的SHARP图片 - 响应式 */
    .core-resources-section .philips-bg.sharp-bg {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .philips-bg {
        max-width: 250px;
    }
    
    /* 资源优势部分的PHILIPS图片 - 响应式 */
    .resource-advantages-section .philips-bg {
        max-width: 250px;
    }
    
    /* 核心资源部分的SHARP图片 - 响应式 */
    .core-resources-section .philips-bg.sharp-bg {
        max-width: 250px;
    }
}

/* 各部分独立的标题样式 */
.resource-advantages-title.resource-advantages-light::after {
    /* 资源优势标题背景条样式 - 与专业服务保持一致 */
    content: '';
    position: absolute;
    bottom: 5px;
    left: -20px;
    width: calc(100% + 40px);
    height: 30%;
    background-color: #20b2aa;
    z-index: -1;
}

/* 资源优势标题文字颜色 */
.resource-advantages-title.resource-advantages-light {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 30px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.5;
    z-index: 2;
    text-align: left;
    top: 0;
}

/* 调整资源优势容器的布局 */
.resource-advantages.resource-advantages-light {
    position: relative;
    overflow: visible;
}

.resource-advantages.resource-advantages-light .resource-advantages-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    text-align: left;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 0;
    margin-top: 0;
}

/* 核心资源左侧文本样式 */
.resource-advantages.core-resources .resource-text {
    flex: 1;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.resource-advantages-title.core-resources::after {
    /* 核心资源标题背景条样式 */
    background-color: #20b2aa;
}

.resource-advantages-title.professional-services::after {
    /* 专业服务标题背景条样式 - 与hot-news-title保持一致 */
    content: '';
    position: absolute;
    bottom: -10px;
    left: -20px;
    width: calc(100% + 40px);
    height: 45%;
    background-color: #20b2aa;
    z-index: -1;
    transform: translateX(0);
}

.resource-advantages-dark .exclusive-title {
    color: #333; /* 深色文字，适应白色背景 */
}

.resource-advantages-dark .brand-name {
    color: #333; /* 深色文字，适应白色背景 */
}

.resource-advantages-dark .resource-description p {
    color: #333; /* 深色文字，适应白色背景 */
}

.resource-advantages-dark .divider {
    background-color: #20b2aa; /* 蓝绿色分隔线 */
}

/* 资源优势内容 - 基础样式（不包括资源优势部分的三列布局） */
.resource-advantages:not(.resource-advantages-light) .resource-content,
.resource-advantages-dark .resource-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center; /* 内容居中 */
    flex: 1;
    padding: 0 20px;
    width: 100%;
}

.exclusive-agent {
    margin-bottom: 30px; /* 减少下边距，使内容上移 */
    text-align: left;
}

.exclusive-title {
    font-size: 1.6rem; /* 字体从2rem调小到1.6rem */
    font-weight: 600;
    color: #333; /* 文字颜色改为深色以适应白色背景 */
    margin: 0;
    font-family: 'Noto Sans SC', sans-serif;
}

.brand-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px; /* 减少下边距，使内容上移 */
    width: 100%;
    max-width: 800px;
}

.brand-logo {
    flex: 1;
    display: flex;
    flex-direction: column; /* 改为垂直排列 */
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.brand-logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

/* 确保飞利浦和夏普图片大小一致 */
.brand-logo.left img {
    max-height: 80px; /* 缩小飞利浦图片高度 */
    width: auto;
}

.brand-logo.right img {
    max-height: 120px;
    width: auto;
    transform: translateY(15px); /* 向下移动15px */
}

.brand-name {
    margin-top: 8px; /* 减少上边距，使文字与图片间隙更近 */
    font-size: 1.2rem;
    font-weight: 400; /* 改为正常字体粗细 */
    color: #333;
    text-align: center;
}

/* 飞利浦文字与图片的间隙 */
.brand-logo.left .brand-name {
    margin-top: 15px; /* 增加间隙，使文字下移 */
}

/* 夏普文字与图片的间隙 */
.brand-logo.right .brand-name {
    margin-top: 35px; /* 增加间隙，使文字下移更多 */
}

.divider {
    width: 2px;
    height: 120px;
    background-color: #20b2aa; /* 蓝绿色 */
    margin: 0 20px;
}

.resource-description {
    max-width: 800px;
    text-align: left;
    padding: 0 20px;
}

.resource-description p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333; /* 文字颜色改为深色以适应白色背景 */
    margin: 0;
    font-family: 'Noto Sans SC', sans-serif;
}

/* 外资OTT高端优势部分样式 */
.foreign-ott-advantages-section {
    padding: 20px 0;
    background-color: #0a2540;
    color: #ffffff;
    position: relative;
    overflow: visible !important;
}

/* 外资OTT高端优势部分样式 - 更具体的选择器确保优先级 */
.resource-advantages.resource-advantages-light.foreign-ott-advantages-section {
    padding: 10px 0 !important; /* 完全覆盖基础padding: 100px 0 */
    margin-top: 0 !important;
}

/* 外资OTT容器样式 - 确保上下排列 */
.resource-advantages.resource-advantages-light.foreign-ott-advantages-section .resource-advantages-container {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
}

/* 外资OTT头部样式 */
.foreign-ott-header {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

/* 主标题样式 - 不带背景条 */
.foreign-ott-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Noto Sans SC', sans-serif;
    background: none !important;
    padding: 0 !important;
    display: inline-block;
}

.foreign-ott-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 10px;
    line-height: 1.6;
    opacity: 0.9;
}

/* 外资OTT卡片容器 */
.foreign-ott-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 卡片行样式 */
.foreign-ott-cards-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.foreign-ott-cards-row.top-row {
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.foreign-ott-cards-row.bottom-row {
    justify-content: center;
    gap: 20px;
}

/* 单个卡片样式 */
.foreign-ott-card {
    flex: 0 0 auto;
    min-width: 280px;
    max-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 10px 25px 10px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.foreign-ott-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* 卡片图标样式 */
.foreign-ott-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 5px;
    font-size: 2rem;
    color: #ffffff;
}

.foreign-ott-card-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* 卡片标题样式 */
.foreign-ott-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #20b2aa;
    margin-bottom: 10px;
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.1;
}

/* 卡片描述样式 */
.foreign-ott-card-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #000000;
    opacity: 0.9;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .foreign-ott-cards-row.top-row {
        justify-content: center;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .foreign-ott-advantages-section {
        padding: 80px 0;
    }
    
    .foreign-ott-header {
        margin-bottom: 60px;
    }
    
    .foreign-ott-subtitle {
        font-size: 1.1rem;
    }
    
    .foreign-ott-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .foreign-ott-card {
        max-width: 100%;
        width: 90%;
    }
    
    .foreign-ott-cards-row.bottom-row {
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .foreign-ott-advantages-section {
        padding: 60px 0;
    }
    
    .foreign-ott-subtitle {
        font-size: 1rem;
    }
    
    .foreign-ott-card {
        width: 95%;
        padding: 25px 15px;
    }
    
    .foreign-ott-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .foreign-ott-card-title {
        font-size: 1.2rem;
    }
    
    /* 智能大屏英雄区域移动端样式 */
    #smart-screen.hero {
        height: 80vh;
        padding-top: 60px;
    }
    
    #smart-screen.hero .hero-content h1 {
        font-size: 2rem;
    }
    
    #smart-screen.hero .hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* 核心代理：创维、海信、康佳样式 */
.core-agents-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.core-agents-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0a2540;
    width: 100%;
    max-width: 100%;
    height: 40vh;
    padding: 0px 20px;
    border-radius: 0;
    margin-bottom: 30px;
    margin-top: 0px;
}

/* 核心代理部分：确保container不限制宽度 */
.core-agents-section .resource-advantages-container {
    max-width: none;
    padding: 0;
}

/* 核心代理部分：保持标题区域的最大宽度 */
.core-agents-section .resource-advantages-header {
    max-width: 1200px;
    margin: 0 auto 0px; /* 继续减少标题与LOGO区域之间的间隙 */
    text-align: center; /* 确保标题在页面中居中显示 */
}

/* 核心代理标题：去掉蓝绿色背景条 */
.core-agents-section .resource-advantages-title::after {
    display: none;
}

/* 核心代理标题：确保在页面中居中显示 */
.core-agents-section .resource-advantages-title {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px; /* 减少标题本身的底部间距 */
    color: #ffffff;
}

.core-agent {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    max-width: none;
}

.core-agent-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* 单独移动创维的LOGO向下一点 */
.core-agent:nth-child(1) .core-agent-logo {
    margin-top: 40px;
}

/* 单独移动创维的文字向上一点 */
.core-agent:nth-child(1) .core-agent-characters {
    margin-top: -15px;
}

/* 单独移动海信的LOGO向下一点 */
.core-agent:nth-child(3) .core-agent-logo {
    margin-top: 30px;
}

/* 单独移动海信的文字向下一点 */
.core-agent:nth-child(3) .core-agent-characters {
    margin-top: 20px;
}

/* 单独移动康佳的LOGO向下一点 */
.core-agent:nth-child(5) .core-agent-logo {
    margin-top: 40px;
}

/* 单独移动康佳的文字向下一点 */
.core-agent:nth-child(5) .core-agent-characters {
    margin-top: 50px;
}



.core-agent-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Noto Sans SC', sans-serif;
}

.core-agent:nth-child(1) .core-agent-logo h3 {
    color: #0070c0;
}

.core-agent:nth-child(3) .core-agent-logo h3 {
    color: #20b2aa;
}

.core-agent:nth-child(5) .core-agent-logo h3 {
    color: #e61e25;
}

.core-agent-logo p {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 0;
    font-family: 'Noto Sans SC', sans-serif;
}

.core-agent-logo img {
    max-width: none !important;
    max-height: 100% !important;
    object-fit: contain;
    margin-bottom: 5px;
    display: block;
}

.core-agent-characters {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
}

.core-agent-characters span {
    font-size: 1.4rem;
    color: #ffffff;
    font-family: 'Noto Sans SC', sans-serif;
}

.core-agent-divider {
    width: 2px;
    height: 120px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
}

.core-agents-description {
    max-width: 1000px;
    text-align: center;
    padding: 0 20px;
}

.core-agents-description p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    font-family: 'Noto Sans SC', sans-serif;
}

/* 社交平台模块样式 */
.social-platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.social-platform-text {
    position: relative;
}

.social-platform-intro {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    margin: 0 0 40px;
    font-weight: 500;
}

.social-platform-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.social-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.social-feature-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.social-feature-item:hover .social-feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.social-feature-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.social-feature-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.social-platform-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.social-platform-image:hover {
    transform: scale(1.02);
}

.social-platform-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.social-platform-image:hover img {
    transform: scale(1.05);
}

/* 报告页面样式 */
.resource-advantages.core-resources .resource-content.report-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.report-main-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.report-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    font-family: 'Noto Sans SC', sans-serif;
}

.report-image-container {
    margin-bottom: 30px;
    padding: 0 20px;
}

/* 核心代理LOGO区域响应式设计 */
/* 大屏设备上适当缩小LOGO */
.core-agent-logo img {
    width: 320px !important;
}

@media (max-width: 1200px) {
    .core-agent-logo img {
        width: 240px !important;
    }
}

@media (max-width: 992px) {
    .core-agent-logo img {
        width: 200px !important;
    }
}

@media (max-width: 768px) {
    .core-agents-logos {
        flex-wrap: wrap;
        height: auto;
        padding: 40px 20px;
    }
    
    .core-agent {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .core-agent:last-child {
        margin-bottom: 0;
    }
    
    .core-agent-logo img {
        width: 150px !important;
    }
    
    .core-agent-divider {
        display: none;
    }
    
    .core-agent-characters {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .core-agent-logo img {
        width: 120px !important;
    }
    
    .core-agent-characters {
        gap: 20px;
    }
    
    .core-agent-characters span {
        font-size: 1.3rem;
    }
}

.report-cover {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.report-description {
    max-width: 600px;
    margin: 0 auto;
}

.report-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    font-family: 'Noto Sans SC', sans-serif;
}

/* 服务流程模块样式 */
.process-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.process-intro {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #333;
    margin: 0 0 60px;
    font-weight: 500;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.3);
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.service-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 400px;
    height: auto;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-sizing: border-box; /* 确保内边距不影响实际高度 */
}

.service-item:hover {
    transform: translateY(-10px); /* 与服务流程保持一致的向上移动效果 */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); /* 与服务流程保持一致的阴影效果 */
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 10px; /* 进一步减少图标底部间距 */
    color: #20b2aa; /* 蓝绿色图标 */
}
    
.service-icon-svg {
    width: 60px;
    height: 60px;
    margin-bottom: 10px; /* 进一步减少图标底部间距 */
    filter: brightness(0) saturate(100%) invert(24%) sepia(77%) saturate(667%) hue-rotate(160deg) brightness(91%) contrast(96%); /* 将SVG变为蓝绿色，与背景条颜色一致 */
}

.service-name {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333; /* 深色文字，适应白色背景 */
    margin-bottom: 5px; /* 进一步减少名称底部间距 */
}    

.service-desc {
    font-size: 0.9rem;
    color: rgba(51, 51, 51, 0.8); /* 半透明深色文字，适应白色背景 */
    line-height: 1.4; /* 减少行高以降低高度 */
    max-width: 400px; /* 增加描述文字的最大宽度以匹配服务项宽度 */
    text-align: center;
    margin-bottom: 0; /* 移除底部间距 */
}



/* 专业服务页面三层布局样式 */
.professional-services-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    max-height: none;
    overflow: visible;
}

.professional-services-header-section {
    background-color: #ffffff;
    width: 100%;
    padding: 60px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    min-height: auto;
    box-sizing: border-box;
}

.professional-services-content-section {
    background-color: #ffffff;
    width: 100%;
    padding: 20px 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
    min-height: auto;
    box-sizing: border-box;
    overflow-y: visible;
}

.professional-services-footer-section {
    background-color: #0a2540;
    width: 100%;
    padding: 20px 0 60px;
    flex: 0 1 auto;
    min-height: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* 确保专业服务第三层的resource-advantages-container向上对齐 */
.professional-services-footer-section .resource-advantages-container {
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
}

/* 专业服务标题样式 */
.professional-services-title-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
}

.professional-services-main-title {
    color: #333333;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    display: inline-block;
    padding: 0 20px;
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.5;
    z-index: 2;
}

.professional-services-main-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -20px;
    width: calc(100% + 40px);
    height: 30%;
    background-color: #20b2aa;
    z-index: -1;
}

/* 我们的服务部分样式 */
.our-services-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.our-services-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Noto Sans SC', sans-serif;
}

.our-services-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    font-family: 'Noto Sans SC', sans-serif;
}

/* 服务项样式 */
.service-items {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.service-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-height: 240px;
}

/* 服务图标样式 */
.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.service-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Noto Sans SC', sans-serif;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    font-family: 'Noto Sans SC', sans-serif;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.service-subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #20b2aa;
    margin: 5px 0 15px 0;
    font-family: 'Noto Sans SC', sans-serif;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-desc-line1,
.service-desc-line2 {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin: 5px 0;
    font-family: 'Noto Sans SC', sans-serif;
    text-align: center;
}

/* 服务描述列表样式 */
.service-description-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 15px;
    padding: 0 10px;
    height: 100%;
}

.service-description-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    display: flex;
    align-items: flex-start;
}

.service-description-item p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
    font-family: 'Noto Sans SC', sans-serif;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .resource-advantages,
    .resource-advantages-dark,
    .hot-news {
        min-height: auto;
        padding: 40px 0;
    }
    
    /* 专业服务三层结构响应式样式 */
    .professional-services-wrapper {
        height: auto;
        max-height: none;
        min-height: 100vh;
    }
    
    .professional-services-header-section,
    .professional-services-content-section,
    .professional-services-footer-section {
        flex: none;
        min-height: auto;
        height: auto;
        padding: 30px 0;
    }
    
    .professional-services-content-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .professional-services-main-title {
        font-size: 2rem;
    }
    
    .service-items {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 15px;
        padding: 0 15px;
        width: 100%;
        overflow-x: visible;
    }
    
    .service-item {
        flex: 1 1 100%;
        min-width: auto;
        max-width: 400px;
        margin-bottom: 0;
        padding: 20px 15px;
        min-height: 200px;
    }
    
    .service-description-list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
    }
    
    /* 资源优势部分移动端样式 */
    .resource-advantages.resource-advantages-light .resource-content.resource-advantages-content,
    .resource-content.resource-advantages-content,
    .resource-advantages-content {
        flex-direction: column !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 30px;
    }
    
    .resource-divider {
        display: none;
    }
    
    .resource-text {
        align-items: center;
        text-align: center;
    }
    
    .resource-text h3.resource-subtitle:first-of-type,
    .resource-text h3.resource-subtitle:nth-of-type(2),
    .resource-text h3.resource-subtitle:nth-of-type(3) {
        padding-left: 0;
    }
    
    .resource-report {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }
    
    .report-video {
        width: 100%;
        height: auto;
    }
    
    .service-description-item {
        min-width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 0 10px;
    }
    
    /* 社交平台响应式样式 */
    .social-platform-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .social-platform-text {
        order: 2;
    }
    
    .social-platform-image {
        order: 1;
    }
    
    .social-platform-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* 服务流程响应式样式 */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-intro {
        margin-bottom: 40px;
    }
    
    .brand-logos {
        flex-direction: column;
        gap: 30px;
    }
    
    .divider {
        width: 80px;
        height: 2px;
        margin: 0;
    }
    
    .exclusive-title {
        font-size: 1.8rem;
    }
    
    .resource-description p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .resource-advantages-title,
    .hot-news-title {
        font-size: 1.8rem;
    }
    
    .exclusive-title {
        font-size: 1.6rem;
    }
    
    .resource-description p {
        font-size: 1rem;
    }
    
    /* 专业服务三层布局响应式样式 */
    .professional-services-header-section {
        padding: 30px 0; /* 减少头部内边距 */
    }
    
    .professional-services-content-section {
        padding: 30px 0; /* 调整内容区内边距 */
    }
    
    .professional-services-footer-section {
        padding: 30px 0; /* 减少底部内边距 */
    }
    
    /* 服务项文本响应式样式 */
    .service-name {
        font-size: 1.1rem; /* 调整服务名称字体大小 */
        margin-bottom: 3px; /* 减少间距 */
    }
    
    .service-desc {
        font-size: 0.85rem; /* 调整服务描述字体大小 */
        line-height: 1.5; /* 调整行高以提高可读性 */
    }
    
    /* 服务描述文本响应式样式 */
    .service-description-item p {
        font-size: 0.8rem; /* 调整描述文本字体大小 */
        line-height: 1.5; /* 调整行高以提高可读性 */
    }
}

/* 页面标题部分 */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/services-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: fadeInUp 0.8s ease;
}

.page-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

/* 服务详情部分 */
.service-detail {
    padding: 0; /* 移除内边距 */
    min-height: 100vh; /* 设置最小高度为全屏 */
    max-height: 100vh; /* 限制最大高度 */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* 防止内容溢出 */
}

.service-detail:nth-child(odd) {
    background-color: #f8f9fa;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-text {
    position: relative;
}

.service-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.service-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #0066cc;
}

.service-intro {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    margin: 30px 0 40px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.feature-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.feature-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.service-image:hover {
    transform: scale(1.02);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0055aa, #003377);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-outline:hover {
    background-color: #0066cc;
    color: #fff;
    transform: translateY(-5px);
}

/* 服务流程部分 */
.service-process {
    padding: 100px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #0066cc;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.7;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background-color: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background-color: #20b2aa;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(32, 178, 170, 0.3);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* 成功案例部分 */
.case-studies {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.case-item {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.case-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-item:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: 30px 25px;
}

.case-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.case-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(0, 102, 204, 0.1);
    color: #0066cc;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.case-more {
    text-align: center;
}

/* 联系我们部分 */
.contact-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #0066cc, #004499);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/contact-bg.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.contact-cta .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0.9;
}

.contact-cta .btn {
    background-color: #fff;
    color: #0066cc;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-content.reverse {
        direction: ltr;
    }
    
    .service-text {
        order: 2;
    }
    
    .service-image {
        order: 1;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .service-title {
        font-size: 2.2rem;
    }
    
    .service-intro {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    /* 专业服务项目平板响应式样式 */
    .service-items {
        gap: 15px;
        padding: 0 15px;
    }
    
    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .service-icon-svg {
        width: 45px;
        height: 45px;
        margin-bottom: 0;
    }
    
    .service-name {
        font-size: 1rem;
    }
    
    .service-desc {
        font-size: 0.85rem;
        margin-top: 6px;
        max-width: 180px; /* 平板设备上稍微减小宽度 */
        text-align: left; /* 文字左对齐 */
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .service-detail,
    .service-process,
    .case-studies,
    .contact-cta {
        padding: 70px 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-title,
    .section-title,
    .cta-title {
        font-size: 1.8rem;
    }
    
    .service-intro,
    .section-subtitle,
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .feature-text h3 {
        font-size: 1.1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .case-title {
        font-size: 1.2rem;
    }
    
    .case-description {
        font-size: 0.9rem;
    }
    
    /* 专业服务标题平板设备样式 - 与热点资讯保持一致 */
    section.resource-advantages-dark .resource-advantages-container .resource-advantages-header .resource-advantages-title.professional-services {
        font-size: 2rem;
        font-weight: 700;
    }
}

@media (max-width: 576px) {
    .video-title {
        font-size: 2.5rem;
    }
    
    .video-subtitle {
        font-size: 1.2rem;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .control-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .service-title,
    .section-title,
    .cta-title {
        font-size: 1.6rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .service-text,
    .section-header,
    .case-content,
    .cta-content {
        padding: 0 10px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    /* 专业服务项目响应式样式 */
    .service-items {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }
    
    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .service-icon-svg {
        width: 50px;
        height: 50px;
        margin-bottom: 0;
    }
    
    .service-name {
        font-size: 1.1rem;
    }
    
    .service-desc {
        font-size: 0.85rem;
        margin-top: 6px;
        max-width: 160px; /* 移动设备上进一步减小宽度 */
        text-align: left; /* 文字左对齐 */
    }
}

/* 3x3新闻网格布局 */
.news-grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px; /* 增大间隙，使布局更宽松 */
    width: 100%;
    max-width: 1600px; /* 进一步增大最大宽度 */
    margin: 0 auto; /* 居中显示 */
    padding: 0; /* 移除内边距，由news-content控制 */
    box-sizing: border-box;
}

/* 左列保持原位 */
.news-grid-3x3 .news-link:nth-child(3n+1) {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

/* 右列保持原位 */
.news-grid-3x3 .news-link:nth-child(3n) {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

/* 14寸显示器优化 (1366x768) */
@media (max-width: 1366px) {
    /* 资源优势、核心资源、专业服务和行业共建标题自适应 */
    .resource-advantages-title,
    .hot-news-title {
        font-size: 2rem;
        transform: none; /* 移除所有偏移 */
        margin-bottom: 20px; /* 统一标题和副标题的间距 */
    }
    
    /* 行业共建副标题自适应 - 保持自然位置 */
    .hot-news-subtitle {
        margin-top: 0;
        margin-bottom: 20px; /* 与核心资源保持一致 */
        padding: 0 20px;
        font-size: 1rem; /* 适当调整字体大小 */
    }
    
    /* 标题背景条自适应 - 与基础样式保持一致 */
    .resource-advantages-title::after,
    .hot-news-title::after {
        height: 35%;
        bottom: -6px;
        left: -20px;
        width: calc(100% + 40px);
    }
    
    /* 调整资源优势容器宽度 */
    .resource-advantages-container {
        max-width: 1100px;
        padding: 0 30px;
    }
    
    /* 调整专业服务项目间距 */
    .service-items {
        max-width: 1200px;
        gap: 20px;
    }
    
    /* 调整行业共建新闻网格 - 14英寸显示器改为2列布局 */
    .news-grid-3x3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        gap: 36px;
        padding: 0 20px;
    }
    
    /* 调整行业共建内容块大小 - 14英寸显示器增大尺寸 */
    section.hot-news .news-grid-3x3 .news-link {
        min-height: 280px;
        aspect-ratio: 5/4 !important;
    }
    
    /* 调整服务详情布局 */
    .service-content {
        max-width: 1000px;
        gap: 50px;
    }
    
    /* 确保所有部分的标题头部间距一致 */
    .resource-advantages-header,
    .hot-news-header {
        margin-bottom: 50px;
    }
    
    /* 为14寸显示器调整hot-news-container内边距 */
    .hot-news-container {
        padding: 0 20px;
    }
    
    /* 调整行业共建内容宽度 */
    section.hot-news .news-content {
        padding: 0 20px;
        max-width: 900px !important;
    }
}

/* 1400px以上显示器优化 */
@media (max-width: 1400px) and (min-width: 1367px) {
    /* 资源优势、核心资源、专业服务和行业共建标题自适应 */
    .resource-advantages-title,
    .hot-news-title {
        font-size: 2.2rem;
        transform: none; /* 移除所有偏移 */
        margin-bottom: 25px; /* 统一标题和副标题的间距 */
    }
    
    /* 行业共建副标题自适应 - 保持自然位置 */
    .hot-news-subtitle {
        margin-top: 0;
        margin-bottom: 25px; /* 与核心资源保持一致 */
        padding: 0 20px;
        font-size: 1.1rem; /* 适当调整字体大小 */
    }
    
    /* 标题背景条自适应 - 与基础样式保持一致 */
    .resource-advantages-title::after,
    .hot-news-title::after {
        height: 45%;
        bottom: -8px;
        left: -20px;
        width: calc(100% + 40px);
    }
    
    /* 调整资源优势容器宽度 */
    .resource-advantages-container {
        max-width: 1100px;
        padding: 0 30px;
    }
    
    /* 调整专业服务项目间距 */
    .service-items {
        max-width: 1200px;
        gap: 20px;
    }
    
    /* 调整行业共建新闻网格 */
    .news-grid-3x3 {
        max-width: 1200px;
        gap: 28px;
        padding: 0 30px;
    }
    
    /* 调整服务详情布局 */
    .service-content {
        max-width: 1000px;
        gap: 50px;
    }
    
    /* 确保所有部分的标题头部间距一致 */
    .resource-advantages-header,
    .hot-news-header {
        margin-bottom: 60px;
    }
    
    /* 为14寸显示器调整hot-news-container内边距 */
    .hot-news-container {
        padding: 0 30px;
    }
}

@media (max-width: 1200px) {
    /* 资源优势、核心资源、专业服务和行业共建标题自适应 */
    .resource-advantages-title,
    .hot-news-title {
        font-size: 2rem;
        transform: none;
        margin-bottom: 25px;
    }
    
    /* 行业共建副标题自适应 */
    .hot-news-subtitle {
        margin-top: 0;
        margin-bottom: 25px; /* 与核心资源保持一致 */
        padding: 0 20px;
        font-size: 1.1rem;
    }
    
    /* 标题背景条自适应 */
    .resource-advantages-title::after,
    .hot-news-title::after {
        height: 35%;
        bottom: -6px;
        left: -20px;
        width: calc(100% + 40px);
    }
    
    /* 确保所有部分的标题头部间距一致 */
    .resource-advantages-header,
    .hot-news-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 992px) {
    /* 资源优势、核心资源、专业服务和行业共建标题自适应 */
    .resource-advantages-title,
    .hot-news-title {
        font-size: 1.8rem;
        transform: none;
        padding: 0 15px;
        margin-bottom: 20px;
    }
    
    /* 行业共建副标题自适应 */
    .hot-news-subtitle {
        margin-top: 0;
        margin-bottom: 20px; /* 与标题间距保持一致 */
        padding: 0 15px;
        font-size: 1rem;
    }
    
    /* 标题背景条自适应 */
    .resource-advantages-title::after,
    .hot-news-title::after {
        height: 30%;
        bottom: -5px;
        left: -15px;
        width: calc(100% + 30px);
    }
    
    /* 确保所有部分的标题头部间距一致 */
    .resource-advantages-header,
    .hot-news-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    /* 资源优势、核心资源、专业服务和行业共建标题自适应 */
    .resource-advantages-title,
    .hot-news-title {
        font-size: 1.6rem;
        transform: none;
        padding: 0 10px;
        text-align: left;
        margin-bottom: 18px;
    }
    
    /* 行业共建副标题自适应 */
    .hot-news-subtitle {
        margin-top: 0;
        margin-bottom: 18px; /* 与标题间距保持一致 */
        padding: 0 15px;
        font-size: 1rem;
    }
    
    /* 标题背景条自适应 */
    .resource-advantages-title::after,
    .hot-news-title::after {
        height: 25%;
        bottom: -3px;
        left: -10px;
        transform: none;
        width: calc(100% + 20px);
    }
    
    /* 资源优势部分容器自适应 */
    .resource-advantages-container {
        padding: 40px 20px !important;
        min-height: auto !important;
        max-height: none !important;
    }
    
    /* 资源优势部分自适应 */
    .resource-advantages {
        min-height: auto !important;
        max-height: none !important;
        padding: 40px 0;
    }
    
    /* 资源优势内容自适应 */
    .resource-content {
        margin-top: 20px;
    }
    
    /* 品牌标志自适应 */
    .brand-logos {
        flex-direction: column;
        gap: 20px;
    }
    
    .brand-logo {
        width: 100%;
        text-align: center;
    }
    
    .divider {
        width: 80%;
        height: 2px;
        margin: 10px auto;
    }
    
    /* 确保所有部分的标题头部间距一致 */
    .resource-advantages-header,
    .hot-news-header {
        margin-bottom: 30px;
    }
    
    /* 优化行业共建网格布局 */
    .news-grid-3x3 {
        gap: 15px;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    /* 资源优势、核心资源和行业共建标题自适应 - 统一选择器 */
    .resource-advantages-title:not(.professional-services),
    .hot-news-title {
        font-size: 1.8rem;
        padding: 0 8px;
        text-align: left;
        margin-bottom: 15px;
    }
    
    /* 专业服务标题手机设备样式 - 与热点资讯保持一致 */
    section.resource-advantages-dark .resource-advantages-container .resource-advantages-header .resource-advantages-title.professional-services {
        font-size: 1.8rem;
        font-weight: 700;
    }
    
    /* 行业共建副标题自适应 */
    .hot-news-subtitle {
        margin-top: 0;
        margin-bottom: 15px; /* 与标题间距保持一致 */
        padding: 0 15px;
        font-size: 0.9rem;
    }
    
    /* 标题背景条自适应 - 统一选择器 */
    .resource-advantages-title::after,
    .hot-news-title::after {
        height: 20%;
        left: -8px;
        transform: none;
        width: calc(100% + 16px);
    }
    
    /* 资源优势部分容器自适应 */
    .resource-advantages-container {
        padding: 30px 15px !important;
    }
    
    /* 资源优势部分自适应 */
    .resource-advantages {
        padding: 30px 0;
    }
    
    /* 品牌标志图片自适应 */
    .brand-logo img {
        max-width: 120px;
        height: auto;
    }
    
    /* 独家代理标题自适应 */
    .exclusive-title {
        font-size: 1.2rem;
    }
    
    /* 资源描述自适应 */
    .resource-description p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* 确保所有部分的标题头部间距一致 */
    .resource-advantages-header,
    .hot-news-header {
        margin-bottom: 25px;
    }
    
    /* 优化行业共建网格布局 */
    .news-grid-3x3 {
        gap: 18px;
        padding: 0 15px;
        max-width: 320px;
    }
}

@media (max-width: 400px) {
    /* 资源优势、核心资源、专业服务和行业共建标题自适应 */
    .resource-advantages-title,
    .hot-news-title {
        font-size: 1.2rem;
        padding: 0 5px;
        text-align: left;
    }
    
    /* 核心资源标题自适应 */
    section.resource-advantages:nth-of-type(2) .resource-advantages-container .resource-advantages-header .resource-advantages-title {
        font-size: 1.2rem;
        padding: 0 5px;
        text-align: left;
    }
    
    /* 专业服务标题自适应 - 参照资源优势和核心资源的选择器结构 */
    section.resource-advantages-dark .resource-advantages-container .resource-advantages-header .resource-advantages-title.professional-services {
        font-size: 1.2rem;
        padding: 0 5px;
        text-align: left;
        font-weight: 700; /* 与热点资讯标题保持一致 */
    }
    
    /* 标题背景条自适应 */
    .resource-advantages-title::after,
    .hot-news-title::after,
    section.resource-advantages:nth-of-type(2) .resource-advantages-container .resource-advantages-header .resource-advantages-title::after,
    section.resource-advantages-dark .resource-advantages-container .resource-advantages-header .resource-advantages-title.professional-services::after {
        height: 15%;
        left: -5px;
        transform: none;
        width: calc(100% + 10px);
    }
    
    /* 品牌标志图片自适应 */
    .brand-logo img {
        max-width: 100px;
        height: auto;
    }
    
    /* 独家代理标题自适应 */
    .exclusive-title {
        font-size: 1rem;
    }
    
    /* 资源描述自适应 */
    .resource-description p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* 中间列保持不变 */
.news-grid-3x3 .news-link:nth-child(3n+2) {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

/* 悬停效果 - 左列 */
.news-grid-3x3 .news-link:nth-child(3n+1):hover {
    transform: translateX(0) scale(1.05);
}

/* 悬停效果 - 右列 */
.news-grid-3x3 .news-link:nth-child(3n):hover {
    transform: translateX(0) scale(1.05);
}

/* 悬停效果 - 中间列 */
.news-grid-3x3 .news-link:nth-child(3n+2):hover {
    transform: translateX(0) scale(1.05);
}

section.hot-news .news-grid-3x3 .news-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3 !important; /* 宽4高3比例，保持良好的视觉效果 */
    width: 100%; /* 确保宽度不超过容器 */
    min-height: 280px; /* 增大最小高度，使内容块更大 */
    transition: transform 0.3s ease;
}

/* 针对不同尺寸显示器的内容块优化 */
@media (max-width: 1400px) {
    section.hot-news .news-grid-3x3 .news-link {
        min-height: 260px;
    }
}

@media (max-width: 1200px) {
    section.hot-news .news-grid-3x3 .news-link {
        min-height: 240px;
    }
}

@media (max-width: 992px) {
    section.hot-news .news-grid-3x3 .news-link {
        min-height: 260px;
        aspect-ratio: 5/4 !important;
    }
}

@media (max-width: 768px) {
    section.hot-news .news-grid-3x3 .news-link {
        min-height: 240px;
        aspect-ratio: 5/4 !important;
    }
}

@media (max-width: 576px) {
    section.hot-news .news-grid-3x3 .news-link {
        min-height: 220px;
        aspect-ratio: 4/3 !important;
    }
}

@media (max-width: 400px) {
    section.hot-news .news-grid-3x3 .news-link {
        min-height: 200px;
        aspect-ratio: 4/3 !important;
    }
}

section.hot-news .news-grid-3x3 .news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

section.hot-news .news-grid-3x3 .news-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 15px 12px 12px; /* 减小内边距 */
    color: white;
    transition: opacity 0.3s ease;
}

section.hot-news .news-grid-3x3 .news-link:hover .news-overlay {
    opacity: 1;
}

section.hot-news .news-grid-3x3 .news-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

section.hot-news .news-grid-3x3 .news-link:hover .news-image {
    transform: scale(1.1);
}

/* 增加news-content宽度，覆盖style.css中的限制 */
section.hot-news .news-content {
    max-width: none !important;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0 auto;
    box-sizing: border-box;
    flex-wrap: nowrap; /* 确保内容不换行，与resource-content保持一致 */
}

/* 针对不同尺寸显示器的news-content优化 */
@media (max-width: 1400px) {
    section.hot-news .news-content {
        padding: 0 30px;
    }
}

@media (max-width: 1200px) {
    section.hot-news .news-content {
        padding: 0 25px;
    }
}

@media (max-width: 992px) {
    section.hot-news .news-content {
        padding: 0 20px;
        max-width: 750px !important;
    }
}

@media (max-width: 768px) {
    section.hot-news .news-content {
        padding: 0 15px;
        max-width: 500px !important;
    }
}

@media (max-width: 576px) {
    section.hot-news .news-content {
        padding: 0 15px;
        max-width: 350px !important;
    }
}

@media (max-width: 400px) {
    section.hot-news .news-content {
        padding: 0 10px;
        max-width: 300px !important;
    }
}

/* 3x3网格响应式样式 */
@media (max-width: 1200px) {
    .news-grid-3x3 {
        gap: 20px;
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .news-grid-3x3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 750px;
    }
    
    /* 平板设备上的交错效果 */
    .news-grid-3x3 .news-link:nth-child(odd) {
        transform: translateX(-10px);
    }
    
    .news-grid-3x3 .news-link:nth-child(even) {
        transform: translateX(10px);
    }
    
    /* 平板设备上的悬停效果 */
    .news-grid-3x3 .news-link:nth-child(odd):hover {
        transform: translateX(-10px) scale(1.05);
    }
    
    .news-grid-3x3 .news-link:nth-child(even):hover {
        transform: translateX(10px) scale(1.05);
    }
    
    .news-grid-3x3 .news-title {
        font-size: 1rem;
    }
    
    .news-grid-3x3 .news-overlay {
        padding: 15px 12px 12px;
    }
}

@media (max-width: 768px) {
    .news-grid-3x3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 500px;
    }
    
    .news-grid-3x3 .news-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .news-grid-3x3 {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
    }
    
    /* 手机设备上取消交错效果，保持居中 */
    section.hot-news .news-grid-3x3 .news-link {
        transform: translateX(0) !important;
    }
    
    /* 手机设备上的悬停效果 */
    section.hot-news .news-grid-3x3 .news-link:hover {
        transform: scale(1.05) !important;
    }
    
    .news-grid-3x3 .news-overlay {
        padding: 15px 12px 12px;
    }
    
    .news-grid-3x3 .news-title {
        font-size: 0.9rem;
    }
    
    /* 确保行业共建副标题在手机上稳定显示 */
    .hot-news-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
}