/* ============================================
   首页 - 中式古典风格 (独秀峰·王城景区)
   仅在 body.homepage 下生效
   ============================================ */

body.homepage {
  overflow-x: hidden;
  max-width: 100%;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(197, 165, 90, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(139, 37, 0, 0.02) 0%, transparent 50%);
  background-attachment: fixed;
}

/* ---- 容器 ---- */
body.homepage .container {
  max-width: 1600px;
  margin: 0 auto;
  /* padding: 0 24px; */
}

/* ============================================
   头部导航 (非透明固定)
   ============================================ */
body.homepage .header-wrap {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  height: 68px;
  transition: transform 0.35s ease;
  max-width: 100vw;
}

body.homepage .header-wrap.header-hidden {
  transform: translateY(-100%);
}

body.homepage .header {
  width: 100%;
  margin: 0 auto;
  /* padding: 0 24px; */
  height: 100%;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  justify-content: center;
}

body.homepage .header .logo {
  margin: 0;
}

body.homepage .header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================
   Hero 全屏轮播
   ============================================ */
body.homepage .hero-banner {
  position: relative;
  width: 100%;
  margin-top: 68px;
  height: calc(100vw * 800 / 1920);
  overflow: hidden;
}

body.homepage .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  filter: blur(10px);
  pointer-events: none;
  transition: opacity 1.2s ease, transform 1.2s ease, filter 1.2s ease;
  will-change: opacity, transform, filter;
}

body.homepage .hero-slide.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  pointer-events: auto;
  cursor: pointer;
}

body.homepage .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

body.homepage .hero-title {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.6;
}

body.homepage .hero-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

body.homepage .hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

body.homepage .hero-dot.active {
  background: #fff;
  width: 24px;
}

/* ============================================
   通用 Section
   ============================================ */
body.homepage .home-section {
  padding: 30px 0;
  position: relative;
}

body.homepage .home-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--primary), var(--gold), transparent);
  opacity: 0.4;
}

body.homepage .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

body.homepage .section-header::after {
  content: "◆";
  display: block;
  font-size: 8px;
  color: var(--gold);
  letter-spacing: 16px;
  margin-top: 8px;
  opacity: 0.5;
}

body.homepage .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 500;
  position: relative;
}

body.homepage .section-subtitle::before,
body.homepage .section-subtitle::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  vertical-align: middle;
}

body.homepage .section-subtitle::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

body.homepage .section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 4px;
  margin-bottom: 16px;
}

body.homepage .section-title::before {
  content: "\300C";
  color: var(--primary);
  font-size: 0.6em;
  vertical-align: middle;
  margin-right: 8px;
  opacity: 0.5;
}

body.homepage .section-title::after {
  content: "\300D";
  color: var(--primary);
  font-size: 0.6em;
  vertical-align: middle;
  margin-left: 8px;
  opacity: 0.5;
}

body.homepage .section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   快捷信息入口（双栏中国风）
   ============================================ */
body.homepage .home-info-entry {
  margin: 20px 0;
  padding: 0;
}

body.homepage .home-info-entry::before {
  display: none;
}

body.homepage .home-info-entry .container {
  padding: 0 !important;
  max-width: 1600px;
}

body.homepage .info-entry-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-height: 400px;
}

/* 左侧资讯区 - 朱红背景 */
body.homepage .info-news {
  background: url('https://img.dpm.org.cn/static/themes/image/home_block1_news_bg.jpg') repeat var(--primary);
  padding: 28px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

body.homepage .info-news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

body.homepage .info-news-title {
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 6px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

body.homepage .title-decor-left,
body.homepage .title-decor-right {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

body.homepage .info-news-more {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 1px;
}

body.homepage .info-news-more:hover {
  color: var(--gold-light);
}

body.homepage .info-news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.homepage .info-news-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}

body.homepage .info-news-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

body.homepage .info-news-tag {
  background: transparent;
  padding: 0;
  font-size: 12px;
  flex-shrink: 0;
  letter-spacing: 1px;
  color: var(--gold-light);
  padding: 1px 6px;
}

body.homepage .info-news-tag-new {
  background: var(--gold);
  color: var(--ink);
}

body.homepage .info-news-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.homepage .info-news-link:hover {
  color: var(--gold-light);
}

/* 右侧服务信息 */
body.homepage .info-service {
  background: url('https://img.dpm.org.cn/static/themes/image/png6.png') repeat var(--primary);
  /* background: #fff; */
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.homepage .info-service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

body.homepage .info-date {
  font-size: 14px;
  color: white;
  letter-spacing: 1px;
}

body.homepage .info-status {
  font-size: 14px;
  color: white;
  font-weight: 500;
}

body.homepage .info-service-notice {
  font-size: 13px;
  color: white;
  line-height: 1.8;
}

body.homepage .info-service-notice p {
  margin: 0;
}

body.homepage .info-service-time {
  display: flex;
  justify-content: space-between;
  padding: 16px 16px;
}

body.homepage .time-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

body.homepage .time-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
}

body.homepage .time-value {
  font-size: 38px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

body.homepage .info-ticket-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: background 0.3s;
}

body.homepage .info-ticket-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

body.homepage .info-service-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 8px;
}

body.homepage .phone-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
}

body.homepage .phone-num {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
}

body.homepage .phone-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

body.homepage .info-service-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

body.homepage .service-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 1px;
  transition: color 0.3s;
}

body.homepage .service-link:hover {
  color: #fff;
}

body.homepage .link-icon {
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

body.homepage .service-custom-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 右侧应用设置向导 */
body.homepage .info-wizard {
  background: #fff;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

body.homepage .wizard-banner {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}

body.homepage .wizard-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

body.homepage .wizard-banner h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
  position: relative;
  z-index: 1;
}

body.homepage .wizard-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
  position: relative;
  z-index: 1;
}

body.homepage .wizard-steps {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.homepage .wizard-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

body.homepage .wizard-step:hover {
  border-color: #e9d5ff;
  background: #faf5ff;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08);
}

body.homepage .step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ede9fe, #f3e8ff);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #7c3aed;
  flex-shrink: 0;
}

body.homepage .step-content {
  flex: 1;
  min-width: 0;
}

body.homepage .step-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px;
}

body.homepage .step-content p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

body.homepage .step-arrow {
  color: #ccc;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

body.homepage .wizard-step:hover .step-arrow {
  transform: translateX(4px);
  color: #7c3aed;
}

body.homepage .wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px 20px;
}

body.homepage .btn-skip {
  padding: 9px 24px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #666;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

body.homepage .btn-skip:hover {
  border-color: #999;
  color: #333;
}

body.homepage .btn-next {
  padding: 9px 32px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

body.homepage .btn-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
}

body.homepage .wizard-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-bottom: 24px;
}

body.homepage .indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  transition: all 0.3s;
}

body.homepage .indicator-dot.active {
  background: #7c3aed;
  width: 24px;
  border-radius: 4px;
}

/* 响应式 */
@media (max-width: 992px) {
  body.homepage .info-entry-wrapper {
    grid-template-columns: 1fr;
  }

  body.homepage .info-news,
  body.homepage .info-service {
    padding: 24px;
  }

  body.homepage .info-service-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  body.homepage .wizard-banner {
    padding: 22px 20px;
  }

  body.homepage .wizard-banner h3 {
    font-size: 18px;
  }

  body.homepage .wizard-steps {
    padding: 18px 16px;
    gap: 12px;
  }

  body.homepage .wizard-step {
    padding: 14px 14px;
    gap: 12px;
  }

  body.homepage .step-number {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  body.homepage .wizard-actions {
    flex-direction: column;
    gap: 10px;
    padding: 0 16px 16px;
  }

  body.homepage .btn-skip,
  body.homepage .btn-next {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   关于景区
   ============================================ */
body.homepage .home-about {
  background: var(--paper-light);
  position: relative;
}

body.homepage .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

body.homepage .about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow);
}

body.homepage .about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(197, 165, 90, 0.3);
  border-radius: 8px;
  z-index: 1;
  pointer-events: none;
}

body.homepage .about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

body.homepage .about-image::after {
  content: "靖江王府";
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 2px;
  color: #fff;
  background: rgba(44, 24, 16, 0.6);
  padding: 6px 16px;
  border-radius: 4px;
  z-index: 2;
}

body.homepage .about-content h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

body.homepage .about-content p {
  font-size: 15px;
  line-height: 2;
  color: var(--text);
  margin-bottom: 16px;
  text-indent: 2em;
}

body.homepage .about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(139, 37, 0, 0.04), rgba(197, 165, 90, 0.06));
  border: 1px solid rgba(197, 165, 90, 0.2);
  border-radius: 8px;
}

body.homepage .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

body.homepage .stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
}

body.homepage .stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

/* ============================================
   王府甄选
   ============================================ */
body.homepage .home-picks {
  background: #fff;
  padding: 80px 0;
}

body.homepage .picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

body.homepage .pick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

body.homepage .pick-card:hover {
  transform: none;
  box-shadow: none;
}

body.homepage .pick-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

body.homepage .pick-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.homepage .pick-body {
  flex: 1;
  min-width: 0;
}

body.homepage .pick-body h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 1px;
}

body.homepage .pick-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}

body.homepage .pick-link {
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-block;
}

body.homepage .pick-link:hover {
  color: var(--primary-light);
}

@media (max-width: 992px) {
  body.homepage .picks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}

@media (max-width: 600px) {
  body.homepage .picks-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.homepage .pick-icon {
    width: 56px;
    height: 56px;
  }
}

/* ============================================
   文化体验（双栏图文 - 博物馆风格）
   ============================================ */
body.homepage .home-culture {
  background: var(--paper-light);
  padding: 30px 0;
}

body.homepage .home-culture .section-header {
  margin-bottom: 40px;
}

/* 两栏并排 */
body.homepage .culture-grid {
  display: flex;
  width: 100%;
}

/* 单个卡片 - 左右结构 */
body.homepage .culture-card {
  flex: 1;
  display: flex;
  min-height: 420px;
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
}

body.homepage .culture-card:hover {
  filter: brightness(1.05);
}

/* 左侧图片区域 */
body.homepage .culture-card-img {
  flex: 1;
  overflow: hidden;
  position: relative;
}

body.homepage .culture-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}

body.homepage .culture-card:hover .culture-card-img img {
  transform: scale(1.05);
}

body.homepage .culture-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4c5a9 0%, #b8a88a 100%);
  color: rgba(139, 37, 0, 0.3);
  font-size: 14px;
  letter-spacing: 2px;
}

/* 右侧彩色竖条 */
body.homepage .culture-card-bar {
  width: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

body.homepage .culture-card-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
}

/* 竖条内容 */
body.homepage .culture-bar-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
  height: 100%;
  justify-content: center;
}

/* 竖排标题 */
body.homepage .culture-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "STKaiti", "KaiTi", "楷体", var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 12px;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* 竖排描述 */
body.homepage .culture-desc {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "STSong", "SimSun", "宋体", serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  letter-spacing: 3px;
  margin: 0;
  max-height: 200px;
}

/* 落款 */
body.homepage .culture-author {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "STKaiti", "KaiTi", "楷体", var(--font-serif);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 4px;
  margin-top: auto;
}

/* 响应式 */
@media (max-width: 992px) {
  body.homepage .culture-grid {
    flex-direction: column;
  }

  body.homepage .culture-card {
    min-height: 300px;
  }

  body.homepage .culture-card-bar {
    width: 80px;
  }

  body.homepage .culture-title {
    font-size: 24px;
    letter-spacing: 10px;
  }

  body.homepage .culture-desc {
    font-size: 13px;
    max-height: 160px;
  }
}

@media (max-width: 600px) {
  body.homepage .home-culture {
    padding: 60px 0 0;
  }

  body.homepage .culture-card {
    min-height: 250px;
  }

  body.homepage .culture-card-bar {
    width: 65px;
  }

  body.homepage .culture-title {
    font-size: 20px;
    letter-spacing: 8px;
  }

  body.homepage .culture-desc {
    font-size: 12px;
    max-height: 130px;
  }

  body.homepage .culture-bar-content {
    gap: 14px;
    padding: 20px 0;
  }
}

/* ============================================
   景区景点 (6张卡片)
   ============================================ */
body.homepage .home-attractions {
  background: var(--paper);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(197, 165, 90, 0.04) 40px, rgba(197, 165, 90, 0.04) 41px);
}

body.homepage .attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.homepage .attraction-card {
  position: relative;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

body.homepage .attraction-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

body.homepage .attraction-card:hover .attraction-card-bg {
  transform: scale(1.08);
}

body.homepage .attraction-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.8) 0%, rgba(44, 24, 16, 0.1) 60%, transparent 100%);
  z-index: 1;
  transition: background 0.4s;
}

body.homepage .attraction-card:hover .attraction-card-overlay {
  background: linear-gradient(to top, rgba(139, 37, 0, 0.85) 0%, rgba(44, 24, 16, 0.2) 60%, rgba(44, 24, 16, 0.1) 100%);
}

body.homepage .attraction-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  z-index: 2;
}

body.homepage .attraction-card-content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

body.homepage .attraction-card-link {
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  display: inline-block;
}

body.homepage .attraction-card:hover .attraction-card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   景区动态 (新闻)
   ============================================ */
body.homepage .home-news {
  background: var(--paper-light);
}

body.homepage .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

body.homepage .news-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
  transition: all 0.3s;
  border: 1px solid var(--border);
}

body.homepage .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
}

body.homepage .news-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

body.homepage .news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

body.homepage .news-card:hover .news-card-img img {
  transform: scale(1.05);
}

body.homepage .news-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gold-light), var(--paper));
}

body.homepage .news-card-body {
  padding: 20px;
}

body.homepage .news-card-body time {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

body.homepage .news-card-body h3 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 8px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.homepage .news-card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.homepage .news-more {
  text-align: center;
}

body.homepage .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 32px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.3s;
  background: transparent;
  text-decoration: none;
}

body.homepage .btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================
   精彩图集
   ============================================ */
body.homepage .home-gallery {
  background: var(--paper);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(197, 165, 90, 0.04) 40px, rgba(197, 165, 90, 0.04) 41px);
}

body.homepage .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}

body.homepage .gallery-grid .gallery-item:first-child {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

body.homepage .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  display: block;
  background: var(--gold-light);
}

body.homepage .gallery-item-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

body.homepage .gallery-item:hover .gallery-item-img {
  transform: scale(1.08);
}

body.homepage .gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

body.homepage .gallery-item-overlay span {
  font-family: var(--font-serif);
  font-size: 14px;
  color: #fff;
  letter-spacing: 2px;
}

/* ============================================
   更多资讯 (栏目列表)
   ============================================ */
body.homepage .home-categories {
  background: var(--paper-light);
}

body.homepage .categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

body.homepage .category-block {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
  transition: box-shadow 0.3s;
}

body.homepage .category-block:hover {
  box-shadow: 0 8px 30px var(--shadow);
}

body.homepage .category-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold-light);
  margin-bottom: 20px;
}

body.homepage .category-block-header h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 2px;
}

body.homepage .category-more {
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 1px;
}

body.homepage .category-more:hover {
  color: var(--primary-light);
}

body.homepage .category-block-featured {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

body.homepage .featured-thumb {
  width: 120px;
  height: 80px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  background-color: var(--gold-light);
}

body.homepage .featured-info h4 a {
  font-size: 15px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.homepage .featured-info h4 a:hover {
  color: var(--primary);
}

body.homepage .featured-info p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.homepage .category-block-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(200, 180, 160, 0.15);
}

body.homepage .category-block-list li:last-child {
  border-bottom: none;
}

body.homepage .category-block-list li a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.homepage .category-block-list li a:hover {
  color: var(--primary);
}

body.homepage .category-block-list li time {
  font-size: 12px;
  color: var(--text-secondary);
  flex-shrink: 0;
  margin-left: 12px;
}

/* ============================================
   Footer
   ============================================ */
body.homepage .footer {
  background: var(--ink) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  padding: 20px 0 !important;
}

body.homepage .footer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  letter-spacing: 1px;
}

body.homepage .footer a {
  color: var(--gold-light);
}

/* ============================================
   响应式
   ============================================ */
@media (max-width: 992px) {
  body.homepage .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.homepage .about-image img {
    height: 300px;
  }

  body.homepage .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.homepage .news-grid {
    grid-template-columns: 1fr;
  }

  body.homepage .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  body.homepage .gallery-grid .gallery-item:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  body.homepage .categories-grid {
    grid-template-columns: 1fr;
  }

  body.homepage .home-section {
    padding: 60px 0;
  }

  body.homepage .about-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
  }

  body.homepage .stat-num {
    font-size: 24px;
  }

  body.homepage .section-header {
    margin-bottom: 40px;
  }

  /* 移动端容器优化 */
  body.homepage .container {
    padding: 0 16px;
    box-sizing: border-box;
    overflow: hidden;
  }
}

@media (max-width: 600px) {
  body.homepage .attractions-grid {
    grid-template-columns: 1fr;
  }

  body.homepage .attraction-card {
    height: 240px;
  }

  body.homepage .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  body.homepage .banner-title {
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    font-size: 12px;
  }

  body.homepage .swiper-pagination {
    bottom: 14px !important;
  }

  body.homepage .about-image img {
    height: 220px;
  }

  body.homepage .about-stats {
    gap: 12px;
  }

  /* 更多资讯栏目移动端优化 */
  body.homepage .category-block {
    padding: 16px;
    box-sizing: border-box;
    overflow: hidden;
  }

  body.homepage .category-block-featured {
    flex-direction: column;
    gap: 12px;
  }

  body.homepage .featured-thumb {
    width: 100%;
    height: 160px;
  }

  body.homepage .category-block-header {
    padding-bottom: 12px;
    margin-bottom: 16px;
  }

  body.homepage .category-block-header h3 {
    font-size: 16px;
  }

  body.homepage .category-block-list li {
    padding: 6px 0;
  }

  body.homepage .category-block-list li a {
    font-size: 13px;
  }
}


