.article-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.article-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.article-meta {
    color: #666;
    font-size: 14px;
}

.article-author {
    margin-left: 15px;
}

.back-to-list {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.back-to-list:hover {
    color: #007bff;
}

.article-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.nav-prev, .nav-next {
    max-width: 45%;
}

.nav-prev a, .nav-next a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.nav-prev a:hover, .nav-next a:hover {
    background-color: #f5f5f5;
}

.nav-prev a::before {
    content: "←";
    margin-right: 8px;
}

.nav-next a::after {
    content: "→";
    margin-left: 8px;
}

/* Markdown 内容样式 */
.article-content h1 {
    font-size: 2.5em;
    margin-bottom: 1em;
}

.article-content h2 {
    font-size: 1.8em;
    margin: 1.5em 0 1em;
}

.article-content p {
    line-height: 1.8;
    margin-bottom: 1em;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .article-container {
        padding: 0 15px;
    }
    
    .article-content {
        padding: 20px;
    }
} 