/*
Theme Name: Weibo3
Author: jazz
Version: 1.0
Description: 深空灰色三栏微博主题
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft Yahei", sans-serif;
  background: #121212;
  color: #e0e0e0;
  line-height: 1.7;
}

a {
  color: #90caf9;
  text-decoration: none;
}

a:hover {
  color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* 布局容器 */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  gap: 20px;
}

/* 主体三栏 */
.main {
  flex: 1;
  min-width: 0;
}

.sidebar-left,
.sidebar-right {
  width: 280px;
  flex-shrink: 0;
}

/* 移动端自适应 */
@media (max-width: 1024px) {
  .wrap {
    flex-direction: column;
  }
  .sidebar-left,
  .sidebar-right {
    width: 100%;
  }
}

/* 头部 */
.header {
  background: #1e1e1e;
  border-bottom: 1px solid #333;
  padding: 18px 0;
  margin-bottom: 20px;
  text-align: center;
}

.site-title {
  font-size: 20px;
  font-weight: 500;
  color: #f0f0f0;
}

/* 面包屑 */
.breadcrumb {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #aaa;
  margin-bottom: 16px;
  border: 1px solid #333;
}

/* 微博卡片 */
.post-card {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid #333;
}

.user-row {
  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;
}

.uname {
  font-size: 15px;
  font-weight: 500;
  color: #f0f0f0;
}

.time {
  font-size: 12px;
  color: #888;
}

/* 标题摘要 */
.post-title {
  font-size: 17px;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.post-excerpt {
  font-size: 14px;
  color: #ccc;
}

/* 分页 */
.pagination {
  text-align: center;
  margin: 30px 0;
}

.page-numbers {
  display: inline-block;
  padding: 7px 12px;
  background: #252525;
  border: 1px solid #444;
  border-radius: 6px;
  margin: 0 3px;
  font-size: 14px;
  color: #eee;
}

.page-numbers.current {
  background: #424242;
  color: #fff;
  border-color: #666;
}

/* 侧边栏通用 */
.widget {
  background: #1e1e1e;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid #333;
}

.widget h3 {
  font-size: 16px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #333;
  color: #f0f0f0;
}

.widget ul {
  list-style: none;
}

.widget li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px dashed #333;
}

.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: 22px;
  margin-bottom: 16px;
  color: #fff;
}

.single-content {
  font-size: 15px;
  line-height: 1.9;
  color: #ddd;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  margin: 28px 0;
}

.related {
  margin-top: 24px;
}

/* 底部 */
.footer {
  text-align: center;
  padding: 28px 0;
  font-size: 13px;
  color: #666;
  border-top: 1px solid #222;
  margin-top: 20px;
}