/*
Theme Name: Weibo2
Author: jazz
Version: 1.0
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Microsoft Yahei", sans-serif;
  background: #f5f8ff;
  color: #2d3748;
  line-height: 1.7;
}
a {
  color: #3b82f6;
  text-decoration: none;
}
a:hover {
  color: #1d4ed8;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 14px;
}

/* 头部 */
.header {
  background: #ffffff;
  border-bottom: 1px solid #dbeafe;
  padding: 16px 0;
  margin-bottom: 16px;
}
.site-title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #1e40af;
}

/* 面包屑 */
.breadcrumb {
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
  border: 1px solid #dbeafe;
}

/* 微博卡片 */
.post-item {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 14px;
  border: 1px solid #e0efff;
}
.user-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.name {
  font-size: 15px;
  font-weight: 500;
  color: #1e3a8a;
  margin-bottom: 2px;
}
.publish-time {
  font-size: 12px;
  color: #64748b;
}

/* 标题 & 摘要 */
.post-title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}
.post-excerpt {
  font-size: 14px;
  color: #475569;
  line-height: 1.8;
}

/* 分页 */
.pagination {
  text-align: center;
  margin: 30px 0;
}
.page-numbers {
  display: inline-block;
  padding: 7px 12px;
  background: #fff;
  border: 1px solid #bfdbfe;
  border-radius: 6px;
  margin: 0 3px;
  font-size: 14px;
}
.page-numbers.current {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}

/* 侧边栏 */
.sidebar {
  margin-top: 24px;
}
.widget {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid #e0efff;
}
.widget h3 {
  font-size: 16px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eff6ff;
  color: #1e3a8a;
}
.widget ul {
  list-style: none;
}
.widget li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed #dbeafe;
}
.widget li:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}
.widget-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  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: 21px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.single-content {
  font-size: 15px;
  line-height: 1.9;
}
.post-nav {
  display: flex;
  justify-content: space-between;
  margin: 28px 0;
}
.related-posts {
  margin-top: 24px;
}

/* 底部 */
.footer {
  text-align: center;
  padding: 28px 0;
  font-size: 13px;
  color: #94a3b8;
}