/* 基础样式 - 简洁风格 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  background: #fff;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* 头部 */
.site-header {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.site-title {
  font-size: 1.5em;
  font-weight: normal;
}

.site-title a {
  color: #333;
}

/* 导航 */
.site-nav {
  margin-bottom: 40px;
}

.nav-list {
  list-style: none;
  margin-bottom: 10px;
}

.nav-list li {
  display: inline-block;
  margin-right: 15px;
}

/* 文章列表 */
.post-list {
  margin-bottom: 40px;
}

.post-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dotted #ddd;
}

.post-title {
  font-size: 1.3em;
  font-weight: normal;
  margin-bottom: 5px;
}

.post-meta {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 10px;
}

.post-category {
  font-style: italic;
}

.post-summary {
  color: #555;
}

/* 文章单页 */
.post-single {
  margin-bottom: 40px;
}

.post-header {
  margin-bottom: 30px;
}

.post-content {
  margin-bottom: 40px;
}

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

.post-content img {
  max-width: 100%;
  height: auto;
}

.post-content blockquote {
  margin: 1.5em 0;
  padding-left: 20px;
  border-left: 3px solid #ccc;
  color: #666;
}

.post-content pre {
  background: #f5f5f5;
  padding: 15px;
  overflow-x: auto;
  margin-bottom: 1.5em;
}

.post-content code {
  font-family: Consolas, Monaco, monospace;
  font-size: 0.9em;
}

/* 文章导航 */
.post-nav {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.post-nav .prev,
.post-nav .next {
  max-width: 45%;
}

/* 列表页 */
.list-title {
  font-size: 1.5em;
  font-weight: normal;
  margin-bottom: 30px;
}

/* 页脚 */
.site-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
  font-size: 0.9em;
  color: #666;
}

/* 响应式 */
@media (max-width: 600px) {
  .container {
    padding: 20px 15px;
  }
  
  .post-title {
    font-size: 1.1em;
  }
}
