/* src/static/css/style.css */
/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DejaVu Sans Mono", "Monaco", monospace, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto;
}

/* 页面基础样式 */
body {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
    color: #2d3748;
    background-color: #f8f9fa;
}

/* 头部样式 */
header {
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
}

.site-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-size: 1.1rem;
    margin-right: 20px;
}

.nav-link:hover {
    color: #2b6cb0;
    text-decoration: underline;
}

/* 首页文章列表 */
.post-list {
    list-style: none;
    margin: 20px 0 40px;
}

.post-item {
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-link {
    color: #2b6cb0;
    text-decoration: none;
    font-size: 1.2rem;
}

.post-link:hover {
    text-decoration: underline;
}

.post-date {
    color: #718096;
    font-size: 0.9rem;
}

/* 文章页样式 */
.post-content {
    margin: 30px 0;
}

.post-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.post-content h2 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
    color: #2d3748;
    border-left: 4px solid #2b6cb0;
    padding-left: 10px;
}

.post-content p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.post-content a {
    color: #2b6cb0;
    text-decoration: none;
}

.post-content a:hover {
    text-decoration: underline;
}

.post-content ul {
    margin: 15px 0 15px 30px;
}

.post-content li {
    margin: 8px 0;
}

.post-meta {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

/* 页脚样式 */
footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    color: #718096;
    font-size: 0.9rem;
    text-align: center;
}