/* 页面容器 */
.page-container {
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 文章容器 */
.article-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 60px 80px;
    font-family: "Crimson Text", "Noto Serif SC", serif;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    border-radius: 2px;
    width: 100%;
    box-sizing: border-box;
}

/* 标题样式 */
.article-title {
    font-size: 46px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
    font-family: "Playfair Display", "Noto Serif SC", serif;
    letter-spacing: -0.02em;
}

/* 文章元信息 */
.article-meta {
    text-align: center;
    margin-bottom: 60px;
    color: #7f8c8d;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.article-author {
    margin-right: 15px;
    font-style: italic;
}

.article-time {
    font-style: italic;
}

/* 文章内容 */
.article-content {
    color: #34495e;
    font-size: 19px;
    line-height: 2;
    letter-spacing: 0.03em;
    word-wrap: break-word;
    word-break: normal;
    font-weight: 400;
}

.article-content p {
    margin-bottom: 1.8em;
    text-align: justify;
    display: block !important;
    min-height: 1.5em !important;
    text-indent: 2em;
}

.article-content br {
    content: "";
    display: block;
    margin: 0.8em 0;
}

/* 空段落的处理 */
.article-content p:empty,
.article-content p:blank {
    height: 1em;
    padding: 0;
    margin: 0.5em 0;
}

/* 底部样式 */
.site-footer {
    background: #fff;
    padding: 40px 0;
    margin-top: auto;
    width: 100%;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #7f8c8d;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    margin: 0 0 15px 0;
    color: #95a5a6;
    font-family: "Crimson Text", "Noto Serif SC", serif;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 15px;
}

.footer-links a:hover {
    color: #2c3e50;
}

@media (max-width: 768px) {
    .page-container {
        padding: 0;
    }

    .article-container {
        margin: 0;
        padding: 40px 25px;
        box-shadow: none;
    }

    .article-title {
        font-size: 34px;
        margin-bottom: 15px;
    }

    .article-meta {
        margin-bottom: 35px;
        padding-bottom: 20px;
    }

    .article-content {
        font-size: 17px;
        line-height: 1.7;
        letter-spacing: 0.2px;
    }

    .article-content p {
        margin-bottom: 1.5em;
    }

    .footer-links {
        gap: 20px;
        padding: 0 15px;
    }
} 