/*
 * ============================================================================
 * 软件名称：约定优记宝科普智汇系统 V1.0
 * 著作权人：北京约定科技集团有限公司
 * 开发完成日期：2026年04月25日
 * 软件用途：暂定二级一键替换
 * 
 * 版权所有 (C) 2026 北京约定科技集团有限公司。保留所有权利。
 * 本软件为著作权人独立开发，未经著作权人书面许可，任何单位或个人不得：
 * 1. 复制、传播、改编本软件；
 * 2. 将本软件用于商业用途；
 * 3. 修改或反向工程本软件。
 * 违反上述规定的，著作权人将依法追究其法律责任。
 * ============================================================================
 */

/* 文章详情布局 */
.article-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 15px 60px;
}

.article-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.article-header h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1E2A2E;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta {
    color: #999;
    font-size: .95rem;
}

/* 封面图 */
.article-cover {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}
.article-cover img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .article-cover img {
        height: 250px;
    }
}

/* 文章正文 */
.article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}
.article-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}
.article-content p {
    margin-bottom: 1.2em;
}

/* 上下篇导航 */
.article-nav {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 40px;
}
.article-nav a {
    display: block;
    color: #B48C48;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 12px;
}
.article-nav a:hover {
    text-decoration: underline;
}

/* 底部声明 */
.article-footer-info {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 14px;
    border-top: 1px solid #eee;
    margin-top: 30px;
}