
    /* ===== 新闻详情页专用样式（完整保留原CSS，新增样式已整合） ===== */

    /* 页面基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 新闻详情主容器 */
.news-detail-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

/* 内容包装器 - 白色卡片效果 */
.news-detail-content-wrapper {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 60px;
    transition: all 0.3s ease;
}

/* ===== 面包屑导航 ===== */
.news-detail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
    color: #718096;
    font-size: 0.95rem;
}

.news-detail-breadcrumb a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-detail-breadcrumb a:hover {
    color: #08358f;
}

.news-detail-breadcrumb i {
    margin: 0 10px;
    font-size: 0.75rem;
    color: #cbd5e0;
}

.news-detail-breadcrumb .current {
    color: #08358f;
    font-weight: 600;
}

/* ===== 文章主体 ===== */
.news-detail-article {
    width: 100%;
}

/* ===== 文章头部 ===== */
.article-header {
    margin-bottom: 30px;
}

.article-title {
    color: #08358f;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    word-break: break-word;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    padding: 15px 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
    color: #718096;
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: #1a4cb3;
    font-size: 0.95rem;
}

/* ===== 文章正文 - 完全适配编辑器 ===== */
.article-content {
    width: 100%;
    margin: 30px 0 30px;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 标题样式 */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4 {
    color: #08358f;
    margin: 35px 0 15px;
    font-weight: 600;
}

.article-content h2 {
    font-size: 1.6rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #eaeaea;
}

.article-content h3 {
    font-size: 1.3rem;
    color: #1a4cb3;
    padding-left: 12px;
    border-left: 5px solid #08358f;
}

.article-content h4 {
    font-size: 1.2rem;
    color: #2c3e50;
}

/* 段落样式 */
.article-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #2d3748;
    line-height: 1.8;
}

/* 加粗文字 */
.article-content strong,
.article-content b {
    color: #08358f;
    font-weight: 600;
}

/* 链接样式 */
.article-content a {
    color: #1a4cb3;
    text-decoration: none;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.article-content a:hover {
    color: #08358f;
    border-bottom-color: #08358f;
}

/* 列表样式 */
.article-content ul,
.article-content ol {
    margin: 15px 0 25px 30px;
    padding-left: 10px;
}

.article-content li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #2d3748;
    line-height: 1.7;
}

/* 嵌套列表 */
.article-content ul ul,
.article-content ol ol,
.article-content ul ol,
.article-content ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

/* 图片样式 */
.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 表格样式 */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.article-content th,
.article-content td {
    border: 1px solid #e2e8f0;
    padding: 10px 12px;
    text-align: left;
}

.article-content th {
    background-color: #f8fafc;
    font-weight: 600;
    color: #08358f;
}

/* 引用块样式 */
.article-content blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    background-color: #f8fafc;
    border-left: 4px solid #08358f;
    color: #4a5568;
    font-style: italic;
}

/* 代码块样式 */
.article-content pre {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    margin: 20px 0;
}

.article-content code {
    background-color: #edf2f7;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #e53e3e;
}

/* 温馨提示框 - 无图标依赖 */
.article-content .tips-box {
    background: linear-gradient(135deg, #f0f7ff 0%, #e9f0fa 100%);
    border-left: 5px solid #08358f;
    padding: 18px 22px;
    border-radius: 12px;
    margin: 25px 0;
}

.article-content .tips-box p {
    margin-bottom: 8px;
}

.article-content .tips-box p:last-child {
    margin-bottom: 0;
}

.article-content .tips-box strong {
    color: #08358f;
}

/* 水平分割线 */
.article-content hr {
    margin: 30px 0;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #cbd5e0, transparent);
}

/* ===== 文章底部分享 ===== */
.article-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #edf2f7;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-label {
    color: #718096;
    font-size: 0.95rem;
}

.share-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f0f7ff;
    color: #1a4cb3;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(26, 76, 179, 0.1);
}

.share-item:hover {
    background: linear-gradient(135deg, #08358f, #1a4cb3);
    color: white;
    transform: translateY(-2px);
}

/* ===== 上一篇/下一篇导航 ===== */
.article-pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #edf2f7;
}

.prev-article,
.next-article {
    flex: 0 0 48%;
}

.prev-article a,
.next-article a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background-color: #f8fafc;
    border-radius: 12px;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #edf2f7;
}

.prev-article a:hover,
.next-article a:hover {
    background-color: #f0f7ff;
    border-color: #1a4cb3;
    color: #08358f;
}

.prev-article i,
.next-article i {
    color: #1a4cb3;
    font-size: 0.9rem;
}

.prev-article span,
.next-article span {
    flex: 1;
    font-size: 0.95rem;
}

.next-article a {
    justify-content: flex-end;
}

/* ===== 响应式设计 ===== */
@media screen and (max-width: 1400px) {
    .news-detail-container {
        max-width: 1200px;
        padding: 45px 20px;
    }
    .news-detail-content-wrapper {
        padding: 50px;
    }
}

@media screen and (max-width: 1200px) {
    .news-detail-container {
        max-width: 100%;
        padding: 40px 20px;
    }
    .news-detail-content-wrapper {
        padding: 45px;
    }
    .article-title {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 992px) {
    .news-detail-container {
        padding: 35px 15px;
    }
    .news-detail-content-wrapper {
        padding: 40px 30px;
    }
    .article-title {
        font-size: 1.7rem;
    }
    .article-meta {
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {
    .news-detail-container {
        padding: 30px 15px;
    }
    .news-detail-content-wrapper {
        padding: 30px 20px;
        border-radius: 12px;
    }
    .article-title {
        font-size: 1.5rem;
    }
    .article-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .article-content {
        font-size: 15px;
    }
    .article-content h2 {
        font-size: 1.4rem;
    }
    .article-content h3 {
        font-size: 1.2rem;
        padding-left: 10px;
        border-left-width: 4px;
    }
    .article-content p,
    .article-content li {
        font-size: 0.95rem;
    }
    .article-content ul,
    .article-content ol {
        margin-left: 20px;
    }
    .article-footer {
        justify-content: center;
    }
    .article-pagination {
        flex-direction: column;
        gap: 15px;
    }
    .prev-article,
    .next-article {
        flex: 0 0 100%;
    }
    .article-content .tips-box {
        padding: 15px 18px;
    }
}

@media screen and (max-width: 576px) {
    .news-detail-content-wrapper {
        padding: 25px 15px;
    }
    .article-title {
        font-size: 1.3rem;
    }
    .article-content h2 {
        font-size: 1.3rem;
    }
    .article-content h3 {
        font-size: 1.1rem;
    }
    .article-content p,
    .article-content li {
        font-size: 0.9rem;
    }
    .article-content ul,
    .article-content ol {
        margin-left: 18px;
    }
    .share-item {
        width: 32px;
        height: 32px;
    }
    .article-content .tips-box {
        padding: 12px 15px;
    }
}

/* 打印样式 */
@media print {
    .news-detail-content-wrapper {
        box-shadow: none;
        padding: 20px;
    }
    .page-banner,
    .header,
    .footer,
    .article-share,
    .article-pagination {
        display: none;
    }
}
