/* KSS Theme 样式文件 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 头部样式已移至 prime-explore.css，此处保留注释以避免冲突 */

/* 文章列表样式 */
.posts {
    margin-top: 40px;
}

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

.post-card h2 {
    margin-bottom: 10px;
}

.post-card h2 a {
    text-decoration: none;
    color: #333;
}

.post-card h2 a:hover {
    color: #007bff;
}

.post-meta {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
}

.post-excerpt {
    color: #666;
}

/* 文章详情页样式 */
.post {
    margin-top: 40px;
}

.post h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.post-content {
    margin-top: 30px;
    line-height: 1.8;
}

/* 底部样式 */
.site-footer {
    background: #f8f9fa;
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
    color: #666;
}

