/**
 * ============================================================
 *  Hua Yi Teng - 新闻页面样式（按需加载）
 *  整合自: news-style.css, news-detail-*.css
 *  最后更新: 2026-07-08
 *  加载条件: 路径包含 /news/
 * ============================================================
 */

/* ============================================================
   PART 1: 新闻列表页 (news-style.css)
   ============================================================ */

.news-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 50px 0;
}
.news-sidebar {
    flex: 0 0 240px;
    min-width: 200px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}
/* ============================================================
   Sidebar Contact 样式修复
   ============================================================ */

/* 侧边栏联系卡片 */
.news-sidebar .sidebar-contact {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #E8EDF2;
    margin-top: 20px;
}

.news-sidebar .sidebar-contact h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0B2545;
    margin-bottom: 8px;
}

.news-sidebar .sidebar-contact p {
    font-size: 13px;
    color: #4A5568;
    line-height: 1.5;
    margin-bottom: 14px;
}

.news-sidebar .sidebar-contact .btn-small {
    display: inline-block;
    background: #1e7470;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.news-sidebar .sidebar-contact .btn-small:hover {
    background: #155a57;
}

.news-sidebar .sidebar-contact .btn-small i {
    margin-left: 6px;
}

/* 手机端修复：确保侧边栏联系卡片显示 */
@media (max-width: 768px) {
    .news-sidebar .sidebar-contact {
        display: block !important;
        margin-top: 15px;
        width: 100%;
    }
}
.news-content {
    flex: 1;
    min-width: 280px;
}
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}
.news-header .category-label {
    font-size: 12px;
    font-weight: 600;
    color: #1e7470;
    background: rgba(30, 116, 112, 0.08);
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 新闻条目 */
.news-item {
    display: flex;
    gap: 30px;
    padding: 24px 0;
    border-bottom: 1px solid #E8EDF2;
    transition: all 0.3s ease;
}
.news-item:first-child { padding-top: 0; }
.news-item:hover .news-title { color: #1e7470; }
.news-item .news-image {
    flex: 0 0 200px;
    min-width: 160px;
    border-radius: 12px;
    overflow: hidden;
    background: #F8FAFC;
    border: 1px solid #E8EDF2;
    height: 140px;
}
.news-item .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.news-item:hover .news-image img { transform: scale(1.02); }
.news-item .news-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-item .news-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.news-item .news-date {
    font-size: 13px;
    color: #6B7A8F;
}
.news-item .news-tag {
    font-size: 11px;
    font-weight: 600;
    color: #1e7470;
    background: rgba(30, 116, 112, 0.08);
    padding: 2px 12px;
    border-radius: 20px;
}
.news-item .news-title {
    font-size: 20px;
    font-weight: 700;
    color: #0B2545;
    margin: 0 0 8px 0;
    line-height: 1.3;
    transition: color 0.2s ease;
}
.news-item .news-title a {
    color: inherit;
    text-decoration: none;
}
.news-item .news-excerpt {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.6;
    margin: 0 0 12px 0;
}
.news-item .news-readmore {
    font-size: 13px;
    font-weight: 600;
    color: #1e7470;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}
.news-item .news-readmore:hover {
    color: #155a57;
    gap: 10px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #E8EDF2;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 500;
    color: #4A5568;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}
.pagination a:hover {
    background: #F8FAFC;
    border-color: #E8EDF2;
    color: #1e7470;
}
.pagination .active {
    background: #1e7470;
    color: #FFFFFF;
    border-color: #1e7470;
}
.pagination .disabled {
    color: #D1D5DB;
    cursor: not-allowed;
}
.pagination .arrow { font-size: 16px; }

/* 无结果 */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #6B7A8F;
}
.no-results i {
    font-size: 48px;
    color: #D1D5DB;
    margin-bottom: 16px;
}
.no-results h3 {
    font-size: 20px;
    color: #0B2545;
    margin-bottom: 8px;
}


/* ============================================================
   PART 2: 新闻详情页 (news-detail-*.css)
   ============================================================ */

/* Hero 扩展（新闻详情特有） */
.detail-hero .meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.detail-hero .meta .date {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}
.detail-hero .meta .tag {
    font-size: 12px;
    font-weight: 600;
    color: #1e7470;
    background: rgba(255,255,255,0.9);
    padding: 4px 14px;
    border-radius: 20px;
}
.detail-hero .excerpt {
    font-size: 18px;
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.detail-hero h1 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.5px;
}

/* 文章内容 */
.article-section {
    padding: 50px 0 20px 0;
    background: #FFFFFF;
}
.article-content {
    font-size: 16px;
    line-height: 1.8;
    color: #1F2937;
}
.article-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0B2545;
    margin: 36px 0 16px 0;
}
.article-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0B2545;
    margin: 28px 0 12px 0;
}
.article-content p { margin-bottom: 18px; }
.article-content .feature-image {
    margin: 30px 0 30px 0;
    border-radius: 16px;
    overflow: hidden;
    background: #F8FAFC;
    border: 1px solid #E8EDF2;
}
.article-content .feature-image img {
    width: 100%;
    height: auto;
    display: block;
}
.article-content .feature-image .caption {
    padding: 12px 20px;
    font-size: 13px;
    color: #6B7A8F;
    background: #F8FAFC;
    border-top: 1px solid #E8EDF2;
    text-align: center;
}
.article-content ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px 0;
}
.article-content ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    line-height: 1.6;
}
.article-content ul li:before {
    content: "✓";
    color: #1e7470;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 6px;
}
.article-content .highlight-box {
    background: #F8FAFC;
    border-left: 4px solid #1e7470;
    padding: 20px 24px;
    border-radius: 8px;
    margin: 24px 0;
}
.article-content .highlight-box strong { color: #0B2545; }
.article-content .highlight-box p { margin-bottom: 0; }

/* 认证网格 */
.article-content .cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
    margin: 16px 0 20px 0;
    padding: 0;
    list-style: none;
}
.article-content .cert-grid li {
    padding: 5px 0 5px 28px;
    position: relative;
    line-height: 1.5;
    font-size: 14px;
}
.article-content .cert-grid li:before {
    content: "✓";
    color: #1e7470;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 5px;
}
.article-content .cert-grid .market-label {
    font-weight: 700;
    color: #0B2545;
    grid-column: 1 / -1;
    padding: 10px 0 4px 28px;
    position: relative;
    border-bottom: 1px solid #E8EDF2;
    margin-bottom: 2px;
    font-size: 15px;
}
.article-content .cert-grid .market-label:before { display: none; }

/* 质量网格 */
.article-content .quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 30px;
    margin: 20px 0;
    padding: 20px 24px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E8EDF2;
}
.article-content .quality-grid .quality-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    font-size: 14px;
}
.article-content .quality-grid .quality-item .icon {
    font-size: 20px;
    flex-shrink: 0;
}
.article-content .quality-grid .quality-item .text { color: #4A5568; }
.article-content .quality-grid .quality-item .text strong { color: #0B2545; }

/* 内部链接框 */
.article-content .internal-link-box {
    text-align: center;
    margin: 30px 0 10px 0;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E8EDF2;
}
.article-content .internal-link-box p {
    font-size: 15px;
    color: #4A5568;
    margin-bottom: 10px;
}
.article-content .internal-link-box p i {
    color: #1e7470;
    margin-right: 8px;
}
.article-content .internal-link-box p a {
    color: #1e7470;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(30, 116, 112, 0.3);
    transition: border-color 0.2s ease;
}
.article-content .internal-link-box p a:hover { border-color: #1e7470; }

/* 返回链接 */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1e7470;
    text-decoration: none;
    margin-bottom: 30px;
    transition: 0.2s;
}
.back-link:hover {
    color: #155a57;
    gap: 12px;
}

/* 上一篇 / 下一篇 */
.prev-next-section {
    padding: 30px 0 50px 0;
    background: #FFFFFF;
    border-top: 1px solid #E8EDF2;
    margin-top: 10px;
}
.prev-next-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.prev-next-nav a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #0B2545;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #E8EDF2;
    transition: all 0.3s ease;
    max-width: 45%;
}
.prev-next-nav a:hover {
    border-color: #1e7470;
    color: #1e7470;
    background: rgba(30, 116, 112, 0.04);
}
.prev-next-nav a .direction {
    font-size: 12px;
    color: #6B7A8F;
    font-weight: 400;
}
.prev-next-nav a .title {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.prev-next-nav a.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}
.prev-next-nav .prev { text-align: left; }
.prev-next-nav .next { text-align: right; }

/* CTA 区块 */
.cta-section {
    padding: 50px 0 60px 0;
    background: #F8FAFC;
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.cta-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0B2545;
    margin-bottom: 12px;
}
.cta-section p {
    font-size: 15px;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}


/* ============================================================
   PART 3: 新闻页面响应式适配
   ============================================================ */

@media (max-width: 992px) {
    .news-sidebar {
        flex: 0 0 200px;
        min-width: 160px;
    }
    .news-item .news-image {
        flex: 0 0 160px;
        min-width: 120px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .news-layout {
        flex-direction: column;
        gap: 30px;
        padding: 30px 0;
    }
    .news-sidebar {
        flex: 1 1 100%;
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }
    .news-sidebar .sidebar-title {
        width: 100%;
        margin-bottom: 8px;
    }
    .news-sidebar .category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    .news-sidebar .category-list li {
        margin-bottom: 0;
        border-bottom: none;
        border-right: none;
    }
    .news-sidebar .category-list li a {
        padding: 8px 18px;
        font-size: 14px;
        border-radius: 30px;
        border: 1px solid #E8EDF2;
        text-align: center;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .news-sidebar .category-list li a .count {
        display: none;
    }
    .news-sidebar .sidebar-divider { display: none; }
    .news-sidebar .sidebar-contact { display: none; }

    .news-item {
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
    }
    .news-item .news-image {
        flex: 0 0 auto;
        width: 100%;
        height: 180px;
    }
    .news-item .news-title {
        font-size: 18px;
    }

    .pagination {
        gap: 4px;
    }
    .pagination a,
    .pagination span {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
        padding: 0 8px;
    }

    /* 新闻详情 */
    .detail-hero .excerpt {
        font-size: 15px;
    }
    .article-section {
        padding: 30px 0 10px 0;
    }
    .article-content {
        font-size: 15px;
    }
    .article-content h2 {
        font-size: 20px;
    }
    .article-content .feature-image {
        margin: 20px 0;
    }
    .article-content .cert-grid {
        grid-template-columns: 1fr;
        gap: 4px 0;
    }
    .article-content .quality-grid {
        grid-template-columns: 1fr;
        gap: 8px 0;
        padding: 16px 18px;
    }

    .prev-next-nav a {
        font-size: 13px;
        padding: 8px 12px;
        max-width: 48%;
    }
    .prev-next-nav a .title {
        max-width: 80px;
    }
    .prev-next-section {
        padding: 20px 0 30px 0;
    }
}

@media (max-width: 640px) {
    .detail-hero .excerpt {
        font-size: 14px;
    }
    .news-item .news-image {
        height: 140px;
    }
    .news-item .news-title {
        font-size: 16px;
    }
    .news-item .news-excerpt {
        font-size: 13px;
    }
    .cta-section h3 {
        font-size: 20px;
    }
    .cta-section p {
        font-size: 14px;
    }
    .article-content .internal-link-box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .prev-next-nav {
        flex-direction: column;
        gap: 12px;
    }
    .prev-next-nav a {
        max-width: 100%;
        width: 100%;
        justify-content: center;
    }
    .prev-next-nav a .title {
        max-width: 120px;
    }
}

/* ============================================================
   PART 4: 新闻详情页 - 认证表格样式
   ============================================================ */

/* 认证表格容器 */
.article-content .cert-table-wrapper {
    margin: 24px 0 28px 0;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #E8EDF2;
    background: #FFFFFF;
}

/* 认证表格 */
.article-content .cert-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    min-width: 400px;
}

.article-content .cert-table thead th {
    background: #0B2545;
    color: #FFFFFF;
    padding: 12px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.article-content .cert-table tbody td {
    padding: 11px 20px;
    border-bottom: 1px solid #F0F0F0;
    color: #4A5568;
    line-height: 1.6;
}

.article-content .cert-table tbody tr:last-child td {
    border-bottom: none;
}

.article-content .cert-table tbody tr:hover td {
    background: #F8FAFC;
}

.article-content .cert-table tbody td:first-child {
    font-weight: 600;
    color: #0B2545;
    white-space: nowrap;
    width: 25%;
}

/* ============================================================
   PART 5: 新闻详情页 - 内部行动链接框增强
   ============================================================ */

.article-content .internal-link-box {
    text-align: center;
    margin: 35px 0 10px 0;
    padding: 28px 24px;
    background: #F8FAFC;
    border-radius: 16px;
    border: 1px solid #E8EDF2;
}

.article-content .internal-link-box p {
    font-size: 15px;
    color: #4A5568;
    margin-bottom: 6px;
    line-height: 1.7;
}

.article-content .internal-link-box p i {
    color: #1e7470;
    margin-right: 8px;
}

.article-content .internal-link-box p a {
    color: #1e7470;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(30, 116, 112, 0.3);
    transition: border-color 0.2s ease;
}

.article-content .internal-link-box p a:hover {
    border-color: #1e7470;
}

.article-content .internal-link-box .btn-secondary {
    display: inline-block;
    background: transparent;
    border: 1.5px solid #1e7470;
    color: #1e7470;
    padding: 10px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-content .internal-link-box .btn-secondary:hover {
    background: #1e7470;
    color: #FFFFFF;
}

.article-content .internal-link-box .btn-secondary i {
    margin-right: 8px;
}

/* ============================================================
   PART 6: 新闻详情页 - 响应式适配（移动端）
   ============================================================ */

@media (max-width: 768px) {
    .article-content .cert-table-wrapper {
        margin: 18px 0 22px 0;
        border-radius: 8px;
    }

    .article-content .cert-table {
        font-size: 12px;
        min-width: 320px;
    }

    .article-content .cert-table thead th {
        padding: 10px 14px;
        font-size: 12px;
    }

    .article-content .cert-table tbody td {
        padding: 9px 14px;
        font-size: 12px;
    }

    .article-content .internal-link-box {
        padding: 20px 16px;
        margin: 25px 0 10px 0;
    }

    .article-content .internal-link-box p {
        font-size: 14px;
    }

    .article-content .internal-link-box .btn-secondary {
        padding: 8px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .article-content .cert-table {
        font-size: 11px;
        min-width: 280px;
    }

    .article-content .cert-table thead th {
        padding: 8px 10px;
        font-size: 11px;
    }

    .article-content .cert-table tbody td {
        padding: 7px 10px;
        font-size: 11px;
    }
}

/* ============================================================
   PART 7: 新闻详情页 - 三栏认证表格（专属样式）
   ============================================================ */

/* 三栏认证表格 - 覆盖市场/认证/意义 */
.article-content .cert-table-wrapper {
    margin: 24px 0 28px 0;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #E8EDF2;
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.article-content .cert-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 500px;
}

.article-content .cert-table thead th {
    background: #0B2545;
    color: #FFFFFF;
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.article-content .cert-table thead th:first-child {
    border-radius: 0;
    width: 14%;
}

.article-content .cert-table thead th:nth-child(2) {
    width: 42%;
}

.article-content .cert-table thead th:last-child {
    width: 44%;
}

.article-content .cert-table tbody td {
    padding: 12px 18px;
    border-bottom: 1px solid #F0F0F0;
    color: #4A5568;
    line-height: 1.6;
    font-size: 13px;
    vertical-align: top;
}

.article-content .cert-table tbody tr:last-child td {
    border-bottom: none;
}

.article-content .cert-table tbody tr:hover td {
    background: #F8FAFC;
}

.article-content .cert-table tbody td:first-child {
    font-weight: 700;
    color: #0B2545;
    white-space: nowrap;
}

.article-content .cert-table tbody td:nth-child(2) {
    font-weight: 500;
    color: #1e7470;
}

.article-content .cert-table tbody td:last-child {
    color: #4A5568;
}

/* ============================================================
   PART 8: 新闻详情页 - 高亮引用框变体（金色左侧边框）
   ============================================================ */

.article-content .highlight-box.gold-border {
    border-left-color: #FFB703;
    background: #FFF8E1;
}

.article-content .highlight-box.gold-border p {
    color: #0B2545;
}

/* ============================================================
   PART 9: 新闻详情页 - 响应式适配（三栏表格）
   ============================================================ */

@media (max-width: 768px) {
    .article-content .cert-table-wrapper {
        margin: 18px 0 22px 0;
        border-radius: 8px;
    }

    .article-content .cert-table {
        font-size: 12px;
        min-width: 400px;
    }

    .article-content .cert-table thead th {
        padding: 10px 14px;
        font-size: 11px;
    }

    .article-content .cert-table tbody td {
        padding: 9px 14px;
        font-size: 12px;
    }

    .article-content .cert-table thead th:first-child {
        width: 16%;
    }

    .article-content .cert-table thead th:nth-child(2) {
        width: 38%;
    }

    .article-content .cert-table thead th:last-child {
        width: 46%;
    }
}

@media (max-width: 480px) {
    .article-content .cert-table {
        font-size: 11px;
        min-width: 340px;
    }

    .article-content .cert-table thead th {
        padding: 8px 10px;
        font-size: 10px;
    }

    .article-content .cert-table tbody td {
        padding: 7px 10px;
        font-size: 11px;
    }

    .article-content .cert-table thead th:first-child {
        width: 18%;
    }

    .article-content .cert-table thead th:nth-child(2) {
        width: 36%;
    }

    .article-content .cert-table thead th:last-child {
        width: 46%;
    }
}

/* ============================================================
   PART 10: 新闻详情页 - 规格表格（桌面三列 / 移动端折叠）
   ============================================================ */

/* 桌面端：三列网格 */
.article-content .spec-grid-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 0;
    margin: 20px 0 28px 0;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E8EDF2;
    overflow: hidden;
}

.article-content .spec-grid-mobile .spec-item {
    display: contents;
}

.article-content .spec-grid-mobile .spec-item > * {
    padding: 10px 16px;
    border-bottom: 1px solid #E8EDF2;
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    align-items: center;
}

.article-content .spec-grid-mobile .spec-item:last-child > * {
    border-bottom: none;
}

.article-content .spec-grid-mobile .spec-label {
    font-weight: 600;
    color: #0B2545;
    background: #FFFFFF;
    border-right: 1px solid #E8EDF2;
}

.article-content .spec-grid-mobile .spec-value {
    font-weight: 600;
    color: #1e7470;
    background: #FFFFFF;
    border-right: 1px solid #E8EDF2;
}

.article-content .spec-grid-mobile .spec-meaning {
    color: #4A5568;
    background: #FFFFFF;
    font-size: 12px;
}

/* 表头行样式 */
.article-content .spec-grid-mobile .spec-item:first-child .spec-label {
    font-weight: 700;
    color: #FFFFFF;
    background: #0B2545;
    border-right: 1px solid #1a3a5a;
}

.article-content .spec-grid-mobile .spec-item:first-child .spec-value {
    font-weight: 700;
    color: #FFFFFF;
    background: #0B2545;
    border-right: 1px solid #1a3a5a;
}

.article-content .spec-grid-mobile .spec-item:first-child .spec-meaning {
    font-weight: 700;
    color: #FFFFFF;
    background: #0B2545;
}

.article-content .spec-grid-mobile .spec-item:first-child > * {
    border-bottom: 2px solid #1a3a5a;
}

/* 平板：保持三列但缩小字号 */
@media (max-width: 900px) {
    .article-content .spec-grid-mobile {
        grid-template-columns: 1fr 1fr 1.2fr;
    }

    .article-content .spec-grid-mobile .spec-item > * {
        padding: 8px 12px;
        font-size: 12px;
    }

    .article-content .spec-grid-mobile .spec-meaning {
        font-size: 11px;
    }
}

/* ============================================================
   手机端：将"对您的意义"列拆分到下一行
   ============================================================ */
@media (max-width: 768px) {
    .article-content .spec-grid-mobile {
        display: block;
        border-radius: 8px;
        margin: 16px 0 22px 0;
    }

    .article-content .spec-grid-mobile .spec-item {
        display: block;
        border-bottom: 1px solid #E8EDF2;
        padding: 0;
        background: #FFFFFF;
    }

    .article-content .spec-grid-mobile .spec-item:last-child {
        border-bottom: none;
    }

    /* 第一行：标签 + 值（左右布局） */
    .article-content .spec-grid-mobile .spec-item .spec-label {
        display: inline-block;
        width: 38%;
        padding: 10px 14px 8px 14px;
        background: #F8FAFC;
        border-right: 1px solid #E8EDF2;
        border-bottom: none;
        font-weight: 600;
        color: #0B2545;
        font-size: 13px;
        vertical-align: top;
        box-sizing: border-box;
    }

    .article-content .spec-grid-mobile .spec-item .spec-value {
        display: inline-block;
        width: 62%;
        padding: 10px 14px 8px 14px;
        background: #FFFFFF;
        border-right: none;
        border-bottom: none;
        font-weight: 600;
        color: #1e7470;
        font-size: 13px;
        vertical-align: top;
        box-sizing: border-box;
    }

    /* 第二行：对您的意义（整行显示） */
    .article-content .spec-grid-mobile .spec-item .spec-meaning {
        display: block;
        width: 100%;
        padding: 4px 14px 10px 14px;
        background: #FFFFFF;
        border-right: none;
        border-bottom: none;
        font-size: 12px;
        color: #4A5568;
        line-height: 1.5;
        border-top: 1px dashed #E8EDF2;
        box-sizing: border-box;
    }

    /* 表头行在手机端保持简化 */
    .article-content .spec-grid-mobile .spec-item:first-child .spec-label {
        background: #0B2545;
        color: #FFFFFF;
        border-right: 1px solid #1a3a5a;
    }

    .article-content .spec-grid-mobile .spec-item:first-child .spec-value {
        background: #0B2545;
        color: #FFFFFF;
    }

    .article-content .spec-grid-mobile .spec-item:first-child .spec-meaning {
        background: #0B2545;
        color: #FFFFFF;
        border-top: 1px dashed #2a4a6a;
        font-weight: 600;
    }

    .article-content .spec-grid-mobile .spec-item:first-child > * {
        border-bottom: none;
    }

    /* 移除表格外边框，让卡片更自然 */
    .article-content .spec-grid-mobile {
        border: 1px solid #E8EDF2;
        border-radius: 8px;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .article-content .spec-grid-mobile .spec-item .spec-label {
        width: 36%;
        padding: 8px 10px 6px 10px;
        font-size: 11px;
    }

    .article-content .spec-grid-mobile .spec-item .spec-value {
        width: 64%;
        padding: 8px 10px 6px 10px;
        font-size: 11px;
    }

    .article-content .spec-grid-mobile .spec-item .spec-meaning {
        padding: 3px 10px 8px 10px;
        font-size: 10px;
    }
}

/* ============================================================
   PART 11: 新闻详情页 - 三种控制方式卡片
   ============================================================ */

.article-content .control-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0 28px 0;
}

.article-content .control-item {
    background: #FFFFFF;
    border: 1px solid #E8EDF2;
    border-radius: 12px;
    padding: 24px 20px 20px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.article-content .control-item:hover {
    border-color: #1e7470;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.article-content .control-item .control-icon {
    font-size: 28px;
    color: #1e7470;
    margin-bottom: 12px;
}

.article-content .control-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0B2545;
    margin-bottom: 6px;
}

.article-content .control-item p {
    font-size: 13px;
    color: #4A5568;
    margin-bottom: 12px;
    line-height: 1.5;
}

.article-content .control-item .control-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    color: #1e7470;
    background: rgba(30, 116, 112, 0.08);
    padding: 4px 14px;
    border-radius: 20px;
    line-height: 1.4;
}

/* 控制卡片响应式 */
@media (max-width: 900px) {
    .article-content .control-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-content .control-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
    }

    .article-content .control-item {
        padding: 18px 16px;
    }
}

@media (max-width: 480px) {
    .article-content .control-item h4 {
        font-size: 14px;
    }

    .article-content .control-item p {
        font-size: 12px;
    }
}

/* ============================================================
   PART 12: 新闻详情页 - 三层防线卡片
   ============================================================ */

.article-content .defense-layers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0 30px 0;
}

.article-content .defense-item {
    background: #FFFFFF;
    border: 1px solid #E8EDF2;
    border-radius: 12px;
    padding: 24px 20px 20px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.article-content .defense-item:hover {
    border-color: #1e7470;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.article-content .defense-item .defense-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #1e7470;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 12px;
}

.article-content .defense-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0B2545;
    margin-bottom: 6px;
}

.article-content .defense-item p {
    font-size: 13px;
    color: #4A5568;
    line-height: 1.6;
    margin-bottom: 0;
}

.article-content .defense-item .defense-detail {
    display: block;
    font-size: 12px;
    color: #1e7470;
    font-weight: 600;
    margin-top: 4px;
}

/* ============================================================
   PART 13: 新闻详情页 - 8D响应时间线
   ============================================================ */

.article-content .response-timeline {
    margin: 20px 0 28px 0;
    padding: 0;
    list-style: none;
    border-left: 3px solid #1e7470;
    padding-left: 24px;
}

.article-content .response-timeline .timeline-step {
    margin-bottom: 18px;
    padding-left: 8px;
}

.article-content .response-timeline .timeline-step:last-child {
    margin-bottom: 0;
}

.article-content .response-timeline .step-time {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    color: #1e7470;
    background: rgba(30, 116, 112, 0.08);
    padding: 2px 14px;
    border-radius: 20px;
    margin-bottom: 4px;
}

.article-content .response-timeline .step-desc {
    display: block;
    font-size: 14px;
    color: #4A5568;
    line-height: 1.6;
    padding-top: 2px;
}

/* ============================================================
   PART 14: 新闻详情页 - 响应式适配（品质专属）
   ============================================================ */

@media (max-width: 768px) {
    .article-content .defense-layers {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        gap: 14px;
    }

    .article-content .defense-item {
        padding: 18px 16px;
    }

    .article-content .defense-item .defense-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .article-content .defense-item h4 {
        font-size: 15px;
    }

    .article-content .response-timeline {
        padding-left: 16px;
    }

    .article-content .response-timeline .step-time {
        font-size: 13px;
    }

    .article-content .response-timeline .step-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .article-content .defense-layers {
        max-width: 100%;
    }

    .article-content .response-timeline {
        padding-left: 12px;
    }

    .article-content .response-timeline .step-time {
        font-size: 12px;
        padding: 1px 12px;
    }

    .article-content .response-timeline .step-desc {
        font-size: 12px;
    }
}