/*
Theme Name: SEO9
Version: 1.0
Description: 全新红色主题 + 首页会所推荐
*/
* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}
body {
  font-family:"Microsoft YaHei",sans-serif;
  background:#f8f8f8;
  color:#333;
  line-height:1.8;
}
img {
  max-width:100%;
  height:auto;
  display:block;
}
a {
  text-decoration:none;
  color:#333;
}
a:hover {
  color:#fff;
  background:#c72c41;
}

/* 布局 */
.wrapper {
  max-width:1100px;
  margin:0 auto;
  padding:0 15px;
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}
.main-col {
  flex:1;
  min-width:660px;
}
.side-col {
  width:280px;
}
@media(max-width:992px){
  .main-col,.side-col{width:100%;min-width:100%;}
}

/* 头部 */
.header-bar {
  background:#fff;
  padding:25px 0;
  text-align:center;
  margin-bottom:20px;
}
.brand-name {
  font-size:24px;
  font-weight:bold;
}
.brand-desc {
  color:#777;
  font-size:14px;
  margin-top:5px;
}

/* 红色导航 */
.red-menu {
  background:#c72c41;
  width:100%;
}
.menu-inner {
  max-width:1100px;
  margin:0 auto;
}
.menu-inner ul {
  list-style:none;
  display:flex;
  flex-wrap:wrap;
}
.menu-inner ul li a {
  color:#fff;
  padding:13px 20px;
  display:block;
}
.menu-inner ul li a:hover {
  background:#a81c2f;
}

/* 会所推荐 首页新增 */
.hot-recommend {
  background:#fff;
  padding:20px;
  border-radius:8px;
  margin-bottom:20px;
}
.rec-title {
  font-size:18px;
  margin-bottom:15px;
  border-left:3px solid #c72c41;
  padding-left:10px;
}
.rec-grid {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
}
.rec-item img {
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:4px;
}
@media(max-width:768px){
  .rec-grid{grid-template-columns:repeat(3,1fr);}
}

/* 文章卡片 */
.news-item {
  background:#fff;
  border-radius:8px;
  display:flex;
  overflow:hidden;
  margin-bottom:20px;
}
.news-thumb {
  width:200px;
  height:200px;
  object-fit:cover;
  flex-shrink:0;
}
.news-info {
  padding:20px;
  flex:1;
}
.news-title {
  font-size:18px;
  margin-bottom:10px;
}
.news-summary {
  color:#666;
  font-size:15px;
}
@media(max-width:768px){
  .news-item{flex-direction:column;}
  .news-thumb{width:100%;height:200px;}
}

/* 侧边栏 */
.side-widget {
  background:#fff;
  padding:20px;
  border-radius:8px;
  margin-bottom:20px;
}
.side-head {
  font-size:16px;
  border-left:3px solid #c72c41;
  padding-left:10px;
  margin-bottom:15px;
}
.side-ul {
  list-style:none;
}
.side-ul li {
  padding:6px 0;
  border-bottom:1px dashed #eee;
}

/* 内容页 */
.article-view {
  background:#fff;
  padding:30px;
  border-radius:8px;
}
.article-head {
  font-size:22px;
  margin-bottom:15px;
}
.article-body {
  font-size:16px;
  line-height:2;
}

/* 相关文章 */
.related-post {
  background:#fff;
  padding:20px;
  border-radius:8px;
  margin-top:20px;
}
.related-head {
  margin-bottom:15px;
}
.related-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
}
.related-pic img {
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:4px;
}
.related-pic p {
  font-size:14px;
  margin-top:8px;
}
@media(max-width:768px){
  .related-grid{grid-template-columns:repeat(2,1fr);}
}

/* 底部 */
.footer-red {
  background:#c72c41;
  color:#fff;
  text-align:center;
  padding:25px 0;
  margin-top:30px;
  font-size:14px;
}
.rec-item a {
  display:block;
}
.rec-title-text {
  display:block;
  text-align:center;
  font-size:13px;
  margin-top:6px;
  line-height:1.4;
  color:#333;
}
/* 极简横排分页样式 */
.simple-pagination {
  width: 100%;
  margin: 30px 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.simple-pagination a,
.simple-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #eee;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s;
}
.simple-pagination a:hover {
  border-color: #007bff;
  color: #007bff;
  background: #f5f9ff;
}
.simple-pagination span.current {
  background: #007bff;
  border-color: #007bff;
  color: #fff;
  font-weight: 500;
}