﻿/* ================================================================
   🎨 全局配色变量
   修改这里即可一键换色
================================================================ */
:root {
  --morandi-green:      #8da191;   /* 主色：莫兰迪绿 */
  --morandi-green-dark: #6e8272;   /* 主色深版：hover状态 */
  --bg-base:            #fcfcfc;   /* 页面主背景 */
  --bg-alt:             #f7f7f7;   /* 区块间隔背景 */
  --bg-card:            #ffffff;   /* 卡片背景 */
  --black:              #1a1a1a;   /* 主文字色 */
  --white:              #ffffff;
  --subtle-gray:        #ececec;   /* 边框/分割线 */
  --text-muted:         #888;      /* 次要文字 */
}

/* ================================================================
   📐 基础重置
================================================================ */
html { font-size: 18px; scroll-behavior: smooth; }
body {
  background-color: var(--bg-base);
  color: var(--black);
  font-family: 'Noto Serif SC', serif;
  line-height: 1.8;
  margin: 0;
  cursor: none; /* 自定义光标 */
}
a       { text-decoration: none; color: inherit; transition: 0.3s; cursor: none; }
button  { cursor: none; }

/* ================================================================
   ✨ 动效① — 浮萍光标尾迹
   光标中心点 + 缓动外圈 + 7个尾迹粒子
================================================================ */
#cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--morandi-green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: multiply;
}
#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 2px solid rgba(141, 161, 145, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
.cursor-trail {
  position: fixed;
  border-radius: 50%;
  background: var(--morandi-green);
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%);
}
/* 悬停可交互元素时光标放大 */
body:has(a:hover) #cursor-dot,
body:has(button:hover) #cursor-dot {
  width: 14px; height: 14px;
  background: var(--morandi-green-dark);
}

/* ================================================================
   ✨ 动效⑥ — 竹帘开幕
   首次加载时全屏展示，向两侧拉开
================================================================ */
#bamboo-curtain {
  position: fixed; inset: 0;
  z-index: 99990;
  display: flex;
  pointer-events: none;
  overflow: hidden;
}
.curtain-half {
  flex: 1; display: flex; overflow: hidden;
  transition: transform 1.1s cubic-bezier(0.77, 0, 0.175, 1);
}
#bamboo-curtain.open .curtain-half.left  { transform: translateX(-100%); }
#bamboo-curtain.open .curtain-half.right { transform: translateX(100%); }
.curtain-strip {
  flex: 1;
  background: linear-gradient(180deg,
    #2a3830 0%, #1e2820 15%, #2d3d2a 30%,
    #1e2820 45%, #2a3830 60%, #1e2820 75%,
    #2d3d2a 90%, #1e2820 100%);
  border-right: 1px solid rgba(141,161,145,0.12);
  position: relative; overflow: hidden;
}
/* 竹节横纹 */
.curtain-strip::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg,
    transparent 0px, transparent 58px,
    rgba(141,161,145,0.18) 58px, rgba(141,161,145,0.22) 62px,
    transparent 62px, transparent 120px);
}
/* 竹节边缘阴影 */
.curtain-strip::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(0,0,0,0.25) 0%, rgba(255,255,255,0.04) 40%, rgba(0,0,0,0.15) 100%);
}
/* 开幕中央Logo */
#curtain-logo {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99991; text-align: center;
  pointer-events: none;
  transition: opacity 0.4s ease 0.7s;
}
#curtain-logo.fade { opacity: 0; }
#curtain-logo .cl-text {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 4rem; color: var(--white);
  letter-spacing: 0.3em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  display: block;
}
#curtain-logo .cl-sub {
  font-size: 0.65rem; letter-spacing: 0.4em;
  color: rgba(255,255,255,0.45); font-weight: 300;
  margin-top: 8px; display: block;
}

/* ================================================================
   🔝 顶部导航
================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--subtle-gray);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

/* 上栏：Logo + 搜索 + 社交链接 */
.top-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 6%;
  background-color: var(--morandi-green);
  color: var(--white);
  position: relative; overflow: hidden;
  /* ✨ 动效③：收缩过渡 */
  transition: padding 0.4s cubic-bezier(0.4,0,0.2,1), background-color 0.4s ease;
}
/* ✨ 动效③：墨迹晕染遮罩 */
.top-row::after {
  content: ''; position: absolute;
  top: 50%; left: -10%;
  width: 0; height: 0;
  background: radial-gradient(ellipse, rgba(90,110,95,0.6) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: width 0.8s cubic-bezier(0.2,0.8,0.3,1), height 0.8s cubic-bezier(0.2,0.8,0.3,1);
}
.site-header.scrolled .top-row {
  padding-top: 10px; padding-bottom: 10px;
  background-color: var(--morandi-green-dark);
}
.site-header.scrolled .top-row::after { width: 200%; height: 400%; }

.logo-group { display: flex; align-items: center; gap: 16px; position: relative; z-index: 1; }
.logo-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  flex-shrink: 0;
  transition: transform 0.4s ease;
}
.site-header.scrolled .logo-circle { transform: scale(0.88); }
.logo-text {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 2rem; letter-spacing: 3px; line-height: 1;
  position: relative; z-index: 1;
}

.social-links { display: flex; gap: 20px; position: relative; z-index: 1; }
.social-links a {
  color: var(--white); font-size: 0.78rem;
  opacity: 0.85; letter-spacing: 1px;
  font-family: 'Noto Serif SC', serif; font-weight: 300;
}
.social-links a:hover { opacity: 1; }

.search-wrap {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px; padding: 6px 16px;
  transition: background 0.2s; position: relative; z-index: 1;
}
.search-wrap:focus-within { background: rgba(255,255,255,0.25); }
.search-icon { opacity: 0.7; flex-shrink: 0; }
.search-wrap input {
  background: transparent; border: none; outline: none;
  color: var(--white); font-size: 0.75rem;
  font-family: 'Noto Serif SC', serif;
  width: 150px; letter-spacing: 0.04em;
}
.search-wrap input::placeholder { color: rgba(255,255,255,0.6); }

/* 搜索结果面板 */
.search-results-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--subtle-gray);
  border-radius: 8px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 8px;
  padding: 0;
  display: none;
}
.results-container {
  padding: 12px 0;
}
.results-container h4 {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--morandi-green);
  padding: 8px 16px 4px;
  margin: 0;
  letter-spacing: 0.08em;
}
.results-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.results-container li {
  padding: 0;
  margin: 0;
}
.results-container a {
  display: block;
  padding: 8px 16px;
  color: #333;
  font-size: 0.82rem;
  transition: background 0.2s;
  text-decoration: none;
}
.results-container a:hover {
  background: var(--bg-alt);
  color: var(--morandi-green);
}

/* \u4e0b\u683a\uff1a\u5bfc\u822a\u94fe\u63a5 */
.nav-row { display: flex; justify-content: center; padding: 0; }
.nav-links { display: flex; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: 14px 22px;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.05em; color: #555;
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 22px; right: 22px;
  height: 2px; background: var(--morandi-green);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--morandi-green); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

/* ================================================================
   🌿 英雄区 — 统一背景，slide 嵌入右侧，渐变融合
================================================================ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  /* 统一背景图铺满整个 hero */
  background: url('../pics/hero-main-bg.webp') center / cover no-repeat;
  background-color: #1e2820;
  overflow: hidden;
}
/* 左侧渐变遮罩：让文字可读，向右渐淡融入背景 */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,15,10,0.85) 0%,
    rgba(8,15,10,0.65) 35%,
    rgba(8,15,10,0.20) 58%,
    rgba(8,15,10,0.00) 100%
  );
  z-index: 1; pointer-events: none;
}
.hero-intro {
  display: flex; flex-direction: column; justify-content: center;
  padding: 52px 6% 52px 18%;
  position: relative; z-index: 2;
  background: none;
}
.hero-label {
  font-size: 0.8rem; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.5); font-weight: 300;
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.hero-label::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: rgba(255,255,255,0.4);
}

/* ✨ 动效④ — 标题逐字墨迹渲染 */
.welcome-title {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  line-height: 1.15; color: var(--white);
  margin: 0 0 10px; letter-spacing: 0.1em;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.welcome-title .char {
  display: inline-block;
  opacity: 0; filter: blur(12px); transform: translateY(6px);
  animation: inkReveal 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes inkReveal {
  0%   { opacity: 0; filter: blur(12px); transform: translateY(6px); }
  40%  { opacity: 0.7; filter: blur(3px); transform: translateY(1px); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.hero-sub {
  font-size: 0.8rem; letter-spacing: 0.32em;
  color: rgba(255,255,255,0.4); font-weight: 300; margin-bottom: 22px;
}
.hero-divider { width: 32px; height: 1px; background: rgba(255,255,255,0.25); margin: 0 0 22px; }
.hero-desc {
  font-size: 0.9rem; color: rgba(255,255,255,0.65); font-weight: 300;
  line-height: 1.95; max-width: 360px; margin-bottom: 28px;
}

/* 英雄区按钮组 */
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-pill {
  padding: 9px 24px; border-radius: 999px; font-size: 0.75rem;
  font-family: 'Noto Serif SC', serif; letter-spacing: 0.1em;
  cursor: none; transition: 0.25s; display: inline-flex;
  align-items: center; gap: 6px; white-space: nowrap;
}
.btn-pill-solid {
  background: var(--morandi-green); color: var(--white);
  border: 1.5px solid var(--morandi-green);
}
.btn-pill-solid:hover { background: var(--morandi-green-dark); border-color: var(--morandi-green-dark); }
.btn-pill-outline {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-pill-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.75); }
/* 纯文字链接按钮 */
.btn-text-link {
  color: rgba(255,255,255,0.55); font-size: 0.72rem;
  letter-spacing: 0.12em; font-family: 'Noto Serif SC', serif;
  font-weight: 300; border: none; background: none;
  padding: 0; position: relative; display: inline-block;
  transition: color 0.2s;
}
.btn-text-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: rgba(255,255,255,0.4);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.btn-text-link:hover { color: rgba(255,255,255,0.9); }
.btn-text-link:hover::after { transform: scaleX(1); }

/* ── 右列：slider 外层容器，居中布局 ── */
.hero-right {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 18% 40px 2%;
}

/* slider 卡片：宽度充满右列，高度自适应图片比例 */
.hero-slider {
  position: relative;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;               /* 裁切圆角 */
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10),
    0 16px 48px rgba(0,0,0,0.55),
    0 3px 12px rgba(0,0,0,0.35);
}

/* 幻灯片轨道 */
.hero-slides {
  display: flex;
  width: 300%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 每张 slide：高度由 slide-bg 撑开，不固定比例 */
.hero-slide {
  width: 33.33%;
  position: relative;
  display: block;
  overflow: hidden;
}

/* 模糊背景层：用 padding-bottom 撑出容器高度，cover 填满 */
.slide-bg {
  width: 100%;
  padding-bottom: 75%;            /* 默认 4:3，图片加载后被 slide-img 视觉覆盖 */
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(0.55);
  position: relative; z-index: 1;
}

/* 主图：contain 保持原始比例，绝对覆盖在 blur 背景上 */
.slide-img {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  transition: transform 0.45s ease;
}
.hero-slide:hover .slide-img { transform: scale(1.04); }

/* 圆点：在 hero-right 内流式排列，slider 下方自然出现 */
.hero-dots {
  display: flex; gap: 8px;
  margin-top: 14px;
  position: relative; z-index: 3;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.40);
  border: none; padding: 0; cursor: none;
  transition: background 0.2s, transform 0.2s;
}
.hero-dot.active { background: rgba(255,255,255,0.95); transform: scale(1.4); }

/* ================================================================
   📦 通用区块样式
================================================================ */
.section-wrap  { padding: 60px 8%; border-top: 1px solid var(--subtle-gray); background: var(--bg-base); }
.support-area  { padding: 70px 8%; border-top: 1px solid var(--subtle-gray); background: var(--bg-alt); }
.news-section  { padding: 70px 8%; border-top: 1px solid var(--subtle-gray); background: var(--bg-base); }

.section-header { margin-bottom: 36px; display: flex; align-items: center; gap: 20px; }
.section-header h2 { font-size: 1.4rem; letter-spacing: 0.06em; font-weight: 500; white-space: nowrap; }
.section-header::after { content: ''; flex: 1; height: 1px; background: var(--subtle-gray); }

/* ================================================================
   🃏 模组卡片区
================================================================ */
.mod-filter { margin-bottom: 32px; display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 7px 24px; border-radius: 999px;
  border: 1.5px solid #ccc; background: transparent;
  cursor: none; transition: 0.25s; font-size: 0.85rem;
  font-family: inherit; color: #666; letter-spacing: 0.05em;
}
.filter-btn:hover  { border-color: var(--morandi-green); color: var(--morandi-green); }
.filter-btn.active { background: var(--morandi-green); border-color: var(--morandi-green); color: var(--white); }

.mod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.mod-card {
  position: relative; height: 460px; /* 调高高度 */
  overflow: hidden;
  border: 1px solid var(--subtle-gray); cursor: none;
  transition: box-shadow 0.3s ease;
}

/* ✨ 动效⑤ — 悬停水墨滤镜 */
.mod-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease /*, filter 0.6s ease*/; /* 去掉灰度滤镜 */
}
.mod-card:hover img {
  transform: scale(1.04);
  /* 取消灰度等特效
  filter: grayscale(80%) sepia(25%) brightness(1.08) contrast(1.05);
  */
}
.mod-card:hover { box-shadow: 0 12px 40px rgba(110,130,114,0.18); }

/* ✨ 动效⑤ — 悬停水墨滤镜 */
.mod-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.mod-card:hover img {
  transform: scale(1.04);
  filter: grayscale(80%) sepia(25%) brightness(1.08) contrast(1.05);
}

/* 默认底部标题条（始终可见，hover时淡出） */
.mod-card-footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 24px;
  background: rgba(247, 244, 240, 0.95);
  border-top: 1px solid var(--subtle-gray);
  display: flex; align-items: center; justify-content: space-between;
  transition: opacity 0.3s ease;
}
.mod-card:hover .mod-card-footer { opacity: 0; }
.mod-card-footer h3  { font-size: 0.95rem; font-weight: 500; margin: 0; color: var(--black); }
.mod-card-tag {
  font-size: 0.7rem; color: var(--morandi-green);
  letter-spacing: 0.1em; font-weight: 300;
  white-space: nowrap; margin-left: 12px;
}

/* hover时展开的详情面板 */
.mod-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px 24px;
  background: rgba(247, 244, 240, 0.97);
  border-top: 2px solid var(--morandi-green);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mod-card:hover .mod-card-info { opacity: 1; transform: translateY(0); }
.mod-card-info h3 { font-size: 1rem; margin: 0 0 8px; }
.mod-card-info p  { font-size: 0.82rem; color: #666; margin: 0; line-height: 1.7; font-weight: 300; }

/* 无结果提示 */
.no-results {
  display: none; grid-column: 1 / -1; text-align: center;
  padding: 60px 0; color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.1em;
}

/* ================================================================
   💚 支持创作区
================================================================ */
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.support-tile {
  padding: 44px 28px; text-align: center;
  border: 1px solid var(--subtle-gray); background: var(--bg-card);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.support-tile:hover {
  border-color: var(--morandi-green);
  box-shadow: 0 4px 20px rgba(141,161,145,0.12);
  transform: translateY(-3px);
}
.support-tile h3 { font-size: 1.1rem; margin-bottom: 10px; letter-spacing: 0.06em; }
.support-tile p  { font-size: 0.82rem; color: #777; font-weight: 300; line-height: 1.8; }
.support-btn {
  display: inline-block; margin-top: 20px; padding: 9px 28px;
  background: var(--morandi-green); color: var(--white);
  border-radius: 999px; font-size: 0.82rem; letter-spacing: 0.1em;
  font-family: 'Noto Serif SC', serif;
  border: none;
  transition: background 0.2s;
  cursor: pointer;
  font-weight: 400;
  line-height: 1.5;
}
.support-btn:hover { background: var(--morandi-green-dark); }

/* ================================================================
   📰 动态新闻区
================================================================ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-box {
  background: var(--bg-card); padding: 32px;
  border: 1px solid var(--subtle-gray);
  border-top: 2px solid var(--morandi-green);
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-box:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.news-box h4   { font-size: 1rem; margin: 0 0 12px; letter-spacing: 0.04em; }
.news-box p    { font-size: 0.82rem; color: #666; font-weight: 300; line-height: 1.8; margin: 0; }
.news-date     { font-size: 0.72rem; color: var(--text-muted); display: block; margin-top: 18px; letter-spacing: 0.08em; }

/* ================================================================
   🖤 页脚
================================================================ */
footer { background: var(--black); color: rgba(255,255,255,0.45); padding: 32px 8% 22px; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 32px; padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap;
}
.footer-brand .logo-text-footer {
  font-family: 'ZCOOL XiaoWei', serif; font-size: 1.7rem;
  color: var(--white); letter-spacing: 3px; display: block; margin-bottom: 8px;
}
.footer-brand p { font-size: 0.72rem; line-height: 1.9; font-weight: 300; max-width: 240px; }
.footer-col h5  { font-size: 0.72rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.65); margin-bottom: 12px; font-weight: 500; }
.footer-col ul  { list-style: none; margin: 0; padding: 0; }
.footer-col li  { margin-bottom: 7px; }
.footer-col a   { font-size: 0.75rem; color: rgba(255,255,255,0.4); transition: color 0.2s; letter-spacing: 0.04em; }
.footer-col a:hover { color: var(--morandi-green); }
.footer-link-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 0.75rem;
  font-family: inherit;
  padding: 0;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-link-btn:hover { color: var(--morandi-green); }
.footer-bottom {
  margin-top: 18px; display: flex; justify-content: space-between;
  font-size: 0.68rem; letter-spacing: 0.08em; flex-wrap: wrap; gap: 6px;
}


/* ================================================================
   💬 微信社群 Modal 模态框
================================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  padding: 0;
}

.modal-close:hover {
  color: var(--black);
}

.modal-content h2 {
  margin: 0 0 24px;
  font-size: 1.3rem;
  text-align: center;
  color: var(--black);
  letter-spacing: 0.05em;
}

.modal-body {
  display: flex;
  gap: 32px;
  align-items: center;
}

.wechat-qr {
  flex: 0 0 180px;
  text-align: center;
}

.qr-img {
  width: 100%;
  height: auto;
  border: 2px solid var(--subtle-gray);
  border-radius: 8px;
  margin-bottom: 12px;
}

.wechat-qr p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.wechat-info {
  flex: 1;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: center;
}

.avatar-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--subtle-gray);
  flex-shrink: 0;
}

.info-item .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.info-item .value {
  font-size: 1rem;
  color: var(--black);
  margin: 0;
  font-weight: 500;
  font-family: 'Courier New', monospace;
}

.tips {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--subtle-gray);
  line-height: 1.6;
}

/* Modal 响应式 */
@media (max-width: 600px) {
  .modal-content {
    padding: 24px;
  }

  .modal-body {
    flex-direction: column;
    gap: 20px;
  }

  .wechat-qr {
    flex: 0 0 auto;
  }

  .qr-img {
    max-width: 140px;
    margin: 0 auto 12px;
  }

  .info-item {
    justify-content: center;
  }
}

/* ================================================================
   � 关于我页面 (about.html)
================================================================ */
/* Hero 横幅 */
.about-hero {
  position: relative;
  background: url('../pics/hero-main-bg.webp') center / cover no-repeat;
  background-color: #1e2820;
  min-height: 260px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,15,10,0.18) 0%, rgba(8,15,10,0.74) 100%);
}
.about-hero-text { position: relative; z-index: 1; padding: 0 8% 44px; }
.page-label {
  font-size: 0.62rem; letter-spacing: 0.35em; font-weight: 300;
  color: rgba(255,255,255,0.5); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.page-label::before { content: ''; display: inline-block; width: 24px; height: 1px; background: rgba(255,255,255,0.4); }
.about-hero-text h1 {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; margin: 0; letter-spacing: 0.12em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* 背景装饰大圆 */
.deco-circle { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; opacity: 0.05; }
.deco-left  { width: 500px; height: 500px; background: var(--morandi-green); left: -220px; top: 28%; animation: floatA 14s ease-in-out infinite; }
.deco-right { width: 380px; height: 380px; background: var(--morandi-green); right: -150px; top: 12%; animation: floatB 18s ease-in-out infinite; }

/* 区块样式 */
.ab-section { position: relative; padding: 80px 8%; overflow: hidden; border-top: 1px solid var(--subtle-gray); }
.ab-alt { background: var(--bg-alt); }
.eyebrow { font-size: 0.60rem; letter-spacing: 0.42em; font-weight: 300; color: var(--morandi-green); margin-bottom: 8px; }

/* ---------------------------------------------------------------
   CC 使用准则页面样式
   保持简洁，只包含本页专用类
--------------------------------------------------------------- */
.cc-body { padding: 72px 8%; background: var(--bg-base); }

/* 顶部说明框 */
.cc-intro-box{
  background: linear-gradient(135deg,#f4f8f4 0%,#f0f5f0 100%);
  border:1px solid rgba(141,161,145,0.3);
  border-left:4px solid var(--morandi-green);
  padding:28px 32px;margin-bottom:60px;
  position:relative;overflow:hidden;
}
.cc-intro-box::before{
  content:'"';position:absolute;right:24px;top:-12px;
  font-family:'ZCOOL XiaoWei',serif;font-size:8rem;
  color:rgba(141,161,145,0.12);line-height:1;
  pointer-events:none;
}
.cc-intro-box p{margin:0;font-size:0.9rem;line-height:2;color:#555;font-weight:300;}
.cc-intro-box strong{font-weight:500;color:var(--morandi-green-dark);}

/* 两列布局 */
.cc-columns{display:grid;grid-template-columns:1fr 1fr;gap:32px;margin-bottom:56px;}

/* 规则块 */
.cc-block{border:1px solid var(--subtle-gray);background:var(--bg-card);overflow:hidden;transition:box-shadow .3s ease,transform .3s ease;}
.cc-block:hover{box-shadow:0 12px 40px rgba(0,0,0,0.07);transform:translateY(-3px);}
.cc-block-header{padding:22px 28px 18px;display:flex;align-items:center;gap:14px;}
.cc-block.allowed .cc-block-header{background:linear-gradient(135deg,#eef5ee 0%,#f4f8f4 100%);border-bottom:1px solid rgba(141,161,145,0.2);}
.cc-block.forbidden .cc-block-header{background:linear-gradient(135deg,#f5f0ee 0%,#f8f5f4 100%);border-bottom:1px solid rgba(180,140,120,0.2);}
.cc-block-icon{width:42px;height:42px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0;}
.cc-block.allowed .cc-block-icon{background:rgba(141,161,145,0.15);border:1px solid rgba(141,161,145,0.3);}
.cc-block.forbidden .cc-block-icon{background:rgba(190,120,100,0.1);border:1px solid rgba(190,120,100,0.2);}
.cc-block-title-wrap .en{font-size:.6rem;letter-spacing:.28em;font-weight:300;margin-bottom:2px;display:block;}
.cc-block.allowed .en{color:var(--morandi-green);}
.cc-block.forbidden .en{color:#b07060;}
.cc-block-title-wrap h3{font-family:'ZCOOL XiaoWei',serif;font-size:1.15rem;letter-spacing:.1em;margin:0;}
.cc-block.allowed h3{color:var(--morandi-green-dark);}
.cc-block.forbidden h3{color:#8a4a38;}

/* 条目列表 */
.cc-items{padding:8px 28px 24px;list-style:none;margin:0;}
.cc-item{padding:18px 0;border-bottom:1px solid var(--subtle-gray);display:flex;gap:14px;align-items:flex-start;opacity:0;transform:translateX(-10px);transition:opacity .45s ease,transform .45s ease;}
.cc-item:last-child{border-bottom:none;}
.cc-item.visible{opacity:1;transform:translateX(0);}

.item-marker{flex-shrink:0;margin-top:3px;width:20px;height:20px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.65rem;font-weight:700;line-height:1;}
.allowed .item-marker{background:rgba(141,161,145,0.15);color:var(--morandi-green);border:1px solid rgba(141,161,145,0.4);}
.forbidden .item-marker{background:rgba(190,120,100,0.1);color:#b07060;border:1px solid rgba(190,120,100,0.3);}

.item-content strong{display:block;font-size:.88rem;font-weight:500;color:var(--black);margin-bottom:5px;letter-spacing:.03em;}
.item-content p{margin:0;font-size:.78rem;color:#777;font-weight:300;line-height:1.8;}

/* 特别说明 */
.cc-notice{background:var(--bg-alt);border-top:1px solid var(--subtle-gray);padding:56px 8%;}
.notice-cards{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px;}
.notice-card{background:var(--bg-card);border:1px solid var(--subtle-gray);border-top:2px solid var(--morandi-green);padding:28px 24px;transition:transform .2s,box-shadow .2s;}
.notice-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(0,0,0,0.06);}
.notice-icon{font-size:1.4rem;margin-bottom:12px;display:block;}
.notice-card h4{font-size:.92rem;font-weight:500;margin:0 0 10px;letter-spacing:.04em;}
.notice-card p{font-size:.78rem;color:#777;line-height:1.85;margin:0;font-weight:300;}

/* 底部联系条 */
.cc-footer-cta{background:linear-gradient(135deg,#2a3830 0%,#1e2820 100%);padding:60px 8%;text-align:center;position:relative;overflow:hidden;}
.cc-footer-cta::before{content:'';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:500px;height:500px;border-radius:50%;border:1px solid rgba(141,161,145,0.12);box-shadow:0 0 0 60px rgba(141,161,145,0.05),0 0 0 120px rgba(141,161,145,0.03);pointer-events:none;}
.cc-footer-cta h3{font-family:'ZCOOL XiaoWei',serif;font-size:1.5rem;color:#fff;letter-spacing:.12em;margin:0 0 12px;position:relative;z-index:1;}
.cc-footer-cta p{font-size:.82rem;color:rgba(255,255,255,0.45);font-weight:300;margin:0 0 28px;position:relative;z-index:1;line-height:1.9;}
.cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;position:relative;z-index:1;}

/* 响应 */
@media(max-width:768px){.cc-columns{grid-template-columns:1fr;}.notice-cards{grid-template-columns:1fr;}}
@media(max-width:960px){.notice-cards{grid-template-columns:1fr 1fr;}}

/* 动效 */
.fade-in-up{opacity:0;transform:translateY(20px);transition:opacity .55s ease,transform .55s ease;}
.fade-in-up.visible{opacity:1;transform:translateY(0);}

.ab-title { font-family: 'ZCOOL XiaoWei', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: 0.08em; color: var(--black); margin: 0 0 8px; line-height: 1.2; }
.ab-desc { font-size: 0.86rem; color: #777; font-weight: 300; line-height: 1.9; max-width: 520px; margin-bottom: 46px; }

/* § 1 简介：两栏 */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-text p { font-size: 0.92rem; line-height: 2.05; color: #444; font-weight: 300; margin-bottom: 16px; }
.intro-text p:last-child { margin-bottom: 0; }

/* 浮动圆圈组 */
.bubble-field { position: relative; height: 420px; }
.bub {
  position: absolute; border-radius: 50%; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.bub:hover { transform: scale(1.08) translateY(-5px) !important; box-shadow: 0 18px 48px rgba(0,0,0,0.16); }
.bub img { width: 100%; height: 100%; object-fit: cover; display: block; }
.b1 { width: 200px; height: 200px; top: 0;    left: 54px;  animation: floatA 6s ease-in-out infinite;         background: linear-gradient(135deg,#a8c4a8,#7a9a7e); }
.b2 { width: 300px; height: 300px; top: 0px; right: 14px; animation: floatB 7.5s ease-in-out infinite;       background: linear-gradient(135deg,#c4b8a0,#9a8870); }
.b3 { width: 204px; height: 204px; top: 154px;left: 0;     animation: floatC 8s ease-in-out infinite;         background: linear-gradient(135deg,#b0c8b8,#8aaa92); }
.b4 { width: 120px;  height: 120px;  top: 300px;right: 54px; animation: floatA 5.5s ease-in-out infinite reverse; background: linear-gradient(135deg,#c8c0b0,#a09080); }
.b5 { width: 144px; height: 144px; bottom: 4px;left:138px; animation: floatB 9s ease-in-out infinite;         background: linear-gradient(135deg,#a8c4a8,#7a9a7e); }

/* § 2 创作内容 */
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.stag { padding: 5px 18px; border-radius: 999px; border: 1px solid var(--morandi-green); font-size: 0.74rem; letter-spacing: 0.1em; color: var(--morandi-green); font-weight: 300; transition: background 0.2s, color 0.2s; }
.stag:hover { background: var(--morandi-green); color: #fff; }

.mod-grid4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.mod4-card { background: var(--bg-card); border: 1px solid var(--subtle-gray); border-top: 3px solid var(--morandi-green); padding: 28px 22px 24px; transition: transform 0.25s, box-shadow 0.25s; }
.mod4-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(141,161,145,0.14); }
.m4-icon { font-size: 1.5rem; margin-bottom: 14px; display: block; }
.mod4-card h4 { font-size: 0.95rem; font-weight: 500; margin: 0 0 10px; letter-spacing: 0.05em; }
.mod4-card p  { font-size: 0.78rem; color: #777; line-height: 1.75; font-weight: 300; margin: 0; }

/* § 3 如何获取 */
.acq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 50px; }
.acq-card { padding: 30px 26px; border: 1px solid var(--subtle-gray); background: var(--bg-card); position: relative; overflow: hidden; }
.acq-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.acq-free::before { background: #b0c4b0; }
.acq-paid::before { background: var(--morandi-green); }
.acq-card h4 { font-size: 1rem; font-weight: 500; margin: 0 0 12px; letter-spacing: 0.04em; }
.acq-card p  { font-size: 0.82rem; color: #666; line-height: 1.9; font-weight: 300; margin: 0; }
.acq-badge { display: inline-block; font-size: 0.62rem; letter-spacing: 0.12em; padding: 3px 10px; border-radius: 999px; margin-bottom: 12px; font-weight: 400; }
.free-badge { background: #e8f0e8; color: #5a7a5a; }
.paid-badge { background: #e8ede8; color: var(--morandi-green-dark); }

.tiers-label { font-family: 'ZCOOL XiaoWei', serif; font-size: 1.15rem; letter-spacing: 0.1em; margin: 0 0 24px; color: var(--black); }
.tiers-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tier-card { border: 1px solid var(--subtle-gray); background: var(--bg-card); padding: 36px 30px 32px; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.tier-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(141,161,145,0.15); }
.tier-featured { border-color: var(--morandi-green); background: linear-gradient(160deg,#f4f8f4 0%,#fff 100%); }
.tier-featured::after { content: '推荐'; position: absolute; top: 16px; right: 16px; background: var(--morandi-green); color: #fff; font-size: 0.60rem; letter-spacing: 0.15em; padding: 3px 10px; border-radius: 999px; }
.tier-name { font-family: 'ZCOOL XiaoWei', serif; font-size: 1.7rem; letter-spacing: 0.18em; color: var(--black); margin: 0 0 3px; }
.tier-sub  { font-size: 0.62rem; letter-spacing: 0.28em; color: var(--text-muted); font-weight: 300; margin-bottom: 20px; display: block; }
.tier-bar  { width: 28px; height: 1px; background: var(--morandi-green); opacity: 0.5; margin-bottom: 22px; }
.tier-list { list-style: none; padding: 0; margin: 0 0 28px; }
.tier-list li { font-size: 0.82rem; color: #444; line-height: 1.7; font-weight: 300; padding: 9px 0; border-bottom: 1px solid var(--subtle-gray); display: flex; align-items: flex-start; gap: 10px; }
.tier-list li:last-child { border-bottom: none; }
.pdot { width: 5px; height: 5px; border-radius: 50%; background: var(--morandi-green); flex-shrink: 0; margin-top: 7px; }
.tier-btn { display: inline-block; padding: 9px 26px; border-radius: 999px; font-size: 0.77rem; letter-spacing: 0.1em; font-family: 'Noto Serif SC', serif; transition: 0.25s; border: 1.5px solid var(--morandi-green); color: var(--morandi-green); background: transparent; text-decoration: none; }
.tier-btn:hover { background: var(--morandi-green); color: #fff; }
.tier-btn-filled { background: var(--morandi-green); color: #fff; }
.tier-btn-filled:hover { background: var(--morandi-green-dark); border-color: var(--morandi-green-dark); }

/* § 4 联系方式 */
.contact-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cc-card { border: 1px solid var(--subtle-gray); background: var(--bg-card); padding: 26px 22px; transition: border-color 0.25s, transform 0.25s; text-decoration: none; color: inherit; display: block; }
.cc-card:hover { border-color: var(--morandi-green); transform: translateY(-3px); }
.cc-btn { cursor: pointer; text-align: left; width: 100%; font-family: inherit; }
.cc-ico { font-size: 1.3rem; margin-bottom: 10px; display: block; }
.cc-card h4 { font-size: 0.9rem; font-weight: 500; margin: 0 0 6px; letter-spacing: 0.04em; }
.cc-card p  { font-size: 0.75rem; color: #888; line-height: 1.6; margin: 0; font-weight: 300; }

/* 联系方式右侧浮圈 */
.contact-bubbles { position: relative; height: 340px; }
.cb { position: absolute; border-radius: 50%; overflow: hidden; box-shadow: 0 8px 28px rgba(0,0,0,0.09); transition: transform 0.4s ease; }
.cb:hover { transform: scale(1.08) !important; }
.cb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cb1 { width: 154px; height: 154px; top: 0;     right: 8px;   animation: floatA 7s ease-in-out infinite;         background: linear-gradient(135deg,#b8ccc0,#8aaa92); }
.cb2 { width: 104px; height: 104px; top: 78px;  left: 0;      animation: floatB 6s ease-in-out infinite;         background: linear-gradient(135deg,#ccc0b0,#a89278); }
.cb3 { width: 168px; height: 168px; bottom: 0;  right: 48px;  animation: floatC 8.5s ease-in-out infinite;       background: linear-gradient(135deg,#a8c0b8,#7a9a90); }
.cb4 { width: 84px;  height: 84px;  bottom: 34px;left: 44px;  animation: floatA 5s ease-in-out infinite reverse; background: linear-gradient(135deg,#c8c4b4,#a8a090); }

/* about页面响应式 */
@media (max-width: 960px) {
  .intro-grid, .contact-wrap { grid-template-columns: 1fr; }
  .bubble-field, .contact-bubbles { height: 240px; }
  .mod-grid4 { grid-template-columns: 1fr 1fr; }
  .acq-row, .tiers-row { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .mod-grid4 { grid-template-columns: 1fr; }
}

/* ================================================================
   �📱 响应式
================================================================ */
@media (max-width: 768px) {
  body, a, button { cursor: auto; }
  #cursor-dot, #cursor-ring { display: none; }
  .hero              { grid-template-columns: 1fr; }
  .hero-right        { padding: 12px 8% 36px; }
  .welcome-title     { font-size: 2rem; white-space: normal; }
  .mod-grid          { grid-template-columns: 1fr; }
  .support-grid      { grid-template-columns: 1fr; }
  .news-grid         { grid-template-columns: 1fr; }
  .footer-inner      { flex-direction: column; gap: 24px; }
  .top-row           { flex-wrap: wrap; gap: 10px; }
  .social-links      { display: none; }
  .search-wrap input { width: 110px; }
}

/* 1. 容器与卡片基础：收窄宽度，去除发光 */
.sp-section {
  padding: 60px 8% 100px;
  background: var(--bg-base);
}

.sp-card {
  max-width: 860px; /* 进一步收窄，更精致 */
  margin: 0 auto;
  background: #253123; /* 深墨绿，无发光 */
  border-radius: 30px 5px 30px 5px; /* 不对称设计 */
  padding: 50px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12); /* 只有阴影，没有光晕 */
}

/* 2. 左上角 Membership 标签 */
.sp-badge {
  position: absolute;
  top: 25px;
  left: 30px;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--morandi-green);
  font-weight: 500;
  opacity: 0.8;
}

/* 3. 背景错位大字 */
.sp-bg-text {
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-family: 'Noto Serif SC', serif;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255,255,255,0.02); /* 极低透明度，深沉感 */
  transform: rotate(-10deg);
  pointer-events: none;
}

/* 4. 布局 */
.sp-layout {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.sp-info { flex: 1.1; }
.sp-actions { flex: 0.9; display: flex; flex-direction: column; gap: 12px; }

/* 5. 文案样式 */
.sp-title {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 2.2rem;
  color: #fff;
  margin: 15px 0 12px;
}
.sp-description {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.sp-perks { display: flex; flex-wrap: wrap; gap: 15px; }
.perk { color: var(--morandi-green); font-size: 0.75rem; font-weight: 300; }

/* 6. 核心交互：主按钮（放大+旋转） */
.btn-main-afd {
  background: #ec5328; /* 爱发电原色 */
  color: #fff;
  text-decoration: none;
  padding: 22px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* 弹性动效 */
  display: block;
}

.btn-main-afd:hover {
  /* 重点：轻微放大 + 顺时针旋转 2度 */
  transform: scale(1.06) rotate(2deg); 
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  filter: brightness(1.1);
}

.btn-main-afd .btn-text-top { display: block; font-weight: 700; font-size: 1.1rem; margin-bottom: 2px; }
.btn-main-afd .btn-text-sub { display: block; font-size: 0.6rem; opacity: 0.7; letter-spacing: 0.1em; }

/* 7. 次要按钮 */
.btn-sub-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 12px;
  font-size: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  text-decoration: none;
}
.btn-secondary:hover {
  background: #fff;
  color: #253123;
  transform: translateY(-3px); /* 次要按钮只做简单位移 */
}

/* 响应式 */
@media (max-width: 850px) {
  .sp-layout { flex-direction: column; text-align: center; }
  .sp-card { padding: 60px 40px 40px; }
  .sp-perks { justify-content: center; }
  .sp-badge { left: 50%; transform: translateX(-50%); }
}

/* 容器边距对齐页面最左 */
.dl-final-layout {
  padding: 40px 8%;
  background: var(--bg-base);
}

/* 1. 标题区：修复分割线不见的问题 */
.dl-section-header {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 35px;
  width: 100%; /* 确保标题行撑满 */
}

.header-left {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  text-align: left;
}

.header-en {
  font-size: 0.65rem;
  color: var(--morandi-green);
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 4px;
}

.header-zh {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 1.8rem;
  color: var(--black);
  margin: 0;
  line-height: 1;
}

/* 找回消失的分割线 */
.header-divider {
  flex-grow: 1;
  height: 1px;
  background: #ccc; /* 明确的颜色 */
  margin-bottom: 8px;
  opacity: 0.6;
  display: block !important; /* 强制显示 */
}

/* 2. 内容区：宽度限制 */
.dl-content-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

/* 前置框：严禁修改背景颜色，保持浅色 */
.dl-requirement-box {
  background: #f9f9f9; /* 保持浅灰/白背景，严禁改深色 */
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px 35px;
  margin-bottom: 40px;
}

.req-head {
  color: #666;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.req-list { list-style: none; padding: 0; margin: 0; }
.req-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.req-list li:first-child { border-top: none; }

.req-name {
  font-size: 1.1rem; /* 字体大，清晰 */
  font-weight: 600;
  color: #333;
}

.req-mini-link {
  font-size: 0.8rem;
  color: var(--morandi-green);
  text-decoration: none;
  border: 1px solid var(--morandi-green);
  padding: 5px 12px;
  border-radius: 4px;
}

/* 3. 下载动作区：居中 */
.dl-action-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.dl-action-area.is-fullwidth {
  width: 100%;
  align-items: stretch;
}

.pro-access-wrap {
  width: 100%;
  box-sizing: border-box;
  background: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 22px 26px;
}

.pro-access-note {
  margin: 0 0 14px;
  padding: 11px 14px;
  border: 1px solid rgba(141, 161, 145, 0.4);
  border-radius: 10px;
  background: rgba(141, 161, 145, 0.12);
  color: #2f4a35;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
  text-align: left;
}

.pro-access-note strong {
  color: #5d7a61;
  letter-spacing: 0.1em;
  margin-right: 4px;
}

.pro-access-actions {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pro-access-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 74px;
  padding: 10px 16px;
  border: 1px solid rgba(141, 161, 145, 0.35);
  background: #fff;
  color: #2f3a31;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-align: center;
  font-family: inherit;
  cursor: pointer;
  border-radius: 999px;
}

.pro-access-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(141, 161, 145, 0.7);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.pro-access-btn .ch {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.pro-access-btn .en {
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  color: #6a776d;
  text-transform: uppercase;
}

.file-name-info { font-size: 0.85rem; color: #999; }

/* 调小后的按钮 */
.dl-btn-capsule {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  background: var(--morandi-green);
  color: #fff;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dl-btn-capsule:hover {
  transform: scale(1.06) rotate(2deg); /* 旋转+放大 */
  background: #253123;
}

.main-txt { font-size: 0.95rem; font-weight: 600; }
.sub-txt { font-size: 0.65rem; opacity: 0.8; margin-left: 8px; }

/* 彻底解决大三角：强制死宽高 */
.fixed-icon {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}
.dl-btn-capsule:hover .fixed-icon { transform: translateY(3px); }

@media (max-width: 768px) {
  .header-divider { display: none; }
  .req-list li { flex-direction: column; gap: 10px; align-items: flex-start; }
  .pro-access-wrap {
    padding: 18px 16px;
  }
  .pro-access-actions {
    grid-template-columns: 1fr;
  }
}

/* 容器边距 */
.ingredients-section {
  padding: 40px 8% 60px;
  background: var(--bg-base);
}

/* 标题样式：复用下载部分 */
.dl-section-header {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 50px;
  width: 100%;
}

.header-left { display: flex; flex-direction: column; flex-shrink: 0; text-align: left; }
.header-en { font-size: 0.65rem; color: var(--morandi-green); letter-spacing: 0.2em; font-weight: 700; margin-bottom: 4px; }
.header-zh { font-family: 'ZCOOL XiaoWei', serif; font-size: 1.8rem; color: var(--black); margin: 0; line-height: 1; }
.header-divider { flex-grow: 1; height: 1px; background: #ccc; margin-bottom: 8px; opacity: 0.6; }

/* 网格布局：一行4个 */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.ingredient-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
}

/* 圆形框设计 */
.ingredient-circle {
  width: 100%; /* 自动填满网格列宽 */
  aspect-ratio: 1 / 1; /* 强制保持正圆 */
  background: #fdfdfd; 
  border: 1px solid #eee;
  border-radius: 50%; /* 核心：正圆 */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 18px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.ingredient-circle img {
  width: 100%; 
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* 交互设计：鼠标放上去时的变化 */
.ingredient-item:hover .ingredient-circle {
  transform: translateY(-8px); /* 向上漂浮 */
  background: #fff;
  border-color: var(--morandi-green);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08); /* 增加投影感 */
}

.ingredient-item:hover .ingredient-circle img {
  transform: scale(1.15); /* 图片放大 */
}

/* 名称交互 */
.ingredient-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  transition: color 0.3s ease;
}

.ingredient-item:hover .ingredient-name {
  color: var(--morandi-green); /* 名称变绿 */
}

/* 响应式调整 */
@media (max-width: 850px) {
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .header-divider { display: none; }
}

/* 调大主标题字号 */
.recipe-main-title {
  font-size: 2.2rem !important; /* 原始大小通常较小，这里调大 */
  margin-bottom: 5px;
}

.recipe-title-en {
  font-size: 0.9rem !important;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

/* 调大介绍文字 */
.recipe-intro-text {
  font-size: 1rem !important; /* 调大到 1.1rem 更易读 */
  line-height: 1.8;
  color: #555;
  margin: 25px 0;
}

/* 调大属性格子里的文字 */
.attr-label {
  font-size: 0.8rem;
  opacity: 0.7;
}

.attr-val {
  font-size: 1rem !important; /* 调大数值字号 */
  font-weight: 600;
  color: #333;
}

/* 版本信息样式 */
.compat-version-info {
  font-size: 0.85rem;
  color: var(--morandi-green);
  font-weight: 600;
  margin-bottom: 10px;
}

.compat-label {
  display: block;
  font-size: 0.75rem;
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}

/* recipes-detail/test 页面：返回栏 + 介绍图布局 */
.recipe-detail-page .back-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 8%;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--subtle-gray);
}

.recipe-detail-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(141, 161, 145, 0.45);
  border-radius: 999px;
  color: var(--morandi-green-dark);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  background: rgba(141, 161, 145, 0.06);
}

.recipe-detail-page .back-link:hover {
  background: rgba(141, 161, 145, 0.12);
  border-color: var(--morandi-green);
}

.recipe-detail-page .breadcrumb-trail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.recipe-detail-page .breadcrumb-trail .sep { opacity: 0.45; }
.recipe-detail-page .breadcrumb-trail .current { color: var(--black); }

.recipe-detail-page .intro-grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 60px;
  align-items: start;
}

.recipe-detail-page .intro-img-wrap {
  position: relative;
  width: 100%;
}

.recipe-detail-page .intro-img-wrap::before {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 1px solid var(--morandi-green);
  border-radius: 18px;
  opacity: 0.25;
  z-index: 0;
  transition: inset 0.4s ease;
}

.recipe-detail-page .intro-img-wrap:hover::before {
  inset: 16px -16px -16px 16px;
  opacity: 0.35;
}

.recipe-detail-page .intro-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #e4dcd0, #d0c8bc);
  display: flex;
  align-items: center;
  justify-content: center;
}

.recipe-detail-page .intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}

.recipe-detail-page .intro-img:hover img { transform: scale(1.04); }

.recipe-detail-page .intro-img-placeholder {
  position: absolute;
  font-size: 7rem;
  opacity: 0.18;
}

.recipe-detail-page .intro-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: var(--morandi-green);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  padding: 5px 14px;
  font-family: 'Noto Serif SC', serif;
}

.recipe-detail-page #heroTitle,
.recipe-detail-page #heroSlider,
.recipe-detail-page .hero-dot,
.recipe-detail-page .no-results,
.recipe-detail-page .filter-btn,
.recipe-detail-page .mod-card { display: none !important; }

.recipe-detail-page .detail-page { background: var(--bg-base); }

.recipe-detail-page .detail-section {
  padding: 68px 8%;
  border-bottom: 1px solid var(--subtle-gray);
}

.recipe-detail-page .recipe-name-block { margin-bottom: 24px; }

.recipe-detail-page .recipe-main-title {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  color: var(--black);
  letter-spacing: 0.1em;
  margin: 0 0 4px;
  line-height: 1.05;
}

.recipe-detail-page .recipe-title-en {
  font-size: 0.68rem;
  letter-spacing: 0.6em;
  color: var(--text-muted);
  font-weight: 300;
  display: block;
  margin-bottom: 18px;
}

.recipe-detail-page .recipe-title-rule {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recipe-detail-page .recipe-title-rule::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--morandi-green);
  opacity: 0.7;
}

.recipe-detail-page .recipe-title-rule span {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  font-weight: 300;
}

.recipe-detail-page .attr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--subtle-gray);
  margin: 24px 0 28px;
  overflow: hidden;
}

.recipe-detail-page .attr-cell {
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--subtle-gray);
  background: var(--bg-card);
  transition: background 0.2s;
}

.recipe-detail-page .attr-cell:last-child { border-right: none; }

.recipe-detail-page .attr-cell:hover { background: rgba(141,161,145,0.05); }

.recipe-detail-page .attr-icon {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 6px;
}

.recipe-detail-page .attr-label {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
  font-weight: 300;
}

.recipe-detail-page .attr-val {
  font-size: 0.8rem;
  color: var(--black);
  font-weight: 500;
  letter-spacing: 0.03em;
  display: block;
  line-height: 1.3;
}

.recipe-detail-page .recipe-intro-text {
  font-size: 0.88rem;
  color: #555;
  font-weight: 300;
  line-height: 2.1;
  margin-bottom: 28px;
  border-left: 2px solid var(--subtle-gray);
  padding-left: 18px;
  position: relative;
}

.recipe-detail-page .recipe-intro-text::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 40px;
  background: var(--morandi-green);
}

.recipe-detail-page .compat-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
}

.recipe-detail-page .compat-tags { display: flex; flex-wrap: wrap; gap: 7px; }

.recipe-detail-page .compat-tag {
  font-size: 0.8rem;
  padding: 4px 13px;
  border-radius: 999px;
  border: 1px solid #d4ccbf;
  color: #777;
  letter-spacing: 0.06em;
}

.recipe-detail-page .compat-tag.req {
  border-color: var(--morandi-green);
  color: var(--morandi-green);
  background: rgba(141,161,145,0.07);
}

.recipe-detail-page .compat-tag.opt {
  border-color: rgba(106,170,114,0.4);
  color: #3a7a42;
  background: rgba(106,170,114,0.06);
}

.recipe-detail-page .fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.recipe-detail-page .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.recipe-detail-page .notice-section {
  padding: 0 8% 60px;
  background: var(--bg-base);
}

.recipe-detail-page .notice-box {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--subtle-gray);
  background: #fff;
  padding: 22px 28px;
  border-left: 3px solid var(--morandi-green);
}

.recipe-detail-page .notice-list {
  margin: 0;
  padding-left: 18px;
  color: #555;
  font-size: 0.84rem;
  line-height: 1.95;
}

.recipe-detail-page .notice-list li { margin: 0; }

@media (max-width: 960px) {
  .recipe-detail-page .back-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .recipe-detail-page .intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .recipe-detail-page .detail-section { padding: 48px 6%; }
  .recipe-detail-page .attr-grid { grid-template-columns: repeat(2, 1fr); }
  .recipe-detail-page .attr-cell:nth-child(2) { border-right: none; }
  .recipe-detail-page .attr-cell:nth-child(1),
  .recipe-detail-page .attr-cell:nth-child(2) { border-bottom: 1px solid var(--subtle-gray); }
  .recipe-detail-page .notice-section { padding: 0 6% 48px; }
  .recipe-detail-page .notice-box { padding: 18px 16px; }
}

/* ================================================================
   公共可复用：列表页（食谱 / 原料 / 功能）
   说明：原先分散在多个 HTML 内联 <style>，统一收敛到这里
================================================================ */

/* 小工具类：统一处理 Logo 裁切，替代重复 style="object-fit:cover;" */
.logo-circle-cover { object-fit: cover; }

/* 小工具类：统一页脚微信按钮，替代重复内联 style + onmouseover */
.footer-wechat-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-family: inherit;
  transition: color 0.2s;
  letter-spacing: 0.04em;
  padding: 0;
  text-decoration: none;
}
.footer-wechat-btn:hover { color: var(--morandi-green); }

/* 列表页通用 Hero */
.listing-page .recipe-hero {
  position: relative;
  background: url('../pics/hero-main-bg.webp') center / cover no-repeat;
  background-color: #1e2820;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.listing-page .recipe-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 15, 10, 0.18) 0%, rgba(8, 15, 10, 0.78) 100%);
}
.listing-page .recipe-hero::after {
  content: '';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(141, 161, 145, 0.2);
  box-shadow: 0 0 0 28px rgba(141, 161, 145, 0.06), 0 0 0 60px rgba(141, 161, 145, 0.03);
  pointer-events: none;
  z-index: 1;
}
.listing-page .recipe-hero-text { position: relative; z-index: 2; padding: 0 8% 48px; }
.listing-page .recipe-hero-text .page-label {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.listing-page .recipe-hero-text .page-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.listing-page .recipe-hero-text h1 {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 0;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.listing-page .recipe-hero-text p {
  margin: 12px 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.9;
}

/* 列表页工具栏 */
.listing-page .recipe-toolbar {
  padding: 44px 8% 0;
  background: var(--bg-base);
  border-top: 1px solid var(--subtle-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.listing-page .recipe-count {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  font-weight: 300;
}
.listing-page .recipe-count strong { color: var(--morandi-green-dark); font-weight: 500; }
.listing-page .filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.listing-page .recipe-filter-btn {
  padding: 6px 20px;
  border-radius: 999px;
  border: 1.5px solid #ccc;
  background: transparent;
  font-size: 0.78rem;
  font-family: inherit;
  color: #777;
  transition: 0.2s;
  letter-spacing: 0.06em;
}
.listing-page .recipe-filter-btn:hover { border-color: var(--morandi-green); color: var(--morandi-green); }
.listing-page .recipe-filter-btn.active { background: var(--morandi-green); border-color: var(--morandi-green); color: #fff; }

/* 列表页卡片网格 */
.listing-page .recipe-section {
  padding: 36px 8% 80px;
  background: var(--bg-base);
}
.listing-page .recipe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
/* 功能性模组列表页命名统一为 mods-page（保留 functional-page 兼容旧页面） */
.mods-page .recipe-grid,
.functional-page .recipe-grid,
.shop-page .recipe-grid { grid-template-columns: repeat(3, 1fr); }

.listing-page .recipe-card {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: #2a3020;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.mods-page .recipe-card,
.functional-page .recipe-card,
.shop-page .recipe-card { aspect-ratio: 2560 / 1500; }

.listing-page .recipe-card.visible { opacity: 1; transform: translateY(0); }
.listing-page .recipe-card.hidden { display: none; }

.listing-page .card-thumb { position: absolute; inset: 0; overflow: hidden; }
.listing-page .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}
.listing-page .recipe-card:hover .card-thumb img { transform: scale(1.08); }

.listing-page .card-gradient-base {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 10, 0.88) 0%, rgba(10, 14, 10, 0.3) 45%, rgba(10, 14, 10, 0) 72%);
  z-index: 2;
  transition: opacity 0.4s ease;
}
.listing-page .card-gradient-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 10, 0.96) 0%, rgba(10, 14, 10, 0.55) 55%, rgba(10, 14, 10, 0.1) 85%);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.listing-page .recipe-card:hover .card-gradient-hover { opacity: 1; }

.listing-page .card-vert-label {
  position: absolute;
  top: 18px;
  right: 16px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  writing-mode: vertical-rl;
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.3s ease;
}
.listing-page .recipe-card:hover .card-vert-label { color: rgba(255, 255, 255, 0.75); }
.listing-page .card-vert-label::before {
  content: '';
  display: block;
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 2px;
}

.listing-page .card-frame {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0);
  z-index: 4;
  transition: border-color 0.45s ease;
  pointer-events: none;
}
.listing-page .recipe-card:hover .card-frame { border-color: rgba(255, 255, 255, 0.18); }
.listing-page .card-frame::before,
.listing-page .card-frame::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: rgba(141, 161, 145, 0);
  border-style: solid;
  transition: border-color 0.45s ease;
}
.listing-page .card-frame::before {
  top: -1px;
  left: -1px;
  border-width: 1.5px 0 0 1.5px;
}
.listing-page .card-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 1.5px 1.5px 0;
}
.listing-page .recipe-card:hover .card-frame::before,
.listing-page .recipe-card:hover .card-frame::after {
  border-color: rgba(141, 161, 145, 0.6);
}

.listing-page .card-corner-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  z-index: 6;
}

.listing-page .card-corner-badge {
  background: var(--morandi-green);
  color: #fff;
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  padding: 3px 8px;
}

.listing-page .card-pro-badge {
  background: #b23a48;
  color: #fff6f6;
}

.listing-page .card-coming-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 20, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}
.listing-page .coming-label {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 0.88rem;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 18px;
}

.listing-page .card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 0 18px 18px;
}
.listing-page .card-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.listing-page .card-cat-tag {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  font-weight: 300;
  color: var(--morandi-green);
}
.listing-page .card-date {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
  font-weight: 300;
}
.listing-page .card-title {
  font-family: 'ZCOOL XiaoWei', serif;
  font-size: 1.45rem;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  transition: letter-spacing 0.35s ease;
}
.listing-page .recipe-card:hover .card-title { letter-spacing: 0.18em; }

.listing-page .card-excerpt {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s ease, margin 0.35s ease;
  opacity: 0;
}
.listing-page .recipe-card:hover .card-excerpt {
  max-height: 80px;
  opacity: 1;
  margin-top: 8px;
}

.listing-page .card-enter {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0);
  letter-spacing: 0.14em;
  margin-top: 0;
  transform: translateY(4px);
  transition: color 0.3s ease 0.08s, transform 0.3s ease 0.08s, margin 0.3s ease;
}
.listing-page .recipe-card:hover .card-enter {
  color: rgba(255, 255, 255, 0.55);
  transform: translateY(0);
  margin-top: 10px;
}
.listing-page .card-enter::after {
  content: '→';
  color: var(--morandi-green);
  transition: transform 0.2s ease;
}
.listing-page .recipe-card:hover .card-enter::after { transform: translateX(3px); }

.listing-page .load-more-wrapper { text-align: center; padding: 40px 0; }
.listing-page .load-more-btn {
  padding: 12px 40px;
  border-radius: 999px;
  border: 1.5px solid var(--morandi-green);
  background: transparent;
  font-size: 0.82rem;
  font-family: inherit;
  font-weight: 500;
  color: var(--morandi-green);
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
}
.listing-page .load-more-btn:hover { background: var(--morandi-green); color: #fff; }
.listing-page .load-more-btn.hidden { display: none; }

.listing-page .no-recipe {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  display: none;
}

/* 列表页响应式（统一管理） */
@media (max-width: 1100px) {
  .listing-page .recipe-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .listing-page .recipe-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 420px) {
  .listing-page .recipe-grid { grid-template-columns: 1fr; }
  .listing-page .recipe-toolbar { flex-direction: column; align-items: flex-start; }
}