

/* ---------- 通用标题 ---------- */
.section-title {
  text-align: center;
  margin-bottom: 10px;
}
.section-title h3 {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin: 0;
}
.section-title h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: #b8a07b;
}
.more-link {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}
.more-link:hover {
  color: #b8a07b;
}

/* ---------- Hero Banner ---------- */
.hero-banner {
  position: relative;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 0 20px;
}
.hero-overlay span {
  font-size: 35px;
  font-weight: 200;
  letter-spacing: 6px;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-btns a {
  display: inline-block;
  padding: 14px 42px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  background: rgba(0,0,0,0.1);
  backdrop-filter: blur(4px);
}
.hero-btns a.btn-primary {
  background: #fff;
  color: #1a1a1a;
  border: none;
}
.hero-btns a:hover {
  background: #fff;
  color: #1a1a1a;
}
.hero-btns a.btn-primary:hover {
  background: #f5f5f5;
}

/* ---------- 热门标签 & 快速查找（全局白色按钮风格） ---------- */
.tag-hotsearch,
.quick-category {
  padding: 0px 0 0px;
}
.tag-cloud {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.tag-item {
  display: inline-block;
  padding: 10px 28px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #4a4a4a;
  background: #fff;                  /* 白色背景 */
  border: 1px solid #e0e0e0;         /* 浅灰边框 */
  text-decoration: none;
  transition: all 0.25s;
  border-radius: 2px;
}
.tag-item:hover {
  background: #f5f5f5;               /* 极浅灰悬停 */
  border-color: #ccc;
  color: #1a1a1a;
}

/* ---------- 热门模特推荐 ---------- */
.featured-models {
  padding: 20px 0;
}
.model-card-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.model-card {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  border-radius: 2px;
}
.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.model-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.model-card .card-img {
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: #f2f2f2;
}
.model-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.model-card:hover .card-img img {
  transform: scale(1.03);
}
.model-card .card-info {
  padding: 16px 16px 20px;
  text-align: center;
}
.model-card .card-info h4 {
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 6px;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.model-card .card-stats {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 12px;
  line-height: 1.4;
}
.btn-book {
  display: inline-block;
  padding: 6px 22px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #ccc;
  color: #666;
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 2px;
}
.model-card:hover .btn-book {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

/* ---------- 预约流程（左到右） ---------- */
.how-it-works {
  padding: 20px 0;
  background: #fafafa;
}
.steps-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  flex-wrap: nowrap;
  max-width: 900px;
  margin: 0 auto;
}
.step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.step::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 18px;
  font-size: 20px;
  color: #ccc;
  font-weight: 300;
}
.step:last-child::after {
  content: none;
}
.step-icon {
  font-size: 28px;
  color: #b8a07b;
  margin-bottom: 18px;
  font-weight: 200;
  display: inline-block;
}
.step h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
  color: #1a1a1a;
  letter-spacing: 1px;
}
.step p {
  font-size: 15px;
  color: #1a1a1a;
  line-height: 1.7;
  margin: 0;
}

/* ---------- 客户评价（桌面2行3列） ---------- */
.testimonials {
  padding: 20px 0;
}
.testimonial-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  border-radius: 2px;
}
.client-avatar {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
}
.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-item blockquote {
  margin: 0;
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.6;
}
.testimonial-item blockquote p {
  margin: 0 0 8px;
}
.testimonial-item blockquote footer {
  font-size: 12px;
  color: #999;
}
.testimonial-item blockquote footer strong {
  color: #1a1a1a;
  font-weight: 500;
}

/* ---------- 合作品牌（网格版） ---------- */
.partner-brands {
  padding: 20px 0;
  background: #fafafa;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.brand-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-item a {
  display: block;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.brand-item a:hover {
  opacity: 1;
}
.brand-item img {
  max-width: 100%;
  max-height: 50px;
  transition: filter 0.3s;
}
.brand-item a:hover img {
  filter: grayscale(0%);
}

/* ---------- 最新动态 ---------- */
.latest-news {
  padding: 20px 0;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.news-item {
  background: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: transform 0.3s;
  border-radius: 2px;
}
.news-item:hover {
  transform: translateY(-4px);
}
.news-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f2f2f2;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.news-item:hover .news-img img {
  transform: scale(1.02);
}
.news-text {
  padding: 18px 15px;
}
.news-text h4 {
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 8px;
  color: #1a1a1a;
  line-height: 1.5;
}
.news-text time {
  font-size: 12px;
  color: #bbb;
}

/* ---------- 友情链接 ---------- */
.link-box {
  background: #fff;
  padding: 10px 0;
  border-top: 1px solid #f0f0f0;
}
.links-title h3 {
  font-size: 18px;
  font-weight: 400;
  color: #888;
  text-align: center;
}
#links-home {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  padding: 0;
}
#links-home a {
  font-size: 13px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}
#links-home a:hover {
  color: #1a1a1a;
}

/* ========== 响应式布局 ========== */
@media (max-width: 1024px) {
  .model-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .model-card .card-img {
    height: 160px;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-banner {
    height: 400px;
  }
  .hero-overlay h2 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  /* 热门模特推荐：左右两列 */
  .model-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .model-card .card-img {
    height: 150px;
  }
  .model-card .card-info {
    padding: 10px 8px 14px;
  }
  .model-card .card-info h4 {
    font-size: 13px;
  }
  .model-card .card-stats {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .btn-book {
    padding: 4px 16px;
    font-size: 10px;
  }

  /* 预约流程：继续保持横向排列 */
  .steps-container {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5px;
  }
  .step {
    padding: 0 5px;
  }
  .step::after {
    right: -6px;
    top: 12px;
    font-size: 16px;
  }
  .step-icon {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .step h4 {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .step p {
    font-size: 11px;
    line-height: 1.4;
  }

  /* 客户评价：左右两列 */
  .testimonial-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .testimonial-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    gap: 10px;
  }
  .client-avatar {
    margin: 0 auto;
    width: 40px;
    height: 40px;
  }
  .testimonial-item blockquote {
    font-size: 12px;
  }

  /* 合作品牌：两列 */
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* 最新动态：改为两列卡片，风格与热门模特推荐类似 */
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .news-item {
    box-shadow: 0 2px 10px rgba(0,0,0,0.04); /* 增加卡片阴影 */
    border-radius: 2px;
  }
  .news-img {
    height: 140px;              /* 图片高度缩小 */
  }
  .news-text {
    padding: 12px 10px;
  }
  .news-text h4 {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .news-text time {
    font-size: 11px;
  }

  /* Hero */
  .hero-banner {
    height: 200px;
  }
  .hero-overlay h2 {
    font-size: 22px;
    letter-spacing: 3px;
  }
  .hero-btns a {
    padding: 10px 20px;
    font-size: 12px;
  }

  /* 标签字号微调 */
  .tag-item {
    padding: 8px 18px;
    font-size: 13px;
  }

  .section-title h3 {
    font-size: 22px;
  }
}

/* 品牌标题 */
.brand-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}
.brand-title {
  font-size: 12px;
  color: #888;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.brand-item a:hover .brand-title {
  color: #1a1a1a;
}
/* ============================================
   底部样式 (footer.css)
   法律横条 + 三列主Footer + 底部版权
   文字纯黑，简洁清晰，快速链接左对齐
   ============================================ */

.site-footer {
  font-size: 14px;
  line-height: 1.8;
  color: #1a1a1a;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 法律链接横条 */
.footer-legal-bar {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 0;
}
.legal-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.legal-links a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
.legal-links a:hover {
  color: #555;
}
.legal-divider {
  color: #1a1a1a;
  font-size: 12px;
  user-select: none;
}

/* 主Footer三列 */
.footer-main {
  background: #fafafa;
  padding: 20px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.footer-desc {
  color: #1a1a1a;
  margin: 0;
  max-width: 300px;
}
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* 快速链接左对齐 */
.footer-links {
  text-align: left;
  padding-left: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}
.footer-links a:hover {
  color: #555;
}
.footer-contact li {
  margin-bottom: 6px;
  color: #1a1a1a;
}
.footer-hours {
  color: #1a1a1a;
  font-size: 13px;
  margin: 10px 0 0;
}

/* 底部版权行 */
.footer-bottom {
  background: #fafafa;
  border-top: 1px solid #eee;
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #1a1a1a;
}
.footer-copyright a {
  color: #1a1a1a;
  text-decoration: none;
}
.footer-copyright a:hover {
  color: #555;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  color: #1a1a1a;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: #555;
}

/* 返回顶部 */
.backtop {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 999;
}
.bt-box {
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #1a1a1a;
  transition: all 0.3s;
}
.bt-box:hover {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

/* 响应式 */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px 20px;
    text-align: left;
  }
  .footer-col:first-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-col:first-child .footer-desc {
    max-width: 100%;
    margin: 0 auto;
  }
  /* 快速链接在移动端也保持左对齐 */
  .footer-col:nth-child(2) {
    text-align: left;
  }
  .footer-col:nth-child(2) .footer-links {
    text-align: left;
    padding-left: 0;
  }
  .footer-col:nth-child(3) {
    text-align: left;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .legal-links {
    gap: 6px;
  }
  .legal-divider {
    display: none;
  }
  .legal-links a {
    margin: 0 6px;
  }
}
/* ========== 列表页主内容区栏目标题 ========== */
.list-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 0 10px;
  border-bottom: 1px solid #f0f0f0;
}
.list-cate-title {
  font-size: 24px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 1px;
  margin: 0 0 8px;
}
.list-cate-desc {
  font-size: 14px;
  color: #888;
  margin: 0;
}
/* ========== 列表页主内容区栏目标题结束 ========== */
/* 列表页栏目标题区（白色背景卡片） */
.list-header {
  background: #fff;
  padding: 24px 30px;
  margin-bottom: 30px;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  text-align: center;
  border-bottom: none; /* 取消原有下划线，使用卡片代替 */
}
.list-cate-title {
  font-size: 24px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 1px;
  margin: 0 0 8px;
}
.list-cate-desc {
  font-size: 14px;
  color: #888;
  margin: 0;
}
/* 列表页栏目标题区（白色背景卡片）结束 */
@media (max-width: 640px) {
  .list-header {
    padding: 18px 15px;
  }
  .list-cate-title {
    font-size: 20px;
  }
}
/* ========== 侧边栏样式优化 ========== */

/* 侧边栏整体 */
.side .widget {
  background: #fff;
  margin-bottom: 24px;
  padding: 22px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  border-radius: 2px;
}

/* 标题统一 */
.side .widget-title {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

/* 热门文章列表 */
.side-hot-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-hot-posts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed #f0f0f0;
  font-size: 13px;
}
.side-hot-posts li:last-child {
  border-bottom: none;
}
.side-hot-posts li a {
  color: #444;
  text-decoration: none;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 8px;
  transition: color 0.3s;
}
.side-hot-posts li a:hover {
  color: #1a1a1a;
}
.side-hot-posts .hot-num {
  color: #bbb;
  font-size: 11px;
  flex-shrink: 0;
}

/* 模特分类链接 */
.side-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.side-category-links a {
  display: inline-block;
  padding: 5px 14px;
  font-size: 12px;
  color: #555;
  background: #f8f8f8;
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
}
.side-category-links a:hover {
  border-color: #ccc;
  background: #fff;
  color: #1a1a1a;
}

/* 热门标签列表 */
.divTags {
  list-style: none;
  padding: 0;
  margin: 0;
}
.divTags li {
  display: inline-block;
  margin: 0 6px 8px 0;
}
.divTags a {
  display: inline-block;
  padding: 5px 14px;
  font-size: 12px;
  color: #666;
  background: #f8f8f8;
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
}
.divTags a:hover {
  background: #fff;
  border-color: #ccc;
  color: #1a1a1a;
}

/* 移动端微调 */
@media (max-width: 768px) {
  .side {
    margin-top: 30px;
  }
  .side .widget {
    padding: 18px 15px;
  }
}
/* ========== 图库列表页样式 ========== */

/* 筛选栏 */
.model-filter-bar {
  background: #fff;
  padding: 20px 24px;
  margin-bottom: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  border-radius: 2px;
}
.filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.filter-group:last-child {
  margin-bottom: 0;
}
.filter-label {
  font-size: 13px;
  color: #888;
  margin-right: 4px;
  white-space: nowrap;
}
.filter-item {
  display: inline-block;
  padding: 5px 16px;
  font-size: 13px;
  color: #555;
  background: #f8f8f8;
  border: 1px solid transparent;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.25s;
  white-space: nowrap;
}
.filter-item:hover,
.filter-item.active {
  background: #fff;
  border-color: #ccc;
  color: #1a1a1a;
}

/* 栏目标题区（复用文章列表页样式） */
.list-header {
  background: #fff;
  padding: 24px 30px;
  margin-bottom: 30px;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  text-align: center;
}
.list-cate-title {
  font-size: 24px;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 1px;
  margin: 0 0 8px;
}
.list-cate-desc {
  font-size: 14px;
  color: #888;
  margin: 0;
}

/* 模特卡片网格（复用首页 .model-card 样式） */
.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.model-card {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  border-radius: 2px;
}
.model-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.model-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.model-card .card-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f2f2f2;
}
.model-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.model-card:hover .card-img img {
  transform: scale(1.03);
}
.model-card .card-info {
  padding: 16px 16px 20px;
  text-align: center;
}
.model-card .card-info h4 {
  font-size: 15px;
  font-weight: 400;
  margin: 0 0 6px;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  line-height: 1.3;
}
.model-card .card-stats {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 12px;
  line-height: 1.4;
}
.btn-book {
  display: inline-block;
  padding: 6px 22px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #ccc;
  color: #666;
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 2px;
}
.model-card:hover .btn-book {
  border-color: #1a1a1a;
  color: #1a1a1a;
}

/* 分页微调 */
.pagebar {
  margin-top: 40px;
  text-align: center;
}

/* 响应式 */
@media (max-width: 1024px) {
  .model-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .model-card .card-img {
    height: 220px;
  }
}
@media (max-width: 640px) {
  .model-filter-bar {
    padding: 15px;
  }
  .filter-group {
    gap: 6px;
  }
  .filter-item {
    padding: 4px 12px;
    font-size: 12px;
  }
  .model-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .model-card .card-img {
    height: 180px;
  }
  .model-card .card-info {
    padding: 12px 10px 16px;
  }
  .model-card .card-info h4 {
    font-size: 13px;
  }
  .model-card .card-stats {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .btn-book {
    padding: 4px 16px;
    font-size: 10px;
  }
  .list-header {
    padding: 18px 15px;
  }
  .list-cate-title {
    font-size: 20px;
  }
}
/* ========== 内容页样式 ========== */

/* 文章头部（简洁图背景） */
.article-header {
  width: 100%;
  height: 200px;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 30px;
}
.article-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
}

/* 文章主标题 */
.article-title {
  font-size: 28px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 20px 0 12px;
  text-align: center;
}
.article-meta {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.article-meta i {
  margin-right: 4px;
}

/* 摘要（描述） */
.article-desc {
  background: #fafafa;
  padding: 15px 20px;
  margin-bottom: 25px;
  border-left: 2px solid #ddd;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}
.article-desc p {
  margin: 0;
}

/* 正文 */
.article-content {
  font-size: 15px;
  line-height: 1.9;
  color: #1a1a1a;
  word-wrap: break-word;
}
.article-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 15px auto;
}

/* 标签与分享 */
.article-footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.post-tags a {
  display: inline-block;
  padding: 4px 12px;
  margin-right: 8px;
  font-size: 12px;
  background: #f8f8f8;
  color: #666;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s;
}
.post-tags a:hover {
  background: #e0e0e0;
  color: #1a1a1a;
}
.article-share {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #888;
}
.share-icon {
  color: #888;
  text-decoration: none;
  transition: color 0.3s;
}
.share-icon:hover {
  color: #1a1a1a;
}

/* 版权声明 */
.article-copyright {
  margin-top: 20px;
  padding: 15px;
  background: #fafafa;
  font-size: 13px;
  color: #888;
  line-height: 1.6;
  border-radius: 2px;
}

/* 上下篇导航 */
.entry-next-prev {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin: 30px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
}
.entry-next-prev a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}
.entry-next-prev a:hover {
  color: #1a1a1a;
}
.u-back-list {
  text-align: center;
  flex: 1;
}

/* 相关推荐卡片网格 */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.related-card {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s;
}
.related-card:hover {
  transform: translateY(-3px);
}
.related-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.related-img {
  width: 100%;
  height: 140px;
  overflow: hidden;
  background: #f2f2f2;
}
.related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.related-card:hover .related-img img {
  transform: scale(1.03);
}
.related-text {
  padding: 12px 15px;
}
.related-text h4 {
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0 0 8px;
}
.related-text time {
  font-size: 12px;
  color: #bbb;
}

/* 评论区微调 */
#comments {
  background: #fff;
  padding: 25px;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  margin-top: 30px;
}
.comt-area {
  width: 100%;
  background: #fafafa;
  border: 1px solid #eee;
  padding: 10px;
}
.button {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 8px 25px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}
.button:hover {
  background: #555;
}

/* 响应式 */
@media (max-width: 768px) {
  .article-header {
    height: 150px;
  }
  .article-title {
    font-size: 22px;
  }
  .article-meta {
    gap: 10px;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .related-img {
    height: 120px;
  }
  .entry-next-prev {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}
/* ========== 单页内容样式 ========== */

/* 单页标题 */
.page-single-title {
  font-size: 30px;
  font-weight: 400;
  color: #1a1a1a;
  text-align: center;
  margin: 30px 0 40px;
  letter-spacing: 1px;
}

/* 正文区域 */
.page-single-content {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  font-size: 15px;
  line-height: 1.9;
  color: #1a1a1a;
  word-wrap: break-word;
}
.page-single-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 15px auto;
}
.page-single-content p {
  margin-bottom: 20px;
}
.page-single-content h2,
.page-single-content h3,
.page-single-content h4 {
  color: #1a1a1a;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 15px;
}
.page-single-content ul,
.page-single-content ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
.page-single-content li {
  margin-bottom: 8px;
}

/* 响应式 */
@media (max-width: 640px) {
  .page-single-title {
    font-size: 24px;
    margin: 20px 0 25px;
  }
  .page-single-content {
    font-size: 14px;
    line-height: 1.8;
    padding: 0 15px;
  }
}
/* ========== 首页新增模块样式 ========== */

/* --- 顶部联系条 --- */
.top-contact-bar {
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  padding: 14px 0;
  text-align: center;
}
.top-contact-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: #555;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-contact-inner a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}
.top-contact-inner a:hover {
  color: #1a1a1a;
}
.contact-divider {
  color: #ddd;
  user-select: none;
}
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #888;
}

/* --- VIP会员引导卡片 --- */
.vip-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  padding: 32px 30px;
  margin: 10px auto;      /* 与上下模块统一 60px 间距 */
  /* 不再设置 max-width，让其占满容器宽度 */
}
.vip-cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.vip-cta-icon {
  font-size: 36px;
}
.vip-cta-text h4 {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 6px;
}
.vip-cta-text p {
  font-size: 13px;
  color: #888;
  margin: 0;
}
.vip-cta-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.vip-cta-tag {
  display: inline-block;
  padding: 4px 14px;
  font-size: 12px;
  color: #555;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
}
.vip-cta-btn {
  display: inline-block;
  padding: 10px 26px;
  font-size: 13px;
  letter-spacing: 1px;
  color: #b8a07b;
  border: 1px solid #b8a07b;
  background: transparent;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
  white-space: nowrap;
}
.vip-cta-btn:hover {
  background: #b8a07b;
  color: #fff;
}

/* --- 数据一览 --- */
.data-numbers {
  padding: 20px 0;
  background: #fafafa;
}
.data-numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.data-num-item {
  padding: 20px;
}
.data-num-value {
  font-size: 36px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.data-num-label {
  font-size: 16px;
  color: #1a1a1a;
}

/* --- 底部CTA --- */
.bottom-cta {
  padding: 20px 20px;
  text-align: center;
  background: #fafafa;
}
.bottom-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.bottom-cta-inner h3 {
  font-size: 20px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.bottom-cta-inner p {
  font-size: 14px;
  color: #888;
  margin-bottom: 24px;
}
.bottom-cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-wechat-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  background: #b8a07b;
  color: #fff;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s;
}
.btn-wechat-cta:hover {
  background: #a08a65;
}
.btn-phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  background: #fff;
  color: #1a1a1a;
  text-decoration: none;
  border: 1px solid #ccc;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-phone-cta:hover {
  border-color: #1a1a1a;
}

/* 移动端微调 */
@media (max-width: 640px) {
  .vip-cta-card {
    flex-direction: column;
    text-align: center;
  }
  .vip-cta-left {
    flex-direction: column;
    text-align: center;
  }
  .vip-cta-tags {
    justify-content: center;
  }
  .data-numbers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .data-num-value {
    font-size: 28px;
  }
  .data-num-label {
    font-size: 11px;
  }
  .top-contact-inner {
    gap: 10px;
    font-size: 12px;
  }
  .contact-divider {
    display: none;
  }
}
/* ========== 移动端菜单右侧抽屉式 ========== */
@media (max-width: 992px) {
  .mobile_nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 75%;
    max-width: 320px;
    height: auto;
    max-height: 80vh;
    background: #fff;
    z-index: 100;
    padding: 20px;
    border-radius: 0 0 0 12px;
    box-shadow: -4px 4px 20px rgba(0,0,0,0.15);
    overflow-y: auto;
  }
}
/* ========== 移动端底部悬浮CTA栏 V2（深色加强版） ========== */
.mobile-float-bar-v2 {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1a1f2e;
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  padding: 8px 0 env(safe-area-inset-bottom, 8px);
}
.float-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 4px;
}
.float-item-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #a0aec0;
  padding: 4px 6px;
  min-width: 52px;
  transition: color 0.2s;
}
.float-item-v2:hover {
  color: #fff;
}
.float-item-primary {
  color: #fff;
}
.float-item-primary .float-icon-v2 {
  background: #2d7dfc;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-top: -4px;
  box-shadow: 0 4px 14px rgba(45,125,252,0.4);
}
.float-icon-v2 {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.float-item-v2:hover .float-icon-v2 {
  background: rgba(255,255,255,0.15);
}
.float-item-primary:hover .float-icon-v2 {
  background: #1a5bbf;
}
.float-label-v2 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* 弹窗遮罩 */
.float-modal-mask {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 10000;
}
.float-modal-box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px 22px;
  text-align: center;
  max-width: 320px;
  width: 85%;
  z-index: 10001;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.float-modal-close {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 22px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}
.float-modal-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 14px;
}
.float-modal-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}
.float-modal-id {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 10px;
}
.float-modal-tip {
  font-size: 13px;
  color: #999;
  margin-bottom: 14px;
}
.float-modal-copy {
  display: inline-block;
  padding: 10px 24px;
  background: #2d7dfc;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.float-modal-copy:hover {
  background: #1a5bbf;
}
.float-modal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-modal-link {
  display: block;
  padding: 12px 16px;
  background: #f5f5f5;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.2s;
}
.float-modal-link:hover {
  background: #e8e8e8;
}

/* 移动端显示 */
@media (max-width: 768px) {
  .mobile-float-bar-v2 {
    display: block;
  }
  body {
    padding-bottom: 80px;
  }
  .backtop {
    bottom: 90px;
  }
}