/* 全局样式 - 适配个人博客备案，无商业元素 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", Arial, sans-serif;
}
body {
    background: #f9f9f9;
    color: #333;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}
/* 头部标题 */
.header {
    text-align: center;
    margin: 30px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.header h1 {
    color: #d4a76a;
    font-weight: 500;
    font-size: 28px;
}
.header p {
    color: #999;
    font-size: 14px;
    margin-top: 10px;
}
/* 文章列表 */
.article-list {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 20px 0;
}
.article-item {
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
}
.article-item:last-child {
    border-bottom: none;
}
.article-item a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
}
.article-item a:hover {
    color: #d4a76a;
}
.article-item .date {
    color: #999;
    font-size: 12px;
    margin-top: 5px;
}
/* 单篇文章样式 */
.article-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 20px 0;
}
.article-content h2 {
    color: #d4a76a;
    font-weight: 500;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.article-content p {
    margin: 15px 0;
    font-size: 16px;
    color: #666;
}
.article-content .back {
    display: inline-block;
    margin-top: 30px;
    color: #d4a76a;
    text-decoration: none;
    font-size: 14px;
}
/* 底部声明（备案核心） */
.footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 14px;
}
/* 归档页面 */
.archives-content {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}
.archives-content p {
    color: #666;
    margin: 20px 0;
}
/* 404页面 */
.not-found {
    text-align: center;
    padding: 50px 0;
    color: #666;
}
.not-found h2 {
    font-size: 60px;
    color: #d4a76a;
    margin-bottom: 20px;
}
.not-found a {
    color: #d4a76a;
    text-decoration: none;
    margin-top: 20px;
    display: inline-block;
}
/* 响应式：手机访问适配 */
@media (max-width: 768px) {
    .article-list, .article-content {
        padding: 20px;
    }
    .header h1 {
        font-size: 24px;
    }
}