        /* ========= 新增内容区域 (左右布局) ========= */
        .content-row {
            display: flex;
            gap: 20px;
            margin-top: 25px;
            margin-bottom: 30px;
            align-items: flex-start;  /* 顶部对齐，不拉伸子项 */
        }
        /* 左侧主区域 980px */
        .main-content {
            width: 980px;
            flex-shrink: 0;
            background: rgba(255,255,255,0.5);
            backdrop-filter: blur(2px);
            padding: 20px 25px;
            box-shadow: 0 8px 20px rgba(0,20,40,0.06);
        }

		        /* ========= 新闻内容页专用样式 ========= */
        .article-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            margin: 5px 0 10px;
        }
        .article-title {
            font-size: 26px;
            font-weight: 700;
            line-height: 1.3;
            color: #2a60b2;
            max-width: 800px;
        }
        .speak-btn {
            background: #eef4ff;
            border: 1px solid #bfd6f5;
            border-radius: 40px;
            padding: 8px 22px;
            font-size: 18px;
            font-weight: 500;
            color: #2A60B2;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.2s;
            box-shadow: 0 2px 6px rgba(0,0,0,0.03);
            white-space: nowrap;
        }
        .speak-btn:hover {
            background: #2A60B2;
            color: white;
            border-color: #1f4a8a;
        }
        .speak-btn.speaking {
            background: #f0b27a;
            color: white;
            border-color: #e67e22;
        }
        /* 覆盖元数据默认边框，更适应内容页 */
        .article-meta {
            border-top: none !important;
            padding-top: 0 !important;
            margin-bottom: 20px;
			border-bottom: 1px solid #cbd6e8;
			color: #7d7d7d;
			font-size: 14px;
        }
        .article-content {
            font-size: 18px;
            line-height: 1.85;
            color: #2c3e50;
            margin: 25px 0 20px;
        }
        .article-content p {
            margin: 1.3em 0;
        }
        .keywords {
            margin: 30px 0 25px;
            padding: 18px 0 10px;
            border-top: 1px dashed #c0cee4;
            border-bottom: 1px dashed #c0cee4;
        }
        .keyword-label {
            font-weight: 600;
            color: #2A60B2;
            margin-right: 12px;
            font-size: 16px;
        }
        .keywords a {
            display: inline-block;
            background: #eef4ff;
            color: #2A60B2;
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 14px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            border: 1px solid #cddff5;
            transition: 0.15s;
        }
        .keywords a:hover {
            background: #2A60B2;
            color: white;
            border-color: #1f4a8a;
        }
        .page-nav {
            display: flex;
            justify-content: space-between;
            margin: 30px 0 35px;
        }
        .page-nav a {
            text-decoration: none;
            color: #2A60B2;
            font-size: 16px;
            font-weight: 500;
            background: #f0f6ff;
            padding: 10px 25px;
            border-radius: 40px;
            border: 1px solid #bfd6f5;
            transition: 0.15s;
            max-width: 45%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .page-nav a:hover {
            background: #2A60B2;
            color: white;
            border-color: #1f4a8a;
        }
        .related-section {
            margin-top: 20px;
        }
        .related-title {
            font-size: 22px;
            font-weight: 700;
            color: #1e2b3c;
            margin-bottom: 18px;
            padding-left: 10px;
            border-left: 6px solid #2A60B2;
        }
        .related-list {
            list-style: none;
        }
        .related-list li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 12px;
            border-bottom: 1px solid #e2eaf5;
            transition: background 0.15s;
        }
        .related-list li:hover {
            background: #f2f8ff;
        }
        .related-list li a {
            text-decoration: none;
            color: #1e2b3c;
            font-size: 16px;
            font-weight: 500;
            flex: 1;
        }
        .related-list li a:hover {
            color: #2A60B2;
        }
        .related-list li span {
            color: #6f7d93;
            font-size: 13px;
            background: #f0f4fc;
            padding: 4px 14px;
            border-radius: 30px;
            margin-left: 20px;
            white-space: nowrap;
        }
		
		
		

		
		
		
		

        /* 右侧侧边栏 300px (粘性定位) */
        .sidebar {
            width: 300px;
            flex-shrink: 0;
            position: sticky;
            top: 0;                 /* 粘滞于视口顶部 */
            align-self: flex-start; /* 保持自身高度，不被拉伸 */
            background: #ffffffd9;
            backdrop-filter: blur(4px);
            padding: 20px 16px;
            box-shadow: 0 10px 25px rgba(30,50,80,0.12);
            border: 1px solid #e4ebf5;
            transition: box-shadow 0.2s;
            /* 无需 flex 列，内容自然流动 */
        }
        .sidebar h3 {
            font-size: 22px;
            font-weight: 700;
            color: #1e2b3c;
            margin-bottom: 20px;
            padding-left: 8px;
            border-left: 6px solid #2A60B2;
        }
        /* 热门资讯卡片 (两张) */
        .hot-card {
            margin-bottom: 28px;
        }
        .hot-img {
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #aac0df;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .hot-img a {
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
        }
        .hot-img .fake-img {
            background: linear-gradient(135deg, #a6c1f0, #7d9fd3);
            font-size: 18px;
            color: #0f2d5a;
        }
        .hot-img:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 20px rgba(42,96,178,0.25);
        }
        .hot-title {
            font-size: 18px;
            font-weight: 650;
            margin: 12px 0 6px 8px;
        }
        .hot-title a {
            text-decoration: none;
            color: #1e2b3c;
        }
        .hot-title a:hover {
            color: #2A60B2;
        }
        /* 推荐阅读列表 */
        .rec-header {
            font-size: 20px;
            font-weight: 700;
            margin: 10px 0 12px 0;
            color: #1e2b3c;
            border-bottom: 2px solid #2A60B2;
            padding-bottom: 6px;
        }
        .rec-list {
            list-style: none;
        }
        .rec-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 9px 10px;
            border-radius: 40px;
            margin-bottom: 4px;
            transition: background 0.15s, color 0.15s;
            cursor: pointer;
        }
        .rec-item:hover {
            background: #e4efff;
        }
        .rec-left {
            display: flex;
            align-items: center;
            gap: 10px;
            overflow: hidden;
        }
        .rec-num {
            width: 24px;
            height: 24px;
            background: #dde5f0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 600;
            color: #2A60B2;
            flex-shrink: 0;
            transition: 0.1s;
        }
        .rec-item:hover .rec-num {
            background: #2A60B2;
            color: white;
        }
        .rec-title {
            font-size: 15px;
            color: #1e2b3c;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 160px;
        }
        .rec-title a {
            text-decoration: none;
            color: inherit;
        }
        .rec-title a:hover {
            color: #2A60B2;
        }
        .rec-time {
            font-size: 12px;
            color: #6f7d93;
            background: #f0f4fc;
            padding: 3px 10px;
            border-radius: 30px;
            flex-shrink: 0;
            transition: 0.1s;
        }
        .rec-item:hover .rec-time {
            background: #2A60B2;
            color: white;
        }

        /* ========= 移动端适配：内容区域上下排列 ========= */
        @media (max-width: 767px) {
            .content-row {
                flex-direction: column;
                gap: 15px;
                order: 10;
                margin-top: 0px;
                margin-bottom: 0px;
            }
            .main-content {
                width: 100% !important;
                padding: 15px;
                backdrop-filter: none;
            }
            .sidebar {
                width: 100% !important;
                position: static;  /* 移动端取消粘滞 */
                backdrop-filter: none;
                background: #ffffffd9;
                padding: 15px;
                margin-top: 0;
            }
            .news-item {
                flex-direction: column;
                height: auto;
                padding-bottom: 8px;
                margin-bottom: 15px;
            }
            .news-img {
                width: 100%;
                height: auto;
                aspect-ratio: 155 / 105;
                margin: 0;
            }
            .news-img .fake-img,
            .news-img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .news-content {
                padding: 12px 10px 6px;
            }
            .news-title {
                font-size: 18px;
                white-space: normal;
                margin-bottom: 4px;
            }
            .news-desc {
                height: auto;
                max-height: 40px;
                margin-bottom: 8px;
                font-size: 13px;
            }
            .news-meta {
                gap: 12px;
                border-top: 1px dashed #c0cee4;
                padding-top: 6px;
                flex-wrap: wrap;
            }
            /* 隐藏“本站编辑” */
            .news-meta span:nth-child(2) {
                display: none;
            }
            .hot-card {
                margin-bottom: 20px;
            }
            .hot-img {
                aspect-ratio: 16 / 9;
            }
            .rec-item {
                padding: 8px 5px;
            }
            .rec-title {
                max-width: 300px;
            }
        /* ---------- 文章页专用移动端适配 (新增) ---------- */
            .article-header {
                flex-direction: column;      /* 标题和按钮变为垂直排列 */
                align-items: stretch;        /* 标题占满整行 */
                gap: 12px;
            }
            .article-title {
                font-size: 24px;              /* 适当缩小标题 */
                text-align: left;              /* 左对齐保持整行 */
                width: 100%;
            }
            .speak-btn {
                align-self: center;            /* 按钮居中 */
                margin: 0 auto 8px auto;       /* 水平居中，下方留点边距 */
                width: fit-content;             /* 宽度自适应内容 */
                font-size: 16px;
                padding: 8px 28px;
            }
            /* 文章元数据：编辑默认被隐藏，我们在这里强制显示 */
            .article-meta span:nth-child(2) {
                display: block;    /* 显示“本站编辑” */
            }
            /* 调整元数据字体与间距 */
            .article-meta {
                font-size: 13px;
                flex-wrap: wrap;
                justify-content: flex-start;
                border-bottom-width: 1px;
                padding-bottom: 12px;
            }
            .article-content {
                font-size: 16px;
                line-height: 1.75;
            }
            /* 上一页/下一页：上下排列，占满宽度 */
            .page-nav {
                flex-direction: column;
                gap: 12px;
                align-items: stretch;
            }
            .page-nav a {
                max-width: 100%;               /* 取消宽度限制 */
               /* white-space: normal; */           /* 允许换行 */
                word-break: break-word;
                text-align: center;
                padding: 12px 20px;
                font-size: 15px;
            }
            /* 关键词区域调整 */
            .keywords a {
                padding: 5px 16px;
                font-size: 13px;
            }
            .related-title {
                font-size: 20px;
            }
            .related-list li a {
                font-size: 15px;
            }
            .related-list li span {
                font-size: 12px;
                padding: 3px 10px;
            }
        }