/* 极简风自定义样式 - 覆盖 landscape 默认样式 */

/* 基础重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  background: #fff;
}

/* 隐藏 banner 图片 */
#banner {
  display: none !important;
}

/* 简化头部 */
#header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

#header-outer {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

#logo {
  font-size: 1.8em;
  color: #333;
  text-decoration: none;
  font-weight: 600;
}

#subtitle {
  font-size: 1em;
  color: #666;
  font-weight: normal;
  margin-top: 5px;
}

/* 简化导航 */
#main-nav {
  margin-top: 15px;
}

.main-nav-link {
  color: #666;
  text-decoration: none;
  margin-right: 20px;
  font-size: 0.95em;
}

.main-nav-link:hover {
  color: #333;
}

#sub-nav,
#search-form-wrap,
#main-nav-toggle {
  display: none !important;
}

/* 主内容区 */
.outer {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

#main {
  width: 100%;
}

/* 文章卡片简化 */
.article {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}

.article:last-child {
  border-bottom: none;
}

.article-date {
  color: #999;
  font-size: 0.85em;
  margin-bottom: 10px;
}

.article-category-link {
  color: #666;
  text-decoration: none;
  font-size: 0.85em;
  margin-left: 10px;
}

.article-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
}

.article-title a {
  color: #333;
  text-decoration: none;
}

.article-title a:hover {
  color: #000;
}

.article-entry {
  color: #555;
  line-height: 1.8;
}

.article-entry p {
  margin-bottom: 15px;
}

/* 隐藏文章底部的标签、分享等 */
.article-tag,
.article-share,
.article-comment {
  display: none !important;
}

/* 简化 footer */
#footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 30px 20px;
  text-align: center;
  color: #999;
  font-size: 0.85em;
}

#footer a {
  color: #666;
  text-decoration: none;
}

/* 分页简化 */
#page-nav {
  text-align: center;
  margin-top: 40px;
}

#page-nav a,
#page-nav span {
  display: inline-block;
  padding: 8px 15px;
  margin: 0 5px;
  color: #666;
  text-decoration: none;
  border-radius: 3px;
}

#page-nav a:hover {
  background: #f5f5f5;
}

#page-nav .current {
  background: #333;
  color: #fff;
}

/* 文章详情页 */
.article-header {
  margin-bottom: 30px;
}

.article-entry h2 {
  font-size: 1.3em;
  margin: 30px 0 15px;
  font-weight: 600;
}

.article-entry h3 {
  font-size: 1.1em;
  margin: 25px 0 10px;
  font-weight: 600;
}

.article-entry blockquote {
  border-left: 3px solid #333;
  padding-left: 20px;
  margin: 20px 0;
  color: #666;
  font-style: italic;
}

.article-entry ul,
.article-entry ol {
  margin: 15px 0;
  padding-left: 30px;
}

.article-entry li {
  margin: 5px 0;
}

.article-entry table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.article-entry th,
.article-entry td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

.article-entry th {
  background: #f5f5f5;
}

/* 侧边栏隐藏 */
#sidebar {
  display: none !important;
}

/* 归档页简化 */
.archives-wrap {
  margin-bottom: 30px;
}

.archive-year-wrap {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
}

.archive-article {
  margin-bottom: 15px;
  padding-left: 20px;
}

.archive-article-date {
  color: #999;
  font-size: 0.85em;
  margin-right: 15px;
}

.archive-article-title {
  color: #333;
  text-decoration: none;
}

.archive-article-title:hover {
  color: #000;
}

/* 标签云简化 */
.tag-cloud {
  text-align: center;
  padding: 20px;
}

.tag-cloud a {
  display: inline-block;
  padding: 5px 15px;
  margin: 5px;
  background: #f5f5f5;
  color: #666;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.9em;
}

.tag-cloud a:hover {
  background: #333;
  color: #fff;
}

/* 分类页 */
.category-list {
  list-style: none;
  padding: 0;
}

.category-list-item {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.category-list-link {
  color: #333;
  text-decoration: none;
  font-size: 1.1em;
}

.category-list-count {
  color: #999;
  font-size: 0.85em;
  margin-left: 10px;
}
