/* 博客文章页面样式 */
.blog-post {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    margin-top: 80px;
}

.post-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.post-header h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.post-meta {
    color: #777;
    font-size: 14px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.featured-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
}

.post-content h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3498db;
}

.post-content h3 {
    font-size: 24px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #444;
}

.post-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.post-content ul, .post-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.post-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-tags .tag {
    background-color: #e9ecef;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-right: 10px;
    display: inline-block;
}

/* 评论区域 */
.comments-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.comments-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.comment {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.comment-author {
    font-weight: bold;
    color: #3498db;
    margin-bottom: 5px;
}

.comment-date {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

.comment-text {
    color: #333;
    line-height: 1.6;
}

.comment-form {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.comment-form h3 {
    margin-bottom: 20px;
}

.comment-form input, .comment-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.comment-form input:focus, .comment-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background-color: #3498db;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
}