/*
Theme Name: SEO29
Author: Custom
Version: 1.0
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Microsoft YaHei", sans-serif;
  background: #fdf6f8;
  color: #333333;
  line-height: 1.8;
}
a {
  color: #e84393;
  text-decoration: none;
}
a:hover {
  color: #d63384;
}
img {
  max-width: 100%;
  border-radius: 6px;
}

/* 容器 */
.rose-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 布局 */
.rose-flex {
  display: flex;
  gap: 26px;
  margin: 30px 0;
}
@media (max-width: 900px) {
  .rose-flex {
    flex-direction: column;
  }
}

/* 主体 */
.rose-main {
  flex: 1;
}

/* 侧边 */
.rose-side {
  width: 280px;
}
@media (max-width: 900px) {
  .rose-side {
    width: 100%;
  }
}

/* 头部 */
.rose-header {
  background: #e84393;
  padding: 32px 0;
  text-align: center;
}
.rose-header h1 {
  font-size: 26px;
  color: #fff;
}
.rose-header a {
  color: #fff;
}

/* 导航 */
.rose-nav {
  background: #d63384;
}
.rose-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
}
.rose-nav a {
  color: #fff;
  padding: 14px 22px;
  display: inline-block;
}

/* 文章卡片 */
.rose-card {
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  gap: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.rose-thumb {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.rose-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rose-title {
  font-size: 19px;
  margin-bottom: 6px;
}
.rose-meta {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
}
.rose-summary {
  font-size: 15px;
  color: #555;
}

/* 分页 */
.rose-page {
  text-align: center;
  margin: 40px 0;
}
.rose-page a,
.rose-page span {
  display: inline-block;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid #f5e1eb;
  border-radius: 5px;
  margin: 0 3px;
}
.rose-page .current {
  background: #e84393;
  color: #fff;
  border-color: #e84393;
}

/* 侧边栏 */
.rose-widget {
  background: #fff;
  padding: 22px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.rose-widget h3 {
  font-size: 17px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f5e1eb;
  margin-bottom: 15px;
  color: #e84393;
}
.rose-side-item {
  padding: 9px 0;
  border-bottom: 1px dashed #f5e1eb;
  font-size: 14px;
}

/* 内容页 */
.rose-single {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.rose-single h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 28px;
}
.rose-single-content {
  font-size: 16px;
  line-height: 2.1;
}

/* 上下篇 */
.rose-post-nav {
  display: flex;
  justify-content: space-between;
  margin: 35px 0;
}
.rose-post-nav a {
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #f5e1eb;
  border-radius: 6px;
}

/* 相关文章 */
.rose-related {
  margin-top: 40px;
}
.rose-related h3 {
  font-size: 19px;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 4px solid #e84393;
}
.rose-related a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px dashed #f5e1eb;
  font-size: 15px;
}

/* 底部 */
.rose-footer {
  background: #fff;
  text-align: center;
  padding: 32px 0;
  margin-top: 50px;
  border-top: 1px solid #f5e1eb;
  color: #999;
  font-size: 14px;
}