.news-related-modules {
    width: 100%;
    clear: both;
    margin-top: 40px;
    display: flex;
    gap: 24px;
}
.news-related-modules .module-block {
    flex: 1;
    min-width: 0;
}
.news-related-modules .module-header {
    margin-bottom: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #e2e4e8;
    text-align: center;
}
.news-related-modules .module-header h2 {
    font-size: 17px;
    margin: 0 0 10px 0;
    color: #0f172a;
    font-weight: 600;
}
.news-related-modules .section-label {
    font-size: 12px;
    color: #94a3b8;
    letter-spacing: 1px;
}
.news-related-modules .scope-tags {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}
.news-related-modules .scope-tag {
    display: block;
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px dashed #e2e4e8;
    line-height: 1.5;
    background: none;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
}
.news-related-modules .scope-tag:last-child {
    border-bottom: none;
}
.news-related-modules .scope-tag:hover {
    color: #2563eb;
}

/* === 文章正文排版 === */
.NyNewDetail_text p {
    text-indent: 2em;
    line-height: 1.9;
    margin: 0 0 10px 0;
    color: #333;
    font-size: 15px;
}
.NyNewDetail_text p.article-section {
    font-weight: 600;
    color: #0f172a;
    margin: 24px 0 10px 0;
    text-indent: 0;
    line-height: 1.6;
}
.NyNewDetail_text p.art-h2 { font-size: 18px; }
.NyNewDetail_text p.art-h3 { font-size: 17px; }
.NyNewDetail_text p.art-h4 { font-size: 16px; }

/* === 正文语义内链：蓝色下划线，增强可识别性 === */
.NyNewDetail_text a {
    color: #005fc7;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: 500;
}
.NyNewDetail_text a:hover {
    color: #003f91;
    text-decoration-thickness: 2px;
}

/* === 表格 === */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}
.info-table th {
    background: #f1f5f9;
    padding: 8px 12px;
    text-align: left;
    border-bottom: 2px solid #2563eb;
    color: #0f172a;
    font-weight: 600;
}
.info-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #e2e4e8;
    color: #444;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .news-related-modules {
        flex-direction: column;
        gap: 32px;
    }
    .NyNewDetail_text {
        overflow-x: auto;
    }
    .info-table {
        min-width: 600px;
    }
}
