/*
Theme Name: weibo1
Author: admin
Version: 1.0
License: MIT
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Microsoft Yahei", sans-serif;
  background: #f2f9f2;
  color: #2a4d32;
  line-height: 1.7;
}
a {
  color: #2d882d;
  text-decoration: none;
}
a:hover {
  color: #1a5c1a;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 14px;
}

/* 头部 */
.header {
  background: #ffffff;
  border-bottom: 1px solid #d6e8d6;
  padding: 14px 0;
  margin-bottom: 12px;
}
.blog-title {
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #2a4d32;
}

/* 面包屑 */
.breadcrumb {
  background: #fff;
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 13px;
  color: #55795f;
  margin-bottom: 12px;
  border: 1px solid #d6e8d6;
}

/* 微博卡片 */
.post-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid #e0f0e0;
}
.user-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.uname {
  font-size: 15px;
  font-weight: 500;
  color: #2a4d32;
}
.time {
  font-size: 12px;
  color: #77997f;
}

/* 标题 & 摘要 */
.post-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
.post-excerpt {
  font-size: 14px;
  color: #44664c;
}

/* 分页 */
.pagination {
  text-align: center;
  margin: 24px 0;
}
.page-numbers {
  display: inline-block;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid #c8e2c8;
  border-radius: 6px;
  margin: 0 2px;
  font-size: 14px;
  color: #2d882d;
}
.page-numbers.current {
  background: #3a9e3a;
  color: #fff;
  border-color: #3a9e3a;
}

/* 侧边栏 */
.sidebar {
  margin-top: 20px;
}
.widget {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid #e0f0e0;
}
.widget h3 {
  font-size: 15px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e6f2e6;
  color: #2a4d32;
}
.widget ul {
  list-style: none;
}
.widget li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #e0f0e0;
}
.widget li:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}
.widget-thumb {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.widget-text {
  flex: 1;
  min-width: 0;
}
.widget-text a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
}

/* 内容页 */
.single-title {
  font-size: 20px;
  margin-bottom: 14px;
}
.single-content {
  font-size: 15px;
  line-height: 1.9;
}
.post-nav {
  display: flex;
  justify-content: space-between;
  margin: 22px 0;
}
.related {
  margin-top: 20px;
}

/* 底部 */
.footer {
  text-align: center;
  padding: 22px 0;
  font-size: 13px;
  color: #77997f;
}