/*
Theme Name:weibo7
Version: 1.0
Author: Custom
*/
* {
  margin:0; padding:0; box-sizing:border-box;
}
body {
  font-family:"Microsoft Yahei",sans-serif;
  background:#f2f9f2;
  color:#333;
  line-height:1.7;
}
a {
  color:#2ecc71;
  text-decoration:none;
}
a:hover {
  color:#27ae60;
}
img {
  max-width:100%;
  height:auto;
}

/* 布局 */
.container {
  max-width:1100px;
  margin:0 auto;
  padding:0 15px;
}
.row {
  display:flex;
  flex-wrap:wrap;
  margin:0 -10px;
}
.col-8 {
  flex:0 0 68%;
  max-width:68%;
  padding:0 10px;
}
.col-4 {
  flex:0 0 32%;
  max-width:32%;
  padding:0 10px;
}

/* 移动端 */
@media(max-width:768px){
  .col-8,.col-4 {
    flex:0 0 100%;
    max-width:100%;
  }
  .col-4 {
    margin-top:20px;
  }
}

/* 头部 */
.header {
  background:#2ecc71;
  padding:16px 0;
  margin-bottom:20px;
}
.logo {
  font-size:20px;
  font-weight:bold;
  color:#fff;
}
.logo a {
  color:#fff;
}

/* 面包屑 */
.breadcrumb {
  background:#fff;
  padding:10px 14px;
  border-radius:8px;
  font-size:13px;
  color:#666;
  margin-bottom:15px;
  box-shadow:0 1px 2px rgba(0,0,0,0.04);
}

/* 文章卡片 */
.card {
  background:#fff;
  border-radius:12px;
  padding:20px;
  margin-bottom:15px;
  box-shadow:0 1px 3px rgba(0,0,0,0.04);
}

/* 头像作者日期横排 */
.user-row {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
}
.avatar {
  width:46px;
  height:46px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;
}
.avatar img {
  width:100%; height:100%; object-fit:cover;
}
.author {
  font-weight:500;
  color:#333;
}
.date {
  font-size:12px;
  color:#999;
  margin-left:auto;
}

/* 标题 */
.title {
  font-size:17px;
  font-weight:500;
  margin-bottom:8px;
}

/* 摘要 */
.excerpt {
  font-size:14px;
  color:#555;
  line-height:1.7;
}

/* 分页 */
.pagination {
  text-align:center;
  margin:25px 0;
}
.page-numbers {
  display:inline-block;
  padding:7px 13px;
  background:#fff;
  border-radius:6px;
  margin:0 2px;
  color:#333;
}
.page-numbers.current {
  background:#2ecc71;
  color:#fff;
}

/* 侧边栏 */
.widget {
  background:#fff;
  border-radius:12px;
  padding:18px;
  margin-bottom:15px;
  box-shadow:0 1px 3px rgba(0,0,0,0.04);
}
.widget h3 {
  font-size:16px;
  color:#2ecc71;
  margin-bottom:15px;
  padding-bottom:8px;
  border-bottom:1px solid #eee;
}
.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:0; margin:0; padding:0;
}
.widget .thumb {
  width:48px;
  height:48px;
  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;
  color:#333;
}

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

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