/* ==========================================================================
   尊娱汇 · 奢华深色酒廊视觉系统 (Zunyuhui Luxury Lounge Design System)
   排版美化升级版 —— 融入 Glassmorphism (玻璃态), 霓虹微光与动态交互
   ========================================================================== */

/* ---------- 1. 系统变量与设计规范 ---------- */

:root {
  /* 基础背景与面板色 - 极致奢华深色调 */
  --yx-bg: #0f0d0c;
  --yx-bg-2: #161311;
  --yx-panel: rgba(36, 32, 27, 0.75);
  --yx-panel-solid: #211c18;
  --yx-panel-2: rgba(44, 38, 32, 0.85);
  
  /* 边框线条 - 带有金丝/玫瑰红微光的半透明色 */
  --yx-line: rgba(232, 210, 176, 0.12);
  --yx-line-strong: rgba(203, 153, 71, 0.38);
  
  /* 文本排版色 */
  --yx-text: #f6eedf;
  --yx-muted: #dcd1be;
  --yx-dim: #a89682;
  --yx-silver: #e8ded0;
  
  /* 品牌调性与功能色 */
  --yx-violet: #6b1b2a;
  --yx-amber: #cca054;
  --yx-rose: #bf3f50;
  --yx-blue: #3faaa0;
  --yx-gold-glow: rgba(204, 160, 84, 0.2);
  --yx-rose-glow: rgba(191, 63, 80, 0.25);
  
  /* 尺寸与圆角 */
  --yx-radius: 16px;
  --yx-radius-lg: 24px;
  --yx-radius-sm: 8px;
  --yx-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  --yx-max: 1440px;
  
  --header-height: 76px;
  --bottom-nav-height: 82px;
  --yx-detail-contact-height: 348px;
  
  /* 字体族定义 - 使用原生系统极速字体栈，0ms 响应，彻底消除网络字体闪烁抖动 */
  --font-display: "PingFang SC", "Microsoft YaHei", "Songti SC", "STSong", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

/* ---------- 2. 全局重置与高端滚动条 ---------- */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { 
  min-width: 320px; 
  height: 100%;
  scroll-behavior: smooth; 
  background: var(--yx-bg); 
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  line-height: 1.75;
  color: var(--yx-text);
  background:
    radial-gradient(circle at 12% 8%, rgba(191, 63, 80, 0.22), transparent 40%),
    radial-gradient(circle at 88% 18%, rgba(204, 160, 84, 0.15), transparent 35%),
    radial-gradient(circle at 50% 85%, rgba(107, 27, 42, 0.18), transparent 45%),
    linear-gradient(180deg, #161311 0%, #0f0d0c 50%, #120e0d 100%);
  overflow-x: hidden;
  padding-bottom: 0;
  -webkit-font-smoothing: antialiased;
}

/* 网格防尘背景 */
body:before {
  content: ""; 
  position: fixed; 
  inset: 0; 
  pointer-events: none; 
  z-index: -1;
  background-image:
    linear-gradient(rgba(232, 210, 176, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 210, 176, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 85%);
}

/* 自定义高端滚动条 */
::-webkit-scrollbar { 
  width: 8px; 
  height: 8px; 
}
::-webkit-scrollbar-track { 
  background: var(--yx-bg); 
}
::-webkit-scrollbar-thumb { 
  background: rgba(204, 160, 84, 0.35); 
  border-radius: 99px; 
  border: 2px solid var(--yx-bg);
}
::-webkit-scrollbar-thumb:hover { 
  background: rgba(204, 160, 84, 0.65); 
}

/* 链接与SVG基础过渡 */
a { 
  color: inherit; 
  text-decoration: none; 
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

img { 
  max-width: 100%; 
  display: block; 
}

button, input { 
  font: inherit; 
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

svg { 
  width: 22px; 
  height: 22px; 
  fill: none; 
  stroke: currentColor; 
  stroke-width: 1.8; 
  stroke-linecap: round; 
  stroke-linejoin: round; 
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---------- 3. 豪华排版系统 ---------- */
h1, h2, h3 { 
  color: var(--yx-text); 
  font-family: var(--font-display); 
  line-height: 1.25; 
  letter-spacing: -0.01em; 
}
h1 { 
  font-size: clamp(38px, 6.2vw, 76px); 
  font-weight: 900;
  max-width: 900px; 
}
h2 { 
  font-size: clamp(26px, 3.2vw, 42px); 
  font-weight: 800;
}
h3 { 
  font-size: 23px; 
  font-weight: 700;
}
p { 
  color: var(--yx-muted); 
  font-size: 16.5px; 
}

main { 
  max-width: 100%; 
  min-height: 60vh; 
  background: linear-gradient(180deg, transparent 0%, #0f0d0c 34rem, #130f0e 100%); 
}

.skip-link { 
  position: fixed; 
  left: 16px; 
  top: -80px; 
  z-index: 2000; 
  background: var(--yx-amber); 
  color: #14080b; 
  padding: 10px 18px; 
  border-radius: var(--yx-radius-sm); 
  font-weight: 700;
}
.skip-link:focus { 
  top: 12px; 
}

/* ---------- 4. 头部导航栏 (Glassmorphism Effect) ---------- */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  background: rgba(30, 26, 23, 0.82); 
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
  border-bottom: 1px solid rgba(232, 210, 176, 0.08); 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); 
}

.site-header__inner { 
  max-width: var(--yx-max); 
  margin: 0 auto; 
  height: var(--header-height); 
  padding: 0 24px; 
  display: flex; 
  align-items: center; 
  gap: 20px; 
}

.brand { 
  display: inline-flex; 
  align-items: center; 
  gap: 12px; 
  font-size: 23px; 
  font-weight: 900; 
  font-family: var(--font-display); 
  color: var(--yx-text); 
  letter-spacing: 0.03em;
}

.brand-mark { 
  width: 42px; 
  height: 42px; 
  border: 1.5px solid rgba(204, 160, 84, 0.52); 
  border-radius: 12px; 
  display: grid; 
  place-items: center; 
  color: #fce4b3; 
  background: linear-gradient(135deg, #3d2d23, #211914); 
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1), 
    0 8px 18px rgba(0, 0, 0, 0.35); 
}
.brand-mark svg { 
  width: 25px; 
  height: 25px; 
  stroke-width: 1.8; 
}

.desktop-nav { 
  display: flex; 
  gap: 4px; 
  margin-left: auto; 
  background: rgba(41, 35, 30, 0.7); 
  border: 1px solid rgba(232, 210, 176, 0.08); 
  border-radius: 999px; 
  padding: 5px; 
}
.desktop-nav a { 
  padding: 8px 16px; 
  border-radius: 999px; 
  color: var(--yx-dim); 
  font-size: 14px; 
  font-weight: 500;
}
.desktop-nav a:hover, 
.desktop-nav a.active { 
  color: #ffffff; 
  background: var(--yx-rose); 
  box-shadow: 0 4px 14px var(--yx-rose-glow);
}

.city-trigger { 
  display: inline-flex; 
  align-items: center; 
  gap: 5px; 
  padding: 6px 12px; 
  border-radius: 8px; 
  border: 1px solid rgba(232, 210, 176, 0.15); 
  background: rgba(33, 28, 24, 0.7); 
  color: var(--yx-text); 
  font-size: 14.5px;
  cursor: pointer; 
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.city-trigger__name {
  color: #ff4d63;
  font-weight: 800;
  font-size: 14.5px;
}
.city-trigger__switch {
  color: var(--yx-amber, #cca054);
  font-weight: 600;
  font-size: 13.5px;
  transition: color 0.2s ease;
}
.city-trigger:hover {
  border-color: rgba(204, 160, 84, 0.5);
  background: rgba(54, 46, 39, 0.9);
  box-shadow: 0 0 12px var(--yx-gold-glow);
}
.city-trigger:hover .city-trigger__switch {
  color: #ffffff;
  text-decoration: underline;
}

.header-phone { 
  display: inline-flex; 
  align-items: center; 
  min-height: 42px; 
  padding: 0 20px; 
  border-radius: 999px; 
  font-weight: 800; 
  font-family: var(--font-mono);
  color: #fff6e8; 
  background: linear-gradient(135deg, var(--yx-rose), var(--yx-violet)); 
  border: 1px solid rgba(232, 210, 176, 0.22); 
  box-shadow: 0 10px 24px var(--yx-rose-glow); 
}
.header-phone:hover { 
  background: linear-gradient(135deg, #d34c5f, #7f2233); 
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(191, 63, 80, 0.45);
}
.header-phone__short { 
  display: none; 
}

.hamburger { 
  display: none; 
  width: 44px; 
  height: 42px;
  justify-content: center; 
  flex-direction: column; 
  align-items: center;
  gap: 4px; 
  border-radius: 10px; 
  border: 1px solid rgba(232, 210, 176, 0.14); 
  background: rgba(41, 35, 30, 0.8); 
  cursor: pointer; 
}
.hamburger span { 
  width: 18px; 
  height: 2px; 
  background: #f0dfc9; 
  border-radius: 2px; 
}

.mobile-menu { 
  display: none; 
  padding: 12px 18px 20px; 
  border-top: 1px solid var(--yx-line); 
  background: rgba(22, 19, 17, 0.95);
  backdrop-filter: blur(10px);
}
.mobile-menu.active { 
  display: grid; 
  gap: 8px; 
}
.mobile-menu a {
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--yx-dim);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: #fff;
  background: var(--yx-rose);
  border-color: rgba(232, 210, 176, 0.15);
}

/* 城市触发按钮包装容器（保持相对定位基准） */
.city-trigger-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* 城市弹出层 (右对齐于“全国”按钮，微光箭号对准按钮正中，规避屏幕右侧截断溢出) */
.city-popover { 
  position: absolute; 
  right: 0; 
  left: auto;
  transform: none; 
  top: calc(100% + 14px); 
  width: min(500px, calc(100vw - 32px)); 
  padding: 22px; 
  background: rgba(33, 28, 24, 0.96); 
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(204, 160, 84, 0.35); 
  box-shadow: var(--yx-shadow), 0 16px 48px rgba(0, 0, 0, 0.55); 
  border-radius: var(--yx-radius); 
  display: none; 
  z-index: 1050;
}
.city-popover::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 36px;
  width: 12px;
  height: 12px;
  background: rgba(33, 28, 24, 0.96);
  border-top: 1.5px solid rgba(204, 160, 84, 0.35);
  border-left: 1.5px solid rgba(204, 160, 84, 0.35);
  transform: rotate(45deg);
}
.city-popover.active { 
  display: block; 
  animation: fadeIn 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.city-popover__head { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  margin-bottom: 16px; 
}
.city-popover__head strong { 
  color: var(--yx-text); 
  font-family: var(--font-display);
  font-size: 17px;
}
.city-popover__head a, 
.view-all { 
  color: var(--yx-amber); 
  font-weight: 700;
}
.city-popover__grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 10px; 
}
.city-popover__grid a { 
  padding: 10px 14px; 
  border-radius: var(--yx-radius-sm); 
  background: rgba(255, 255, 255, 0.04); 
  color: var(--yx-muted); 
  font-size: 13.5px;
  text-align: center;
  border: 1px solid rgba(232, 210, 176, 0.05);
}
.city-popover__grid a:hover {
  background: rgba(204, 160, 84, 0.15);
  color: #fff;
  border-color: rgba(204, 160, 84, 0.35);
}

/* ---------- 5. 首页 Hero 区域 ---------- */
.hero, .page-hero, .section, .store-detail, .recruit-hero { 
  max-width: var(--yx-max); 
  margin: 0 auto; 
  padding: 72px 24px; 
}

.hero--home { 
  position: relative; 
  z-index: 10;
  width: 100%; 
  max-width: 100%; 
  min-height: auto; 
  display: flex; 
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  overflow: visible; 
  padding: calc(var(--header-height) + 8px) 24px 16px; 
  border-bottom: 1px solid rgba(232, 210, 176, 0.1); 
  background: 
    radial-gradient(circle at 50% 30%, rgba(204, 160, 84, 0.28), transparent 45%), 
    radial-gradient(circle at 50% 80%, rgba(191, 63, 80, 0.32), transparent 45%), 
    linear-gradient(135deg, #180f0e 0%, #261315 45%, #42121d 100%); 
}
.hero--home:before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  z-index: 1; 
  pointer-events: none; 
  background: 
    linear-gradient(180deg, rgba(15, 13, 12, 0.6) 0%, rgba(15, 13, 12, 0.3) 50%, rgba(15, 13, 12, 0.7) 100%), 
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 45%); 
}

.hero--home .hero__media { 
  position: absolute; 
  inset: 0; 
  z-index: 0; 
  opacity: 0.95; 
  overflow: hidden; 
}
.hero--home .hero__media img { 
  width: 100%; 
  max-width: 100%;
  height: 100%; 
  min-height: 100%; 
  object-fit: cover; 
  filter: saturate(1.15) contrast(1.1) brightness(0.85); 
  transform: scale(1); 
  transition: transform 6s ease;
}
.hero--home:hover .hero__media img {
  transform: scale(1.05);
}

.hero__content { 
  position: relative; 
  z-index: 2; 
  width: min(980px, 100%); 
  max-width: 100%; 
  margin: -8px auto 0; 
  text-align: center; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.eyebrow { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  gap: 10px; 
  margin: 0 auto 10px; 
  color: var(--yx-amber); 
  font-family: var(--font-mono); 
  font-size: 11.5px; 
  font-weight: 800; 
  letter-spacing: 0.16em; 
  text-transform: uppercase; 
}
.eyebrow:before, .eyebrow:after { 
  content: ""; 
  width: 32px; 
  height: 1.5px; 
  background: currentColor; 
  opacity: 0.7;
}

.hero--home h1 { 
  margin: 0 auto; 
  font-size: clamp(24px, 3.4vw, 42px);
  color: #fff8ee; 
  text-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.85), 
    0 15px 35px rgba(0, 0, 0, 0.55); 
  font-weight: 900;
  line-height: 1.3;
}
.hero--home h1 span { 
  display: inline-block; 
  margin: 0 4px;
}
.hero--home h1 span:first-child {
  color: var(--yx-amber);
  display: block;
  font-size: clamp(16px, 2.2vw, 24px);
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.hero p, .page-hero p { 
  max-width: min(780px, 94%); 
  margin: 10px auto 0; 
  color: rgba(252, 244, 230, 0.88); 
  font-size: clamp(13.5px, 1.25vw, 15.5px); 
  line-height: 1.7; 
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8); 
}
.hero-phone-link {
  color: var(--yx-amber);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(204, 160, 84, 0.4);
  text-underline-offset: 3px;
  transition: all 0.2s ease;
}
.hero-phone-link:hover {
  color: #ffffff;
  text-decoration-color: #ffffff;
}

.hero-actions { 
  display: flex; 
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 16px; 
  margin: 24px auto 0; 
}

/* 首页 Hero 搜索框组件 */
.hero-search-box {
  position: relative;
  width: min(680px, 100%);
  margin: 20px auto 0;
  z-index: 20;
}
.hero-search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(33, 28, 24, 0.88);
  border: 1.5px solid rgba(204, 160, 84, 0.35);
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-search-form:focus-within {
  border-color: var(--yx-amber);
  box-shadow: 0 0 25px rgba(204, 160, 84, 0.35), 0 12px 36px rgba(0, 0, 0, 0.5);
}
.hero-search-form .search-icon {
  display: flex;
  align-items: center;
  color: var(--yx-amber);
  margin-right: 12px;
  flex-shrink: 0;
}
.hero-search-form .search-icon svg {
  width: 20px;
  height: 20px;
}
.hero-search-form .search-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--yx-text);
  font-size: 15px;
  font-family: inherit;
}
.hero-search-form .search-input::placeholder {
  color: var(--yx-dim);
  font-size: 14px;
}
.hero-search-form .search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yx-rose), var(--yx-violet));
  border: 1px solid rgba(232, 210, 176, 0.22);
  color: #fff6e8;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(164, 52, 66, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}
.hero-search-form .search-btn:hover {
  background: linear-gradient(135deg, #b63d4c, #7d2434);
  transform: scale(1.02);
}

/* 搜索联想下拉框 */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  background: rgba(22, 18, 15, 0.98);
  border: 1.5px solid rgba(204, 160, 84, 0.48);
  border-radius: 18px;
  backdrop-filter: blur(24px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(204, 160, 84, 0.15);
  max-height: 360px;
  overflow-y: auto;
  z-index: 100;
  padding: 10px 0;
  text-align: left;
}
.search-results-dropdown[hidden] {
  display: none;
}

/* 搜索候选展开时隐藏后台 city-chips 避让遮挡 */
.hero-search-box.has-results ~ .city-chips,
.hero-search-box:has(.search-results-dropdown:not([hidden])) ~ .city-chips {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.search-result-group {
  padding: 10px 20px 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--yx-amber);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(204, 160, 84, 0.15);
}
.search-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  color: var(--yx-text);
  font-size: 14.5px;
  border-bottom: 1px solid rgba(252, 238, 218, 0.06);
  transition: background 0.2s ease, padding-left 0.2s ease;
  text-decoration: none;
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item:hover {
  background: rgba(204, 160, 84, 0.14);
  color: #fff;
  padding-left: 24px;
}
.search-result-item strong {
  font-weight: 600;
  color: #fff;
}
.search-result-item small {
  color: var(--yx-dim);
  font-size: 12.5px;
}
.search-no-result {
  padding: 20px;
  text-align: center;
  color: var(--yx-dim);
  font-size: 14px;
}

.city-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(980px, 100%);
  margin: 16px auto 0;
}
.city-chip {
  border: 1px solid rgba(204, 160, 84, 0.25);
  border-radius: 99px;
  background: rgba(41, 35, 30, 0.6);
  color: var(--yx-muted);
  padding: 7px 15px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(5px);
}
.city-chip:hover {
  border-color: var(--yx-amber);
  color: #fff;
  background: rgba(204, 160, 84, 0.18);
  box-shadow: 0 0 15px var(--yx-gold-glow);
  transform: translateY(-1.5px);
}

.hero-mobile-city-picker { 
  display: none; 
}

/* ---------- 6. 按钮组件 (Glass gradients) ---------- */
.button, .store-card__phone { 
  min-height: 46px; 
  border: 0; 
  border-radius: 999px; 
  padding: 0 28px; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 15px;
  font-weight: 800; 
  letter-spacing: 0.05em;
  cursor: pointer; 
  color: #fff; 
  background: linear-gradient(135deg, var(--yx-rose), var(--yx-violet)); 
  border: 1.5px solid rgba(232, 210, 176, 0.2); 
  box-shadow: 0 12px 28px var(--yx-rose-glow); 
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.button:hover, .store-card__phone:hover { 
  color: #ffffff; 
  background: linear-gradient(135deg, #d34c5f, #7f2233); 
  transform: translateY(-2.5px);
  box-shadow: 0 16px 36px rgba(191, 63, 80, 0.45);
}
.button:active, .store-card__phone:active {
  transform: translateY(-1px);
}

.hero-primary { 
  color: #fff; 
  background: linear-gradient(135deg, var(--yx-rose), var(--yx-violet)); 
  border: 1.5px solid rgba(232, 210, 176, 0.26); 
  box-shadow: 0 12px 28px rgba(191, 63, 80, 0.35); 
}
.hero-secondary { 
  color: #f7ead5; 
  background: rgba(255, 244, 225, 0.06); 
  backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 210, 176, 0.16); 
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.hero-secondary:hover {
  background: rgba(255, 244, 225, 0.15);
  border-color: rgba(232, 210, 176, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-2.5px);
  color: #fff;
}

/* ---------- 7. 布局结构与通用网格 ---------- */
.section-head { 
  display: flex; 
  justify-content: space-between; 
  align-items: flex-end; 
  gap: 24px; 
  margin-bottom: 32px; 
  padding-bottom: 20px; 
  border-bottom: 1.5px solid rgba(232, 210, 176, 0.08); 
}
.section-head > div { 
  min-width: 0; 
}
.section-head h2 { 
  margin-top: 4px; 
  font-size: clamp(28px, 3.4vw, 38px); 
}
.section-head .eyebrow { 
  margin-bottom: 12px; 
}
.section-head p { 
  color: var(--yx-muted); 
  margin-top: 6px;
  font-size: 15px;
}

.view-all { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  min-height: 38px; 
  padding: 0 18px; 
  border: 1px solid rgba(204, 160, 84, 0.35); 
  border-radius: 999px; 
  color: var(--yx-amber); 
  font-size: 13.5px; 
  font-weight: 800; 
  white-space: nowrap; 
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.view-all:hover { 
  color: #ffffff; 
  background: rgba(107, 27, 42, 0.7); 
  border-color: rgba(232, 210, 176, 0.35); 
  box-shadow: 0 4px 15px var(--yx-rose-glow);
  transform: translateY(-1.5px);
}

.store-grid, .article-grid, .city-grid, .province-grid { 
  display: grid; 
  grid-template-columns: repeat(3, minmax(0, 1fr)); 
  gap: 20px; 
}

/* 卡片基础样式 - Glassmorphism */
.store-card, .article-card, .city-card, .province-card, .info-panel, .booking-card, .related-card { 
  color: var(--yx-text); 
  background: linear-gradient(135deg, rgba(33, 28, 24, 0.75), rgba(22, 19, 17, 0.85)); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 210, 176, 0.08); 
  border-radius: var(--yx-radius); 
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35); 
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 门店卡片高级效果 */
.store-card { 
  position: relative; 
  display: flex; 
  flex-direction: column; 
  overflow: hidden; 
}
.store-card:before { 
  content: ""; 
  position: absolute; 
  top: 0; 
  left: 20px; 
  right: 20px; 
  height: 2px; 
  background: linear-gradient(90deg, var(--yx-amber), rgba(204, 160, 84, 0)); 
  opacity: 0.7; 
  transition: opacity 0.3s;
}
.store-card__link { 
  padding: 26px 22px 22px; 
  display: grid; 
  gap: 14px; 
  flex: 1; 
}
.store-card__city { 
  font-family: var(--font-mono); 
  font-size: 12.5px; 
  color: var(--yx-amber); 
  font-weight: 700;
  letter-spacing: 0.03em; 
}
.store-card h3 { 
  color: var(--yx-text); 
  font-size: 1.25rem; 
  line-height: 1.35; 
  font-weight: 700;
}
.store-card p { 
  font-size: 14.5px; 
  color: var(--yx-muted); 
  line-height: 1.6; 
}
.store-card dl { 
  display: grid; 
  gap: 10px; 
  padding-top: 16px; 
  border-top: 1px solid rgba(232, 210, 176, 0.08); 
}
.store-card dl div { 
  display: grid; 
  grid-template-columns: auto 1fr;
  gap: 12px; 
  align-items: baseline;
}
.store-card dt { 
  color: var(--yx-amber); 
  font-size: 12px; 
  font-weight: 700;
  text-transform: uppercase;
  min-width: 60px;
}
.store-card dd { 
  color: var(--yx-silver); 
  font-size: 14px; 
  line-height: 1.5; 
}
.store-card__phone { 
  margin: 0 20px 20px; 
}

/* 卡片 Hover 动画 */
.store-card:hover, .article-card:hover, .city-card:hover, .province-card:hover { 
  border-color: rgba(204, 160, 84, 0.4); 
  transform: translateY(-6px); 
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55), 0 0 20px var(--yx-gold-glow); 
}
.store-card:hover:before {
  opacity: 1;
}

.article-card, .city-card, .province-card { 
  padding: 24px; 
  display: grid; 
  gap: 12px; 
}
.article-card time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--yx-amber);
  font-weight: 700;
}
.article-card h3 {
  font-size: 17.5px;
  line-height: 1.4;
}
.city-card small, .province-card small { 
  color: var(--yx-dim); 
  font-size: 13px;
  font-weight: 500;
}
.city-card strong, .province-card strong { 
  color: var(--yx-text); 
  font-size: 18px;
  font-weight: 700;
}

.split-section { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 20px; 
}
.info-panel { 
  padding: 28px; 
}
.info-panel h2 {
  font-size: 22px;
  margin-bottom: 14px;
  font-family: var(--font-display);
}
.info-panel img { 
  margin-top: 20px; 
  border-radius: 14px; 
  background: #efe1ca; 
  border: 1px solid rgba(204, 160, 84, 0.25); 
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.info-panel ul { 
  padding-left: 20px; 
  color: var(--yx-muted); 
  display: grid;
  gap: 6px;
}
.info-panel li { 
  color: var(--yx-muted); 
  font-size: 14.5px;
}

/* ---------- 8. 面包屑与详情页 ---------- */
.breadcrumb { 
  max-width: var(--yx-max); 
  margin: 0 auto; 
  padding: 30px 24px 0; 
  display: flex; 
  gap: 8px; 
  flex-wrap: wrap; 
  color: var(--yx-dim); 
  font-size: 14.5px; 
  font-weight: 500;
  overflow-wrap: anywhere;
}
.breadcrumb a { 
  color: var(--yx-silver); 
}
.breadcrumb a:hover {
  color: var(--yx-amber);
}

.store-detail { 
  display: grid; 
  grid-template-columns: minmax(0, 1fr) 340px; 
  gap: 24px; 
  align-items: start; 
}
.store-detail__main, .store-detail__side { 
  min-width: 0; 
}

/* 内页大横幅 */
.page-hero { 
  position: relative; 
  overflow: hidden; 
  padding: 56px 40px !important;
  background: 
    radial-gradient(circle at 80% 20%, rgba(204, 160, 84, 0.15), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(191, 63, 80, 0.12), transparent 45%),
    linear-gradient(135deg, rgba(191, 63, 80, 0.15), transparent 48%), 
    linear-gradient(180deg, rgba(33, 28, 24, 0.8), rgba(22, 19, 17, 0.9)) !important; 
  border: 1px solid rgba(232, 210, 176, 0.08) !important; 
  border-radius: var(--yx-radius) !important; 
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3) !important;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(204, 160, 84, 0.15) 0%, transparent 70%) !important;
  filter: blur(15px) !important;
  pointer-events: none;
}

.store-detail .page-hero { 
  width: 100%; 
  margin: 0; 
  padding: clamp(28px, 5vw, 52px); 
}
.store-detail .page-hero h1 { 
  max-width: 20ch; 
  font-size: clamp(24px, 3.4vw, 42px); 
  line-height: 1.28; 
  word-break: normal; 
  overflow-wrap: anywhere; 
  text-wrap: pretty; 
}
.store-detail .page-hero p { 
  max-width: 54ch; 
  margin-left: 0; 
  text-shadow: none; 
}

.store-cover { 
  aspect-ratio: 16 / 9; 
  margin-bottom: 24px; 
  border-radius: var(--yx-radius); 
  overflow: hidden; 
  border: 1px solid rgba(232, 210, 176, 0.12); 
  background: #211914; 
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45); 
}
.store-cover img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

/* 门店详情顶部双栏卡片布局 (上下高保真紧凑压缩调整) */
.store-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  gap: 16px;
  margin-bottom: 20px;
  padding: 14px;
  background: 
    radial-gradient(circle at 80% 20%, rgba(204, 160, 84, 0.12), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(191, 63, 80, 0.1), transparent 45%),
    linear-gradient(180deg, rgba(33, 28, 24, 0.9), rgba(22, 19, 17, 0.95));
  border: 1px solid rgba(232, 210, 176, 0.12);
  border-radius: var(--yx-radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  align-items: stretch;
}

.store-hero-card__media {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.store-hero-card__img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 310px;
  border-radius: calc(var(--yx-radius) - 4px);
  overflow: hidden;
  border: 1px solid rgba(232, 210, 176, 0.15);
  background: #1a1512;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

.store-hero-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-hero-card__info {
  background: rgba(18, 15, 13, 0.75);
  border: 1px solid rgba(232, 210, 176, 0.08);
  border-radius: calc(var(--yx-radius) - 4px);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
}

.store-hero-card__header {
  margin-bottom: 6px;
}

.store-hero-card__header .eyebrow {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  color: var(--yx-amber);
}

.store-hero-card__header h1 {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.25;
  color: #fff;
  margin-bottom: 4px;
  word-break: normal;
  overflow-wrap: anywhere;
}

.store-hero-desc {
  font-size: 12.5px;
  color: var(--yx-silver);
  line-height: 1.45;
}

.store-hero-divider {
  height: 1px;
  background: rgba(232, 210, 176, 0.1);
  margin: 8px 0 10px 0;
}

.store-hero-card__info h2 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 6px;
}

/* 压缩 info 面板内的 detail-list 行距 */
.store-hero-card__info .detail-list div {
  padding: 6px 0;
  gap: 12px;
  grid-template-columns: 80px 1fr;
}

.store-hero-card__info .detail-list dt {
  font-size: 12.5px;
}

.store-hero-card__info .detail-list dd {
  font-size: 13.5px;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .store-hero-card {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 14px;
  }

  .store-hero-card__img-wrap {
    aspect-ratio: 16 / 9;
    min-height: auto;
    max-height: none;
  }
}

/* 门店文章介绍专区 */
.store-article-panel {
  margin-top: 24px;
  padding: 32px 28px !important;
  background: rgba(33, 28, 24, 0.85);
  border: 1px solid rgba(232, 210, 176, 0.12);
  border-radius: var(--yx-radius);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.store-article-panel h2 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232, 210, 176, 0.15);
  position: relative;
}

.store-article-panel h2::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--yx-amber);
}

.store-article-content h3 {
  font-size: 17px;
  color: var(--yx-amber);
  margin: 22px 0 10px 0;
  font-weight: 700;
}

.store-article-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--yx-silver);
  margin-bottom: 12px;
}

.store-article-content ul, .store-article-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.store-article-content li {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--yx-silver);
  margin-bottom: 8px;
}

.store-article-content li strong {
  color: #fff;
}

.package-highlight {
  color: var(--yx-amber);
  font-size: 15.5px;
}

.scene-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 20px 0;
}

.scene-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(204, 160, 84, 0.1);
  border: 1px solid rgba(204, 160, 84, 0.25);
  border-radius: 20px;
  color: var(--yx-amber);
  font-size: 13px;
  font-weight: 600;
}

.store-article-contact-box {
  margin-top: 24px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(191, 63, 80, 0.15), rgba(204, 160, 84, 0.1));
  border: 1px solid rgba(232, 210, 176, 0.2);
  border-radius: calc(var(--yx-radius) - 4px);
}

.store-article-contact-box p {
  margin: 0;
  font-size: 15px;
  color: #fff;
}

.store-article-phone {
  color: var(--yx-amber);
  font-size: 18px;
  font-weight: 800;
  margin: 0 4px;
}

/* 详情信息列表 */
.detail-list { 
  gap: 0; 
}
.detail-list div { 
  display: grid; 
  grid-template-columns: 120px 1fr; 
  gap: 20px; 
  padding: 18px 0; 
  border-bottom: 1px solid rgba(232, 210, 176, 0.08); 
}
.detail-list div:last-child { 
  border-bottom: 0; 
}
.detail-list dt {
  color: var(--yx-amber);
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
}
.detail-list dd { 
  word-break: normal; 
  overflow-wrap: anywhere; 
  line-height: 1.75; 
  color: var(--yx-silver);
  font-size: 15.5px;
}
.detail-list a { 
  color: var(--yx-amber); 
  font-weight: 800; 
  border-bottom: 1.5px dashed rgba(204, 160, 84, 0.4);
  padding-bottom: 1px;
}
.detail-list a:hover {
  color: #fff;
  border-bottom-style: solid;
  border-bottom-color: #fff;
}

.store-detail__side { 
  display: grid; 
  gap: 22px; 
  align-self: start;
}

.store-detail__side > .booking-card,
.article-detail__side > .article-contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: var(--yx-detail-contact-height);
  margin: 0;
  padding: 24px;
  text-align: center;
}

.store-detail__side > .booking-card h2,
.article-detail__side > .article-contact-card h2 {
  margin: 0;
  text-align: center;
}

.store-detail__side > .booking-card img,
.article-detail__side > .article-contact-card img {
  display: block;
  margin: 18px auto;
}

.booking-card, .related-card { 
  padding: 24px; 
}
.booking-card h3, .related-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
  font-family: var(--font-display);
}
.booking-card img { 
  border-radius: 12px; 
  margin: 18px auto; 
  background: #efe1ca; 
  border: 1px solid rgba(204, 160, 84, 0.25); 
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.related-card { 
  display: grid; 
  gap: 12px; 
}
.related-card a { 
  display: grid; 
  gap: 6px; 
  padding: 14px 16px; 
  border-radius: var(--yx-radius-sm); 
  background: rgba(255, 255, 255, 0.03); 
  border: 1px solid rgba(232, 210, 176, 0.05);
}
.related-card a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(204, 160, 84, 0.25);
  transform: translateX(3px);
}
.related-card strong {
  font-size: 14.5px;
  color: var(--yx-text);
  font-weight: 700;
}
.related-card small { 
  color: var(--yx-dim); 
  font-size: 12px;
}

.page-hero h1 { 
  max-width: 22ch; 
  font-size: clamp(28px, 4.2vw, 56px); 
  line-height: 1.2; 
  word-break: normal; 
  overflow-wrap: anywhere; 
  text-wrap: balance; 
}
.page-hero p { 
  max-width: 66ch; 
  margin-left: 0; 
  text-shadow: none; 
}
.page-hero .hero-stats { 
  justify-content: flex-start; 
  margin-left: 0; 
}

.city-hero { 
  min-height: 320px; 
  padding: clamp(42px, 6vw, 76px) clamp(28px, 5vw, 60px); 
}

/* ---------- 9. 资讯详情页面 ---------- */
.article-detail-layout {
  width: min(100% - 44px, var(--yx-max));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}
.article-detail { 
  max-width: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.article-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  gap: 16px;
  margin-bottom: 20px;
  padding: 14px;
  background:
    radial-gradient(circle at 80% 20%, rgba(204, 160, 84, 0.12), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(191, 63, 80, 0.1), transparent 45%),
    linear-gradient(180deg, rgba(33, 28, 24, 0.9), rgba(22, 19, 17, 0.95));
  border: 1px solid rgba(232, 210, 176, 0.12);
  border-radius: var(--yx-radius);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  align-items: stretch;
}

.article-hero-card__media {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article-hero-card__img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 360px;
  border-radius: calc(var(--yx-radius) - 4px);
  overflow: hidden;
  border: 1px solid rgba(232, 210, 176, 0.15);
  background: #1a1512;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
.article-hero-card__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero-card__info {
  background: rgba(18, 15, 13, 0.75);
  border: 1px solid rgba(232, 210, 176, 0.08);
  border-radius: calc(var(--yx-radius) - 4px);
  min-width: 0;
  padding: 18px 20px;
}
.article-hero-card__header {
  margin-bottom: 6px;
}
.article-hero-card__header .eyebrow {
  display: block;
  margin-bottom: 4px;
}
.article-hero-card__header h1 {
  margin: 0;
  font-size: clamp(20px, 2.25vw, 30px);
  line-height: 1.3;
  color: #fff;
  word-break: break-word;
  overflow-wrap: anywhere;
  text-wrap: pretty;
}
.article-hero-card__header p {
  margin: 10px 0 0;
  color: var(--yx-silver);
  line-height: 1.6;
  font-size: 13.5px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.article-hero-divider {
  height: 1px;
  margin: 12px 0 10px;
  background: rgba(232, 210, 176, 0.1);
}
.article-hero-card__info h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 17px;
}
.article-hero-card__info .detail-list div {
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  padding: 6px 0;
}
.article-hero-card__info .detail-list dt {
  font-size: 12.5px;
}
.article-hero-card__info .detail-list dd,
.article-hero-card__info time {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--yx-silver);
}
.article-content-panel {
  margin: 0;
  padding: 32px 28px !important;
  background: rgba(33, 28, 24, 0.85);
  border: 1px solid rgba(232, 210, 176, 0.12);
  border-radius: var(--yx-radius);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  min-width: 0;
}
.article-content-panel h2 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(232, 210, 176, 0.15);
  color: #fff;
  font-size: 22px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.article-content-panel h2::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--yx-amber);
}
.article-content {
  display: grid;
  gap: 18px;
}
.article-content p { 
  margin: 0;
  font-size: 16px; 
  color: var(--yx-silver); 
  line-height: 1.9; 
  text-align: justify;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.article-content__heading {
  margin: 8px 0 0;
  color: var(--yx-amber);
  font-size: 20px;
  line-height: 1.45;
}
.article-content__figure {
  margin: 4px 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(232, 210, 176, 0.16);
  border-radius: 14px;
  background: transparent;
  line-height: 0;
  font-size: 0;
}
.article-content__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  object-position: top center;
  margin: 0;
  padding: 0;
  vertical-align: top;
  border-radius: inherit;
}
.article-content__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: var(--yx-silver);
  font-size: 16px;
  line-height: 1.8;
}
.article-content__list li::marker {
  color: var(--yx-amber);
}
.article-pagination {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 210, 176, 0.12);
}
.article-pagination__item {
  display: grid;
  gap: 6px;
  min-width: 0;
  min-height: 74px;
  padding: 14px 16px;
  border: 1px solid rgba(232, 210, 176, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--yx-silver);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.article-pagination__item:hover {
  border-color: rgba(215, 168, 79, 0.56);
  background: rgba(215, 168, 79, 0.08);
  transform: translateY(-2px);
}
.article-pagination__item > span {
  color: var(--yx-amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.article-pagination__item > strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--yx-text);
  font-size: 14px;
  line-height: 1.45;
}
.article-pagination__item--next {
  text-align: right;
}
.article-pagination__item.is-disabled {
  cursor: default;
  opacity: .45;
}
.article-pagination__item.is-disabled:hover {
  border-color: rgba(232, 210, 176, 0.14);
  background: rgba(255, 255, 255, 0.035);
  transform: none;
}
.article-detail__side {
  display: grid;
  gap: 22px;
  align-self: start;
}
.article-contact-card h2 {
  margin: 0;
}
.article-recommendations {
  display: grid;
  gap: 12px;
}
.article-recommendations h2 {
  margin: 0 0 2px;
  font-size: 24px;
}
.article-recommendations a {
  display: grid;
  grid-template-rows: minmax(0, 2.8em) auto;
  gap: 6px;
  block-size: 96px;
  padding: 14px;
  border: 1px solid rgba(232, 210, 176, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.article-recommendations a:hover {
  border-color: rgba(215, 168, 79, 0.5);
}
.article-recommendations strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.4;
}
.article-recommendations small,
.article-recommendations__empty {
  color: var(--yx-muted);
}
.article-recommendations small {
  align-self: end;
  font-size: 12px;
}
.article-recommendations__empty {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 640px) {
  .article-pagination {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
    padding-top: 16px;
  }
  .article-pagination__item {
    min-height: 0;
  }
}

/* ---------- 10. 招聘 / 搜索结果 页面 ---------- */
.recruit-hero { 
  display: grid; 
  grid-template-columns: 1fr 280px; 
  gap: 32px; 
  align-items: center; 
  color: #f7ead5; 
  background: 
    radial-gradient(circle at 85% 20%, rgba(204, 160, 84, 0.22), transparent 30%), 
    linear-gradient(135deg, #4b121f, #1b0e10); 
  border: 1px solid rgba(232, 210, 176, 0.12); 
  border-radius: var(--yx-radius); 
  padding: 42px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.recruit-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 12px;
}
.recruit-hero img { 
  border-radius: var(--yx-radius); 
  border: 1.5px solid rgba(204, 160, 84, 0.28); 
  box-shadow: var(--yx-shadow); 
}

.search-results { 
  display: grid; 
  gap: 20px; 
}
.search-group { 
  display: grid; 
  gap: 12px; 
  background: var(--yx-panel-solid); 
  border: 1px solid rgba(232, 210, 176, 0.08); 
  border-radius: var(--yx-radius); 
  padding: 24px; 
}
.search-group h2 {
  font-size: 20px;
  border-bottom: 1px solid rgba(232, 210, 176, 0.08);
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.search-group a { 
  padding: 14px 18px; 
  border-radius: var(--yx-radius-sm); 
  background: rgba(255, 255, 255, 0.03); 
  border: 1px solid rgba(232, 210, 176, 0.05);
  display: grid; 
  gap: 4px;
}
.search-group a:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(204, 160, 84, 0.25);
  transform: translateX(4px);
}
.search-group strong {
  font-size: 15.5px;
  color: var(--yx-text);
}
.search-group small { 
  color: var(--yx-dim); 
  font-size: 12.5px;
}

/* ---------- 11. 首页专有布局 & 组件 ---------- */
.home-feature-section { 
  padding-top: 64px; 
}
.home-feature-grid { 
  grid-template-columns: repeat(5, minmax(0, 1fr)); 
}

.home-directory-section { 
  padding-top: 48px; 
}
.home-directory-grid { 
  display: grid; 
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr); 
  gap: 36px; 
  align-items: start; 
}
.home-directory-head { 
  margin-bottom: 24px; 
}
.home-direct-city-grid { 
  display: grid; 
  grid-template-columns: repeat(3, minmax(0, 1fr)); 
  gap: 16px; 
}

/* 城市快捷卡片 */
.city-index-card { 
  position: relative; 
  display: grid; 
  gap: 8px; 
  min-height: 124px; 
  padding: 20px; 
  overflow: hidden; 
  border: 1px solid rgba(232, 210, 176, 0.1); 
  border-radius: 12px; 
  background: linear-gradient(135deg, rgba(191, 63, 80, 0.15), transparent 42%), #211c18; 
  color: var(--yx-text); 
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* 城市呼吸绿点 */
@keyframes pulse-cyan {
  0% { box-shadow: 0 0 0 0 rgba(70, 184, 173, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(70, 184, 173, 0); }
  100% { box-shadow: 0 0 0 0 rgba(70, 184, 173, 0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4), 0 0 10px var(--yx-rose-glow); }
  50% { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4), 0 0 20px var(--yx-rose-glow); }
}
.city-index-card:before { 
  content: ""; 
  position: absolute; 
  top: 20px; 
  right: 20px; 
  width: 8px; 
  height: 8px; 
  border-radius: 50%; 
  background: var(--yx-blue); 
  animation: pulse-cyan 2s infinite;
}

.city-index-card:hover { 
  border-color: rgba(204, 160, 84, 0.4); 
  transform: translateY(-4px); 
  box-shadow: var(--yx-shadow), 0 0 15px var(--yx-gold-glow); 
}
.city-index-card__name { 
  padding-right: 18px; 
  color: var(--yx-text); 
  font-size: 1.05rem; 
  font-weight: 800; 
  line-height: 1.35; 
}
.city-index-card small { 
  color: var(--yx-amber); 
  font-size: 12px; 
  font-weight: 700; 
  font-family: var(--font-mono);
}
.city-index-card em { 
  color: var(--yx-dim); 
  font-size: 13px; 
  font-style: normal; 
  line-height: 1.55; 
}

/* 右侧预定提示面板 (Glass Panel - 匹配城市卡片视觉系统) */
.home-booking-panel { 
  position: sticky; 
  top: 98px; 
  display: grid; 
  gap: 18px; 
  padding: 28px; 
  border: 1px solid rgba(232, 210, 176, 0.1); 
  border-radius: 12px; 
  background: linear-gradient(135deg, rgba(191, 63, 80, 0.15), transparent 42%), #211c18; 
  box-shadow: 0 8px 24px rgba(0,0,0,0.2); 
  color: var(--yx-text); 
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}
.home-booking-panel:before {
  content: ""; 
  position: absolute; 
  top: 20px; 
  right: 20px; 
  width: 8px; 
  height: 8px; 
  border-radius: 50%; 
  background: var(--yx-blue); 
  animation: pulse-cyan 2s infinite;
}
.home-booking-panel:hover {
  border-color: rgba(204, 160, 84, 0.4); 
  transform: translateY(-4px); 
  box-shadow: var(--yx-shadow), 0 0 15px var(--yx-gold-glow); 
}
.home-booking-panel h2 { 
  font-size: 22px;
  font-family: var(--font-display);
  color: var(--yx-text); 
}
.home-booking-panel p { 
  color: var(--yx-muted); 
  font-size: 14.5px;
}
.home-booking-list { 
  display: grid; 
  gap: 12px; 
  padding: 0; 
  color: var(--yx-silver); 
  list-style: none; 
}
.home-booking-list li { 
  position: relative; 
  padding-left: 20px; 
  font-size: 14px;
  line-height: 1.6;
}
.home-booking-list li:before { 
  content: ""; 
  position: absolute; 
  top: 8px; 
  left: 0; 
  width: 6px; 
  height: 6px; 
  border-radius: 50%; 
  background: var(--yx-blue); 
  box-shadow: 0 0 8px var(--yx-blue);
}
.home-booking-call { 
  justify-self: start; 
}
.home-booking-panel img { 
  width: 156px; 
  border: 8px solid #efe1ca; 
  border-radius: 12px; 
  margin: 10px 0 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.home-article-section { 
  padding-top: 72px; 
}
.home-feature-actions, 
.home-mobile-store-directory { 
  display: none; 
}

/* 首页文章双栏排行列表 (Rank List Styling) */
.home-rank-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.rank-column {
  background: var(--yx-panel-solid, #211c18);
  border: 1px solid rgba(232, 210, 176, 0.12);
  border-radius: var(--yx-radius, 16px);
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.rank-column-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(232, 210, 176, 0.15);
}

.rank-column-head h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--yx-text, #f6eedf);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rank-column-head h3::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--yx-amber, #cca054);
  border-radius: 2px;
}

.rank-more {
  font-size: 13px;
  color: var(--yx-amber, #cca054);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.rank-more:hover {
  color: var(--yx-text, #fff);
  text-decoration: underline;
}

.rank-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.rank-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(232, 210, 176, 0.08);
}

.rank-item:last-child {
  border-bottom: none;
}

.rank-num {
  font-family: var(--font-mono, monospace);
  font-size: 15px;
  font-weight: 800;
  min-width: 22px;
  text-align: center;
  color: var(--yx-dim, #a89682);
  line-height: 1.4;
  margin-top: 1px;
}

.rank-item.rank-top .rank-num {
  color: var(--yx-amber, #cca054);
}

.rank-item.rank-first .rank-num {
  color: #fff;
  background: linear-gradient(135deg, #bf3f50, #962534);
  border-radius: 6px;
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(191, 63, 80, 0.3);
}

.rank-item:nth-child(2).rank-top .rank-num {
  color: #f1ca7a;
}

.rank-item:nth-child(3).rank-top .rank-num {
  color: #d7a84f;
}

.rank-content {
  flex: 1;
  min-width: 0;
}

.rank-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.rank-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--yx-text, #f6eedf);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  transition: color 0.2s ease;
}

.rank-item.rank-first .rank-title {
  font-size: 15.5px;
  font-weight: 800;
  color: #ffffff;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.rank-title:hover {
  color: var(--yx-amber, #cca054);
}

.rank-heat {
  font-family: var(--font-mono, monospace);
  font-size: 12px;
  font-weight: 700;
  color: #e84e63;
  white-space: nowrap;
  background: rgba(232, 78, 99, 0.1);
  padding: 2px 8px;
  border-radius: 10px;
}

.rank-item.rank-top .rank-heat {
  color: #f1ca7a;
  background: rgba(241, 202, 122, 0.12);
}

.rank-excerpt {
  margin: 6px 0 0 0;
  font-size: 13px;
  color: var(--yx-dim, #a89682);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 省份-城市按行分组矩阵列表 (Province City Matrix Layout) */
.province-matrix-section {
  padding-top: 24px;
  padding-bottom: 60px;
}

.province-matrix-container {
  background: var(--yx-panel-solid, #211c18);
  border: 1px solid rgba(232, 210, 176, 0.12);
  border-radius: var(--yx-radius, 16px);
  padding: 24px 32px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.matrix-row {
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(232, 210, 176, 0.08);
}

.matrix-row:last-child {
  border-bottom: none;
}

.matrix-label {
  width: 120px;
  min-width: 120px;
  font-size: 15px;
  font-weight: 800;
  color: var(--yx-amber, #cca054);
  padding-top: 3px;
  letter-spacing: 0.5px;
}

.matrix-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  flex: 1;
  align-items: center;
}

.matrix-city-link {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--yx-text, #f6eedf);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.matrix-city-link:hover {
  color: #ffffff;
  background: rgba(204, 160, 84, 0.2);
  box-shadow: 0 2px 8px rgba(204, 160, 84, 0.15);
}

/* 重点门店快捷卡片 */
.home-store-direct-card { 
  position: relative; 
  display: grid; 
  gap: 8px; 
  min-height: 86px; 
  padding: 16px 14px 16px 30px; 
  border: 1px solid rgba(232, 210, 176, 0.1); 
  border-radius: var(--yx-radius-sm); 
  background: #211c18; 
  color: var(--yx-text); 
}
.home-store-direct-card:before { 
  content: ""; 
  position: absolute; 
  top: 24px; 
  left: 14px; 
  width: 6px; 
  height: 6px; 
  border-radius: 50%; 
  background: var(--yx-blue); 
  box-shadow: 0 0 6px var(--yx-blue);
}
.home-store-direct-card span { 
  font-size: 13.5px; 
  font-weight: 800; 
  line-height: 1.45; 
}
.home-store-direct-card small { 
  color: var(--yx-dim); 
  font-size: 11.5px; 
}
.home-store-direct-card:hover {
  border-color: rgba(204, 160, 84, 0.35);
  background: rgba(44, 38, 32, 0.7);
  transform: translateY(-2px);
}

/* ---------- 12. 页脚区域响应式与移动端精致胶囊适配 ---------- */
.site-footer { 
  margin-top: auto !important;
  border-top: 1px solid rgba(232, 210, 176, 0.12) !important; 
  background: linear-gradient(180deg, rgba(22, 19, 17, 0.4) 0%, rgba(15, 13, 12, 0.95) 40%, #0d0b0a 100%) !important; 
  color: var(--yx-muted) !important; 
}
.footer-grid { 
  max-width: var(--yx-max) !important; 
  margin: auto !important; 
  padding: 56px 24px !important; 
  display: grid !important; 
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr !important; 
  gap: 32px !important; 
  align-items: start !important;
}

.footer-brand .footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  text-decoration: none !important;
  margin-bottom: 16px !important;
}
.footer-brand p { 
  margin-top: 14px !important; 
  color: var(--yx-dim) !important; 
  font-size: 14px !important;
  line-height: 1.8 !important;
}
.footer-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 14px !important;
}
.footer-tags span {
  display: inline-flex !important;
  align-items: center !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  background: rgba(232, 210, 176, 0.06) !important;
  border: 1px solid rgba(232, 210, 176, 0.12) !important;
  color: var(--yx-amber) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}
.footer-hotline__pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 16px !important;
  padding: 8px 16px !important;
  border-radius: 30px !important;
  background: rgba(36, 31, 26, 0.7) !important;
  border: 1px solid rgba(204, 160, 84, 0.25) !important;
  color: var(--yx-silver) !important;
  font-weight: 700 !important;
  font-size: 14px !important;
}
.footer-hotline__pill svg {
  width: 16px !important;
  height: 16px !important;
  color: var(--yx-amber) !important;
}
.footer-hotline__pill a {
  color: var(--yx-amber) !important;
  font-family: var(--font-mono) !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}
.footer-hotline__pill a:hover {
  text-decoration: underline !important;
}
.footer-title {
  display: block !important;
  color: #fff8ee !important;
  font-size: 16.5px !important;
  font-weight: 800 !important;
  margin-bottom: 18px !important;
  letter-spacing: 0.02em !important;
}
.footer-links-grid { 
  display: grid !important; 
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px 14px !important; 
}
.footer-links-grid a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 9px 12px !important;
  border-radius: 10px !important;
  background: rgba(33, 28, 24, 0.65) !important;
  border: 1px solid rgba(232, 210, 176, 0.12) !important;
  color: rgba(252, 244, 230, 0.85) !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}
.footer-links-grid a:hover {
  background: rgba(191, 63, 80, 0.25) !important;
  border-color: rgba(204, 160, 84, 0.4) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}
.footer-qr {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}
.footer-qr__card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 16px !important;
  border-radius: 14px !important;
  background: rgba(36, 32, 27, 0.75) !important;
  border: 1px solid rgba(232, 210, 176, 0.16) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4) !important;
}
.footer-qr__card img {
  border-radius: 10px !important;
  border: 1px solid rgba(232, 210, 176, 0.2) !important;
  background: #efe1ca !important;
}
.footer-qr__phone {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 8px 14px !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, var(--yx-rose), var(--yx-violet)) !important;
  color: #fff6e8 !important;
  font-family: var(--font-mono) !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px var(--yx-rose-glow) !important;
}
.footer-qr__phone:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 18px rgba(191, 63, 80, 0.45) !important;
}
.footer-bottom { 
  border-top: 1px solid rgba(232, 210, 176, 0.08) !important; 
  padding: 22px 20px !important; 
  text-align: center !important; 
  font-size: 13.5px !important;
  color: var(--yx-dim) !important;
  background: rgba(10, 8, 7, 0.6) !important;
}
.footer-slogan {
  color: var(--yx-amber) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  margin-bottom: 8px !important;
  letter-spacing: 0.03em !important;
  opacity: 0.88 !important;
}
.footer-bottom a {
  color: var(--yx-dim) !important;
}
.footer-bottom a:hover {
  color: #fff !important;
}

/* 移动端 (Mobile <= 900px) 专属居中对齐与精致满版胶囊卡片布局 */
@media (max-width: 900px) {
  .site-footer {
    margin-top: 48px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 36px 18px !important;
    text-align: center !important;
  }
  .footer-brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer-brand .footer-logo {
    justify-content: center !important;
    margin-bottom: 12px !important;
  }
  .footer-brand p {
    text-align: center !important;
    max-width: 95% !important;
    margin: 10px auto 0 !important;
    font-size: 13.5px !important;
  }
  .footer-tags {
    justify-content: center !important;
    margin-top: 14px !important;
  }
  .footer-hotline__pill {
    margin: 16px auto 0 !important;
  }
  .footer-links-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer-title {
    text-align: center !important;
    margin-bottom: 16px !important;
  }
  .footer-links-grid {
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px 10px !important;
  }
  .footer-links-grid a {
    padding: 10px 8px !important;
    font-size: 13px !important;
  }
  .footer-links-grid a:hover {
    transform: none !important;
  }
  .footer-qr {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  .footer-bottom {
    padding: 8px 10px calc(var(--bottom-nav-height, 82px) - 18px) !important;
  }
  .footer-bottom p {
    font-size: 11.5px !important;
    line-height: 1.3 !important;
  }
  .footer-slogan {
    font-size: 11px !important;
    margin-bottom: 2px !important;
  }
}

/* ---------- 13. 侧边浮动件 / 移动端底部导航 ---------- */
.float-qr, .scroll-top {
  position: fixed;
  z-index: 1200;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1.5px solid rgba(232, 210, 176, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 预定按钮:酒红渐变+呼吸脉冲 */
.float-qr {
  background: linear-gradient(135deg, var(--yx-rose), var(--yx-violet));
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4), 0 0 10px var(--yx-rose-glow);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* 返回顶部:深色玻璃质感,低调不抢戏 */
.scroll-top {
  background: rgba(36, 32, 27, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(204, 160, 84, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.float-qr:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45), 0 0 15px var(--yx-rose-glow);
}

.scroll-top:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(204, 160, 84, 0.5);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.float-qr {
  bottom: calc(var(--bottom-nav-height) + 84px);
}
.scroll-top {
  bottom: calc(var(--bottom-nav-height) + 20px);
}
.float-qr svg, .scroll-top svg {
  width: 22px;
  height: 22px;
}
.float-qr span { display: none; }

.qr-panel { 
  position: fixed; 
  right: 88px; 
  bottom: calc(var(--bottom-nav-height) + 84px); 
  z-index: 1200; 
  width: 220px; 
  padding: 20px; 
  background: rgba(33, 28, 24, 0.95); 
  backdrop-filter: blur(14px);
  border: 1.5px solid rgba(204, 160, 84, 0.28); 
  border-radius: var(--yx-radius); 
  box-shadow: var(--yx-shadow); 
  display: none; 
}
.qr-panel.active { 
  display: block; 
  animation: fadeIn 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.qr-panel img { 
  border-radius: 10px; 
  background: #efe1ca; 
  border: 1px solid rgba(204, 160, 84, 0.2); 
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.qr-panel strong {
  display: block;
  text-align: center;
  font-size: 13.5px;
  margin-top: 10px;
  color: var(--yx-text);
}
.qr-close { 
  position: absolute; 
  top: 8px; 
  right: 8px; 
  width: 28px; 
  height: 28px; 
  border-radius: 50%; 
  border: 1px solid var(--yx-line); 
  background: var(--yx-panel-solid); 
  color: var(--yx-text); 
  cursor: pointer; 
  display: grid;
  place-items: center;
  font-size: 14px;
}
.qr-close:hover {
  background: var(--yx-rose);
  border-color: rgba(232, 210, 176, 0.2);
}

/* 移动端底部导航 - 特别优化版 */
.bottom-nav { 
  position: fixed; 
  left: 0; 
  right: 0; 
  bottom: 0; 
  z-index: 1100; 
  height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom)); 
  display: none; 
  grid-template-columns: repeat(5, minmax(0, 1fr)); 
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); 
  background: linear-gradient(180deg, rgba(15, 13, 12, 0) 0%, rgba(15, 13, 12, 0.92) 24%, #0f0d0c 70%); 
  border-top: 1px solid rgba(232, 210, 176, 0.08); 
  backdrop-filter: blur(20px); 
  -webkit-backdrop-filter: blur(20px);
}
.bottom-nav::before { 
  content: ""; 
  position: absolute; 
  inset: 8px 10px calc(8px + env(safe-area-inset-bottom)); 
  border: 1px solid rgba(232, 210, 176, 0.08); 
  border-radius: 16px; 
  background: rgba(33, 27, 22, 0.85); 
  box-shadow: 0 -14px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04); 
}
.bottom-nav a { 
  position: relative; 
  z-index: 1; 
  display: grid; 
  min-width: 44px; 
  min-height: 58px; 
  place-content: center; 
  justify-items: center;
  gap: 4px; 
  color: var(--yx-dim); 
  font-size: 11px; 
  font-weight: 700; 
  line-height: 1.1; 
  padding: 6px 2px; 
  border-radius: 12px; 
  touch-action: manipulation; 
  -webkit-tap-highlight-color: transparent; 
}
.bottom-nav a::before { 
  content: ""; 
  position: absolute; 
  inset: 5px 4px; 
  z-index: -1; 
  border-radius: 10px; 
  background: rgba(107, 27, 42, 0.52); 
  border: 1.5px solid rgba(204, 160, 84, 0.16); 
  opacity: 0; 
  transform: scale(0.9); 
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.bottom-nav svg { 
  width: 21px; 
  height: 21px; 
  stroke-width: 1.85; 
}
.bottom-nav a.active { 
  color: #fff3de; 
}
.bottom-nav a.active::before { 
  opacity: 1; 
  transform: scale(1); 
  box-shadow: 0 4px 10px var(--yx-rose-glow);
}
.bottom-nav a:active { 
  transform: scale(0.95); 
}
.bottom-nav a:focus-visible { 
  outline: 2px solid var(--yx-amber); 
  outline-offset: -2px; 
}

/* 移动端底部“电话预定”核心金色大按钮 */
.bottom-nav a.bottom-nav__cta { 
  color: #ffffff; 
}
.bottom-nav a.bottom-nav__cta::before { 
  display: none; 
}
.bottom-nav a.bottom-nav__cta svg { 
  width: 46px; 
  height: 46px; 
  padding: 10px; 
  margin-top: -16px; 
  color: #21150e; 
  background: linear-gradient(135deg, #fce4b3, var(--yx-amber)); 
  border: 1.5px solid rgba(255, 255, 255, 0.4); 
  border-radius: 50%; 
  box-shadow: 
    0 10px 22px rgba(84, 39, 18, 0.45), 
    0 0 15px rgba(204, 160, 84, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4); 
  transition: transform 0.2s, box-shadow 0.2s;
}
.bottom-nav a.bottom-nav__cta:hover svg {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 
    0 12px 26px rgba(84, 39, 18, 0.6), 
    0 0 25px rgba(204, 160, 84, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4); 
}
.bottom-nav a.bottom-nav__cta span { 
  margin-top: -4px; 
}

/* ---------- 14. 网站地图 页面 ---------- */
.sitemap-section a { 
  color: var(--yx-silver); 
  background: rgba(33, 28, 24, 0.7); 
  border: 1px solid rgba(232, 210, 176, 0.1); 
  border-radius: 8px; 
  padding: 10px 14px; 
  display: block; 
  font-size: 14.5px;
}
.sitemap-section a:hover {
  background: rgba(44, 38, 32, 0.9);
  border-color: rgba(204, 160, 84, 0.35);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* ---------- 15. 响应式布局媒体查询 ---------- */
@media (max-width: 1080px) {
  .home-feature-grid { 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
  }
  .home-directory-grid { 
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr); 
    gap: 28px; 
  }
}

@media (max-width: 920px) {
  body { 
    padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom)); 
  }
  .site-header__inner { 
    height: 66px; 
    padding: 0 16px; 
    gap: 12px; 
  }
  .brand { 
    min-width: 0; 
    font-size: 21px; 
  }
  .brand-mark { 
    width: 38px; 
    height: 38px; 
  }
  .brand-mark svg {
    width: 22px;
    height: 22px;
  }
  
  /* 移动端隐藏桌面元素 */
  .desktop-nav, 
  .city-trigger, 
  .mobile-menu, 
  .hamburger { 
    display: none !important; 
  }
  
  /* 移动端头部“电话预定”按钮加大显示 */
  .header-phone { 
    display: inline-flex !important; 
    margin-left: auto !important; 
    padding: 0 16px !important; 
    min-height: 44px !important; 
    font-size: 15.5px !important; 
    font-family: var(--font-mono) !important;
    font-weight: 900 !important;
    letter-spacing: 0.03em !important;
    justify-content: center !important; 
    align-items: center !important;
    border-radius: 22px !important;
    background: linear-gradient(135deg, var(--yx-rose), var(--yx-violet)) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 18px var(--yx-rose-glow) !important;
  }
  .header-phone__number { 
    display: inline-flex !important; 
  }
  .header-phone__short { 
    display: none !important; 
  }
  
  /* 移动底部导栏显示 */
  .bottom-nav { 
    display: grid; 
  }
  .bottom-nav a { 
    min-height: 58px; 
    font-size: 10px; 
  }
  .bottom-nav svg { 
    width: 20px; 
    height: 20px; 
  }
  
  /* 移动端首页 Hero 瘦身 */
  .hero--home { 
    min-height: auto; 
    padding: calc(var(--header-height, 70px) + 16px) 16px 20px; 
    text-align: center; 
    grid-template-columns: 1fr; 
  }
  .hero__media { 
    inset: 0; 
    width: 100%; 
    opacity: 0.12; 
  }
  .hero__media img { 
    width: 100%; 
    height: 100%; 
    border-radius: 0; 
    object-fit: cover; 
  }
  .hero__content { 
    max-width: 100%; 
    margin: 0 auto; 
    text-align: center; 
  }
  .hero--home .eyebrow { 
    font-size: 11px; 
  }
  .hero--home h1 { 
    margin: 14px auto 18px; 
    font-size: clamp(28px, 9vw, 44px); 
    line-height: 1.2; 
  }
  .hero--home h1 span { 
    white-space: normal; 
    margin: 0 4px;
  }
  .hero--home h1 span:first-child {
    font-size: clamp(16px, 4vw, 22px);
    margin-bottom: 8px;
  }
  .hero--home p { 
    max-width: 38ch; 
    margin-inline: auto; 
    font-size: 15px; 
    line-height: 1.7; 
  }
  .hero-actions, 
  .hero-stats { 
    display: none; 
  }
  
  /* 移动端城市选择大框 */
  .hero-mobile-city-picker { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    min-height: 54px; 
    margin-top: 24px; 
    padding: 0 20px; 
    border: 1.5px solid rgba(204, 160, 84, 0.4); 
    border-radius: 10px; 
    background: rgba(36, 32, 27, 0.88); 
    color: var(--yx-amber); 
    text-align: left; 
    font-weight: 700;
  }
  .hero-mobile-city-picker svg { 
    flex: 0 0 auto; 
  }
  .hero-mobile-city-picker span { 
    color: var(--yx-muted); 
    font-size: 14px;
    font-weight: 600; 
  }
  
  /* 热门城市直达按钮区 */
  .city-chips { 
    display: grid; 
    grid-template-columns: repeat(4, minmax(0, 1fr)); 
    gap: 8px; 
    margin-top: 20px; 
    padding: 12px; 
    border: 1px solid rgba(232, 210, 176, 0.08); 
    border-radius: 10px; 
    background: rgba(22, 20, 18, 0.52); 
  }
  .city-chip { 
    display: flex; 
    min-height: 38px; 
    padding: 6px 4px; 
    border-radius: 6px; 
    justify-content: center; 
    align-items: center; 
    font-size: 12px; 
    white-space: nowrap; 
  }
  
  /* 横向边距适配 */
  .section, .breadcrumb, .store-detail, .article-detail, .recruit-hero, .page-hero { 
    width: min(100% - 32px, var(--yx-max)); 
  }
  .breadcrumb {
    padding: 16px 16px 0 !important;
  }
  .page-hero {
    padding: 32px 20px 28px !important;
    margin-top: 12px !important;
  }
  .page-hero::after {
    width: 120px !important;
    height: 120px !important;
    bottom: -40px !important;
    right: -40px !important;
  }
  .store-detail { 
    grid-template-columns: 1fr; 
  }
  .store-detail__side { 
    position: static; 
  }
  
  .city-hero { 
    min-height: 0; 
    padding: 38px 24px; 
  }
  
  .page-hero h1 { 
    max-width: 100%; 
    font-size: clamp(24px, 7vw, 34px); 
    line-height: 1.25; 
  }
  .page-hero p { 
    max-width: 100%; 
    margin-top: 14px; 
    font-size: 15px; 
    line-height: 1.7; 
  }
  .page-hero .hero-stats { 
    justify-content: flex-start; 
    gap: 8px; 
    margin-top: 20px; 
  }
  .hero-stats span { 
    padding: 8px 14px; 
    font-size: 13.5px; 
  }
  
  .section-head { 
    align-items: flex-start; 
    margin-bottom: 20px; 
    padding-bottom: 16px; 
  }
  .section-head h2 { 
    font-size: 22px; 
  }
  .view-all { 
    min-height: 36px; 
    padding: 0 14px; 
    font-size: 12.5px; 
  }
  
  .store-card__link { 
    padding: 24px 18px 20px; 
  }
  .store-card:before { 
    left: 18px; 
    right: 18px; 
  }
  
  .store-detail .page-hero { 
    padding: 28px 24px; 
  }
  .store-detail .page-hero h1 { 
    max-width: 100%; 
    font-size: clamp(20px, 6vw, 28px); 
    line-height: 1.3; 
  }
  .store-cover { 
    margin-bottom: 20px; 
  }
  
  .split-section, 
  .recruit-hero, 
  .footer-grid { 
    grid-template-columns: 1fr; 
  }
  .recruit-hero {
    padding: 24px 18px 20px !important;
    gap: 14px !important;
  }
  .recruit-hero .eyebrow {
    white-space: nowrap !important;
    font-size: 11px !important;
    letter-spacing: 0.01em !important;
  }
  .recruit-hero h1 {
    font-size: clamp(20px, 5.4vw, 26px) !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }
  .recruit-hero p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
  .recruit-hero__actions {
    margin-top: 14px !important;
  }
  .recruit-hero__btn {
    width: 100% !important;
    padding: 10px 16px !important;
    font-size: 14.5px !important;
    justify-content: center !important;
  }
  .recruit-hero__qr {
    margin-top: 8px !important;
    padding: 12px !important;
  }
  .recruit-hero__qr img {
    width: 130px !important;
    height: 130px !important;
  }
  
  .store-grid, 
  .article-grid, 
  .city-grid, 
  .province-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  /* 移动端精选门店模块美化 */
  .home-feature-section { 
    padding: 20px 0 36px; 
  }
  .home-feature-section .section-head { 
    display: block; 
    margin-bottom: 14px; 
    padding: 20px; 
    border: 1px solid rgba(232, 210, 176, 0.08); 
    border-radius: 10px; 
    background: rgba(33, 28, 24, 0.75); 
  }
  .home-feature-section .section-head .eyebrow, 
  .home-feature-section .section-head p, 
  .home-feature-section .section-head > .view-all { 
    display: none; 
  }
  .home-feature-section .section-head h2 { 
    font-size: 16px; 
  }
  .home-feature-actions { 
    display: grid; 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
    gap: 10px; 
    margin-bottom: 14px; 
  }
  .home-feature-actions a { 
    display: flex; 
    min-height: 44px; 
    align-items: center; 
    justify-content: center; 
    padding: 8px; 
    border: 1px solid rgba(204, 160, 84, 0.3); 
    border-radius: 8px; 
    background: rgba(33, 28, 24, 0.7); 
    color: var(--yx-amber); 
    font-size: 13px; 
    font-weight: 800; 
    text-align: center; 
  }
  
  .home-feature-grid { 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
    gap: 12px; 
  }
  .home-feature-grid .store-card__link { 
    min-height: 180px; 
    padding: 16px; 
    gap: 8px; 
  }
  .home-feature-grid .store-card__city { 
    font-size: 11.5px; 
  }
  .home-feature-grid .store-card h3 { 
    font-size: 15px; 
    line-height: 1.35; 
  }
  .home-feature-grid .store-card p { 
    display: -webkit-box; 
    overflow: hidden; 
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 3; 
    font-size: 12.5px; 
    line-height: 1.55; 
  }
  .home-feature-grid .store-card dl, 
  .home-feature-grid .store-card__phone { 
    display: none; 
  }
  
  /* 移动端城市导航与列表美化 */
  .home-directory-section { 
    padding: 32px 0 0; 
  }
  .home-directory-grid { 
    display: block; 
  }
  .home-directory-head { 
    display: flex; 
    margin-bottom: 16px; 
    padding-bottom: 14px; 
  }
  .home-directory-head .eyebrow, 
  .home-directory-head p { 
    display: none; 
  }
  .home-directory-head h2 { 
    font-size: 17px; 
  }
  .home-directory-head .view-all { 
    min-height: 34px; 
    padding: 6px 12px; 
    font-size: 12px; 
  }
  
  .home-direct-city-grid, 
  .home-direct-store-grid { 
    display: grid; 
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important; 
    gap: 10px; 
  }
  
  .city-index-card { 
    min-height: 112px; 
    padding: 16px; 
    gap: 6px; 
    border-radius: 10px; 
  }
  .city-index-card:before { 
    top: 16px; 
    right: 16px; 
  }
  .city-index-card__name { 
    font-size: 15px; 
  }
  .city-index-card small { 
    font-size: 11.5px; 
  }
  .city-index-card em { 
    display: -webkit-box; 
    overflow: hidden; 
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 2; 
    font-size: 11.5px; 
    line-height: 1.48; 
  }
  
  .home-booking-panel { 
    display: none; 
  }
  
  .home-mobile-store-directory { 
    display: block; 
    padding-top: 36px; 
  }
  .home-mobile-store-directory .section-head { 
    margin-bottom: 16px; 
    padding-bottom: 14px; 
  }
  .home-mobile-store-directory .section-head .eyebrow { 
    display: none; 
  }
  .home-mobile-store-directory .section-head h2 { 
    font-size: 17px; 
  }
  .home-mobile-store-directory .section-head > span { 
    min-height: 30px; 
    padding: 6px 10px; 
    border: 1px solid rgba(204, 160, 84, 0.3); 
    border-radius: 6px; 
    color: var(--yx-amber); 
    font-size: 12px; 
    font-weight: 800; 
  }
  
  /* 资讯板块 */
  .home-article-section { 
    padding: 48px 0 20px; 
  }
  .home-article-section .section-head { 
    display: block; 
    margin-bottom: 16px; 
  }
  .home-article-section .section-head h2 { 
    font-size: 20px; 
  }
  .home-article-section .section-head p { 
    font-size: 13.5px; 
  }
  .home-article-section .view-all { 
    width: max-content; 
    margin-top: 14px; 
  }
  .home-rank-articles-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .rank-column {
    padding: 18px 16px;
  }
  .home-article-section .article-grid { 
    grid-template-columns: 1fr; 
    gap: 12px; 
  }
  .home-article-section .article-card { 
    min-height: 104px; 
    padding: 20px; 
  }
  .home-article-section .article-card h3 { 
    font-size: 15.5px; 
  }
  .home-article-section .article-card p { 
    display: none; 
  }
  
  /* 页脚 */
  .site-footer { 
    margin-top: 36px; 
    text-align: center; 
  }
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 28px; 
    padding: 42px 18px; 
  }
  .footer-brand p { 
    max-width: 40ch; 
    margin-inline: auto; 
  }
  .footer-links { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 10px 20px; 
  }
  .footer-links strong { 
    width: 100%; 
  }
  .footer-qr { 
    display: grid; 
    justify-items: center; 
  }
  .footer-qr img { 
    margin-inline: auto; 
  }
  
  .sitemap-section div { 
    grid-template-columns: 1fr 1fr; 
  }
  
  .float-qr { 
    display: none !important; 
  }
  .scroll-top { 
    display: grid !important; 
    right: 14px !important;
    width: 44px !important;
    height: 44px !important;
    bottom: calc(var(--bottom-nav-height) + 14px) !important;
    z-index: 1200 !important;
  }
  .scroll-top svg {
    width: 19px !important;
    height: 19px !important;
  }
  .qr-panel {
    right: 14px !important;
    bottom: calc(var(--bottom-nav-height) + 68px) !important;
    max-width: calc(100vw - 28px) !important;
  }
}

@media (max-width: 560px) {
  h1 { 
    font-size: 34px; 
  }
  .hero--home { 
    padding-top: 48px; 
  }
  .hero-actions { 
    flex-direction: column; 
    width: 100%;
  }
  .hero-actions .button { 
    width: 100%; 
    flex-basis: auto; 
  }
  
  .store-grid, 
  .article-grid, 
  .city-grid, 
  .province-grid, 
  .sitemap-section div { 
    grid-template-columns: 1fr; 
  }
  
  .detail-list div { 
    grid-template-columns: 1fr; 
    gap: 4px; 
    padding: 14px 0; 
  }
  .store-card h3 { 
    font-size: 16px; 
  }
  .section-head { 
    gap: 14px; 
  }
  .section-head h2 { 
    font-size: 19px; 
  }
  .view-all { 
    min-height: 34px; 
    padding: 0 12px; 
  }
  .brand { 
    font-size: 20px; 
  }
  .header-phone { 
    padding: 0 12px; 
    font-size: 13px; 
  }
  .home-feature-grid .store-card__link { 
    min-height: 160px; 
  }
}

/* 动效支持减弱 */
@media (prefers-reduced-motion: reduce) {
  *, 
  *::before, 
  *::after { 
    scroll-behavior: auto !important; 
    transition: none !important; 
    animation: none !important; 
  }
}

/* ---------- 16. 高端淡入动画 ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- 17. 静态嵌套城市与门店看板 ---------- */
.nested-city-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 20px;
}
.nested-city-block {
  background: var(--yx-panel);
  border: 1px solid var(--yx-line);
  border-radius: var(--yx-radius);
  padding: 24px;
  backdrop-filter: blur(14px);
  box-shadow: var(--yx-shadow);
  transition: border-color 0.3s ease;
}
.nested-city-block:hover {
  border-color: var(--yx-line-strong);
}
.nested-city-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--yx-line);
  flex-wrap: wrap;
  gap: 12px;
}
.nested-city-head h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--yx-text);
  margin-bottom: 4px;
}
.nested-city-head small {
  font-size: 13px;
  color: var(--yx-dim);
}

/* ---------- 18. 关于我们丰富排版专属样式 ---------- */
.about-hero h1 {
  font-size: clamp(26px, 3.8vw, 46px);
  font-family: var(--font-display);
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--yx-text);
  letter-spacing: -0.01em;
}

.about-section-block {
  margin-bottom: 48px;
}
.about-section-block:last-child {
  margin-bottom: 0;
}

.about-section-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--yx-text);
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.about-section-desc {
  font-size: 15.5px;
  color: var(--yx-muted);
  line-height: 1.75;
  max-width: 880px;
}

/* 2x2 网格原则卡片 (原则保障) */
.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

/* 3列平台特色面板 */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

/* 4步预订流程步骤卡片 */
.about-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.about-card {
  background: var(--yx-panel);
  border: 1px solid var(--yx-line);
  border-radius: var(--yx-radius);
  padding: 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.about-card:hover {
  border-color: var(--yx-line-strong);
  transform: translateY(-3px);
}
.about-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--yx-text);
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.about-card p {
  font-size: 14.5px;
  color: var(--yx-dim);
  line-height: 1.7;
  margin: 0;
}

.about-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--yx-amber), #b3833b);
  color: #1a1410;
  font-size: 16px;
  font-weight: 900;
  font-family: var(--font-mono);
  margin-bottom: 14px;
}

.about-stats-banner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(38, 31, 26, 0.8), rgba(24, 20, 17, 0.9));
  border: 1px solid var(--yx-line);
  border-radius: var(--yx-radius);
  padding: 28px 24px;
  text-align: center;
}
.about-stat-item strong {
  display: block;
  font-size: 32px;
  font-family: var(--font-mono);
  font-weight: 900;
  color: var(--yx-amber);
  margin-bottom: 4px;
}
.about-stat-item span {
  font-size: 13.5px;
  color: var(--yx-dim);
}

/* 响应式媒体查询适配 */
@media (max-width: 960px) {
  .about-principles-grid {
    grid-template-columns: 1fr;
  }
  .about-features-grid {
    grid-template-columns: 1fr;
  }
  .about-steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-stats-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .about-steps-grid {
    grid-template-columns: 1fr;
  }
  .about-stats-banner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 20px 16px;
  }
}

/* ---------- 资讯页面卡片 2列网格与分页样式 ---------- */
.article-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
}
@media (max-width: 768px) {
  .article-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

.article-card {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between;
  padding: 24px 28px !important;
  background: rgba(36, 32, 27, 0.72) !important;
  border: 1px solid rgba(232, 210, 176, 0.14) !important;
  border-radius: 12px !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.35) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  color: inherit !important;
}

.article-card:hover,
.article-card.active {
  transform: translateY(-3px) !important;
  border-color: rgba(191, 63, 80, 0.68) !important;
  background: rgba(191, 63, 80, 0.09) !important;
  box-shadow: 0 16px 42px rgba(191, 63, 80, 0.22), 0 0 20px rgba(191, 63, 80, 0.12) !important;
}

.article-card__header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin-bottom: 14px !important;
  flex-wrap: wrap !important;
}

.article-card__date,
.article-card time {
  display: inline-block !important;
  color: #c89745 !important;
  font-family: var(--font-mono, monospace) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  margin-bottom: 0 !important;
}

.article-card__tags {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
}

.article-card__tag {
  display: inline-flex !important;
  align-items: center !important;
  padding: 3px 8px !important;
  border: 1px solid rgba(232, 210, 176, 0.22) !important;
  border-radius: 5px !important;
  background: rgba(255, 247, 236, 0.04) !important;
  color: #d9d0bd !important;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.article-card:hover .article-card__tag {
  border-color: rgba(191, 63, 80, 0.52) !important;
  background: rgba(191, 63, 80, 0.14) !important;
  color: #fff8ee !important;
}

.article-card__title,
.article-card h2,
.article-card h3 {
  color: #fff8ee !important;
  font-size: 1.18rem !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
  margin: 0 0 12px 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.article-card__excerpt,
.article-card p {
  color: rgba(252, 244, 230, 0.72) !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

/* 分页组件 */
.pagination-container {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination__btn,
.pagination__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(232, 210, 176, 0.16);
  background: rgba(36, 32, 27, 0.65);
  color: rgba(252, 244, 230, 0.85);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination__num {
  min-width: 42px;
  padding: 0 12px;
}

.pagination__btn:hover,
.pagination__num:hover {
  border-color: rgba(204, 160, 84, 0.48);
  background: rgba(204, 160, 84, 0.15);
  color: #fff;
}

.pagination__num.active {
  border-color: rgba(191, 63, 80, 0.8);
  background: linear-gradient(135deg, #a43442, #6f2030);
  color: #fff8ee;
  box-shadow: 0 4px 15px rgba(164, 52, 66, 0.4);
}

.pagination__btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.pagination__info {
  color: #c8b8a5;
  font-size: 13.5px;
  font-family: var(--font-mono, monospace);
}

/* ---------- 招聘页面高级视觉样式 (Recruitment Page Styling) ---------- */
.recruit-hero__actions {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.recruit-hero__btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 24px !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

.recruit-hero__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(36, 32, 27, 0.85);
  border: 1px solid rgba(232, 210, 176, 0.22);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.recruit-hero__qr img {
  border-radius: 10px;
}

.recruit-hero__qr span {
  color: #d7a84f;
  font-size: 12.5px;
  font-weight: 700;
}

.recruit-details-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
}
@media (max-width: 920px) {
  .recruit-details-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

.recruit-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  background: rgba(36, 32, 27, 0.72) !important;
  border: 1px solid rgba(232, 210, 176, 0.14) !important;
  border-radius: 14px !important;
  padding: 28px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35) !important;
  height: 100% !important;
}

.recruit-card--highlight {
  border-color: rgba(204, 160, 84, 0.38) !important;
  background: linear-gradient(145deg, rgba(204, 160, 84, 0.08), rgba(36, 32, 27, 0.85)) !important;
}

.recruit-card__head {
  margin-bottom: 18px !important;
}

.recruit-card__badge {
  display: inline-block !important;
  color: #cca054 !important;
  font-family: var(--font-mono, monospace) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  margin-bottom: 4px !important;
}

.recruit-card h2 {
  color: #fff8ee !important;
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  margin: 0 !important;
}

.recruit-card__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: grid !important;
  gap: 12px !important;
}

.recruit-card__list li {
  position: relative !important;
  padding-left: 20px !important;
  color: rgba(252, 244, 230, 0.88) !important;
  font-size: 14.5px !important;
  line-height: 1.65 !important;
}

.recruit-card__list li:before {
  content: "" !important;
  position: absolute !important;
  top: 9px !important;
  left: 4px !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #cca054 !important;
}

.recruit-card__text {
  color: rgba(252, 244, 230, 0.88) !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
  margin: 0 !important;
}

.recruit-benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: auto !important;
}
@media (max-width: 1100px) {
  .recruit-benefits-grid {
    grid-template-columns: 1fr !important;
  }
}

.benefit-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  padding: 14px 12px !important;
  border-radius: 10px !important;
  background: rgba(255, 247, 236, 0.045) !important;
  border: 1px solid rgba(232, 210, 176, 0.12) !important;
}

.benefit-item strong {
  color: #f0c875 !important;
  font-size: 1.02rem !important;
  font-weight: 800 !important;
}

.benefit-item span {
  color: rgba(252, 244, 230, 0.76) !important;
  font-size: 12.5px !important;
  line-height: 1.4 !important;
}

.recruit-contact-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-top: auto !important;
}
@media (max-width: 920px) {
  .recruit-contact-grid {
    grid-template-columns: 1fr !important;
  }
}

.contact-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  padding: 14px 12px !important;
  border-radius: 10px !important;
  background: rgba(255, 247, 236, 0.045) !important;
  border: 1px solid rgba(232, 210, 176, 0.12) !important;
}

.contact-item__label {
  font-size: 12px !important;
  font-weight: 700 !important;
  color: #c8b8a5 !important;
  letter-spacing: 0.02em !important;
}

.contact-item__val {
  color: #fff8ee !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
}

.contact-item__val--link {
  color: #f0c875 !important;
  text-decoration: none !important;
}
.contact-item__val--link:hover {
  text-decoration: underline !important;
}

.contact-item__sub {
  color: rgba(204, 160, 84, 0.85) !important;
  font-size: 12.5px !important;
  line-height: 1.35 !important;
}

.province-matrix-section {
  padding-top: 10px !important;
}

.matrix-title {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--yx-text, #f6eedf) !important;
  margin: 0 0 16px 0 !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(232, 210, 176, 0.15) !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.matrix-title::before {
  content: "" !important;
  display: inline-block !important;
  width: 4px !important;
  height: 18px !important;
  background: var(--yx-rose, #bf3f50) !important;
  border-radius: 2px !important;
}

.footer-friendly-links {
  max-width: var(--yx-max);
  margin: 24px auto 0;
  padding: 16px 24px;
  border-top: 1px dashed rgba(232, 210, 176, 0.12);
  border-bottom: 1px dashed rgba(232, 210, 176, 0.12);
  font-size: 13.5px;
}

.friendly-links__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.friendly-links__label {
  color: var(--yx-amber, #cca054);
  font-weight: 700;
  white-space: nowrap;
}

.friendly-links__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.friendly-links__list a {
  color: rgba(252, 244, 230, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.friendly-links__list a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-text-links {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px 18px !important;
  padding-top: 4px !important;
}

.footer-text-links a {
  color: rgba(252, 244, 230, 0.75) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  transition: color 0.2s ease !important;
}

.footer-text-links a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.site-footer {
  margin-top: 48px !important;
  padding: 36px 20px 28px !important;
  background: rgba(14, 12, 11, 0.95) !important;
  border-top: 1px solid rgba(232, 210, 176, 0.12) !important;
  text-align: center !important;
  color: rgba(252, 244, 230, 0.65) !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
}

.site-footer__container {
  max-width: var(--yx-max, 1440px) !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 16px !important;
}

.footer-seo-intro {
  max-width: 1000px !important;
  color: rgba(252, 244, 230, 0.75) !important;
  font-size: 13.5px !important;
  line-height: 1.75 !important;
  margin: 0 auto !important;
}

.footer-links-matrix {
  max-width: 1100px !important;
  margin: 8px auto 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: baseline !important;
  gap: 8px 12px !important;
  line-height: 1.8 !important;
}

.footer-links-matrix__title {
  color: rgba(252, 244, 230, 0.85) !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

.footer-links-matrix__items {
  display: inline !important;
}

.footer-links-matrix__items a {
  color: rgba(252, 244, 230, 0.65) !important;
  text-decoration: none !important;
  margin-right: 12px !important;
  white-space: nowrap !important;
  transition: color 0.2s ease !important;
}

.footer-links-matrix__items a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.footer-copy-line {
  color: rgba(252, 244, 230, 0.6) !important;
  font-size: 13px !important;
  margin-top: 4px !important;
}

.footer-copy-line a {
  color: rgba(252, 244, 230, 0.6) !important;
  text-decoration: none !important;
}

.footer-copy-line a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.footer-disclaimer-line {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 8px 24px !important;
  color: rgba(252, 244, 230, 0.5) !important;
  font-size: 12.5px !important;
}

.footer-disclaimer-line a {
  color: var(--yx-amber, #cca054) !important;
  text-decoration: none !important;
}

.footer-disclaimer-line a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

.footer-qr-widget {
  margin: 12px 0 4px !important;
  display: flex !important;
  justify-content: center !important;
}

.footer-qr-widget__card {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 12px 24px !important;
  border-radius: 14px !important;
  background: rgba(33, 28, 24, 0.75) !important;
  border: 1px solid rgba(232, 210, 176, 0.16) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
}

.footer-qr-widget__card img {
  width: 90px !important;
  height: 90px !important;
  border-radius: 10px !important;
  background: #efe1ca !important;
  border: 1px solid rgba(204, 160, 84, 0.2) !important;
  flex-shrink: 0 !important;
}

.footer-qr-widget__info {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 8px !important;
  text-align: left !important;
}

.footer-qr-widget__info strong {
  color: var(--yx-text, #f6eedf) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

.footer-qr-widget__phone {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, var(--yx-rose, #bf3f50), #962534) !important;
  color: #ffffff !important;
  font-family: var(--font-mono, monospace) !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(191, 63, 80, 0.35) !important;
  transition: transform 0.2s ease !important;
}

.footer-qr-widget__phone:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(191, 63, 80, 0.5) !important;
}

.footer-qr-widget__phone svg {
  width: 14px !important;
  height: 14px !important;
}

@media (max-width: 640px) {
  .footer-qr-widget__card {
    flex-direction: column !important;
    text-align: center !important;
    padding: 16px !important;
  }
  .footer-qr-widget__info {
    align-items: center !important;
    text-align: center !important;
  }
}

/* ---------- 首页所有版块 Section Head 统一为图一样式 ---------- */
.home-feature-section,
.home-rank-stores-section,
.home-article-section {
  padding-top: 20px !important;
  margin-top: 0 !important;
}

.home-feature-section .section-head,
.home-rank-stores-section .section-head,
.home-article-section .section-head {
  margin-bottom: 16px !important;
}

.section-head h1.section-title-h1,
.home-feature-section .section-head h2,
.home-rank-stores-section .section-head h2,
.home-article-section .section-head h2 {
  font-size: clamp(20px, 3vw, 24px) !important;
  font-weight: 800 !important;
  margin-top: 2px !important;
  margin-bottom: 4px !important;
  color: #fff8ee !important;
  line-height: 1.3 !important;
}

.home-feature-section .section-head .eyebrow,
.home-rank-stores-section .section-head .eyebrow,
.home-article-section .section-head .eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 11px !important;
  margin-bottom: 4px !important;
  letter-spacing: 0.14em !important;
  color: var(--yx-amber, #cca054) !important;
  text-transform: uppercase !important;
}

.home-feature-section .section-head .eyebrow:before,
.home-rank-stores-section .section-head .eyebrow:before,
.home-article-section .section-head .eyebrow:before {
  content: "" !important;
  width: 24px !important;
  height: 1.5px !important;
  background: currentColor !important;
  opacity: 0.7 !important;
}

.home-feature-section .section-head .eyebrow:after,
.home-rank-stores-section .section-head .eyebrow:after,
.home-article-section .section-head .eyebrow:after {
  content: "" !important;
  width: 24px !important;
  height: 1.5px !important;
  background: currentColor !important;
  opacity: 0.7 !important;
}

.home-feature-section .section-head p,
.home-rank-stores-section .section-head p,
.home-article-section .section-head p {
  font-size: 12.5px !important;
  color: var(--yx-dim, #b8a698) !important;
  margin: 0 !important;
}

.home-feature-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 12px !important;
}

@media (max-width: 1100px) {
  .home-feature-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }
}

@media (max-width: 768px) {
  .home-feature-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

@media (max-width: 480px) {
  .home-feature-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}

.store-card {
  display: flex !important;
  flex-direction: column !important;
  border-radius: 12px !important;
  background: rgba(33, 28, 24, 0.8) !important;
  border: 1px solid rgba(232, 210, 176, 0.14) !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3) !important;
  overflow: hidden !important;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.store-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(204, 160, 84, 0.45) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 12px rgba(191, 63, 80, 0.2) !important;
}

.store-card__link {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  padding: 0 !important;
  text-decoration: none !important;
}

.store-card__img-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 16 / 8 !important;
  overflow: hidden !important;
  background: #140d0c !important;
}

.store-card__img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.store-card:hover .store-card__img-wrap img {
  transform: scale(1.06) !important;
}

.store-card__body {
  padding: 8px 10px 8px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
  gap: 4px !important;
}

.store-card h3 {
  color: #fff8ee !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.store-card__addr {
  color: rgba(252, 244, 230, 0.7) !important;
  font-size: 11.5px !important;
  line-height: 1.4 !important;
  margin: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.store-card__addr span {
  color: var(--yx-dim, #b8a698) !important;
}

.store-card__phone {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 2px 8px 8px !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, var(--yx-rose, #bf3f50), #962534) !important;
  color: #ffffff !important;
  font-family: var(--font-mono, monospace) !important;
  font-size: 18.5px !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  box-shadow: 0 3px 8px rgba(191, 63, 80, 0.35) !important;
  transition: all 0.2s ease !important;
}

.store-card__phone:hover {
  transform: translateY(-1.5px) !important;
  box-shadow: 0 5px 12px rgba(191, 63, 80, 0.5) !important;
}

/* ---------- 首页门店推荐排行（三列，每列5个） ---------- */
.home-rank-stores-section {
  padding-top: 24px !important;
}

.home-rank-stores-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}

@media (max-width: 1024px) {
  .home-rank-stores-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px !important;
  }
}

@media (max-width: 860px) {
  .home-rank-stores-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

.store-rank-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.store-rank-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 10px !important;
  border-radius: 10px !important;
  background: rgba(33, 28, 24, 0.6) !important;
  border: 1px solid rgba(232, 210, 176, 0.1) !important;
  transition: all 0.2s ease !important;
}

.store-rank-item:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(204, 160, 84, 0.35) !important;
  transform: translateX(3px) !important;
}

.store-rank-num {
  width: 22px !important;
  height: 22px !important;
  border-radius: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-mono, monospace) !important;
  font-size: 12.5px !important;
  font-weight: 900 !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--yx-muted, #9e8e82) !important;
  flex-shrink: 0 !important;
}

.store-rank-item.rank-top:nth-child(1) .store-rank-num {
  background: linear-gradient(135deg, #ffd700, #cca054) !important;
  color: #1a0f05 !important;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4) !important;
}

.store-rank-item.rank-top:nth-child(2) .store-rank-num {
  background: linear-gradient(135deg, #e6e6e6, #a6a6a6) !important;
  color: #141414 !important;
  box-shadow: 0 2px 8px rgba(230, 230, 230, 0.3) !important;
}

.store-rank-item.rank-top:nth-child(3) .store-rank-num {
  background: linear-gradient(135deg, #e59866, #b06030) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(229, 152, 102, 0.3) !important;
}

.store-rank-info {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.store-rank-title-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 6px !important;
}

.store-rank-name {
  color: #fff8ee !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.store-rank-name:hover {
  color: var(--yx-amber, #cca054) !important;
}

.store-rank-score {
  color: #ff4d63 !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  flex-shrink: 0 !important;
}

.store-rank-meta {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 11.5px !important;
  color: var(--yx-dim, #b8a698) !important;
}

.store-rank-city {
  color: var(--yx-amber, #cca054) !important;
  font-weight: 600 !important;
}

.store-rank-meta .dot {
  opacity: 0.5 !important;
}

.store-rank-meta .addr {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.store-rank-phone {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 4px 9px !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, var(--yx-rose, #bf3f50), #962534) !important;
  color: #ffffff !important;
  font-size: 11.5px !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  flex-shrink: 0 !important;
  box-shadow: 0 2px 6px rgba(191, 63, 80, 0.3) !important;
  transition: transform 0.2s ease !important;
}

.store-rank-phone:hover {
  transform: scale(1.06) !important;
}

.rank-badge {
  font-size: 10.5px !important;
  font-weight: 800 !important;
  padding: 2px 7px !important;
  border-radius: 10px !important;
  background: rgba(204, 160, 84, 0.15) !important;
  color: var(--yx-amber, #cca054) !important;
  border: 1px solid rgba(204, 160, 84, 0.3) !important;
}

/* ---------- 头部导航栏搜索框 ---------- */
.header-search-wrap {
  flex: 1 !important;
  max-width: 280px !important;
  margin: 0 16px !important;
  display: flex !important;
  align-items: center !important;
}

.header-search-box {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  background: rgba(26, 22, 19, 0.85) !important;
  border: 1px solid rgba(232, 210, 176, 0.22) !important;
  border-radius: 20px !important;
  padding: 3px 5px 3px 10px !important;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
}

.header-search-box:focus-within {
  border-color: var(--yx-amber, #cca054) !important;
  box-shadow: 0 0 12px rgba(204, 160, 84, 0.3), inset 0 1px 4px rgba(0, 0, 0, 0.4) !important;
  background: rgba(33, 28, 24, 0.95) !important;
}

.header-search-icon {
  width: 14px !important;
  height: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 6px !important;
  color: var(--yx-dim, #b8a698) !important;
  flex-shrink: 0 !important;
}

.header-search-icon svg {
  width: 14px !important;
  height: 14px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2 !important;
}

.header-search-input {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #fff8ee !important;
  font-size: 12px !important;
  font-family: inherit !important;
  padding: 2px 4px !important;
  width: 100% !important;
}

.header-search-input::placeholder {
  color: rgba(184, 166, 152, 0.65) !important;
  font-size: 11.5px !important;
}

.header-search-btn {
  background: linear-gradient(135deg, var(--yx-rose, #bf3f50), #962534) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 3px 10px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
}

.header-search-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 2px 8px rgba(191, 63, 80, 0.4) !important;
}

/* ---------- 城市页面/导航页：双列长条卡片式排版与紧凑标题 ---------- */
.province-stores-section {
  padding-top: 10px !important;
  margin-top: 0 !important;
}

.section-head--tight {
  margin-bottom: 12px !important;
  margin-top: 0 !important;
}

.city-store-bar-list {
  display: grid !important;
  /* minmax(0, 1fr) lets each column shrink below its intrinsic content width. */
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.store-bar-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 12px 14px !important;
  border-radius: 14px !important;
  background: rgba(33, 28, 24, 0.75) !important;
  border: 1px solid rgba(232, 210, 176, 0.14) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

.store-bar-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(204, 160, 84, 0.4) !important;
  background: rgba(42, 35, 30, 0.85) !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 0 15px rgba(191, 63, 80, 0.2) !important;
}

.store-bar-card__img-link {
  flex-shrink: 0 !important;
  display: block !important;
  text-decoration: none !important;
}

.store-bar-card__img-wrap {
  position: relative !important;
  width: 140px !important;
  aspect-ratio: 16 / 10 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  background: #140d0c !important;
}

.store-bar-card__img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.store-bar-card:hover .store-bar-card__img-wrap img {
  transform: scale(1.08) !important;
}

.store-bar-card__badge {
  position: absolute !important;
  top: 6px !important;
  left: 6px !important;
  padding: 1.5px 6px !important;
  border-radius: 4px !important;
  background: rgba(15, 13, 12, 0.85) !important;
  border: 1px solid rgba(204, 160, 84, 0.3) !important;
  color: var(--yx-amber, #cca054) !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  backdrop-filter: blur(4px) !important;
}

.store-bar-card__content {
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.store-bar-card__header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
}

.store-bar-card__title {
  margin: 0 !important;
  font-size: 15.5px !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.store-bar-card__title a {
  color: #fff8ee !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.store-bar-card__title a:hover {
  color: var(--yx-amber, #cca054) !important;
}

.store-bar-card__rating {
  font-size: 11.5px !important;
  font-weight: 800 !important;
  color: #ff4d63 !important;
  background: rgba(255, 77, 99, 0.1) !important;
  padding: 1.5px 6px !important;
  border-radius: 5px !important;
  border: 1px solid rgba(255, 77, 99, 0.2) !important;
  flex-shrink: 0 !important;
}

.store-bar-card__info-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.store-bar-card__info {
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  color: rgba(252, 244, 230, 0.85) !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.store-bar-card__info .label {
  color: var(--yx-dim, #b8a698) !important;
}

.store-bar-card__info .pkg-tag {
  color: var(--yx-amber, #cca054) !important;
  font-weight: 600 !important;
}

.store-bar-card__actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: 6px !important;
  flex-shrink: 0 !important;
}

.store-bar-card__phone {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 6px 11px !important;
  border-radius: 7px !important;
  background: linear-gradient(135deg, var(--yx-rose, #bf3f50), #962534) !important;
  color: #ffffff !important;
  font-family: var(--font-mono, monospace) !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  text-decoration: none !important;
  box-shadow: 0 3px 8px rgba(191, 63, 80, 0.35) !important;
  transition: all 0.2s ease !important;
  white-space: nowrap !important;
}

.store-bar-card__phone:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 5px 12px rgba(191, 63, 80, 0.5) !important;
}

.store-bar-card__detail-btn {
  font-size: 11.5px !important;
  color: var(--yx-amber, #cca054) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: opacity 0.2s ease !important;
}

.store-bar-card__detail-btn:hover {
  opacity: 0.8 !important;
  text-decoration: underline !important;
}

@media (max-width: 992px) {
  .city-store-bar-list {
    grid-template-columns: 1fr !important;
  }
  .header-search-wrap {
    max-width: 200px !important;
    margin: 0 8px !important;
  }
}

@media (max-width: 768px) {
  .header-search-wrap {
    display: none !important;
  }
  .store-bar-card {
    min-width: 0 !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    padding: 12px !important;
  }
  .store-bar-card__img-wrap {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
  }
  .store-bar-card__actions {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: 4px !important;
  }
}

/* ---------- 无障碍辅助类：视觉隐藏但保留屏幕阅读器可读性 ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------- 资讯页：图片3式简洁长条列表 ---------- */
.article-list-section {
  padding-top: 10px !important;
  margin-top: 0 !important;
}

.article-text-list {
  display: flex !important;
  flex-direction: column !important;
  background: rgba(26, 22, 19, 0.75) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(232, 210, 176, 0.16) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
  overflow: hidden !important;
  margin-bottom: 24px !important;
}

.article-list-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 20px !important;
  border-bottom: 1px dashed rgba(232, 210, 176, 0.14) !important;
  transition: background 0.2s ease !important;
  gap: 20px !important;
  text-decoration: none !important;
}

.article-list-row:last-child {
  border-bottom: none !important;
}

.article-list-row:hover {
  background: rgba(42, 35, 30, 0.85) !important;
}

.article-list-row__title {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex: 1 !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

.article-list-row__icon {
  width: 16px !important;
  height: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: var(--yx-amber, #cca054) !important;
  flex-shrink: 0 !important;
}

.article-list-row__icon svg {
  width: 16px !important;
  height: 16px !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 2 !important;
}

.article-list-row__title a {
  color: #fff8ee !important;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  transition: color 0.2s ease !important;
}

.article-list-row__title a:hover {
  color: var(--yx-amber, #cca054) !important;
  text-decoration: underline !important;
}

.article-list-row__meta {
  display: flex !important;
  align-items: center !important;
  gap: 40px !important;
  flex-shrink: 0 !important;
  font-size: 13px !important;
  color: var(--yx-dim, #b8a698) !important;
}

.article-list-row__views {
  color: rgba(184, 166, 152, 0.8) !important;
}

.article-list-row__date {
  color: rgba(184, 166, 152, 0.8) !important;
  font-family: var(--font-mono, monospace) !important;
}

@media (max-width: 640px) {
  .article-list-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    padding: 12px 14px !important;
  }
  .article-list-row__meta {
    width: 100% !important;
    justify-content: space-between !important;
    gap: 12px !important;
    font-size: 11.5px !important;
  }
}

/* ---------- 头部切换城市弹窗 & 搜索联想下拉 ---------- */
.city-trigger-wrap {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
}

.city-trigger {
  background: transparent !important;
  border: none !important;
  color: inherit !important;
  font: inherit !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 6px 10px !important;
  border-radius: 6px !important;
  transition: background 0.2s ease !important;
}

.city-trigger:hover {
  background: rgba(232, 210, 176, 0.08) !important;
}

.city-popover {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  width: 320px !important;
  background: rgba(28, 24, 21, 0.96) !important;
  border: 1px solid rgba(232, 210, 176, 0.22) !important;
  border-radius: 12px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(12px) !important;
  padding: 16px !important;
  z-index: 1000 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-6px) !important;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s !important;
}

.city-popover.active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.city-popover__head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 12px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid rgba(232, 210, 176, 0.12) !important;
}

.city-popover__head strong {
  color: #fff8ee !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
}

.city-popover__head a {
  color: var(--yx-amber, #cca054) !important;
  font-size: 12px !important;
  text-decoration: none !important;
}

.city-popover__head a:hover {
  text-decoration: underline !important;
}

.city-popover__grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 8px !important;
}

.city-popover__grid a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 32px !important;
  background: rgba(42, 36, 31, 0.8) !important;
  border: 1px solid rgba(232, 210, 176, 0.1) !important;
  border-radius: 6px !important;
  color: #f3eadb !important;
  font-size: 12.5px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.city-popover__grid a:hover {
  background: rgba(204, 160, 84, 0.2) !important;
  border-color: rgba(204, 160, 84, 0.4) !important;
  color: var(--yx-amber, #cca054) !important;
}

/* 搜索联想下拉菜单 */
.header-search-wrap {
  position: relative !important;
  flex: 1 !important;
  max-width: 260px !important;
  margin: 0 14px !important;
}

.header-search-form {
  position: relative !important;
  width: 100% !important;
  margin: 0 !important;
}

.header-search-results {
  position: absolute !important;
  top: calc(100% + 6px) !important;
  left: 0 !important;
  right: 0 !important;
  background: rgba(28, 24, 21, 0.96) !important;
  border: 1px solid rgba(232, 210, 176, 0.22) !important;
  border-radius: 12px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 1000 !important;
  max-height: 360px !important;
  overflow-y: auto !important;
  padding: 8px !important;
}

.header-search-results[hidden] {
  display: none !important;
}

.search-result-group {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: var(--yx-amber, #cca054) !important;
  padding: 6px 10px 4px !important;
  letter-spacing: 0.04em !important;
}

.search-result-item {
  display: flex !important;
  flex-direction: column !important;
  padding: 8px 10px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  transition: background 0.2s ease !important;
}

.search-result-item:hover {
  background: rgba(204, 160, 84, 0.15) !important;
}

.search-result-item strong {
  color: #fff8ee !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.search-result-item small {
  color: var(--yx-dim, #b8a698) !important;
  font-size: 11px !important;
  margin-top: 2px !important;
}

.search-no-result {
  padding: 12px 10px !important;
  font-size: 12px !important;
  color: var(--yx-dim, #b8a698) !important;
  text-align: center !important;
}

/* ---------- 城市选择页：图片1式全省份城市网格列表 ---------- */
.city-matrix-section {
  padding-top: 16px !important;
  margin-top: 0 !important;
}

.city-matrix-container {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border-radius: 12px !important;
  padding: 24px 36px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
  margin-bottom: 30px !important;
}

.city-matrix-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  padding: 14px 0 !important;
  border-bottom: 1px dashed #e8e8e8 !important;
  gap: 24px !important;
}

.city-matrix-row:last-child {
  border-bottom: none !important;
}

.city-matrix-label {
  width: 96px !important;
  flex-shrink: 0 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #ff7800 !important;
  line-height: 1.6 !important;
}

.city-matrix-cities {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px 22px !important;
  flex: 1 !important;
}

.city-matrix-item {
  color: #444444 !important;
  font-size: 13.5px !important;
  text-decoration: none !important;
  line-height: 1.6 !important;
  transition: color 0.15s ease !important;
}

.city-matrix-item:hover {
  color: #ff7800 !important;
  text-decoration: underline !important;
}

.no-store-notice-text {
  color: #ff7800 !important;
  font-weight: 700 !important;
  font-size: 15.5px !important;
  letter-spacing: 0.2px !important;
}

.city-matrix-title {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 16px 0 24px 0 !important;
  white-space: nowrap !important;
  letter-spacing: -0.5px !important;
}

@media (max-width: 768px) {
  .city-matrix-container {
    padding: 16px 20px !important;
  }
  .city-matrix-title {
    font-size: 20px !important;
    white-space: normal !important;
  }
  .city-matrix-row {
    flex-direction: column !important;
    gap: 8px !important;
    padding: 12px 0 !important;
  }
  .city-matrix-label {
    width: 100% !important;
    font-size: 13.5px !important;
  }
  .city-matrix-cities {
    gap: 10px 16px !important;
  }
}

.zero-stores-card {
  background: rgba(24, 21, 18, 0.85) !important;
  border: 1px solid rgba(201, 154, 78, 0.35) !important;
  border-radius: 16px !important;
  padding: 40px 32px !important;
  text-align: center !important;
  margin: 20px 0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}
.zero-stores-icon {
  width: 64px !important;
  height: 64px !important;
  margin: 0 auto 16px !important;
  background: rgba(201, 154, 78, 0.15) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #c99a4e !important;
}
.zero-stores-icon svg {
  width: 32px !important;
  height: 32px !important;
  stroke: #c99a4e !important;
  fill: none !important;
  stroke-width: 2 !important;
}
.zero-stores-card h3 {
  font-size: 22px !important;
  color: #ffffff !important;
  margin-bottom: 12px !important;
  font-weight: 700 !important;
}
.zero-stores-card p {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  max-width: 680px !important;
  margin: 0 auto 24px !important;
  line-height: 1.6 !important;
}
.zero-stores-actions {
  display: flex !important;
  justify-content: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  margin-bottom: 28px !important;
}
.btn-phone-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: linear-gradient(135deg, #c99a4e 0%, #a87b36 100%) !important;
  color: #ffffff !important;
  padding: 12px 28px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(201, 154, 78, 0.3) !important;
  transition: all 0.2s ease !important;
}
.btn-phone-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(201, 154, 78, 0.5) !important;
}
.btn-phone-primary svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor !important;
}
.btn-city-secondary {
  display: inline-flex !important;
  align-items: center !important;
  padding: 12px 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  border-radius: 30px !important;
  font-size: 14.5px !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}
.btn-city-secondary:hover {
  border-color: #c99a4e !important;
  color: #c99a4e !important;
}
.zero-stores-recommend {
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  border-top: 1px dashed rgba(255, 255, 255, 0.1) !important;
  padding-top: 20px !important;
}
.zero-stores-recommend a {
  color: #c99a4e !important;
  text-decoration: none !important;
}
.zero-stores-recommend a:hover {
  text-decoration: underline !important;
}

/* Article detail: keep the recommendation rail beside the introduction on desktop. */
@media (max-width: 920px) {
  .article-detail-layout {
    width: min(100% - 32px, var(--yx-max));
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 52px;
  }
  .article-detail {
    width: 100% !important;
  }
  .article-detail__side {
    position: static;
  }
  .article-hero-card {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 14px;
  }
  .article-hero-card__img-wrap {
    aspect-ratio: 16 / 9;
    min-height: auto;
    max-height: none;
  }
  .article-hero-card__header h1 {
    font-size: clamp(23px, 7vw, 32px);
  }
  .article-hero-card__info,
  .article-content-panel {
    padding: 20px !important;
  }
}

/* ---------- Mobile home final pass: prevent compressed desktop controls and clipped grids ---------- */
@media (max-width: 1200px) {
  :root {
    --yx-mobile-gutter: 16px;
    --yx-mobile-gap: 14px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    padding-bottom: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom) + 8px) !important;
  }

  /* Keep the header to the two actions that fit reliably on a phone. */
  .site-header__inner {
    height: 64px !important;
    min-width: 0;
    padding: 0 var(--yx-mobile-gutter) !important;
    gap: 10px !important;
  }

  .brand {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    gap: 8px !important;
    font-size: 20px !important;
    white-space: nowrap !important;
    overflow: hidden;
  }

  .brand > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    flex: 0 0 34px;
    width: 34px !important;
    height: 34px !important;
  }

  .desktop-nav,
  .header-search-wrap,
  .city-trigger-wrap,
  .city-trigger,
  .mobile-menu,
  .hamburger {
    display: none !important;
  }

  .header-phone {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    min-width: 146px;
    min-height: 40px !important;
    margin-left: 0 !important;
    padding: 0 14px !important;
    border-radius: 20px !important;
    font-family: var(--font-mono) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: .015em !important;
  }

  .header-phone__number {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  .header-phone__short {
    display: none !important;
  }

  /* Fixed phone navigation is the complete mobile navigation, including booking. */
  .bottom-nav {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom)) !important;
    padding: 6px 8px max(6px, env(safe-area-inset-bottom)) !important;
  }

  .bottom-nav a {
    min-width: 0;
    min-height: 58px !important;
    padding: 6px 2px !important;
    font-size: 10px !important;
  }

  .bottom-nav a > span:last-child {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;
  }

  .bottom-nav a.bottom-nav__cta svg {
    width: 34px !important;
    height: 34px !important;
    margin-top: -6px;
    padding: 7px !important;
  }

  .bottom-nav a.bottom-nav__cta span {
    margin-top: -2px !important;
  }

  /* The hero must wrap Chinese headings rather than create a horizontal canvas. */
  .hero--home {
    display: block !important;
    width: 100%;
    min-height: 0 !important;
    padding: 38px var(--yx-mobile-gutter) 30px !important;
  }

  .hero__content {
    width: 100%;
    min-width: 0;
  }

  .hero--home .eyebrow {
    font-size: 10px !important;
    letter-spacing: .14em;
  }

  .hero--home h1 {
    width: 100%;
    max-width: 100% !important;
    margin: 12px auto 16px !important;
    font-size: clamp(31px, 9.4vw, 40px) !important;
    line-height: 1.18 !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-wrap: balance;
  }

  .hero--home h1 span {
    display: block !important;
    max-width: 100%;
    margin: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .hero--home h1 span:first-child {
    margin-bottom: 8px !important;
    font-size: clamp(15px, 4.4vw, 19px) !important;
  }

  .hero--home p {
    max-width: 31ch !important;
    margin-inline: auto !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
  }

  /* The homepage content is intentionally one column on every phone width. */
  .section,
  .breadcrumb {
    width: min(100% - (var(--yx-mobile-gutter) * 2), var(--yx-max)) !important;
  }

  .home-feature-section {
    padding-top: 20px !important;
    padding-bottom: 32px !important;
  }

  .home-feature-section .section-head {
    padding: 18px !important;
    margin-bottom: var(--yx-mobile-gap) !important;
  }

  .home-feature-actions {
    gap: 10px !important;
    margin-bottom: var(--yx-mobile-gap) !important;
  }

  .home-feature-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: var(--yx-mobile-gap) !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .home-feature-grid .store-card,
  .home-feature-grid .store-card__link {
    min-width: 0;
    width: 100% !important;
    max-width: 100% !important;
  }

  .home-feature-grid .store-card__link {
    min-height: 0 !important;
    padding: 0 !important;
  }

  .home-feature-grid .store-card__img-wrap {
    aspect-ratio: 16 / 9 !important;
    max-height: 210px;
  }

  .home-feature-grid .store-card__body {
    min-width: 0;
    padding: 14px !important;
  }

  .home-feature-grid .store-card h3,
  .home-feature-grid .store-card p,
  .home-feature-grid .store-card__addr {
    overflow-wrap: anywhere;
  }

  .home-feature-grid .store-card h3 {
    white-space: normal !important;
  }

  /* Do not crop any of the three ranking lists below the featured stores. */
  .home-rank-stores-section {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .home-rank-stores-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: var(--yx-mobile-gap) !important;
  }

  .home-rank-stores-grid,
  .home-rank-stores-grid .rank-column,
  .home-rank-stores-grid .store-rank-list {
    min-width: 0;
    max-height: none !important;
    overflow: visible !important;
  }

  .rank-column {
    padding: 16px !important;
  }

  .store-rank-item {
    min-width: 0;
  }

  /* Article ranking lists share the phone-width single-column layout. */
  .home-article-section,
  .home-rank-articles-grid,
  .home-rank-articles-grid .rank-column,
  .home-rank-articles-grid .rank-list,
  .home-rank-articles-grid .rank-item,
  .home-rank-articles-grid .rank-content {
    min-width: 0;
    max-width: 100%;
  }

  .home-rank-articles-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: var(--yx-mobile-gap) !important;
  }

  .home-rank-articles-grid .rank-column {
    box-sizing: border-box;
    width: 100% !important;
    overflow: hidden;
  }

  .home-rank-articles-grid .rank-column-head {
    display: flex !important;
    align-items: center;
    min-width: 0;
    gap: 8px !important;
  }

  .home-rank-articles-grid .rank-column-head h3 {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 17px !important;
  }

  .home-rank-articles-grid .rank-more {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 12px !important;
  }

  .home-rank-articles-grid .rank-item {
    display: flex !important;
    gap: 10px !important;
    padding: 12px 0 !important;
  }

  .home-rank-articles-grid .rank-title-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center;
    min-width: 0;
    gap: 8px !important;
  }

  .home-rank-articles-grid .rank-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px !important;
  }

  .home-rank-articles-grid .rank-heat {
    flex: 0 0 auto;
    padding: 4px 6px !important;
    font-size: 11px !important;
    line-height: 1.2;
    white-space: nowrap;
  }

  .home-rank-articles-grid .rank-excerpt {
    overflow-wrap: anywhere;
  }

  .scroll-top {
    bottom: calc(var(--bottom-nav-height) + 14px) !important;
  }
}

/* ---------- Desktop city quick navigation ---------- */
.city-quick-nav { display: none; }

@media (min-width: 1201px) {
  body.has-city-quick-nav {
    --city-quick-width: 256px;
    --city-quick-gap: 30px;
    --city-shell-half: 880px;
    --city-content-left: max(calc(50% - var(--city-shell-half) + var(--city-quick-width) + var(--city-quick-gap)), calc(24px + var(--city-quick-width) + var(--city-quick-gap)));
  }

  .city-quick-nav {
    display: block;
    position: fixed;
    z-index: 900;
    top: 92px;
    bottom: 22px;
    left: max(24px, calc(50% - var(--city-shell-half)));
    width: var(--city-quick-width);
    min-width: 0;
  }

  .city-quick-nav__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(232, 210, 176, .18);
    border-radius: 18px;
    background: linear-gradient(165deg, rgba(37, 29, 24, .98), rgba(15, 12, 11, .98));
    box-shadow: 0 22px 54px rgba(0, 0, 0, .34);
  }

  .city-quick-nav__title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 17px 16px 14px;
    color: #f8efe1;
    border-bottom: 1px solid rgba(232, 210, 176, .13);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: .01em;
  }

  .city-quick-nav__title span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border: 1px solid rgba(225, 184, 111, .4);
    border-radius: 9px;
    color: #e4bd72;
    background: rgba(225, 184, 111, .07);
  }

  .city-quick-nav__title svg { width: 17px; height: 17px; }

  .city-quick-nav__national {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 12px 8px;
    padding: 10px 11px;
    border: 1px solid rgba(232, 210, 176, .16);
    border-radius: 10px;
    color: #f3e6d2;
    background: rgba(255, 255, 255, .035);
    text-decoration: none;
    font-weight: 800;
  }

  .city-quick-nav__national small { color: #b9a88f; font-size: 11px; font-weight: 600; }
  .city-quick-nav__national:hover,
  .city-quick-nav__links a:hover { border-color: rgba(225, 184, 111, .46); color: #fff7ea; background: rgba(225, 184, 111, .10); }
  .city-quick-nav__national.is-current,
  .city-quick-nav__links a.is-current { color: #fff8ef; border-color: rgba(203, 70, 91, .64); background: linear-gradient(135deg, rgba(157, 37, 58, .85), rgba(102, 23, 36, .82)); box-shadow: 0 6px 16px rgba(145, 26, 48, .26); }

  .city-quick-nav__scroll {
    min-height: 0;
    overflow-y: auto;
    padding: 4px 12px 16px;
    scrollbar-color: rgba(225, 184, 111, .36) transparent;
    scrollbar-width: thin;
  }

  .city-quick-nav__group { padding-top: 12px; }
  .city-quick-nav__group h2 { margin: 0 0 7px; padding: 0 4px; color: #d6ac5a; font-size: 12px; letter-spacing: .12em; }
  .city-quick-nav__links { display: grid; gap: 6px; }
  .city-quick-nav__links a { display: block; padding: 8px 10px; border: 1px solid rgba(232, 210, 176, .10); border-radius: 8px; color: #dcd0be; background: rgba(255, 255, 255, .025); font-size: 13px; line-height: 1.25; text-decoration: none; transition: border-color .18s ease, background .18s ease, color .18s ease; }

  body.has-city-quick-nav main > .breadcrumb,
  body.has-city-quick-nav main > .hero,
  body.has-city-quick-nav main > .page-hero,
  body.has-city-quick-nav main > .section,
  body.has-city-quick-nav main > .store-detail,
  body.has-city-quick-nav main > .recruit-hero,
  body.has-city-quick-nav main > .article-detail-layout {
    box-sizing: border-box;
    width: min(var(--yx-max), calc(100% - var(--city-content-left) - 24px)) !important;
    max-width: none !important;
    margin-left: var(--city-content-left) !important;
    margin-right: 24px !important;
  }

  body.has-city-quick-nav .site-footer__container,
  body.has-city-quick-nav .footer-grid,
  body.has-city-quick-nav .footer-friendly-links {
    box-sizing: border-box;
    width: min(var(--yx-max), calc(100% - var(--city-content-left) - 24px)) !important;
    max-width: none !important;
    margin-left: var(--city-content-left) !important;
    margin-right: 24px !important;
  }

  .city-nav-target { scroll-margin-top: 112px; padding-top: 30px; }
  .city-nav-target + .city-nav-target { margin-top: 34px; border-top: 1px solid rgba(232, 210, 176, .13); }
  .city-nav-target__head { padding-bottom: 16px; }
  .city-tier-section { padding-top: 38px !important; padding-bottom: 42px !important; }
  .city-tier-section + .city-tier-section { padding-top: 14px !important; }
  .city-tier-section__head { padding-bottom: 8px; border-bottom: 1px solid rgba(232, 210, 176, .18); }
  .city-tier-section__head h2 { margin: 5px 0 0; }
}

@media (max-width: 1200px) {
  .city-quick-nav { display: none !important; }

  /* Every generated page carries the desktop-navigation body marker. Keep that
     marker inert on phones so no desktop sizing can leak into the mobile shell. */
  body.has-city-quick-nav,
  body.has-city-quick-nav main {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  body.has-city-quick-nav .site-header__inner {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  body.has-city-quick-nav .brand {
    flex: 1 1 auto !important;
    max-width: calc(100% - 156px) !important;
  }

  body.has-city-quick-nav .header-phone {
    flex: 0 0 146px !important;
    margin-left: 0 !important;
  }

  body.has-city-quick-nav .hero--home h1,
  body.has-city-quick-nav .hero--home h1 span {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }
}

/* ---------- 18. 文章与富文本图片结构重置 & Lightbox 模态框 ---------- */
.article-content .article-content__figure {
  box-sizing: border-box;
  display: block;
  margin: 4px 0 !important;
  padding: 0 !important;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
  text-align: initial;
  background: transparent !important;
}

.article-content .article-content__figure > img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 720px;
  object-fit: contain;
  object-position: top center !important;
  margin: 0 !important;
  padding: 0 !important;
  vertical-align: top;
  border-radius: inherit;
  cursor: zoom-in;
}

/* Lightbox 全屏高清大图模态框 */
.img-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 8, 7, 0.88);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.img-lightbox-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.img-lightbox-modal__content {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-lightbox-modal__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75);
}

.img-lightbox-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.img-lightbox-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.img-lightbox-modal__hint {
  margin-top: 10px;
  color: rgba(246, 238, 223, 0.75);
  font-size: 13px;
}
