        /* ===== Reset & Base ===== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
            background: #f0f2f5;
            color: #333;
            line-height: 1.8;
        }
        a { transition: color 0.3s ease; }

        /* ===== 面包屑 ===== */
        .breadcrumb {
            max-width: 1200px;
            margin: 84px auto 0;
            padding: 16px 20px;
            font-size: 13px;
            color: #555;
        }
        .breadcrumb a { color: #1c499e; text-decoration: none; transition: color 0.3s; }
        .breadcrumb a:hover { color: #2a5fc7; }
        .breadcrumb span { margin: 0 8px; color: #999; }

        /* ===== 文章悬浮标题栏 ===== */
        .article-float-bar {
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            z-index: 999;
            background: #fff;
            border-bottom: 1px solid #e8e8e8;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            visibility: hidden;
        }
        .article-float-bar.show {
            visibility: visible;
        }
        .article-float-bar-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            height: 48px;
            display: flex;
            align-items: center;
        }
        .article-float-bar-title {
            flex: 1;
            min-width: 0;
            font-size: 20px;
            font-weight: 600;
            color: #1a1a2e;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        @media (max-width: 640px) {
            .article-float-bar-inner { height: 44px; padding: 0 16px; }
            .article-float-bar-title { font-size: 14px; }
        }

        /* ===== 主内容 ===== */
        .main {
            max-width: 1200px;
            margin: 30px auto 40px;
            display: flex;
            gap: 30px;
        }
        .content-area { flex: 1; min-width: 0; }
        .sidebar { width: 300px; flex-shrink: 0; }

        /* ===== 文章详情 ===== */
        .article-detail {
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 2px 16px rgba(0,0,0,0.04);
        }
        .article-header {
            border-bottom: 2px solid #f0f0f0;
            padding-bottom: 28px;
            margin-bottom: 32px;
        }
        .article-header h1 {
            font-size: 30px;
            color: #1a1a2e;
            line-height: 1.4;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        .article-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .article-share-btn {
            margin-left: auto;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            background: #3f51b5;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 13px;
            cursor: pointer;
            transition: background 0.3s;
            white-space: nowrap;
        }
        .article-share-btn:hover { background: #303f9f; }
        .article-share-btn svg {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }
        .article-category {
            display: inline-block;
            padding: 5px 14px;
            background: #e8eaf6;
            color: #3f51b5;
            border-radius: 6px;
            font-size: 13px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        .article-category:hover { background: #3f51b5; color: #fff; }
        .article-author {
            font-size: 13px;
            color: #999;
            padding: 3px 10px;
            display: inline-flex;
            align-items: center;
            line-height: 1.5;
        }
        .article-author svg { color: #999; }
        .article-author span[itemprop="name"] {
            font-weight: 600;
            margin-left: 1px;
        }
        .article-date { font-size: 13px; color: #999; }
        .article-keywords {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 16px;
        }
        .article-kw {
            display: inline-block;
            padding: 4px 12px;
            background: #e8eaf6;
            color: #1c499e;
            border-radius: 6px;
            font-size: 12px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .article-kw:hover { background: #1c499e; color: #fff; }

        /* 摘要框 */
        .article-summary {
            font-size: 15px;
            color: #555;
            margin-bottom: 32px;
            padding: 20px 24px;
			margin-top: 32px;
            background: #f8f9fa;
            border-radius: 0;
            border-left: 3px solid #1c499e;
            line-height: 1.9;
        }
        .article-summary strong {
            color: #1c499e;
            font-weight: 600;
        }

        .article-body {
            font-size: 16px;
            color: #444;
            word-wrap: break-word;
        }
        .article-body p {
            margin-bottom: 10px;
        }
        .article-body p:last-child {
            margin-bottom: 0;
        }

        /* ===== Markdown 元素样式 ===== */
        .article-body h1, .article-body h2, .article-body h3,
        .article-body h4, .article-body h5, .article-body h6 {
            color: #1a1a2e;
            font-weight: 700;
            line-height: 1.4;
            margin-top: 32px;
            margin-bottom: 16px;
        }
        .article-body h1 { font-size: 26px; padding-bottom: 10px; border-bottom: 2px solid #1c499e; }
        .article-body h2 { font-size: 22px; padding-bottom: 8px; }
        .article-body h3 { font-size: 19px; }
        .article-body h4 { font-size: 17px; color: #1c499e; }
        .article-body h5, .article-body h6 { font-size: 16px; }

        .article-body strong {font-weight: 600; }
        .article-body em { font-style: italic; }

        .article-body a {
            color: #1c499e;
            text-decoration: none;
            border-bottom: 1px dashed rgba(28,73,158,0.4);
            transition: all 0.2s;
        }
        .article-body a:hover {
            color: #2a5fc7;
            border-bottom-color: #2a5fc7;
        }

        .article-body ul, .article-body ol {
            margin: 16px 0 20px 24px;
            padding: 0;
        }
        .article-body li {
            margin-bottom: 8px;
            line-height: 1.8;
        }
        .article-body ul li { list-style: disc; }
        .article-body ol li { list-style: decimal; }
        .article-body li > ul, .article-body li > ol {
            margin-top: 8px;
            margin-bottom: 8px;
        }

        .article-body blockquote {
            margin: 20px 0;
            padding: 12px 20px;
            background: #f8f9fa;
            border-left: 4px solid #1c499e;
            color: #555;
            border-radius: 0 8px 8px 0;
            font-style: italic;
        }
        .article-body blockquote p {
            margin-bottom: 0;
        }

        .article-body code {
            font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
            background: #f5f7fa;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 14px;
            color: #d6336c;
            border: 1px solid #e8e8e8;
        }
        .article-body pre {
            background: #1a1a2e;
            color: #e8e8e8;
            padding: 16px 20px;
            border-radius: 8px;
            overflow-x: auto;
            margin: 20px 0;
            font-size: 13px;
            line-height: 1.6;
        }
        .article-body pre code {
            background: transparent;
            border: none;
            color: inherit;
            padding: 0;
            font-size: inherit;
        }

        .article-body img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 16px auto;
            display: block;
        }

        /* 正文图片放大预览：悬停右上角显示放大图标 */
        .article-img-zoom {
            position: relative;
            display: block;
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
            max-width: 100%;
            margin: 16px auto;
            cursor: zoom-in;
        }
        .article-img-zoom > img {
            display: block;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 0;
        }
        .article-img-zoom-icon {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.55);
            color: #fff;
            border-radius: 6px;
            opacity: 0;
            transform: scale(0.85);
            transition: opacity 0.2s ease, transform 0.2s ease;
            pointer-events: none;
        }
        .article-img-zoom:hover .article-img-zoom-icon {
            opacity: 1;
            transform: scale(1);
        }

        /* 图片灯箱 */
        .article-img-lightbox {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }
        .article-img-lightbox.is-open {
            visibility: visible;
            opacity: 1;
        }
        .article-img-lightbox-mask {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.82);
        }
        .article-img-lightbox-img {
            position: relative;
            z-index: 1;
            max-width: 92vw;
            max-height: 90vh;
            width: auto;
            height: auto;
            border-radius: 6px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }
        .article-img-lightbox-close {
            position: absolute;
            top: 20px;
            right: 24px;
            z-index: 2;
            width: 44px;
            height: 44px;
            border: none;
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            font-size: 28px;
            line-height: 1;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .article-img-lightbox-close:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .article-body hr {
            border: none;
            border-top: 1px dashed #d0d0d0;
            margin: 28px 0;
        }

        .article-body table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 14px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }
        .article-body th, .article-body td {
            padding: 10px 14px;
            text-align: left;
            border-bottom: 1px solid #e8e8e8;
            border-right: 1px solid #e8e8e8;
        }
        .article-body th:last-child, .article-body td:last-child {
            border-right: none;
        }
        .article-body thead {
            background: #1c499e;
            color: #fff;
        }
        .article-body thead th {
            border-bottom: none;
            border-right-color: rgba(255,255,255,0.2);
            font-weight: 600;
        }
        .article-body tbody tr:nth-child(even) {
            background: #fafbfc;
        }
        .article-body tbody tr:hover {
            background: #f0f4ff;
        }

        @media (max-width: 768px) {
            .article-body h1 { font-size: 22px; }
            .article-body h2 { font-size: 19px; }
            .article-body h3 { font-size: 17px; }
            .article-body table { font-size: 12px; }
            .article-body th, .article-body td { padding: 8px 10px; }
            .article-body pre { font-size: 12px; padding: 12px; }
        }

        /* 关键词标签区 */
        .article-tags-section {
            margin-top: 36px;
            padding-top: 24px;
            border-top: 1px solid #f0f0f0;
        }
        .article-tags-section .tags-label {
            font-size: 13px;
            color: #999;
        }

        /* 版权声明 */
        .article-copyright {
            margin-top: 32px;
            padding: 20px 24px;
            background: #fafbfc;
            border-radius: 12px;
            border: 1px solid #f0f0f0;
            font-size: 13px;
            color: #888;
            line-height: 1.8;
        }
        .article-copyright strong {
            color: #1c499e;
        }
        .article-citation {
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px dashed #e5e7eb;
            color: #999;
        }
        .article-citation-text {
            word-break: break-all;
        }
        .article-citation-copy {
            margin-left: 8px;
            padding: 2px 10px;
            border: 1px solid rgba(148,216,195,0.55);
            border-radius: 6px;
            background: rgba(148,216,195,0.12);
            color: #285F50;
            font-size: 12px;
            cursor: pointer;
            white-space: nowrap;
            transition: background 0.2s;
        }
        .article-citation-copy:hover {
            background: rgba(148,216,195,0.25);
        }

        /* ===== 侧边栏 ===== */
        .sidebar-card {
            background: #fff;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 20px;
            box-shadow: 0 2px 16px rgba(0,0,0,0.04);
            transition: box-shadow 0.3s;
        }
        .sidebar-card:hover {
            box-shadow: 0 4px 24px rgba(0,0,0,0.07);
        }
        .sidebar-card h3 {
            font-size: 16px;
            color: #222;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid #1c499e;
            font-weight: 600;
        }

        /* 特证申报数据卡片 */
        .stats-card {
            background: linear-gradient(160deg, #f5f9ff 0%, #ffffff 100%);
            border: 1px solid #e0ebff;
            padding: 20px 18px 8px;
        }
        .stats-group-title {
            font-size: 14px;
            font-weight: 700;
            color: #1c499e;
            padding-bottom: 10px;
            margin-bottom: 6px;
            border-bottom: 2px solid #1c499e;
            letter-spacing: 1px;
        }
        .stats-row {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed #e3ecfb;
        }
        .reading {
            font-size: 20px;
            font-weight: 800;
            color: #1c499e;
            line-height: 1;
            font-family: -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
        }
        .stats-row:last-child { border-bottom: none; }
        .stats-num {
            font-size: 26px;
            font-weight: 800;
            color: #1c499e;
            line-height: 1;
            font-family: -apple-system, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
        }
        .stats-plus {
            font-size: 16px;
            font-weight: 700;
            color: #1c499e;
            margin-left: 2px;
        }
        .stats-label {
            font-size: 13px;
            color: #666;
            text-align: right;
            flex-shrink: 0;
            margin-left: 12px;
        }

        /* 侧边栏搜索 */
        .sidebar-search { display: flex; gap: 0; }
        .sidebar-search input {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid #e0e0e0;
            border-right: none;
            border-radius: 8px 0 0 8px;
            font-size: 13px;
            outline: none;
            transition: border-color 0.3s;
        }
        .sidebar-search input:focus { border-color: #1c499e; }
        .sidebar-search button {
            padding: 10px;
            background: #1c499e;
            color: #fff;
            border: none;
            border-radius: 0 8px 8px 0;
            font-size: 13px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .sidebar-search button:hover { background: #153d7a; }

        /* 分类标签 */
        .category-tags { display: flex; flex-wrap: wrap; gap: 8px; }
        .category-tag {
            display: inline-block;
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 12px;
            text-decoration: none;
            color: #555;
            background: #f5f7fa;
            transition: all 0.2s;
            border: 1px solid #e8e8e8;
        }
        .category-tag:hover { background: #e8eaf6; color: #3f51b5; border-color: #c5cae9; }

        /* 相关文章 */
        .related-list { list-style: none; padding: 0; margin: 0; }
        .related-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px dashed #f0f0f0;
            font-size: 13px;
            transition: background 0.2s;
        }
        .related-list li:last-child { border-bottom: none; }
        .related-list li:hover { background: #fafbfc; margin: 0 -8px; padding-left: 8px; padding-right: 8px; border-radius: 6px; }
        .related-list a {
            color: #555;
            text-decoration: none;
            line-height: 1.5;
            transition: color 0.2s;
        }
        .related-list a:hover { color: #1c499e; }

        /* 最近发布 */
        .recent-list { list-style: none; padding: 0; margin: 0; }
        .recent-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 10px 0;
            border-bottom: 1px dashed #f0f0f0;
            font-size: 13px;
            transition: background 0.2s;
        }
        .recent-list li:last-child { border-bottom: none; }
        .recent-list li:hover { background: #fafbfc; margin: 0 -8px; padding-left: 8px; padding-right: 8px; border-radius: 6px; }
        .recent-date {
            flex-shrink: 0;
            color: #1c499e;
            font-size: 12px;
            font-weight: 600;
            margin-top: 2px;
            background: #e8eaf6;
            padding: 2px 8px;
            border-radius: 4px;
        }
        .recent-list a {
            color: #555;
            text-decoration: none;
            line-height: 1.5;
            transition: color 0.2s;
        }
        .recent-list a:hover { color: #1c499e; }

        /* 移动端最近发布（默认隐藏，仅移动端显示） */
        .mobile-recent { display: none; }

        /* 行业协会单位 */
        .association-list {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
            padding: 4px 0;
        }
        .association-item {
            padding: 10px 12px;
            margin-bottom: 6px;
            background: #fafbfc;
            border-radius: 6px;
            border-left: 3px solid #1c499e;
            transition: all 0.2s;
        }
        .association-item:hover {
            background: #f0f4f8;
            transform: translateX(2px);
        }
        .association-item:last-child {
            margin-bottom: 0;
        }
        .association-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 3px;
            font-size: 13px;
        }
        .association-role {
            color: #666;
            font-size: 12px;
            background: #e8f0fe;
            color: #1c499e;
            padding: 2px 8px;
            border-radius: 4px;
            display: inline-block;
        }

        /* 法规引用 */
        .citation-list {
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 13px;
        }
        .citation-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #f0f0f0;
        }
        .citation-list li:last-child {
            border-bottom: none;
        }
        .citation-list a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }
        .citation-list a:hover {
            color: #1c499e;
        }

        /* ===== Footer ===== */
        /* 注意：页脚（.footer / .footer-inner 等）基础布局样式已迁入 /lvyi/footer.php */

        /* ===== 相关服务推荐 ===== */
        .related-service-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .related-service-list li {
            margin-bottom: 8px;
        }
        .related-service-list li:last-child {
            margin-bottom: 0;
        }
        .related-service-list a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            text-decoration: none;
            color: #555;
            font-size: 14px;
            border-radius: 6px;
            transition: all 0.2s;
        }
        .related-service-list a:hover {
            background: #f0f4fc;
            color: #1c499e;
        }
        .rs-icon {
            width: 18px;
            height: 18px;
            color: #1c499e;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .rs-icon svg {
            width: 16px;
            height: 16px;
        }
        .related-service-more {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid #f0f0f0;
        }
        .related-service-more a {
            font-size: 13px;
            color: #1c499e;
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s;
        }
        .related-service-more a:hover {
            color: #2a5fc7;
        }

        /* ===== Side CTA 卡片 ===== */
        .side-cta {
            background: linear-gradient(135deg, #1c499e, #2d63c8);
            border-radius: 12px;
            padding: 28px 24px;
            color: #fff;
            text-align: center;
            margin-bottom: 24px;
        }
        .side-cta-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .side-cta-desc {
            font-size: 13px;
            opacity: 0.9;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .side-cta-btn {
            display: inline-block;
            padding: 10px 28px;
            background: #fff;
            color: #1c499e;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.2s;
        }
        .side-cta-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            .main { flex-direction: column; margin: 20px auto 24px; padding: 0 12px; }
            .sidebar { display: none; }
            .mobile-recent {
                display: block;
                background: #fff;
                border-radius: 12px;
                padding: 20px 16px;
                margin-top: 20px;
                box-shadow: 0 2px 16px rgba(0,0,0,0.04);
            }
            .mobile-recent h3 {
                font-size: 16px;
                color: #222;
                margin-bottom: 12px;
                padding-bottom: 12px;
                border-bottom: 2px solid #1c499e;
                font-weight: 600;
            }
            .breadcrumb { margin: 72px auto 0; padding: 12px 12px; }
            .article-detail { padding: 20px 16px; }
            .article-header h1 { font-size: 20px; }
            /* 页脚响应式已迁入 /lvyi/footer.php */
        }

/* =============================================================
   正文富内容组件（自 /lvyi/css/beautynews.css 迁入）
   - 供 API 发布稿件（new-ingredient-press-release 生成的 content）使用
   - 组件类名保留 bn- 前缀，与数据库存量正文 HTML 匹配，不可改名
   - 本段必须置于文件末尾：复刻迁移前 beautynews.css 在本文件之后
     加载的级联顺序，确保存量文章渲染零变化
   ============================================================= */
:root {
    --bn-primary: #1c499e;
    --bn-primary-deep: #143a7e;
    --bn-accent: #c8902a;
    --bn-teal: #1c7a6b;
    --bn-teal-soft: #e1f2ee;
    --bn-warn: #c0431f;
    --bn-line: #e5e5e5;
    --bn-soft: #e8eaf6;
    --bn-bg-soft: #f5f7fa;
    --bn-ink: #1f2733;
    --bn-ink-soft: #5d6878;
}

/* 正文容器基础值（复刻迁移前 .bn-body 实际生效的覆盖结果） */
.article-body { font-size: 16px; color: #333; line-height: 1.9; word-wrap: break-word; }
.article-body h1, .article-body h2, .article-body h3 { color: #222; margin: 1.4em 0 .6em; line-height: 1.4; }
.article-body h2 { font-size: 22px; }
.article-body h3 { font-size: 18px; }
.article-body p { margin: .9em 0; }
.article-body ul, .article-body ol { margin: .9em 0; padding-left: 1.6em; }
.article-body blockquote { margin: 1em 0; padding: 12px 20px; border-left: 4px solid #1c499e; background: #f5f7fa; color: #666; }

/* 组件样式（选择器宿主 .bn-body → .article-body，属性值原样保留） */
.article-body .bn-answer { background: var(--bn-primary); color: #fff; border-radius: 14px; padding: 20px 22px; margin: 0 0 26px; box-shadow: 0 12px 34px -16px rgba(28,73,158,.22); }
.article-body .bn-answer .bn-lab { font-size: 12.5px; letter-spacing: .12em; font-weight: 700; color: #bcd2ff; text-transform: uppercase; }
.article-body .bn-answer p { font-size: 16.5px; line-height: 1.85; margin-top: 8px; }
.article-body .bn-answer p b { color: #ffe2b0; }

.article-body .bn-lead { background: #fff; border: 1px solid var(--bn-line); border-left: 5px solid var(--bn-accent); border-radius: 12px; padding: 20px 22px; margin: 22px 0; font-size: 17.5px; line-height: 1.9; color: var(--bn-ink); }
.article-body .bn-lead b { color: var(--bn-primary); }

.article-body .bn-block { margin: 32px 0; }
.article-body .bn-block-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; border-bottom: 2px solid var(--bn-primary); padding-bottom: 8px; margin-bottom: 14px; }
.article-body .bn-block-head .bn-no { font-size: 13px; font-weight: 800; color: #fff; background: var(--bn-primary); border-radius: 8px; padding: 3px 10px; }
.article-body .bn-block-head h2 { font-size: clamp(19px, 2.6vw, 24px); font-weight: 800; color: var(--bn-ink); }
.article-body .bn-block-head .bn-src { margin-left: auto; font-size: 12.5px; color: var(--bn-ink-soft); }

.article-body .bn-story { margin: 16px 0; }
.article-body .bn-story-title { font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.article-body .bn-date { font-size: 12.5px; color: var(--bn-accent); font-weight: 700; }

.article-body .bn-chip { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .03em; padding: 3px 11px; border-radius: 999px; white-space: nowrap; }
.article-body .bn-chip.reg { background: var(--bn-soft); color: var(--bn-primary); }
.article-body .bn-chip.mat { background: #f7eed9; color: var(--bn-accent); }
.article-body .bn-chip.glo { background: var(--bn-teal-soft); color: var(--bn-teal); }
.article-body .bn-chip.brand { background: #e9ecf7; color: #3a4fb0; }
.article-body .bn-chip.warn { background: #fde7e2; color: var(--bn-warn); }

.article-body .bn-panel { background: #fff; border: 1px solid var(--bn-line); border-radius: 16px; box-shadow: 0 6px 16px -12px rgba(28,73,158,.25); overflow: hidden; margin: 14px 0; }
.article-body .bn-panel-h { padding: 15px 20px; border-bottom: 1px solid var(--bn-line); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; background: var(--bn-bg-soft); font-weight: 700; }
.article-body .bn-panel-h .bn-meta { margin-left: auto; font-size: 12.5px; color: var(--bn-ink-soft); font-weight: 400; }
.article-body .bn-panel-b { padding: 18px 20px; }

.article-body .bn-table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 6px 0; }
.article-body .bn-table caption { caption-side: top; text-align: left; font-weight: 700; color: var(--bn-ink); font-size: 14px; padding: 0 0 10px; }
.article-body .bn-table thead th { background: var(--bn-primary); color: #fff; font-weight: 700; font-size: 13px; border: 1px solid var(--bn-primary); }
.article-body .bn-table tbody td { border: 1px solid var(--bn-line); padding: 10px 12px; }
.article-body .bn-table tbody tr:hover { background: #f3f7fd; }
.article-body .bn-table td.num { font-weight: 800; color: var(--bn-primary); white-space: nowrap; }
.article-body .bn-table .bn-sub { color: var(--bn-ink-soft); font-size: 13px; }

.article-body .bn-kv { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 4px 0; }
.article-body .bn-kv-item { background: var(--bn-bg-soft); border-radius: 10px; padding: 12px 14px; border: 1px solid var(--bn-line); }
.article-body .bn-kv-item .bn-k { font-size: 12px; color: var(--bn-ink-soft); }
.article-body .bn-kv-item .bn-v { font-size: 18px; font-weight: 800; color: var(--bn-ink); margin-top: 2px; }
.article-body .bn-kv-item .bn-v small { font-size: 12px; color: var(--bn-ink-soft); font-weight: 600; }

.article-body .bn-statbar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 18px 0; }
.article-body .bn-stat { background: #fff; border: 1px solid var(--bn-line); border-radius: 16px; padding: 18px 14px; text-align: center; box-shadow: 0 6px 16px -12px rgba(28,73,158,.25); border-top: 4px solid var(--bn-primary); }
.article-body .bn-stat .bn-n,
.article-body .bn-stat-num { font-size: 26px; font-weight: 800; color: var(--bn-primary); line-height: 1.1; }
.article-body .bn-stat .bn-n small,
.article-body .bn-stat-num small { font-size: .5em; color: var(--bn-ink-soft); }
.article-body .bn-stat .bn-l,
.article-body .bn-stat-label { font-size: 12.5px; color: var(--bn-ink-soft); margin-top: 6px; }

.article-body .bn-callout { display: flex; gap: 14px; background: linear-gradient(120deg, var(--bn-soft), #fff); border: 1px solid #d4e0f6; border-left: 5px solid var(--bn-primary); border-radius: 12px; padding: 16px 18px; margin: 16px 0; }
.article-body .bn-callout.warn { background: linear-gradient(120deg, #fdeede, #fff); border-color: #f6dcc0; border-left-color: var(--bn-accent); }
.article-body .bn-callout .bn-ico { font-size: 22px; line-height: 1.2; margin: 1em 0 .6em;}
.article-body .bn-callout h4 { font-size: 15.5px; margin-bottom: 3px; }
.article-body .bn-callout p { font-size: 14px; color: var(--bn-ink-soft); }

.article-body .bn-takeaway { background: #fff; border: 1px solid var(--bn-line); border-radius: 14px; padding: 20px 22px; margin: 18px 0; box-shadow: 0 6px 16px -12px rgba(28,73,158,.25); }
.article-body .bn-takeaway h3 { font-size: 17px; font-weight: 800; color: var(--bn-primary); margin-bottom: 10px; }
.article-body .bn-takeaway ol { margin: 0; padding-left: 22px; color: #333b47; }
.article-body .bn-takeaway li { margin: 7px 0; }
.article-body .bn-takeaway li b { color: var(--bn-primary); }

.article-body .bn-faq { margin: 18px 0; }
.article-body .bn-faq-item { background: #fff; border: 1px solid var(--bn-line); border-left: 4px solid var(--bn-primary); border-radius: 12px; padding: 14px 18px; margin: 12px 0; box-shadow: 0 6px 16px -12px rgba(28,73,158,.25); }
.article-body .bn-faq-item h3 { font-size: 16px; font-weight: 800; color: var(--bn-primary); display: flex; gap: 8px; align-items: flex-start; }
.article-body .bn-faq-item h3::before { content: "Q"; flex: 0 0 auto; background: var(--bn-primary); color: #fff; width: 24px; height: 24px; border-radius: 6px; display: grid; place-items: center; font-size: 13px; margin-top: 2px; }
.article-body .bn-faq-item p { font-size: 14.5px; color: var(--bn-ink-soft); margin-top: 8px; }

.article-body .bn-notice { background: #fff; border: 1px solid var(--bn-line); border-radius: 14px; padding: 20px 22px; margin: 18px 0; box-shadow: 0 6px 16px -12px rgba(28,73,158,.25); }
.article-body .bn-notice h3 { font-size: 16px; font-weight: 800; color: var(--bn-primary); margin-bottom: 8px; }
.article-body .bn-notice p { font-size: 13.5px; color: var(--bn-ink-soft); line-height: 1.8; }
.article-body .bn-notice p b { color: var(--bn-ink); }

/* 正文内高亮（结论先行等） */
.article-body .bn-hl { background: linear-gradient(transparent 70%, color-mix(in srgb, var(--bn-accent) 50%, transparent) 0); font-weight: 600; padding: 0 1px; }

/* 资本市场 / 股票行情（涨=红、跌=绿，遵循 A股惯例） */
.article-body .bn-up { color: var(--bn-warn); font-weight: 700; white-space: nowrap; }
.article-body .bn-down { color: #1a8a4c; font-weight: 700; white-space: nowrap; }
.article-body .bn-flat { color: var(--bn-ink-soft); font-weight: 700; white-space: nowrap; }
/* 行情表数字等宽对齐（仅作用于带 .bn-quote 的行情表） */
.article-body .bn-table.bn-quote td { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }
.article-body .bn-chip.mkt { background: #e9f7f1; color: var(--bn-teal); }

/* 移动端组件适配 */
@media (max-width: 768px) {
    .article-body .bn-statbar { grid-template-columns: 1fr 1fr; }
    .article-body .bn-callout .bn-ico { display: none; }
}