.page-header {
  text-align: center;
  padding: 60px 20px 30px;
  background: linear-gradient(180deg, #fff, #fffaf0);
}

.page-header h1 {
  font-size: 28px;
  color: #b8962e;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 14px;
  color: #777;
}

/* 容器 */
.container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
}

/* 列表 */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

/* 文章卡片 */
.article-item {
  display: block;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #f1e6c9;
  border-radius: 12px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.article-item h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #333;
}

.article-item p {
  margin: 0 0 8px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.article-item span {
  font-size: 12px;
  color: #999;
}

.article-item:hover {
  transform: translateY(-4px);
  border-color: #d4af37;
  box-shadow: 0 10px 25px rgba(212,175,55,0.15);
}

/* 更多按钮 */
.more-box {
  text-align: center;
  margin-top: 30px;
}

.more-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #d4af37, #c9a227);
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

.article-single {
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border: 1px solid #f1e6c9;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* 面包屑 */
.breadcrumb {
  font-size: 12px;
  color: #999;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: #999;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #d4af37;
}

/* 标题 */
.article-title {
  font-size: 28px;
  color: #b8962e;
  margin-bottom: 10px;
}

/* meta信息 */
.article-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 30px;
}

/* 内容区 */
.article-content {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

.article-content h2 {
  font-size: 20px;
  color: #b8962e;
  margin-top: 25px;
}

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

/* 分页导航 */
.article-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #f1e6c9;
}

.article-nav a {
  color: #d4af37;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.article-nav a:hover {
  color: #b8962e;
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin: 40px 0;
  flex-wrap: wrap;
}

/* 数字按钮 */
.page-number,
.page-btn {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  color: #555;
  background: #fff;
  border: 1px solid #f1e6c9;
  transition: 0.3s;
  box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

/* hover效果 */
.page-number:hover,
.page-btn:hover {
  border-color: #d4af37;
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212,175,55,0.15);
}

/* 当前页 */
.page-number.current {
  background: linear-gradient(135deg, #d4af37, #c9a227);
  color: #fff;
  border-color: transparent;
  font-weight: bold;
  box-shadow: 0 6px 18px rgba(212,175,55,0.3);
}

/* 上一页 / 下一页 */
.page-btn {
  font-weight: 600;
  color: #333;
}

/* 省略号 */
.dots {
  padding: 8px 10px;
  color: #aaa;
  font-size: 14px;
}

/* 禁用状态（如果你后面扩展可以用） */
.page-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .pagination {
    gap: 4px;
  }

  .page-number,
  .page-btn {
    padding: 6px 10px;
    font-size: 13px;
  }
}
.wrap {
  max-width: 1100px;
  margin: 20px auto;
  padding: 12px 20px;
  font-size: 13px;
  color: #777;
  background: #fff;
  border: 1px solid #f1e6c9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* 首页图标 */
.wrap .icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, #d4af37, #f7e7a9);
  border-radius: 50%;
}

/* 链接 */
.wrap a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

.wrap a:hover {
  color: #d4af37;
}

/* 分隔符 */
.wrap code {
  background: none;
  color: #ccc;
  font-size: 12px;
  padding: 0 4px;
}

/* 当前页（最后一段文字） */
.wrap > :last-child {
  color: #b8962e;
  font-weight: 600;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .wrap {
    font-size: 12px;
    padding: 10px 14px;
  }
}
/* 侧边栏容器 - 放在文章下方横向平铺 */
.single-sidebar {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #f1e6c9;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* 卡片外壳 - 横向平均分布 */
.sidebar-box {
  flex: 1;
  min-width: 200px;
  background: #fff;
  border: 1px solid #f1e6c9;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: 0.3s;
}

/* hover轻微浮动 */
.sidebar-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* 标题 */
.sidebar-title {
  font-size: 15px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1e6c9;
  color: #333;
  font-weight: 600;
}

/* 列表 */
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #eee;
}

/* 最后一条去掉线 */
.sidebar-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* 链接 */
.sidebar-list a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  line-height: 1.4;
  display: block;
  transition: 0.3s;
}

/* hover金色 */
.sidebar-list a:hover {
  color: #d4af37;
  padding-left: 4px;
}

/* 阅读次数盒子 */
.views-box {
  font-size: 14px;
  color: #b8962e;
  padding: 8px 0;
  text-align: center;
  font-weight: 500;
}

/* ================= 移动端适配 ================= */
@media (max-width: 768px) {
  .single-sidebar {
    flex-direction: column;
    gap: 15px;
  }
  
  .sidebar-box {
    min-width: auto;
  }
}