/*
Theme Name: Weibo10
Author: admin
Version: 1.0
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Microsoft Yahei", sans-serif;
  background: #f7f8fa;
  color: #333;
  line-height: 1.6;
}
a {
  color: #1877f2;
  text-decoration: none;
}
a:hover {
  color: #0056b3;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 头部 */
.header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 15px 0;
  margin-bottom: 15px;
}
.logo {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

/* 面包屑 */
.breadcrumb {
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
  border: 1px solid #eee;
}

/* 微博卡片 */
.weibo-item {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 12px;
  border: 1px solid #f0f0f0;
}
.user-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  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;
}
.user-info {
  flex: 1;
}
.author {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 3px;
}
.pub-time {
  font-size: 12px;
  color: #999;
}

/* 标题摘要 */
.weibo-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.weibo-excerpt {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* 分页 */
.pagination {
  text-align: center;
  margin: 30px 0;
}
.page-numbers {
  display: inline-block;
  padding: 6px 11px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 0 2px;
  font-size: 14px;
}
.page-numbers.current {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
}

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

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