/* ============================================================
   王文鑫手机店 - 全局样式表
   从 Vue SPA 转换为纯 PHP 前端
   ============================================================ */

/* ============================================================
   1. 字体导入
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Noto+Sans+SC:wght@300;400;500;700;900&family=Noto+Sans+TC:wght@300;400;500;700;900&family=Noto+Sans+Khmer:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   2. CSS Reset / Normalize
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Noto Sans SC', 'Noto Sans TC', 'Noto Sans Khmer', 'Khmer OS', 'Khmer UI', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

/* ============================================================
   3. CSS 变量定义（供参考，实际值已在样式中内联）
   ============================================================
   --primary:        #2563eb
   --danger:         #ff4757
   --success:        #10b981
   --warning:        #f59e0b
   --gray-50:        #f9fafb
   --gray-100:       #f3f4f6
   --gray-200:       #e5e7eb
   --gray-300:       #d1d5db
   --gray-400:       #9ca3af
   --gray-500:       #6b7280
   --gray-600:       #4b5563
   --gray-700:       #374151
   --gray-800:       #1f2937
   --gray-900:       #111827
   --radius:         8px
   --radius-sm:      6px
   --radius-md:      12px
   --radius-lg:      16px
   --radius-full:    9999px
   --shadow-xl:      0 20px 25px -5px rgba(0,0,0,.1)
   --transition-fast: 0.15s ease
   ============================================================ */

/* ============================================================
   4. 全局动画
   ============================================================ */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   5. 全局滚动动画
   ============================================================ */
.scroll-animate {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-animate.hidden {
  opacity: 0;
  transform: translateY(20px);
}
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-animate-delay-1 { transition-delay: 0.1s; }
.scroll-animate-delay-2 { transition-delay: 0.2s; }
.scroll-animate-delay-3 { transition-delay: 0.3s; }

/* 页面过渡动画 */
.page-enter-active, .page-leave-active { transition: opacity 0.2s ease; }
.page-enter-from, .page-leave-to { opacity: 0; }
.fade-enter-active, .fade-leave-active { transition: opacity 0.3s ease; }
.fade-enter-from, .fade-leave-to { opacity: 0; }
.slide-enter-active, .slide-leave-active { transition: transform 0.3s ease; }
.slide-enter-from, .slide-leave-to { transform: translateX(100%); }

/* Modal 弹窗动画 */
.modal-enter-active, .modal-leave-active { transition: all 0.25s ease; }
.modal-enter-from, .modal-leave-to { opacity: 0; }
.modal-enter-from .modal-container, .modal-leave-to .modal-container { transform: scale(0.95) translateY(10px); }

/* ============================================================
   6. 全局加载状态
   ============================================================ */
.loading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  color: #6b7280;
  font-size: 14px;
}
.loading-wrap.small { padding: 16px 0; }

.loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e5e7eb;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 12px;
}
.loading-wrap.small .loading-spinner {
  width: 24px;
  height: 24px;
  border-width: 2px;
  margin-bottom: 0;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}
.loading-overlay .loading-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e5e7eb;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.loading-text {
  margin-top: 12px;
  font-size: 14px;
  color: #6b7280;
}

.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 16px;
}
.loading-state .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* 空状态 */
.empty-state {
  text-align: center;
  padding: 48px 16px;
}

/* ============================================================
   7. Header / 导航栏
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 12px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.logo-icon-wrap {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.logo-name {
  font-size: 17px;
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1.2;
  white-space: nowrap;
}
.logo-sub {
  font-size: 12px;
  color: #059669;
  line-height: 1.3;
}
.logo-trust {
  font-size: 10px;
  color: #059669;
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  padding: 1px 7px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 500;
  margin-left: 4px;
}

/* Desktop Nav */
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  font-size: 13px;
  color: #444;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
  font-weight: 500;
}
.nav-link:hover, .nav-link.active {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.06);
}
.nav-arrow {
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Mega Menu */
.nav-dropdown {
  position: relative;
}
.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  pointer-events: none;
}
.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.mega-menu {
  width: 780px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 24px;
  margin-top: 12px;
}
.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mega-group-title {
  font-size: 12px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f0f0f0;
}
.mega-group-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.mega-item:hover {
  background: #f0f4ff;
  color: #2563eb;
}
.mega-item-icon {
  font-size: 14px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
  min-height: 40px;
}
.phone-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
}
.phone-btn:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.tg-btn {
  background: #e8f0fe;
  color: #2563eb;
}
.tg-btn:hover {
  background: #dbeafe;
}
.phone-text {
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  min-height: 44px;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #2c4a6e;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   9. 语言切换器
   ============================================================ */

/* === 桌面端：触发按钮 + 下拉菜单 === */
.lang-switcher {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 8px;
}
.lang-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px 6px 6px;
  border-radius: 8px;
  background: rgba(37,99,235,0.07);
  border: 1.5px solid rgba(37,99,235,0.15);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #2563eb;
  transition: all 0.2s;
}
.lang-trigger:hover {
  background: rgba(37,99,235,0.12);
  border-color: #2563eb;
}
.lang-cur {
  max-width: 65px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1;
}
.lang-arrow {
  flex-shrink: 0;
  color: #2563eb;
  transition: transform 0.25s;
}
.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
}

/* 桌面端下拉面板 */
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  z-index: 400;
  animation: langDropIn 0.18s ease;
}
.lang-switcher.open .lang-dropdown {
  display: block;
}
.lang-dropdown-title {
  padding: 12px 16px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid #f3f4f6;
}
.lang-dropdown-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  text-decoration: none;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.15s;
  border-bottom: 1px solid #f9fafb;
  position: relative;
}
.lang-dropdown-option:last-child {
  border-bottom: none;
}
.lang-dropdown-option:hover {
  background: #f0f4ff;
  color: #2563eb;
}
.lang-dropdown-option.active {
  background: rgba(37,99,235,0.06);
  color: #2563eb;
  font-weight: 600;
}
.lang-dropdown-text {
  flex: 1;
  line-height: 1;
}
.lang-dropdown-check {
  color: #2563eb;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.lang-flag-img {
  width: 22px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.lang-flag-img-lg {
  width: 38px;
  height: 26px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* 兼容旧样式 */
.lang-item { display: none; }
.lang-label { display: none; }

/* === 手机端：触发按钮 + 下拉菜单 === */
.mobile-lang-switch {
  display: none;
  position: relative;
  z-index: 300;
  flex-shrink: 0;
}
.mobile-lang-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px 6px 6px;
  border-radius: 8px;
  background: rgba(37,99,235,0.07);
  border: 1.5px solid rgba(37,99,235,0.15);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #2563eb;
  transition: all 0.2s;
}
.mobile-lang-trigger:hover {
  background: rgba(37,99,235,0.12);
  border-color: #2563eb;
}
.mobile-lang-cur {
  max-width: 52px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1;
}
.mobile-lang-arrow {
  flex-shrink: 0;
  color: #2563eb;
  transition: transform 0.25s;
}
.mobile-lang-switch.open .mobile-lang-arrow {
  transform: rotate(180deg);
}

/* 手机端下拉面板 */
.mobile-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  z-index: 400;
  animation: langDropIn 0.18s ease;
}
.mobile-lang-switch.open .mobile-lang-dropdown {
  display: block;
}
@keyframes langDropIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.mobile-lang-title {
  padding: 12px 16px 8px;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid #f3f4f6;
}
.mobile-lang-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  text-decoration: none;
  color: #374151;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.15s;
  border-bottom: 1px solid #f9fafb;
  position: relative;
}
.mobile-lang-option:last-child {
  border-bottom: none;
}
.mobile-lang-option:hover {
  background: #f0f4ff;
  color: #2563eb;
}
.mobile-lang-option.active {
  background: rgba(37,99,235,0.06);
  color: #2563eb;
  font-weight: 600;
}
.lang-flag-img-lg {
  width: 38px;
  height: 26px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.mobile-lang-option-text {
  flex: 1;
  line-height: 1;
}
.mobile-lang-check {
  color: #2563eb;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

/* 兼容旧样式 — 防止残留 */
.lang-flag-btn {
  display: none;
}

/* ============================================================
   10. 手机端侧边菜单
   ============================================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 201;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}
.mobile-menu-title {
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.mobile-close {
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f5f5;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-body {
  padding: 2px 8px 100px;
  overflow-y: auto;
}
/* 主导航 — 2列网格 */
.mobile-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-bottom: 6px;
}
.mobile-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 6px 5px;
  font-size: 12px;
  color: #4b5563;
  text-decoration: none;
  border-radius: 7px;
  transition: all 0.15s ease;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  min-height: 32px;
}
.mobile-link:hover {
  background: #eff6ff;
  color: #2563eb;
  border-color: #dbeafe;
}
.mobile-link.active {
  background: #eff6ff;
  color: #2563eb;
  border-color: #bfdbfe;
  font-weight: 600;
}
/* 产品搜索框 */
.mobile-search-form {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
  border: 2px solid #10b981;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mobile-search-form:focus-within {
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}
.mobile-search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 14px;
  color: #10b981;
  flex-shrink: 0;
}
.mobile-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 4px;
  font-size: 16px;
  color: #1e3a5f;
  background: transparent;
  min-width: 0;
}
.mobile-search-input::placeholder {
  color: #9ca3af;
  font-size: 14px;
}
.mobile-search-btn {
  flex-shrink: 0;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #10b981;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-search-btn:hover {
  background: #059669;
}
/* 快捷入口 — 2列网格 */
.mobile-group {
  margin-bottom: 6px;
}
.mobile-group-title {
  padding: 5px 3px 3px;
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mobile-quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.mobile-quick-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 7px;
  font-size: 12px;
  color: #475569;
  text-decoration: none;
  border-radius: 7px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  transition: all 0.15s ease;
}
.mobile-quick-item:hover {
  background: #f0f9ff;
  color: #0284c7;
  border-color: #bae6fd;
}
/* 联系信息 — 紧凑列表 */
.mobile-contact-compact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.m-contact-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  font-size: 12px;
  color: #475569;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s ease;
}
.m-contact-row:hover {
  background: #f8fafc;
  color: #2563eb;
}
.mobile-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 6px 0;
}
.mobile-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 12px;
  padding: 14px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  min-height: 48px;
}

/* ============================================================
   11. Main 内容区
   ============================================================ */
.main-content {
  min-height: calc(100vh - 64px);
}

/* 手机端联系信息 */
.footer-mobile-info {
  display: none;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 20px 16px 12px;
}
.footer-mobile-info-inner {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.04);
  border: 1px solid rgba(226,232,240,0.6);
}
.fmi-line {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.7;
  margin: 0;
  text-align: center;
}
.fmi-line + .fmi-line {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed #e2e8f0;
}
.fmi-line:first-child {
  font-size: 11px;
  margin-bottom: 2px;
}
.fmi-line a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.fmi-line a:focus,
.fmi-line a:active {
  outline: none;
  box-shadow: none;
}
.fmi-line a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-mobile-info {
    display: block;
  }
}
/* 窄屏手机：缩小内边距 */
@media (max-width: 420px) {
  .footer-mobile-info {
    padding: 16px 12px 10px;
  }
  .footer-mobile-info-inner {
    padding: 12px 12px;
    border-radius: 10px;
  }
  .fmi-line {
    font-size: 11px;
  }
  .fmi-line:first-child {
    font-size: 10px;
  }
}

/* ============================================================
   12. Footer
   ============================================================ */
.footer {
  background: #fff;
  color: #475569;
  padding-top: 48px;
  padding-bottom: calc(80px + env(safe-area-inset-bottom));
  border-top: 1px solid #f1f5f9;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr auto;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #f1f5f9;
}
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 28px;
  }
  .footer-col-qr { grid-column: 1 / -1; }
  .footer-qr-grid { flex-direction: row; justify-content: flex-start; }
}
@media (max-width: 639px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 20px;
  }
  .footer-col-brand { grid-column: 1 / -1; }
  .footer-col-contact { grid-column: 1 / -1; }
  .footer-col-qr { display: none !important; }
  .footer-desc { display: none; }
  .footer-warn { display: none; }
  .footer-logo { margin-bottom: 0; }
}
.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: #64748b;
}
.footer-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover {
  color: #2563eb;
}
.footer-contact-list p {
  font-size: 13px;
  line-height: 2.2;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-icon {
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 12px;
  color: #94a3b8;
}
.footer-warn {
  margin-top: 8px;
  color: #ea580c;
  font-weight: 500;
  font-size: 13px;
}

/* Footer 二维码 */
.footer-qr-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-qr-item {
  text-align: center;
}
.footer-qr-img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-qr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-qr-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
}

/* Footer SEO 链接（站点地图 / RSS） */
.footer-seo-links {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
}
.footer-seo-link {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-seo-link:hover {
  color: #2563eb;
}
.footer-seo-divider {
  color: #cbd5e1;
  user-select: none;
}

/* ============================================================
   13. 手机端底部悬浮栏 — 5项Tab导航
   ============================================================ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 100;
  padding: 2px 4px calc(2px + env(safe-area-inset-bottom));
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  align-items: flex-end;
  justify-content: space-around;
}

/* 普通Tab项 */
.bottom-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 1px 3px;
  font-size: 9px;
  color: #9ca3af;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
  min-height: 44px;
  justify-content: flex-end;
  -webkit-tap-highlight-color: transparent;
}
.bottom-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s, stroke 0.2s;
  width: 18px;
  height: 18px;
}
.bottom-btn:hover,
.bottom-btn.active {
  color: #2563eb;
}
.bottom-btn:hover svg,
.bottom-btn.active svg {
  stroke: #2563eb;
  transform: translateY(-1px);
}
.bottom-label {
  font-size: 9px;
  line-height: 1.2;
  white-space: nowrap;
}

/* 中间大按钮 — 突出显示（与左右Tab对齐） */
.bottom-btn-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 4px 1px 3px;
  font-size: 9px;
  color: #0088cc;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  min-height: 44px;
  justify-content: flex-end;
}
.bottom-btn-center .bottom-center-icon,
.bottom-btn-center .bottom-center-logo-wrap {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0088cc, #29b6f6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  box-shadow: 0 1px 4px rgba(0, 136, 204, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.bottom-btn-center:hover .bottom-center-icon,
.bottom-btn-center:hover .bottom-center-logo-wrap {
  transform: scale(1.06);
  box-shadow: 0 2px 6px rgba(0, 136, 204, 0.35);
}
.bottom-btn-center .bottom-label {
  color: #6b7280;
  font-weight: 500;
  font-size: 9px;
  line-height: 1.2;
  white-space: nowrap;
}
.bottom-center-logo {
  width: 14px;
  height: 14px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  padding: 1px;
}
.bottom-center-fallback {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0088cc, #29b6f6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* ============================================================
   14. 回到顶部按钮
   ============================================================ */
.back-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.3s;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* 浮动 Telegram 按钮 */
.float-telegram {
  display: none;
  position: fixed;
  bottom: 136px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #229ED9;
  color: #fff;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 4px 16px rgba(34, 158, 217, 0.45), 0 0 0 4px rgba(255,255,255,0.7);
  border: 2px solid #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-telegram:hover,
.float-telegram:active {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(34, 158, 217, 0.55), 0 0 0 5px rgba(255,255,255,0.85);
}
.float-telegram svg {
  display: block;
}

/* ============================================================
   15. 通用按钮样式
   ============================================================ */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  min-height: 44px;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.2);
  min-height: 44px;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
}

/* 电话按钮 — 绿色渐变 */
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  min-height: 44px;
}
.btn-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

/* 地图导航按钮 — 蓝色渐变 */
.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  min-height: 44px;
}
.btn-map:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: 2px solid rgba(255,255,255,0.4);
  min-height: 44px;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 40px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #f3f4f6;
  color: #374151;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  min-height: 40px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}
.btn-lg.btn-primary { padding: 12px 28px; }

/* ============================================================
   16. 首页样式 (Home)
   ============================================================ */
.home-page .hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 60px;
  min-height: auto;
  display: flex;
  align-items: center;
}
.home-page .hero.hero-simple {
  padding: 0;
  display: block;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}
.home-page .hero-bg {
  position: absolute;
  inset:0;
  z-index:0;
  overflow: hidden;
}
.home-page .hero-bg-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.home-page .hero-gradient {
  position: absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(30, 41, 59, 0.78) 50%, rgba(15, 23, 42, 0.82) 100%);
}
.home-page .hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}
.home-page .hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.home-page .hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 107, 53, 0.2);
  color: #ff8c42;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  width: fit-content;
}
.home-page .hero-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.home-page .hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.6;
}
.home-page .hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.home-page .hero-tag {
  padding: 5px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
}
.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Contact Card */
.home-page .contact-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 20px;
  color: #fff;
}
.home-page .card-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}
.home-page .card-time {
  font-size: 22px;
  font-weight: 800;
  color: #ff8c42;
  margin-bottom: 4px;
}
.home-page .card-note {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.home-page .card-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 14px 0;
}
.home-page .card-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}
.home-page .card-actions {
  display: flex;
  gap: 8px;
}
.home-page .card-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.home-page .card-btn-phone {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: #fff;
}
.home-page .card-btn-phone:hover {
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}
.home-page .card-btn-tg {
  background: rgba(37, 99, 235, 0.3);
  color: #93c5fd;
}
.home-page .card-btn-tg:hover {
  background: rgba(37, 99, 235, 0.5);
}

/* ============================================================
   手机端Hero Banner轮播 (Mobile Only)
   ============================================================ */
.mobile-hero-carousel {
  display: none;
}

/* 响应式：手机端显示轮播，隐藏背景图 */
@media (max-width: 768px) {
  .home-page .hero-bg {
    display: none;
  }
  .home-page .hero:not(.hero-simple) {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
  }
  .home-page .hero.hero-simple {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  }
  .mobile-hero-carousel {
    display: block;
    order: 2;
    width: 100%;
    margin: 0;
  }
  .home-page .hero-left {
    order: 1;
  }
  .home-page .hero-right {
    order: 3;
  }

  /* 轮播轨道 */
  .m-carousel-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 0 0 8px;
    margin: 0 -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .m-carousel-track::-webkit-scrollbar {
    display: none;
  }

  /* 单个幻灯片 */
  .m-carousel-slide {
    flex: 0 0 85%;
    max-width: 340px;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 10;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.2s;
    -webkit-tap-highlight-color: transparent;
  }
  .m-carousel-slide:active {
    transform: scale(0.97);
  }
  .m-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* 图片叠加层 */
  .m-carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
  }
  .m-carousel-tag {
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    background: rgba(255,107,53,0.9);
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
  }
  .m-carousel-btn {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
  }

  /* 第二张幻灯片 — CSS渐变替代图 */
  .m-carousel-slide-alt {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10;
  }
  .m-carousel-alt-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%);
  }
  .m-carousel-alt-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px;
    text-align: center;
  }
  .m-carousel-alt-icon {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 2px;
  }
  .m-carousel-alt-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
  }
  .m-carousel-alt-desc {
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
    max-width: 200px;
  }
  .m-carousel-slide-alt .m-carousel-btn {
    margin-top: 4px;
    background: rgba(255,255,255,0.25);
  }

  /* 指示器 */
  .m-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
  }
  .m-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: all 0.3s;
    cursor: pointer;
  }
  .m-dot.active {
    width: 20px;
    border-radius: 4px;
    background: #ff8c42;
  }
}

@media (max-width: 480px) {
  .m-carousel-slide {
    flex: 0 0 88%;
    max-width: none;
    border-radius: 14px;
  }
  .m-carousel-track {
    margin: 0 -12px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Notice */
.home-page .notice-section {
  background: #fffbe6;
  border-bottom: 1px solid #ffe58f;
}
.home-page .notice-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #8a6d3b;
  line-height: 1.6;
}
.home-page .notice-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Stats */
.home-page .stats-section {
  padding: 32px 20px;
  background: #fff;
}
.home-page .stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.home-page .stat-card {
  text-align: center;
}
.home-page .stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #1e3a5f;
  line-height: 1;
}
.home-page .stat-number span {
  font-size: 0.5em;
  color: #ff6b35;
}
.home-page .stat-label {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
}

/* Section Common */
.home-page .section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.home-page .section-header {
  text-align: center;
  margin-bottom: 28px;
}
.home-page .section-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 8px;
}
.home-page .section-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin-top: 4px;
}
.home-page .section-more {
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

/* Categories - 横滑 */
.home-page .categories-section {
  padding: 36px 0;
  background: #f8f9fa;
}
.home-page .cat-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.home-page .cat-scroll-wrap::-webkit-scrollbar {
  display: none;
}
.home-page .cat-grid {
  display: flex;
  gap: 10px;
  padding: 0 20px;
  width: max-content;
  min-width: 100%;
  box-sizing: border-box;
}
.home-page .cat-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.25s;
  border: 1px solid rgba(0,0,0,0.04);
  white-space: nowrap;
  min-width: 0;
  flex-shrink: 0;
}
.home-page .cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #2563eb;
}
.home-page .cat-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.home-page .cat-name {
  font-size: 13px;
  font-weight: 600;
  color: #2c4a6e;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-page .cat-arrow {
  font-size: 12px;
  color: #ccc;
  transition: color 0.2s;
  flex-shrink: 0;
}
.home-page .cat-card:hover .cat-arrow {
  color: #2563eb;
}

/* Products */
.home-page .hot-section {
  padding: 36px 0;
  background: #fff;
}
.home-page .product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.home-page .product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}
.home-page .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.home-page .product-image {
  position: relative;
  padding-top: 100%;
  background: linear-gradient(135deg, #f0f4ff, #e8ecf4);
}
.home-page .product-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home-page .placeholder-icon {
  font-size: 36px;
  opacity: 0.3;
}
.home-page .placeholder-brand {
  font-size: 11px;
  color: #aaa;
  margin-top: 6px;
  font-weight: 600;
}
.home-page .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}
.home-page .badge-new {
  background: #2563eb;
  color: #fff;
}
.home-page .badge-hot {
  background: #ff4757;
  color: #fff;
  left: auto;
  right: 10px;
}
.home-page .product-info {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.home-page .product-name {
  font-size: 13px;
  font-weight: 600;
  color: #2c4a6e;
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-page .product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 6px;
}
.home-page .product-tag {
  padding: 2px 6px;
  background: #f0f4ff;
  color: #2563eb;
  border-radius: 4px;
  font-size: 10px;
}
.home-page .product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}
.home-page .spec-item {
  padding: 2px 6px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 10px;
  color: #6b7280;
}
.home-page .product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
}
.home-page .price-current {
  font-size: 18px;
  font-weight: 700;
  color: #ff4757;
}
.home-page .price-original {
  font-size: 12px;
  color: #bbb;
  text-decoration: line-through;
}

/* Services */
.home-page .service-section {
  padding: 36px 0;
  background: #f8f9fa;
}
.home-page .service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.home-page .service-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
.home-page .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.home-page .service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.home-page .service-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 6px;
}
.home-page .service-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 12px;
  flex: 1;
}
.home-page .service-link {
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

/* Repair */
.home-page .repair-section {
  padding: 36px 0;
  background: #fff;
}
.home-page .repair-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.home-page .repair-card {
  padding: 14px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.home-page .repair-card:hover {
  background: #f0f4ff;
  border-color: #dbeafe;
}
.home-page .repair-name {
  font-size: 13px;
  font-weight: 600;
  color: #2c4a6e;
  margin-bottom: 4px;
}
.home-page .repair-desc {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 6px;
}
.home-page .repair-price {
  font-size: 11px;
  color: #ff6b35;
  font-weight: 500;
}

/* News */
.home-page .news-section {
  padding: 36px 0;
  background: #f8f9fa;
}
.home-page .announcement-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.home-page .news-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.home-page .news-item:last-child {
  border-bottom: none;
}
.home-page .news-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ddd;
  margin-top: 6px;
  flex-shrink: 0;
}
.home-page .news-dot.top {
  background: #ff4757;
}
.home-page .news-content {
  flex: 1;
}
.home-page .news-title {
  font-size: 14px;
  font-weight: 600;
  color: #2c4a6e;
  margin-bottom: 4px;
}
.home-page .news-pin {
  margin-right: 4px;
}
.home-page .news-text {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.6;
}

/* CTA */
.home-page .cta-section {
  padding: 48px 20px;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 40%, #2563eb 100%);
}
.home-page .cta-inner {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.home-page .cta-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.home-page .cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.home-page .cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   回收/典当推广横幅 — 仅桌面端显示
   ============================================================ */
.home-cta-banner {
  display: none;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
  padding: 48px 20px;
  position: relative;
  overflow: hidden;
}
.home-cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.home-cta-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.home-cta-banner-left {
  flex: 1;
}
.home-cta-banner-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.home-cta-banner-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 620px;
}
.home-cta-banner-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
.home-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
  min-width: 160px;
}
.home-cta-btn-recycle {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
}
.home-cta-btn-recycle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
}
.home-cta-btn-pawn {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
}
.home-cta-btn-pawn:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
/* 桌面端显示 */
@media (min-width: 769px) {
  .home-cta-banner {
    display: block;
  }
}
/* 平板适配 */
@media (max-width: 991px) and (min-width: 769px) {
  .home-cta-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .home-cta-banner-desc {
    max-width: 100%;
  }
  .home-cta-banner-right {
    flex-direction: row;
    gap: 12px;
  }
}

/* ============================================================
   17. 产品列表页样式 (Products)
   ============================================================ */
.products-page .breadcrumb {
  background: #f8f9fa;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.products-page .breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 13px;
  color: #6b7280;
}
.products-page .breadcrumb a {
  color: #666;
  text-decoration: none;
}
.products-page .breadcrumb a:hover {
  color: #2563eb;
}
.products-page .sep {
  margin: 0 8px;
  color: #ccc;
}
.products-page .current {
  color: #2c4a6e;
  font-weight: 500;
}

/* Layout */
.products-page {
  background: #f4f6fb;
  min-height: 70vh;
}
.products-page .products-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 769px) {
  .products-page .products-layout {
    flex-direction: row;
    align-items: flex-start;
    padding: 28px 24px 52px;
    gap: 20px;
  }
  .products-page .products-main {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    padding: 20px 18px 24px;
    min-width: 0;
  }
}

/* Mobile Filter Bar */
.products-page .mobile-filter-bar {
  display: block;
  position: sticky;
  top: 64px;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  margin: 0 -12px;
  padding: 10px 12px;
}
.products-page .filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.products-page .filter-scroll::-webkit-scrollbar {
  display: none;
}

.products-page .filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
  color: #555;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 36px;
}
.products-page .filter-chip:hover {
  border-color: #2563eb;
  color: #2563eb;
}
.products-page .filter-chip.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  font-weight: 600;
}
.products-page .filter-chip.sm {
  padding: 6px 12px;
  font-size: 12px;
  min-height: 32px;
}

.products-page .mobile-sub-filters {
  display: block;
}
.products-page .sub-filter-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 12px 10px;
  scrollbar-width: none;
}
.products-page .sub-filter-scroll::-webkit-scrollbar {
  display: none;
}
.products-page .price-scroll {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 12px 10px;
}
.products-page .price-scroll::-webkit-scrollbar {
  display: none;
}

/* Desktop Sidebar */
.products-page .desktop-only {
  display: none;
}
.products-page .sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
  width: 220px;
  flex-shrink: 0;
}
.products-page .sidebar-section {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.products-page .sidebar-title {
  font-size: 13px;
  font-weight: 700;
  color: #2c4a6e;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.products-page .cat-group {
  margin-bottom: 6px;
}
.products-page .cat-group:last-child {
  margin-bottom: 0;
}
.products-page .cat-group-header {
  font-size: 10px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  padding: 4px 8px;
  letter-spacing: 0.5px;
}
.products-page .cat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 8px;
  font-size: 12px;
  color: #555;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.products-page .cat-item:hover {
  background: #f0f4ff;
  color: #2563eb;
}
.products-page .cat-item.active {
  background: #e8f0fe;
  color: #2563eb;
  font-weight: 600;
}
.products-page .cat-item-icon {
  font-size: 13px;
  width: 18px;
  text-align: center;
}

.products-page .sub-cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.products-page .sub-cat-item {
  padding: 5px 12px;
  font-size: 11px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
  color: #666;
}
.products-page .sub-cat-item:hover {
  border-color: #2563eb;
  color: #2563eb;
}
.products-page .sub-cat-item.active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.products-page .price-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.products-page .price-item {
  padding: 5px 10px;
  font-size: 11px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  color: #666;
}
.products-page .price-item:hover {
  border-color: #ff6b35;
  color: #ff6b35;
}
.products-page .price-item.active {
  background: #ff6b35;
  color: #fff;
  border-color: #ff6b35;
}

/* Products Main */
.products-page .products-main {
  flex: 1;
  min-width: 0;
}
.products-page .products-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.products-page .products-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a5f;
}
.products-page .products-count {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
  display: block;
}
.products-page .sort-select {
  padding: 7px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 12px;
  color: #555;
  background: #fff;
  cursor: pointer;
  min-height: 36px;
}

/* Product Grid */
.products-page .product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.products-page .product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.products-page .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.products-page .product-image {
  position: relative;
  padding-top: 100%;
  background: linear-gradient(135deg, #f0f4ff, #e8ecf4);
}
.products-page .product-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.products-page .placeholder-icon {
  font-size: 32px;
  opacity: 0.25;
}
.products-page .placeholder-brand {
  font-size: 10px;
  color: #bbb;
  margin-top: 4px;
  font-weight: 600;
}
.products-page .placeholder-model {
  font-size: 9px;
  color: #ccc;
  margin-top: 2px;
}
.products-page .product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
}
.products-page .badge-new {
  background: #2563eb;
  color: #fff;
}
.products-page .badge-hot {
  background: #ff4757;
  color: #fff;
  left: auto;
  right: 8px;
}
.products-page .badge-condition {
  background: #059669;
  color: #fff;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  position: absolute;
  left: auto;
  right: 8px;
  top: 32px;
}
.products-page .product-info {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.products-page .product-name {
  font-size: 13px;
  font-weight: 600;
  color: #2c4a6e;
  margin-bottom: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.products-page .product-desc {
  font-size: 11px;
  color: #999;
  line-height: 1.5;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.products-page .product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-bottom: 8px;
}
.products-page .spec-item {
  padding: 2px 6px;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 10px;
  color: #6b7280;
}
.products-page .product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.products-page .price-current {
  font-size: 18px;
  font-weight: 700;
  color: #ff4757;
}
.products-page .price-original {
  font-size: 11px;
  color: #bbb;
  text-decoration: line-through;
}
.products-page .product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.products-page .product-tag {
  padding: 2px 6px;
  background: #f0f4ff;
  color: #2563eb;
  border-radius: 4px;
  font-size: 10px;
}

/* Empty State */
.products-page .empty-state {
  text-align: center;
  padding: 60px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  max-width: 420px;
  margin: 0 auto;
}
.products-page .empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.products-page .empty-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c4a6e;
  margin-bottom: 8px;
}
.products-page .empty-desc {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 20px;
}
.products-page .empty-desc {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 18px;
}

/* ============================================================
   17c. 电脑端产品列表 — 网格卡片布局
   ============================================================ */
@media (min-width: 769px) {
  .products-page .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .products-page .product-card {
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    background: #fff;
    transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  }
  .products-page .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.1);
    border-color: #e0e7ff;
  }
  .products-page .product-image {
    width: 100%;
    height: auto;
    padding-top: 65%;
    position: relative;
    background: linear-gradient(135deg, #f0f4ff, #e8ecf4);
    flex-shrink: 0;
    overflow: hidden;
  }
  .products-page .product-image img {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .products-page .product-card:hover .product-image img {
    transform: scale(1.06);
  }
  .products-page .product-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .products-page .product-info {
    padding: 10px 12px 12px;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  .products-page .product-name {
    font-size: 12.5px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .products-page .product-desc {
    display: none;
  }
  .products-page .product-specs {
    display: none;
  }
  .products-page .product-price {
    margin-bottom: 0;
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
  }
  .products-page .price-current {
    font-size: 15px;
    font-weight: 700;
    color: #e53e3e;
    letter-spacing: -0.3px;
  }
  .products-page .price-original {
    font-size: 11px;
    color: #c0c0c0;
    text-decoration: line-through;
  }
  .products-page .product-tags {
    display: none;
  }
  .products-page .product-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 600;
  }
  .products-page .badge-new {
    background: #2563eb;
    color: #fff;
  }
  .products-page .badge-hot {
    left: auto;
    right: 6px;
  }
  .products-page .badge-condition {
    left: auto;
    right: 6px;
    top: 26px;
  }
  .products-page .product-action {
    display: none;
  }
  .products-page .product-info .product-price-mobile {
    display: flex !important;
  }
}

/* ============================================================
   17d. 电脑端顶部筛选 — 淘宝PC样式
   ============================================================ */
  .products-page .products-header { display: none; }
  .products-page .desktop-filter-bar {
    margin-bottom: 16px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
  }

  /* 淘宝PC分类导航 — 横向下拉式 */
  .tb-cat-nav {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 16px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    position: relative;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .tb-cat-nav::-webkit-scrollbar {
    display: none;
  }
  .tb-cat-item {
    position: relative;
  }
  .tb-cat-item > a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.15s;
    white-space: nowrap;
  }
  .tb-cat-item:hover > a {
    color: #ff5000;
  }
  .tb-cat-item.active > a {
    color: #ff5000;
    font-weight: 700;
  }
  .tb-cat-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #ff5000;
  }
  /* 有子分类的显示下拉箭头 */
  .tb-cat-item:has(.tb-cat-dropdown) > a::after {
    content: ' ▾';
    font-size: 10px;
    color: #999;
  }
  .tb-cat-item:hover:has(.tb-cat-dropdown) > a::after {
    color: #ff5000;
  }
  /* 下拉菜单 */
  .tb-cat-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    z-index: 50;
    padding: 6px 0;
  }
  .tb-cat-item:hover .tb-cat-dropdown {
    display: block;
  }
  .tb-cat-dropdown a {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: all 0.1s;
    white-space: nowrap;
  }
  .tb-cat-dropdown a:hover {
    background: #fff5f0;
    color: #ff5000;
  }

  /* 筛选条件行 */
  .products-page .filter-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 16px;
    background: #fafafa;
  }
  .products-page .filter-page-count {
    font-size: 13px;
    color: #999;
  }
  .products-page .filter-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .products-page .filter-price-tags {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
  }
  .products-page .filter-price-tags a {
    padding: 4px 10px;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    transition: all 0.15s;
    white-space: nowrap;
  }
  .products-page .filter-price-tags a:hover {
    color: #2563eb;
    border-color: #2563eb;
    background: #f0f5ff;
  }
  .products-page .filter-price-tags a.active {
    color: #fff;
    background: #2563eb;
    border-color: #2563eb;
    font-weight: 600;
  }
  .products-page .filter-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  /* 价格筛选 */
  .tb-price-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
  }
  .tb-price-label {
    font-size: 12px;
    color: #999;
    margin-right: 4px;
  }
  .tb-price-nav a {
    padding: 3px 8px;
    font-size: 12px;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.1s;
  }
  .tb-price-nav a:hover {
    color: #ff5000;
    background: #fff5f0;
  }
  .tb-price-nav a.active {
    color: #ff5000;
    font-weight: 600;
  }

  /* 排序下拉 */
  .products-page .filter-header-right .sort-select {
    padding: 5px 24px 5px 10px;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
    background: #fff;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
  }
}
@media (max-width: 768px) {
  .products-page .desktop-filter-bar { display: none; }
  .products-page .product-action { display: none; }
}
/* 二手数码页：平板+手机(≤1024px)统一使用手机端布局 */
@media (max-width: 1024px) {
  .secondhand-page .mobile-products-view {
    display: flex;
    flex-direction: row;
    gap: 0;
    min-height: calc(100vh - 120px);
    width: 100%;
    overflow: hidden;
    background: #f4f6fb;
  }
  .secondhand-page.products-page .products-main { display: none; }
}
/* 平板端(769-1024px) 二手数码侧边栏适当加宽 */
@media (min-width: 769px) and (max-width: 1024px) {
  .secondhand-page .mobile-cat-sidebar { width: 100px; }
}
@media (min-width: 769px) {
  .products-page .product-info .product-price-mobile { display: none; }
}

/* ============================================================
   17b. 手机端产品列表 — 左分类+右卡片（外卖App风格）
   ============================================================ */
.mobile-products-view {
  display: none;
}

@media (max-width: 768px) {
  .products-page .products-main { display: none; }
  .products-page .mobile-filter-bar { display: none !important; }
  .products-page .mobile-sub-filters { display: none !important; }
  .products-page .products-layout { padding: 0; gap: 0; background: #f4f6fb; }
  .mobile-products-view {
    display: flex;
    flex-direction: row;
    gap: 0;
    min-height: calc(100vh - 120px);
    width: 100%;
    overflow: hidden;
    background: #f4f6fb;
  }
  .mobile-cat-sidebar {
    width: 70px;
    flex-shrink: 0;
    background: #fff;
    border-right: 1px solid #edeef0;
    padding: 6px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: 2px 0 8px rgba(0,0,0,0.04);
  }
  .m-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 10px 4px;
    font-size: 10px;
    color: #888;
    text-decoration: none;
    text-align: center;
    border-left: 3px solid transparent;
    transition: all 0.15s;
    line-height: 1.2;
  }
  .m-cat-item.active {
    background: #f0f4ff;
    color: #2563eb;
    border-left-color: #2563eb;
    font-weight: 600;
  }
  .m-cat-icon { font-size: 18px; line-height: 1; }
  .m-cat-name { display: block; word-break: break-all; overflow-wrap: break-word; font-size: 9px; line-height: 1.25; overflow: hidden; }
  .mobile-products-list {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
  }
  .m-products-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .m-products-cat-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e3a5f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
  }
  .m-products-count {
    font-size: 12px;
    color: #aaa;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .m-product-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border-radius: 14px;
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.2s;
    overflow: hidden;
    min-width: 0;
    align-items: start;
  }
  .m-product-card:active {
    transform: scale(0.98);
    background: #f8f9fb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  }
  .m-p-img {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .m-p-placeholder-icon { font-size: 28px; opacity: 0.25; line-height: 1; }
  .m-p-placeholder-brand { font-size: 9px; color: #bbb; margin-top: 2px; }
  .m-p-badge-new {
    position: absolute;
    top: 4px;
    left: 4px;
    background: #2563eb;
    color: #fff;
    font-size: 9px;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 600;
  }
  .m-p-badge-condition {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #059669;
    color: #fff;
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 600;
  }
  .m-p-body {
    min-width: 0;
    overflow: hidden;
    padding: 2px 0;
  }
  .m-p-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-word;
  }
  .m-p-desc {
    font-size: 12px;
    color: #999;
    line-height: 1.4;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .m-p-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
  }
  .m-p-spec {
    padding: 2px 6px;
    background: #fff0f0;
    border: 1px solid #ffcccc;
    border-radius: 4px;
    font-size: 10px;
    color: #e05a5a;
  }
  .m-p-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6px;
    margin-top: 4px;
  }
  .m-p-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .m-p-price {
    font-size: 17px;
    font-weight: 800;
    color: #ef4444;
  }
  .m-p-original {
    font-size: 11px;
    color: #ccc;
    text-decoration: line-through;
  }
  .m-p-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255,107,53,0.3);
  }
  .m-empty-state {
    text-align: center;
    padding: 40px 16px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    margin: 8px 0;
  }
  .m-empty-icon { font-size: 40px; margin-bottom: 12px; }
  .m-empty-title { font-size: 15px; font-weight: 600; color: #2c4a6e; margin-bottom: 6px; }
  .m-empty-desc { font-size: 13px; color: #999; margin-bottom: 12px; }
  .m-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 0 24px;
  }
  .m-page-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    background: #fff;
    color: #2563eb;
    border: 1px solid #e5e7eb;
    transition: all 0.2s;
    min-height: 32px;
  }
  .m-page-btn:active {
    background: #f0f4ff;
    border-color: #2563eb;
  }
  .m-page-btn.disabled {
    color: #ccc;
    border-color: #eee;
    pointer-events: none;
  }
  .m-page-info {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    min-width: 48px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .mobile-cat-sidebar { width: 64px; }
  .m-cat-item { padding: 8px 3px; font-size: 9px; }
  .m-cat-icon { font-size: 16px; }
  .m-product-card { gap: 8px; padding: 8px; }
  .m-p-img { width: 64px; height: 64px; }
  .m-p-placeholder-icon { font-size: 20px; }
  .m-p-name { font-size: 13px; }
  .m-p-price { font-size: 15px; }
  .m-p-desc { font-size: 10px; }
  .m-p-spec { font-size: 9px; padding: 1px 4px; }
  .m-p-btn { width: 24px; height: 24px; }
  .mobile-products-list { padding: 8px; }
}

/* ============================================================
   18. 维修服务页样式 (Service)
   ============================================================ */
.service-page .page-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  color: #fff;
  padding: 60px 16px 50px;
  text-align: center;
}
.service-page .page-hero .hero-badge {
  display: inline-block;
  background: rgba(37,99,235,0.2);
  color: #93b4ff;
  border: 1px solid rgba(37,99,235,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.service-page .page-hero .hero-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
.service-page .page-hero .hero-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}
.service-page .page-hero .hero-btns {
  display: none;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-page .service-page-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.service-page .service-page-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.3);
}
.service-page .service-page-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s;
}
.service-page .service-page-btn-outline:hover {
  background: rgba(255,255,255,0.2);
}
.service-page .btn-lg {
  padding: 12px 28px;
  font-size: 15px;
  border-radius: 12px;
}

.service-page .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.service-page .section-header {
  text-align: center;
  margin-bottom: 28px;
}
.service-page .section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.service-page .section-title {
  font-size: 22px;
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 8px;
}
.service-page .section-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* Services Grid */
.service-page .services-section {
  padding: 48px 0;
  background: #f8f9fa;
}
.service-page .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.service-page .service-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
}
.service-page .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.service-page .service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e8f0fe;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.service-page .service-name {
  font-size: 14px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 6px;
}
.service-page .service-desc {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 10px;
}
.service-page .service-price {
  font-size: 12px;
  color: #2563eb;
  font-weight: 600;
}

/* Process */
.service-page .process-section {
  padding: 48px 0;
  background: #fff;
}
.service-page .process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.service-page .process-step {
  text-align: center;
  padding: 20px 12px;
}
.service-page .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}
.service-page .step-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 4px;
}
.service-page .step-desc {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
}

/* Cases — Google Review 卡片风格 */
.service-page .cases-section {
  padding: 48px 0;
  background: #f8f9fa;
}
.service-page .cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.service-page .case-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-page .case-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.service-page .case-review-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.service-page .case-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  /* 背景由PHP内联style覆盖（每人不同渐变） */
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.service-page .case-reviewer-name {
  font-size: 13px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
}
.service-page .case-review-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #9ca3af;
}
.service-page .case-stars {
  display: flex;
  gap: 1px;
  flex-shrink: 0;
  margin-left: auto;
}
.service-page .case-stars .star {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1;
}
.service-page .case-stars .star.filled {
  color: #f59e0b;
}
.service-page .case-body {
  padding: 0;
}
.service-page .case-desc {
  font-size: 12px;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 8px;
}
.service-page .case-result {
  display: inline-block;
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}
.service-page .case-row {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 12px;
}
.service-page .case-label {
  background: #f0f4ff;
  color: #2563eb;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
}
.service-page .case-price {
  color: #ff4757;
  font-weight: 700;
}
.service-page .case-footer {
  padding: 8px 14px;
  border-top: 1px solid #f0f0f0;
  font-size: 11px;
  color: #aaa;
}

/* CTA */
.service-page .cta-section {
  padding: 48px 0;
  background: #fff;
}
.service-page .cta-card {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  border-radius: 20px;
  padding: 36px 20px;
  text-align: center;
  color: #fff;
}
.service-page .cta-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 10px;
}
.service-page .cta-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.service-page .cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 后端页面内容 */
.service-page .page-section {
  padding: 32px 0;
  background: #fff;
}
.service-page .page-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.service-page .page-card .section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 18px;
  text-align: left;
}
.service-page .page-content {
  color: #444;
  line-height: 1.8;
  font-size: 14px;
}
.service-page .page-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a5f;
  margin: 24px 0 12px;
}
.service-page .page-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c4a6e;
  margin: 20px 0 10px;
}
.service-page .page-content p {
  margin-bottom: 12px;
}
.service-page .page-content ul,
.service-page .page-content ol {
  margin: 12px 0;
  padding-left: 20px;
}
.service-page .page-content li {
  margin-bottom: 6px;
}
.service-page .page-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 12px 0;
}
.service-page .page-content a {
  color: #2563eb;
}
.service-page .page-content strong {
  color: #1e3a5f;
  font-weight: 600;
}

/* ============================================================
   19. 回收页样式 (Recycling)
   ============================================================ */
.recycling-page .hero-section {
  background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
  color: #fff;
  padding: 60px 16px 50px;
  text-align: center;
}
.recycling-page .hero-section .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.recycling-page .hero-section .hero-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
.recycling-page .hero-section .hero-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.recycling-page .hero-section .hero-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.recycling-page .recycle-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  color: #065f46;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.recycling-page .recycle-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.recycling-page .recycle-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.recycling-page .recycle-btn-outline:hover {
  background: rgba(255,255,255,0.25);
}
.recycling-page .btn-lg {
  padding: 12px 28px;
  font-size: 15px;
  border-radius: 12px;
}

.recycling-page .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.recycling-page .section-header {
  text-align: center;
  margin-bottom: 28px;
}
.recycling-page .section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.recycling-page .section-title {
  font-size: 22px;
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 8px;
}
.recycling-page .section-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* Process */
.recycling-page .process-section {
  padding: 48px 0;
  background: #fff;
}
.recycling-page .process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.recycling-page .process-step {
  text-align: center;
  padding: 16px 12px;
  position: relative;
}
.recycling-page .step-arrow {
  display: none;
}
.recycling-page .step-icon {
  font-size: 32px;
  margin-bottom: 8px;
}
.recycling-page .step-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 4px;
}
.recycling-page .step-desc {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
}

/* Category Tabs */
.recycling-page .category-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 20px;
}
.recycling-page .category-tabs::-webkit-scrollbar {
  display: none;
}
.recycling-page .tab-btn {
  padding: 8px 16px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.15s ease;
}
.recycling-page .tab-btn.active {
  background: #059669;
  color: #fff;
  border-color: #059669;
}

/* Recycling Grid */
.recycling-page .hot-section {
  padding: 48px 0;
  background: #f8f9fa;
}
.recycling-page .recycling-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.recycling-page .recycle-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.recycling-page .recycle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.recycling-page .card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fef3c7;
  color: #d97706;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
}
.recycling-page .card-brand {
  font-size: 10px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.recycling-page .card-name {
  font-size: 14px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 4px;
  line-height: 1.3;
}
.recycling-page .card-model {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 8px;
}
.recycling-page .card-price {
  font-size: 18px;
  font-weight: 800;
  color: #059669;
  margin-bottom: 4px;
}
.recycling-page .card-condition {
  font-size: 10px;
  color: #aaa;
}

/* Notice */
.recycling-page .notice-section {
  padding: 48px 0;
  background: #fff;
}
.recycling-page .notice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.recycling-page .notice-card {
  background: #f0fdf4;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}
.recycling-page .notice-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.recycling-page .notice-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 6px;
}
.recycling-page .notice-desc {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
}

/* CTA */
.recycling-page .cta-section {
  padding: 48px 0;
  background: #f8f9fa;
}
.recycling-page .cta-card {
  background: linear-gradient(135deg, #065f46, #047857);
  border-radius: 20px;
  padding: 36px 20px;
  text-align: center;
  color: #fff;
}
.recycling-page .cta-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 10px;
}
.recycling-page .cta-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
}
.recycling-page .cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 后端页面内容 */
.recycling-page .page-section {
  padding: 32px 0;
  background: #fff;
}
.recycling-page .page-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.recycling-page .page-card .section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 18px;
  text-align: left;
}
.recycling-page .page-content {
  color: #444;
  line-height: 1.8;
  font-size: 14px;
}
.recycling-page .page-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a5f;
  margin: 24px 0 12px;
}
.recycling-page .page-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c4a6e;
  margin: 20px 0 10px;
}
.recycling-page .page-content p {
  margin-bottom: 12px;
}
.recycling-page .page-content ul,
.recycling-page .page-content ol {
  margin: 12px 0;
  padding-left: 20px;
}
.recycling-page .page-content li {
  margin-bottom: 6px;
}
.recycling-page .page-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 12px 0;
}
.recycling-page .page-content a {
  color: #2563eb;
}
.recycling-page .page-content strong {
  color: #1e3a5f;
  font-weight: 600;
}

/* ============================================================
   20. 抵押页样式 (Pawn)
   ============================================================ */
.pawn-page .hero-section {
  background: linear-gradient(135deg, #1e1b4a 0%, #292524 50%, #1c1917 100%);
  color: #fff;
  padding: 60px 16px 50px;
  text-align: center;
}
.pawn-page .hero-section .hero-badge {
  display: inline-block;
  background: rgba(234,179,8,0.15);
  color: #fbbf24;
  border: 1px solid rgba(234,179,8,0.3);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.pawn-page .hero-section .hero-title {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}
.pawn-page .hero-section .hero-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pawn-page .hero-section .hero-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.pawn-page .pawn-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #eab308, #f59e0b);
  color: #1e3a5f;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.pawn-page .pawn-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234,179,8,0.3);
}
.pawn-page .pawn-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s;
}
.pawn-page .pawn-btn-outline:hover {
  background: rgba(255,255,255,0.2);
}
.pawn-page .btn-lg {
  padding: 12px 28px;
  font-size: 15px;
  border-radius: 12px;
}

.pawn-page .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.pawn-page .section-header {
  text-align: center;
  margin-bottom: 28px;
}
.pawn-page .section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #eab308;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.pawn-page .section-title {
  font-size: 22px;
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 8px;
}
.pawn-page .section-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* Services Grid */
.pawn-page .services-section {
  padding: 48px 0;
  background: #f8f9fa;
}
.pawn-page .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.pawn-page .pawn-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 16px;
  transition: all 0.3s;
  border: 1px solid rgba(0,0,0,0.04);
}
.pawn-page .pawn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.pawn-page .pawn-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.pawn-page .pawn-name {
  font-size: 15px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 12px;
}
.pawn-page .pawn-detail {
  margin-bottom: 14px;
}
.pawn-page .pawn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 12px;
  border-bottom: 1px solid #f5f5f5;
}
.pawn-page .pawn-label {
  color: #aaa;
  font-weight: 600;
}
.pawn-page .pawn-requirements {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 10px 12px;
}
.pawn-page .req-title {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 4px;
  font-weight: 600;
}
.pawn-page .req-item {
  font-size: 11px;
  color: #555;
  line-height: 1.6;
}

/* Process */
.pawn-page .process-section {
  padding: 48px 0;
  background: #fff;
}
.pawn-page .process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pawn-page .process-step {
  text-align: center;
  padding: 20px 12px;
  position: relative;
}
.pawn-page .step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1e3a5f;
  color: #eab308;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
.pawn-page .step-icon {
  font-size: 24px;
  margin-bottom: 6px;
}
.pawn-page .step-title {
  font-size: 13px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 4px;
}
.pawn-page .step-desc {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
}

/* Advantages */
.pawn-page .advantages-section {
  padding: 48px 0;
  background: #f8f9fa;
}
.pawn-page .advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.pawn-page .adv-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
}
.pawn-page .adv-icon {
  font-size: 28px;
  margin-bottom: 8px;
}
.pawn-page .adv-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 6px;
}
.pawn-page .adv-desc {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.5;
}

/* CTA */
.pawn-page .cta-section {
  padding: 48px 0;
  background: #fff;
}
.pawn-page .cta-card {
  background: linear-gradient(135deg, #1e1b4a, #292524);
  border-radius: 20px;
  padding: 36px 20px;
  text-align: center;
  color: #fff;
}
.pawn-page .cta-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 10px;
}
.pawn-page .cta-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.pawn-page .cta-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 后端页面内容 */
.pawn-page .page-section {
  padding: 32px 0;
  background: #fff;
}
.pawn-page .page-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.pawn-page .page-card .section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 18px;
  text-align: left;
}
.pawn-page .page-content {
  color: #444;
  line-height: 1.8;
  font-size: 14px;
}
.pawn-page .page-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a5f;
  margin: 24px 0 12px;
}
.pawn-page .page-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c4a6e;
  margin: 20px 0 10px;
}
.pawn-page .page-content p {
  margin-bottom: 12px;
}
.pawn-page .page-content ul,
.pawn-page .page-content ol {
  margin: 12px 0;
  padding-left: 20px;
}
.pawn-page .page-content li {
  margin-bottom: 6px;
}
.pawn-page .page-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 12px 0;
}
.pawn-page .page-content a {
  color: #2563eb;
}
.pawn-page .page-content strong {
  color: #1e3a5f;
  font-weight: 600;
}

/* ============================================================
   21. 二手数码页样式 (Secondhand)
   ============================================================ */
.secondhand-page {
  min-height: 100vh;
}
.secondhand-page .hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 24px 80px;
  text-align: center;
  color: #fff;
}
.secondhand-page .hero-section .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}
.secondhand-page .hero-section .hero-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.secondhand-page .hero-section .hero-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 32px;
}
.secondhand-page .hero-section .hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.secondhand-page .sh-btn-primary,
.secondhand-page .sh-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
.secondhand-page .sh-btn-primary {
  background: #fff;
  color: #667eea;
}
.secondhand-page .sh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.secondhand-page .sh-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.secondhand-page .sh-btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.secondhand-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.secondhand-page .services-section {
  padding: 64px 0;
  background: #fff;
}
.secondhand-page .section-header {
  text-align: center;
  margin-bottom: 48px;
}
.secondhand-page .section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #667eea;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.secondhand-page .section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 12px;
}
.secondhand-page .section-desc {
  font-size: 15px;
  color: #666;
}

.secondhand-page .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.secondhand-page .service-card {
  background: #f8f9fa;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.secondhand-page .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.secondhand-page .service-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.secondhand-page .service-name {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 8px;
}
.secondhand-page .service-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.secondhand-page .features-section {
  padding: 64px 0;
}
.secondhand-page .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.secondhand-page .feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.secondhand-page .feature-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.secondhand-page .feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 8px;
}
.secondhand-page .feature-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.secondhand-page .cta-section {
  padding: 64px 0;
  background: #fff;
}
.secondhand-page .cta-box {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  color: #fff;
}
.secondhand-page .cta-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}
.secondhand-page .cta-box p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 24px;
}
.secondhand-page .cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 后端页面内容 */
.secondhand-page .page-section {
  padding: 32px 0;
  background: #fff;
}
.secondhand-page .page-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.secondhand-page .page-card .section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 18px;
  text-align: left;
}
.secondhand-page .page-content {
  color: #444;
  line-height: 1.8;
  font-size: 14px;
}
.secondhand-page .page-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a5f;
  margin: 24px 0 12px;
}
.secondhand-page .page-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c4a6e;
  margin: 20px 0 10px;
}
.secondhand-page .page-content p {
  margin-bottom: 12px;
}
.secondhand-page .page-content ul,
.secondhand-page .page-content ol {
  margin: 12px 0;
  padding-left: 20px;
}
.secondhand-page .page-content li {
  margin-bottom: 6px;
}
.secondhand-page .page-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 12px 0;
}
.secondhand-page .page-content a {
  color: #2563eb;
}
.secondhand-page .page-content strong {
  color: #1e3a5f;
  font-weight: 600;
}

/* ============================================================
   22. 新闻页样式 (News) — 2026-06-11 重新设计
   ============================================================ */
.news-page {
  min-height: 100vh;
  background: #f8fafc;
}
.news-page .page-hero { }

.news-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   新闻列表卡片网格
   ============================================================ */
.news-list-section {
  padding: 40px 0 60px;
  background: #f8fafc;
}
@media (min-width: 768px) { .news-list-section { padding: 56px 0 72px; } }

.news-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .news-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .news-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

/* 卡片链接 */
.news-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.news-card-link:hover {
  transform: translateY(-6px);
}

/* 单张卡片 */
.news-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
  transition: box-shadow 0.35s cubic-bezier(0.16,1,0.3,1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-card-link:hover .news-card {
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

/* 图片区 */
.news-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.news-card-link:hover .news-image img {
  transform: scale(1.08);
}
.news-image-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
}
.news-empty-img-icon {
  font-size: 42px;
  opacity: 0.4;
}

/* 置顶徽章 */
.news-pin-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,71,87,0.92);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 2;
  letter-spacing: 0.3px;
}

/* 卡片正文 */
.news-body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.news-category {
  display: inline-block;
  background: #ecfdf5;
  color: #059669;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.2px;
}
.news-date {
  font-size: 12px;
  color: #94a3b8;
  margin-left: auto;
}
.news-badge {
  font-size: 11px;
  color: #ff4757;
  font-weight: 600;
}
.news-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-summary {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin-bottom: 12px;
}
.news-readmore {
  font-size: 13px;
  color: #059669;
  font-weight: 600;
  margin-top: auto;
  transition: color 0.2s;
}
.news-card-link:hover .news-readmore {
  color: #047857;
}

/* 空状态 */
.news-empty { text-align: center; padding: 60px 20px; }
.news-empty-icon { font-size: 56px; margin-bottom: 16px; opacity: 0.6; }
.news-empty-text { font-size: 17px; font-weight: 600; color: #475569; margin-bottom: 8px; }
.news-empty-sub { font-size: 14px; color: #94a3b8; }

/* ============================================================
   23. 关于我们页样式 (About) - 2026-06-10 重新设计
   ============================================================ */

/* ------ Story Section ------ */
.about-page .about-story-section {
  padding: 56px 0;
  background: #fff;
}
@media (min-width: 768px) { .about-page .about-story-section { padding: 72px 0; } }

.about-page .about-story-content {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}
.about-page .about-story-content p { margin-bottom: 14px; }
.about-page .about-story-content h2 {
  font-size: 20px; font-weight: 700; color: #1e3a5f;
  margin: 28px 0 12px;
}
.about-page .about-story-content h3 {
  font-size: 17px; font-weight: 600; color: #2c4a6e;
  margin: 20px 0 10px;
}
.about-page .about-story-content ul,
.about-page .about-story-content ol { padding-left: 20px; margin-bottom: 14px; }
.about-page .about-story-content li { margin-bottom: 6px; line-height: 1.8; }
/* 折叠按钮仅手机端显示 */
.about-page .story-expand-btn { display: none; }

/* ------ Stats Section ------ */
.about-page .stats-section {
  padding: 56px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecf4 100%);
}
@media (min-width: 768px) { .about-page .stats-section { padding: 72px 0; } }

.about-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .about-page .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.about-page .stat-card {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-page .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37,99,235,0.10);
}

.about-page .stat-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.about-page .stat-number {
  font-size: 36px; font-weight: 800; color: #1e3a5f; line-height: 1;
}
@media (min-width: 768px) { .about-page .stat-number { font-size: 42px; } }

.about-page .stat-number span {
  font-size: 0.5em; color: #ff6b35; font-weight: 700;
}

.about-page .stat-label {
  font-size: 13px; color: #6b7280; margin-top: 8px; font-weight: 500;
}
@media (min-width: 768px) { .about-page .stat-label { font-size: 14px; } }

/* ------ Advantages Section ------ */
.about-page .advantages-section {
  padding: 56px 0; background: #fff;
}
@media (min-width: 768px) { .about-page .advantages-section { padding: 72px 0; } }

.about-page .advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .about-page .advantages-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .about-page .advantages-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; } }

.about-page .advantage-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
}
.about-page .advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  background: #fff;
  border-color: #dbeafe;
}

.about-page .advantage-icon { font-size: 34px; margin-bottom: 12px; }

.about-page .advantage-title {
  font-size: 15px; font-weight: 700; color: #1e3a5f; margin-bottom: 8px;
}
@media (min-width: 640px) { .about-page .advantage-title { font-size: 16px; } }

.about-page .advantage-desc { font-size: 12px; color: #888; line-height: 1.6; }
@media (min-width: 640px) { .about-page .advantage-desc { font-size: 13px; } }

/* ------ Services Section ------ */
.about-page .services-grid-section {
  padding: 56px 0; background: #f8f9fa;
}
@media (min-width: 768px) { .about-page .services-grid-section { padding: 72px 0; } }

.about-page .services-grid-section .section-desc {
  text-align: center; color: #888; font-size: 14px;
  margin-top: -8px; margin-bottom: 28px;
}

.about-page .service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1024px) { .about-page .service-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }

.about-page .service-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #f0f0f0;
}
.about-page .service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: #dbeafe;
}

.about-page .service-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.about-page .service-title {
  font-size: 16px; font-weight: 700; color: #1e3a5f; margin-bottom: 8px;
}

.about-page .service-desc {
  font-size: 13px; color: #6b7280; line-height: 1.7; margin-bottom: 0;
}

.about-page .section-more {
  text-align: center; margin-top: 32px;
}
.about-page .section-more .btn-outline {
  color: #1a1a2e;
  border-color: #1a1a2e;
}
.about-page .section-more .btn-outline:hover {
  background: #1a1a2e;
  color: #fff;
}

/* ------ Brands Section ------ */
.about-page .brands-section {
  padding: 56px 0; background: #fff;
}
@media (min-width: 768px) { .about-page .brands-section { padding: 72px 0; } }

.about-page .brand-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  justify-content: center;
}

.about-page .brand-item {
  padding: 12px 24px;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  font-size: 14px; font-weight: 500; color: #444;
  transition: all 0.3s ease;
}
  transition: all 0.25s; cursor: default;
}
.about-page .brand-item:hover {
  border-color: #2563eb; color: #2563eb;
  background: #f0f4ff; transform: translateY(-2px);
}

/* ------ Store Info Section ------ */
.about-page .store-info-section {
  padding: 56px 0; background: #f8f9fa;
}
@media (min-width: 768px) { .about-page .store-info-section { padding: 72px 0; } }

/* Desktop: side-by-side layout */
.about-page .store-map-layout {
  max-width: 1200px;
  margin: 0 auto; padding: 0 20px;
  display: flex; flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .about-page .store-map-layout {
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
  }
}

.about-page .store-grid {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid #e8ecf0;
  border-radius: 20px; overflow: hidden;
  background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  flex: 1 1 45%;
  min-width: 0;
}

.about-page .store-map {
  flex: 1 1 55%;
  min-width: 0;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid #e8ecf0;
  min-height: 350px;
}
@media (min-width: 768px) { .about-page .store-map { min-height: 420px; } }
.about-page .store-map iframe {
  display: block;
  width: 100%; height: 100%;
  border: 0;
  min-height: 350px;
}
@media (min-width: 768px) { .about-page .store-map iframe { min-height: 420px; } }

.about-page .store-item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}
@media (min-width: 640px) {
  .about-page .store-item { padding: 18px 28px; gap: 16px; }
}
.about-page .store-item:last-child { border-bottom: none; }
.about-page .store-item:hover { background: #f8f9fa; }

.about-page .store-icon { font-size: 20px; flex-shrink: 0; width: 28px; text-align: center; }

.about-page .store-detail { flex: 1; }

.about-page .store-label { font-size: 12px; color: #aaa; margin-right: 8px; }

.about-page .store-value {
  font-size: 15px; color: #2c4a6e; font-weight: 500;
}
.about-page .store-link {
  color: #2563eb;
  text-decoration: none;
  transition: all 0.2s;
}
.about-page .store-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
@media (min-width: 768px) { .about-page .store-value { font-size: 16px; } }

/* ------ Warning Section ------ */
.about-page .warning-section {
  padding: 48px 0; background: #fff8f0;
}
@media (min-width: 768px) { .about-page .warning-section { padding: 56px 0; } }

.about-page .warning-list {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; flex-direction: column; gap: 12px;
}

.about-page .warning-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 20px;
  background: #fff; border: 1px solid #ffe0b2;
  border-radius: 14px; transition: all 0.2s;
}
.about-page .warning-item:hover {
  border-color: #ffa726; box-shadow: 0 4px 16px rgba(255,167,38,0.10);
}

.about-page .warning-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

.about-page .warning-text {
  flex: 1; font-size: 14px; color: #8a6d3b; line-height: 1.7;
}

/* ------ CTA Section ------ */
.about-page .cta-section {
  padding: 64px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 40%, #2563eb 100%);
  color: #fff;
}
@media (min-width: 768px) { .about-page .cta-section { padding: 80px 20px; } }

.about-page .cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.about-page .cta-title {
  font-size: 26px; font-weight: 800; margin-bottom: 12px; line-height: 1.3;
}
@media (min-width: 640px) { .about-page .cta-title { font-size: 30px; } }
@media (min-width: 768px) { .about-page .cta-title { font-size: 36px; } }

.about-page .cta-desc {
  font-size: 15px; color: rgba(255,255,255,0.75);
  margin-bottom: 28px; line-height: 1.7;
}
@media (min-width: 640px) { .about-page .cta-desc { font-size: 16px; } }

.about-page .cta-actions {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
@media (min-width: 640px) { .about-page .cta-actions { gap: 16px; flex-wrap: nowrap; } }

.about-page .cta-actions .btn { min-width: 180px; justify-content: center; }

/* ============================================================
   24. 联系我们页样式 (Contact) - 2026-06-10 重新设计
   ============================================================ */

/* Hero 标题图标 — 内联显示，图标与文字同行 */
.contact-page .hero-title { display: flex; align-items: center; gap: 8px; }
.contact-page .hero-title .contact-hero-icon {
  display: inline-flex;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 0;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .contact-page .hero-title { gap: 10px; }
  .contact-page .hero-title .contact-hero-icon { font-size: 42px; }
}
@media (min-width: 1024px) {
  .contact-page .hero-title .contact-hero-icon { font-size: 48px; }
}

/* Hero tagline — 标题后小字 */
.contact-page .hero-tagline {
  display: inline;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  margin-left: 8px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .contact-page .hero-tagline { font-size: 16px; margin-left: 12px; }
}
@media (min-width: 1024px) {
  .contact-page .hero-tagline { font-size: 18px; }
}

/* 快捷联系 Section 标题图标 — 内联 */
.contact-page .contact-section-icon {
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}

/* Hero 右侧防骗卡片 — 上下收紧 */
.contact-page .hero-warning-card {
  padding: 16px 18px !important;
}
.contact-page .hero-warning-header {
  margin-bottom: 6px !important;
  padding-bottom: 8px !important;
}
.contact-page .hero-warning-body {
  gap: 3px !important;
}
.contact-page .hero-warning-item {
  gap: 6px !important;
}
.contact-page .hero-warning-item p {
  font-size: 13px !important;
  line-height: 1.4 !important;
}

/* 联系信息介绍卡片 */
.contact-page .contact-intro-section {
  padding: 32px 0 0;
}
@media (min-width: 768px) { .contact-page .contact-intro-section { padding: 44px 0 0; } }

.contact-page .contact-intro-box {
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  line-height: 1.8;
  color: #334155;
}
@media (min-width: 768px) {
  .contact-page .contact-intro-box { padding: 32px 32px; }
}
.contact-page .contact-intro-box p {
  margin-bottom: 8px;
}
.contact-page .contact-intro-box p:last-child {
  margin-bottom: 0;
}
.contact-page .contact-intro-box strong,
.contact-page .contact-intro-box b {
  color: #1e3a5f;
}

/* 覆盖全局 max-width/padding */
.contact-page .address-card,
.contact-page .form-wrap,
.contact-page .content-text {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* 快捷联系区域 */
.contact-page .contact-info-section {
  padding: 36px 0;
  background: #f8f9fa;
}
@media (min-width: 768px) { .contact-page .contact-info-section { padding: 48px 0; } }

.contact-page .contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .contact-page .contact-info-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
@media (min-width: 1024px) {
  .contact-page .contact-info-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

.contact-page .contact-info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 24px 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: inherit;
  cursor: default;
}
.contact-page .contact-info-card[href] {
  cursor: pointer;
}
.contact-page .contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  border-color: rgba(37, 99, 235, 0.15);
}

.contact-page .contact-info-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 26px;
  margin-bottom: 16px;
  background: #f1f5f9;
  transition: all 0.3s ease;
}
.contact-page .contact-info-card:hover .contact-info-icon {
  transform: scale(1.1);
}
/* 可点击卡片 — 点击反馈 */
.contact-page .contact-info-call,
.contact-page .contact-info-tg {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.contact-page .contact-info-call:active,
.contact-page .contact-info-tg:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}
.contact-page .contact-info-call .contact-info-icon { background: #dbeafe; }
.contact-page .contact-info-tg .contact-info-icon { background: #e0f2fe; }
.contact-page .contact-info-map .contact-info-icon { background: #ffe4e6; }

.contact-page .contact-info-label {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-page .contact-info-value {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.5;
  word-break: break-all;
}

.contact-page .contact-info-action {
  font-size: 13px;
  font-weight: 600;
  color: #2563eb;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s;
}
.contact-page .contact-info-card:hover .contact-info-action {
  color: #1d4ed8;
  gap: 8px;
}

/* Contact info text wrapper (label+value) */
.contact-page .contact-info-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Contact info link — interactive card (phone / TG / map) */
.contact-page .contact-info-link[href] {
  cursor: pointer;
}

/* WeChat copy card */
.contact-page .contact-info-copy {
  cursor: pointer;
}

/* WeChat multiline value */
.contact-page .contact-info-value-multiline {
  white-space: normal;
  word-break: break-all;
}

/* Copy feedback badge */
.contact-page .contact-info-copied {
  display: none;
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 11px;
  font-weight: 700;
  color: #10b981;
  background: #ecfdf5;
  border-radius: 6px;
  padding: 2px 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.25s ease;
}
.contact-page .contact-info-copied.show {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
}

/* Address Section — hidden globally (quick contact has 📍 + full map below) */
.contact-page .address-section {
  display: none !important;
}

.contact-page .address-card {
  display: flex; flex-direction: column;
  gap: 24px;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
@media (min-width: 768px) {
  .contact-page .address-card { flex-direction: row; padding: 36px; gap: 32px; }
}

.contact-page .address-info {
  flex: 1; min-width: 0;
}

.contact-page .address-text {
  font-size: 15px; color: #1e3a5f; font-weight: 600;
  margin-bottom: 8px; line-height: 1.6;
}

.contact-page .address-text-cn {
  font-size: 14px; color: #555;
  margin-bottom: 8px; line-height: 1.6;
}

.contact-page .address-note {
  font-size: 13px; color: #888; line-height: 1.6;
}

.contact-page .address-map {
  flex: 1; min-width: 0;
}
.contact-page .address-map iframe {
  width: 100%; height: 260px; border: 0;
  border-radius: 14px;
}
@media (min-width: 768px) {
  .contact-page .address-map iframe { height: 300px; }
}

/* Form */
.contact-page .form-section {
  padding: 48px 0;
  background: linear-gradient(180deg, #f0f4f8 0%, #e8eef5 50%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
}
.contact-page .form-section::before,
.contact-page .form-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
}
.contact-page .form-section::before {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
  top: -100px; right: -100px;
}
.contact-page .form-section::after {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #ff6b35 0%, transparent 70%);
  bottom: -80px; left: -80px;
}
@media (min-width: 768px) { .contact-page .form-section { padding: 72px 0; } }

.contact-page .form-section .section-header {
  text-align: center;
  margin-bottom: 24px;
}
.contact-page .form-section .section-title {
  justify-content: center;
}
.contact-page .form-section .section-subtitle {
  text-align: center;
  color: #64748b;
  font-size: 15px;
  margin-top: 8px;
}

.contact-page .form-wrap {
  background: #fff;
  border-radius: 28px;
  padding: 36px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.03);
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-page .form-wrap { padding: 48px 52px; }
}

.contact-page .contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .contact-page .contact-form {
    grid-template-columns: 1fr 1fr;
  }
  .contact-page .contact-form .form-group:has(textarea),
  .contact-page .contact-form .form-submit {
    grid-column: 1 / -1;
  }
}

.contact-page .contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-page .contact-form .form-label {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-page .contact-form .form-input,
.contact-page .contact-form .form-textarea {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid #e2e8f0; border-radius: 14px;
  font-size: 15px; font-family: inherit;
  background: #f8fafc;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none; box-sizing: border-box;
  color: #1e293b;
}
.contact-page .contact-form .form-input::placeholder,
.contact-page .contact-form .form-textarea::placeholder {
  color: #94a3b8;
}
.contact-page .contact-form .form-input:focus,
.contact-page .contact-form .form-textarea:focus {
  background: #fff;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08), 0 4px 12px rgba(37,99,235,0.06);
  transform: translateY(-1px);
}
.contact-page .contact-form .form-textarea {
  min-height: 140px; resize: vertical;
  line-height: 1.7;
}

/* Input icons */
.contact-page .contact-form .form-group:has(input[name="name"]) .form-input {
  padding-left: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
}
.contact-page .contact-form .form-group:has(input[name="phone"]) .form-input {
  padding-left: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center;
}
.contact-page .contact-form .form-group:has(textarea) .form-textarea {
  padding-left: 44px;
  padding-top: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px 16px;
}

/* 提交按钮 */
.contact-page .contact-form .form-submit {
  width: 100%; margin-top: 4px;
  padding: 16px 32px;
  font-size: 16px; font-weight: 700;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ff6b35 100%);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.contact-page .contact-form .form-submit::before {
  content: '✉️';
  font-size: 18px;
}
.contact-page .contact-form .form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,53,0.45);
  background-position: 100% 0;
}
.contact-page .contact-form .form-submit:active {
  transform: translateY(0);
}
.contact-page .contact-form .form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.contact-page .contact-form .form-submit .btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* 表单提示消息 */
.contact-page .form-message {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px; font-weight: 500;
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.contact-page .form-message.success {
  background: #ecfdf5; color: #065f46;
  border: 1px solid #a7f3d0;
}
.contact-page .form-message.success::before {
  content: '✅';
}
.contact-page .form-message.error {
  background: #fef2f2; color: #991b1b;
  border: 1px solid #fecaca;
}
.contact-page .form-message.error::before {
  content: '❌';
}

/* 联系我们 CTA */
.contact-page .cta-section {
  padding: 56px 0;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
}
.contact-page .cta-section .cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  color: #fff;
}
.contact-page .cta-section .cta-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-page .cta-section .cta-desc {
  font-size: 15px;
  opacity: 0.88;
  margin-bottom: 28px;
  line-height: 1.7;
}
.contact-page .cta-section .cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-page .cta-section .cta-actions .btn {
  min-width: 160px;
  border-radius: 14px;
}
@media (min-width: 768px) {
  .contact-page .cta-section { padding: 80px 0; }
  .contact-page .cta-section .cta-title { font-size: 32px; }
  .contact-page .cta-section .cta-desc { font-size: 17px; margin-bottom: 36px; }
}

/* ============================================================
   25. 产品详情页样式 (ProductDetail)
   ============================================================ */
.product-detail-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 加载 & 空状态 */
.product-detail-page .loading,
.product-detail-page .empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #6b7280;
  gap: 16px;
  min-height: 60vh;
}

.product-detail-page .loading .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e5e7eb;
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.product-detail-page .empty-icon {
  font-size: 48px;
}

/* 面包屑 — 与产品列表页完全一致的左对齐风格 */
.product-detail-page .breadcrumb {
  background: #f8f9fa;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.product-detail-page .breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 13px;
  color: #6b7280;
}
.product-detail-page .breadcrumb-inner a {
  color: #666;
  text-decoration: none;
}
.product-detail-page .breadcrumb-inner a:hover {
  color: #2563eb;
}
.product-detail-page .breadcrumb-inner .sep {
  margin: 0 8px;
  color: #ccc;
}
.product-detail-page .breadcrumb-inner .current {
  color: #2c4a6e;
  font-weight: 500;
}

.product-detail-page .back-link {
  color: #2563eb;
  font-weight: 500;
  cursor: pointer;
}
.product-detail-page .back-link:hover {
  color: #1d4ed8;
}

/* 产品主体 */
.product-detail-page .detail-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

/* 左侧图片 */
.product-detail-page .detail-gallery {
  width: 100%;
}

.product-detail-page .main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f9fafb;
  border: 1px solid #f3f4f6;
}
.product-detail-page .main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
.product-detail-page .main-image .badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.product-detail-page .badge-hot {
  background: #ff4757;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}
.product-detail-page .badge-new {
  background: #2563eb;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.product-detail-page .thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}
.product-detail-page .thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  background: #f9fafb;
  transition: 0.15s ease;
}
.product-detail-page .thumb.active {
  border-color: #2563eb;
}
.product-detail-page .thumb:hover {
  border-color: #93c5fd;
}
.product-detail-page .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右侧信息 */
.product-detail-page .detail-info {
  flex: 1;
  min-width: 0;
}

.product-detail-page .detail-name {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-detail-page .detail-meta {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 16px;
}

/* 价格 */
.product-detail-page .price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.product-detail-page .price-current {
  display: flex;
  align-items: baseline;
  color: #ff4757;
}
.product-detail-page .price-symbol {
  font-size: 16px;
  font-weight: 600;
  margin-right: 2px;
}
.product-detail-page .price-value {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
}
.product-detail-page .price-original {
  font-size: 15px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 400;
}
.product-detail-page .discount-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  background: #fef2f2;
  color: #ff4757;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
}

/* 库存 */
.product-detail-page .stock-box {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 13px;
}
.product-detail-page .stock-box span {
  font-weight: 500;
  color: #4b5563;
}
.product-detail-page .stock-box .low-stock {
  color: #f59e0b;
}
.product-detail-page .stock-box .out-stock {
  color: #ff4757;
}

/* 数量 */
.product-detail-page .quantity-box {
  margin-bottom: 16px;
}
.product-detail-page .quantity-box label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.product-detail-page .quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}
.product-detail-page .quantity-selector button {
  width: 40px;
  height: 40px;
  background: #f9fafb;
  color: #4b5563;
  font-size: 14px;
  transition: 0.15s ease;
  min-height: 44px;
  border: none;
  cursor: pointer;
}
.product-detail-page .quantity-selector button:hover:not(:disabled) {
  background: #f3f4f6;
  color: #1f2937;
}
.product-detail-page .quantity-selector button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.product-detail-page .quantity-selector input {
  width: 52px;
  height: 40px;
  border: none;
  border-left: 2px solid #e5e7eb;
  border-right: 2px solid #e5e7eb;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  -moz-appearance: textfield;
}
.product-detail-page .quantity-selector input::-webkit-outer-spin-button,
.product-detail-page .quantity-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* 操作按钮 */
.product-detail-page .action-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.product-detail-page .buy-btn {
  flex: 1;
  min-width: 140px;
  padding: 12px 24px;
  font-size: 15px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  min-height: 44px;
}
.product-detail-page .buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}
.product-detail-page .buy-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.product-detail-page .inquiry-btn {
  padding: 12px 20px;
  font-size: 14px;
  background: #f3f4f6;
  color: #374151;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  min-height: 44px;
}
.product-detail-page .inquiry-btn:hover {
  background: #e5e7eb;
}

/* 规格参数 */
.product-detail-page .specs-section {
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid #f3f4f6;
}
.product-detail-page .specs-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}
/* 仅限 .specs-section 内使用 grid 卡片式布局（旧结构，当前未使用，保留向后兼容） */
.product-detail-page .specs-section .specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 6px;
}
/* detail-specs 内使用 flex 行布局 — !important 确保不被任何 grid 规则覆盖 */
.product-detail-page .detail-specs .specs-grid {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
}
.product-detail-page .spec-item {
  display: flex;
  padding: 8px 12px;
  background: #f9fafb;
  border-radius: 8px;
  gap: 6px;
}
.product-detail-page .spec-label {
  color: #6b7280;
  font-size: 12px;
  flex-shrink: 0;
}
.product-detail-page .spec-value {
  color: #1f2937;
  font-size: 12px;
  font-weight: 500;
}

/* 保障信息 */
.product-detail-page .guarantee {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  flex-wrap: wrap;
}
.product-detail-page .guar-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #4b5563;
  font-weight: 500;
}
.product-detail-page .guar-item svg {
  color: #10b981;
  flex-shrink: 0;
}

/* 产品描述 */
.product-detail-page .detail-description {
  margin-bottom: 48px;
  padding-top: 28px;
  border-top: 1px solid #f3f4f6;
}
.product-detail-page .detail-description h2 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}
.product-detail-page .description-content {
  font-size: 14px;
  line-height: 1.9;
  color: #4b5563;
}

/* 咨询弹窗 */
.product-detail-page .modal-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 16px;
}

.product-detail-page .modal-container {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
}

.product-detail-page .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
}
.product-detail-page .modal-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.product-detail-page .close-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.15s ease;
  min-height: 44px;
  border: none;
  cursor: pointer;
}
.product-detail-page .close-btn:hover {
  background: #e5e7eb;
  color: #1f2937;
}

.product-detail-page .modal-body {
  padding: 20px;
}

.product-detail-page .form-group {
  margin-bottom: 14px;
  text-align: left;
}
.product-detail-page .form-label {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
  display: block;
}
.product-detail-page .required {
  color: #ff4757;
}
.product-detail-page .form-input,
.product-detail-page .form-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
}
.product-detail-page .form-input:focus,
.product-detail-page .form-textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.product-detail-page .form-textarea {
  resize: vertical;
  min-height: 100px;
}
.product-detail-page .form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}


/* ============================================================
   Section 27: 响应式媒体查询
   ============================================================ */

/* ==============================
   App.vue 全局响应式
   ============================== */

/* 平板 ≤1024px */
@media (max-width: 1024px) {
  .desktop-nav, .phone-text { display: none; }
  .hamburger { display: flex; }
  .mobile-lang-switch { display: flex; }
  .phone-btn { padding: 8px 10px; }
  .mobile-bottom-bar { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
}

/* 手机 ≤768px */
@media (max-width: 768px) {

  .header-inner {
    height: 52px;
    gap: 8px;
    padding: 0 12px;
    justify-content: space-between;
  }

  .logo { gap: 6px; }
  .logo-icon-wrap {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 2px 8px rgba(37,99,235,0.25);
  }
  .logo-icon-wrap svg { width: 18px; height: 18px; }
  .logo-name { font-size: 15px; font-weight: 700; letter-spacing: -0.3px; line-height: 1.2; }
  .logo-sub { display: block; font-size: 10px; color: #059669; line-height: 1.2; letter-spacing: 0.2px; }
  .logo-trust { font-size: 9px; padding: 1px 5px; margin-left: 2px; }

  /* 手机端语言触发按钮 — 紧凑 */
  .mobile-lang-trigger {
    padding: 5px 8px 5px 5px;
    font-size: 13px;
    gap: 4px;
  }
  .mobile-lang-cur { max-width: 48px; font-size: 13px; }
  .mobile-lang-switch .lang-flag-img { width: 26px; height: 18px; }

  .phone-btn {
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    box-shadow: 0 2px 8px rgba(37,99,235,0.25);
  }
  .phone-btn svg { width: 16px; height: 16px; }

  .hamburger {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 10px;
    background: #f5f7fa;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(0,0,0,0.06);
  }
  .hamburger span {
    width: 16px;
    height: 2px;
    background: #1e3a5f;
    border-radius: 2px;
  }
  .hamburger.active { background: #1e3a5f; }
  .hamburger.active span { background: #fff; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

  .header-actions { gap: 6px; }

  .footer { padding-top: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-col { padding: 0 4px; }
  .footer-brand { text-align: center; }
  .footer-desc { font-size: 12px; }
  .footer-title { font-size: 13px; margin-bottom: 12px; }
  .footer-link { font-size: 12px; }
  .footer-contact p { font-size: 12px; line-height: 1.8; }
  .footer-bottom { font-size: 11px; padding-top: 16px; }
  .footer-warn { font-size: 11px; }

  .mobile-bottom-bar {
    padding: 2px 2px calc(2px + env(safe-area-inset-bottom));
    box-shadow: 0 -1px 8px rgba(0,0,0,0.06);
  }
  .bottom-btn {
    padding: 3px 1px 2px;
    gap: 2px;
    min-height: 42px;
  }
  .bottom-label { font-size: 8px; }
  .bottom-btn svg { width: 16px; height: 16px; }
  .bottom-btn-center {
    padding: 3px 1px 2px;
    gap: 2px;
    min-height: 42px;
  }
  .bottom-btn-center .bottom-center-icon,
  .bottom-btn-center .bottom-center-logo-wrap {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }
  .bottom-center-logo {
    width: 20px;
    height: 20px;
  }
  .float-telegram { display: flex; }
  .footer { padding-bottom: calc(90px + env(safe-area-inset-bottom)); }
  .footer-mobile-info { padding-bottom: 20px; }
  .home-page .product-card .product-name { font-size: 13px; }
  .home-page .product-card .price-current { font-size: 16px; }
}

/* 桌面 ≥1025px：隐藏手机专属组件 */
@media (min-width: 1025px) {
  .mobile-bottom-bar { display: none !important; }
  .back-top { bottom: 32px; }
}

/* 小屏手机 ≤480px */
@media (max-width: 480px) {
  .header-inner { padding: 0 10px; gap: 6px; }
  .logo-name { font-size: 15px; }
  .logo-trust { display: none; }
  .action-btn.tg-btn { display: none; }
  .lang-btn { padding: 4px 8px; font-size: 11px; }
  .mobile-menu { width: 280px; }
}

/* 横屏优化 */
@media (max-width: 768px) and (orientation: landscape) {
  .mobile-menu { padding-bottom: 20px; }
  .mobile-menu-body { padding-bottom: 60px; }
}

/* ==============================
   首页响应式 (.home-page)
   ============================== */

@media (max-width: 768px) {
  .home-page .hero { padding: 20px 0 32px; }
  .home-page .hero.hero-simple { padding: 0; }
  .home-page .hero-content { padding: 0 16px; gap: 20px; }
  .home-page .hero-left { order: 1; }
  .home-page .hero-right { order: 2; }
  .home-page .hero-badge { font-size: 10px; padding: 4px 10px; margin-bottom: 10px; border-radius: 6px; }
  .home-page .hero-title { font-size: 22px; margin-bottom: 8px; letter-spacing: -0.3px; }
  .home-page .hero-subtitle { font-size: 12px; margin-bottom: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }
  .home-page .hero-tags {
    gap: 5px;
    margin-bottom: 14px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }
  .home-page .hero-tags::-webkit-scrollbar { display: none; }
  .home-page .hero-tag { padding: 3px 8px; font-size: 10px; border-radius: 5px; flex-shrink: 0; }
  .home-page .hero-actions { gap: 8px; flex-wrap: nowrap; }
  .home-page .hero-actions .btn { padding: 10px 16px; font-size: 13px; border-radius: 10px; flex: 1; text-align: center; white-space: nowrap; }
  .home-page .contact-card { padding: 14px; border-radius: 14px; }
  .home-page .contact-card .card-title { font-size: 14px; margin-bottom: 6px; }
  .home-page .contact-card .card-time { font-size: 18px; }
  .home-page .contact-card .card-note { font-size: 10px; margin-bottom: 10px; }
  .home-page .contact-card .card-divider { margin: 10px 0; }
  .home-page .contact-card .card-info p { font-size: 11px; line-height: 1.7; }
  .home-page .contact-card .card-actions { gap: 8px; }
  .home-page .contact-card .card-btn { padding: 9px 12px; font-size: 12px; border-radius: 9px; }

  /* 手机端隐藏 footer 主体，只保留底部导航 */
  .footer-grid,
  .footer-bottom {
    display: none !important;
  }
  .footer {
    padding-top: 0;
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }
  .footer-inner {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .home-page .stats-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
}

@media (max-width: 480px) {
  .home-page .hero { padding: 16px 0 28px; }
  .home-page .hero.hero-simple { padding: 0; }
  .home-page .hero-content { padding: 0 12px; gap: 16px; }
  .home-page .hero-title { font-size: 20px; margin-bottom: 6px; }
  .home-page .hero-subtitle { font-size: 11px; margin-bottom: 10px; }
  .home-page .hero-badge { font-size: 9px; padding: 3px 8px; margin-bottom: 8px; }
  .home-page .hero-tags { gap: 4px; margin-bottom: 12px; }
  .home-page .hero-tag { padding: 3px 7px; font-size: 9px; }
  .home-page .hero-actions { gap: 6px; }
  .home-page .hero-actions .btn { padding: 8px 12px; font-size: 12px; border-radius: 8px; }
  .home-page .contact-card { padding: 12px; border-radius: 12px; }
  .home-page .contact-card .card-time { font-size: 16px; }
  .home-page .contact-card .card-info p { font-size: 10px; }
}

@media (min-width: 640px) {
  .home-page .hero-title { font-size: 38px; }
  .home-page .hero-subtitle { font-size: 16px; }
  .home-page .stat-number { font-size: 36px; }
  .home-page .stat-label { font-size: 13px; margin-top: 8px; }
  .home-page .section-header { margin-bottom: 36px; }
  .home-page .section-title { font-size: 26px; }
  .home-page .cat-card { padding: 14px 18px; gap: 10px; }
  .home-page .cat-icon { font-size: 24px; }
  .home-page .product-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .home-page .placeholder-icon { font-size: 48px; }
  .home-page .product-info { padding: 16px; }
  .home-page .product-name { font-size: 14px; margin-bottom: 8px; }
  .home-page .product-tags { gap: 4px; margin-bottom: 8px; }
  .home-page .product-tag { padding: 2px 8px; font-size: 11px; }
  .home-page .product-specs { gap: 6px; margin-bottom: 12px; }
  .home-page .spec-item { padding: 2px 8px; font-size: 11px; }
  .home-page .product-price { gap: 8px; }
  .home-page .price-current { font-size: 20px; }
  .home-page .price-original { font-size: 13px; }
  .home-page .service-icon { width: 56px; height: 56px; font-size: 24px; margin-bottom: 16px; }
  .home-page .service-title { font-size: 18px; margin-bottom: 8px; }
  .home-page .service-desc { font-size: 13px; margin-bottom: 16px; }
  .home-page .repair-card { padding: 18px; }
  .home-page .repair-name { font-size: 14px; margin-bottom: 6px; }
  .home-page .repair-desc { font-size: 12px; margin-bottom: 8px; }
  .home-page .repair-price { font-size: 12px; }
  .home-page .news-item { gap: 12px; padding: 12px 0; }
  .home-page .news-dot { width: 8px; height: 8px; }
  .home-page .news-title { font-size: 15px; margin-bottom: 6px; }
  .home-page .news-text { font-size: 13px; }
  .home-page .announcement-card { padding: 28px; }
  .home-page .cta-title { font-size: 28px; margin-bottom: 12px; }
  .home-page .cta-desc { font-size: 15px; margin-bottom: 28px; }
  .home-page .cta-actions { gap: 16px; flex-wrap: nowrap; }
  .home-page .btn-accent { padding: 14px 28px; font-size: 15px; }
  .home-page .btn-ghost { padding: 14px 28px; font-size: 15px; }
  .home-page .contact-card { padding: 24px; }
  .home-page .card-title { font-size: 16px; }
  .home-page .card-time { font-size: 28px; }
  .home-page .card-note { font-size: 12px; margin-bottom: 16px; }
  .home-page .card-divider { margin: 16px 0; }
  .home-page .card-info p { font-size: 13px; }
  .home-page .card-actions { gap: 10px; }
  .home-page .card-btn { padding: 12px; font-size: 14px; }
  .home-page .notice-content { padding: 12px 20px; }
  .home-page .stats-section { padding: 48px 20px; }
  .home-page .btn-lg { padding: 16px 32px; font-size: 16px; }
}

@media (min-width: 768px) {
  .home-page .hero { padding: 60px 0 80px; min-height: 520px; }
  .home-page .hero.hero-simple { padding: 0; min-height: auto; }
  .home-page .hero-title { font-size: 42px; }
  .home-page .hero-subtitle { font-size: 18px; }
  .home-page .stat-number { font-size: 42px; }
  .home-page .section-header { margin-bottom: 48px; display: flex; justify-content: space-between; align-items: baseline; text-align: left; }
  .home-page .section-title { font-size: 28px; margin-bottom: 0; }
  .home-page .section-subtitle { margin-top: 0; }
  .home-page .cat-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; min-width: 0; width: auto; }
  .home-page .product-grid { gap: 20px; grid-template-columns: repeat(3,1fr); }
  .home-page .service-grid { gap: 20px; }
  .home-page .repair-grid { gap: 14px; }
  .home-page .cta-section { padding: 80px 20px; }
  .home-page .cta-title { font-size: 32px; }
  .home-page .cta-desc { font-size: 16px; margin-bottom: 32px; }
  .home-page .categories-section { padding: 48px 0; }
  .home-page .hot-section { padding: 56px 0; }
  .home-page .service-section { padding: 56px 0; }
  .home-page .repair-section { padding: 56px 0; }
  .home-page .news-section { padding: 56px 0; }
}

@media (min-width: 1024px) {
  .home-page .hero { padding: 60px 0 80px; min-height: 520px; }
  .home-page .hero.hero-simple { padding: 0; min-height: auto; }
  .home-page .hero-content { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: center; }
  .home-page .hero-title { font-size: 48px; }
  .home-page .product-grid { grid-template-columns: repeat(4,1fr); }
  .home-page .service-grid { grid-template-columns: repeat(3,1fr); }
  .home-page .repair-grid { grid-template-columns: repeat(4,1fr); }
}

@media (min-width: 480px) {
  .home-page .product-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .home-page .service-grid { grid-template-columns: repeat(2,1fr); }
  .home-page .repair-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
}

/* ==============================
   产品列表页响应式 (.products-page)
   ============================== */

@media (min-width: 640px) {
  .products-page .breadcrumb { padding: 20px 0; font-size: 14px; }
  .products-page .breadcrumb-inner { padding: 0 20px; }
  .products-page .products-layout { padding: 20px 16px 32px; gap: 20px; }
  .products-page .mobile-filter-bar { margin: 0 -16px; padding: 12px 16px; }
  .products-page .sidebar-section { padding: 18px; margin-bottom: 16px; }
  .products-page .sidebar-title { font-size: 14px; margin-bottom: 12px; padding-bottom: 8px; }
  .products-page .cat-group-header { font-size: 11px; padding: 6px 10px; letter-spacing: 0.5px; }
  .products-page .cat-item { gap: 8px; padding: 8px 10px; font-size: 13px; }
  .products-page .cat-item-icon { font-size: 14px; width: 20px; }
  .products-page .sub-cat-list { gap: 6px; }
  .products-page .sub-cat-item { padding: 6px 14px; font-size: 12px; }
  .products-page .price-filters { gap: 6px; }
  .products-page .price-item { padding: 6px 12px; font-size: 12px; }
  .products-page .products-header { flex-direction: row; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 20px; }
  .products-page .products-title { font-size: 22px; }
  .products-page .products-count { font-size: 13px; margin-top: 4px; }
  .products-page .sort-select { padding: 8px 12px; font-size: 13px; }
  .products-page .product-card { border-radius: 16px; }
  .products-page .product-grid { gap: 14px; }
  .products-page .placeholder-icon { font-size: 40px; }
  .products-page .placeholder-brand { font-size: 11px; margin-top: 6px; }
  .products-page .placeholder-model { font-size: 10px; margin-top: 4px; }
  .products-page .product-badge { top: 10px; left: 10px; padding: 4px 10px; font-size: 11px; }
  .products-page .badge-hot { right: 10px; }
  .products-page .product-info { padding: 16px; }
  .products-page .product-name { font-size: 14px; margin-bottom: 6px; }
  .products-page .product-desc { font-size: 12px; margin-bottom: 8px; }
  .products-page .product-specs { gap: 4px; margin-bottom: 10px; }
  .products-page .spec-item { padding: 2px 8px; font-size: 11px; }
  .products-page .product-price { gap: 8px; margin-bottom: 8px; }
  .products-page .price-current { font-size: 20px; }
  .products-page .price-original { font-size: 13px; }
  .products-page .product-tags { gap: 4px; }
  .products-page .product-tag { padding: 2px 8px; font-size: 11px; }
  .products-page .empty-state { padding: 80px 32px; max-width: 480px; }
  .products-page .empty-icon { font-size: 52px; margin-bottom: 20px; }
  .products-page .empty-title { font-size: 20px; margin-bottom: 10px; }
  .products-page .empty-desc { font-size: 15px; margin-bottom: 24px; }
  .products-page .empty-desc { font-size: 14px; margin-bottom: 24px; }
  .products-page .btn-primary { padding: 12px 24px; font-size: 14px; min-height: 44px; }
}

@media (min-width: 768px) {
  .products-page .products-title { font-size: 24px; }
  .products-page .product-grid { gap: 18px; }
}

@media (min-width: 480px) {
  .products-page .product-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
}

@media (min-width: 1024px) {
  .products-page .products-layout { flex-direction: row; padding: 24px 20px; gap: 24px; align-items: flex-start; }
  .products-page .mobile-filter-bar { display: none; }
  .products-page .mobile-sub-filters { display: none; }
  .products-page .desktop-only { display: block; }
  .products-page .product-grid { grid-template-columns: repeat(4,1fr); gap: 12px; }
  .products-page .products-main { padding: 20px; }
}

/* ==============================
   维修服务页响应式 (.service-page)
   ============================== */

@media (min-width: 640px) {
  .service-page .hero-title { font-size: 32px; }
  .service-page .section-title { font-size: 26px; }
  .service-page .section-desc { font-size: 14px; }
  .service-page .cta-title { font-size: 26px; }
  .service-page .page-content { font-size: 15px; }
  .service-page .page-card .section-title { font-size: 24px; }
}

@media (min-width: 768px) {
  .service-page .page-hero { padding: 90px 20px 70px; }
  .service-page .hero-title { font-size: 40px; }
  .service-page .container { padding: 0 20px; }
  .service-page .services-grid { grid-template-columns: repeat(4,1fr); gap: 16px; }
  .service-page .process-steps { grid-template-columns: repeat(5,1fr); gap: 12px; }
  .service-page .cases-grid { grid-template-columns: repeat(4,1fr); gap: 16px; }
  .service-page .cta-card { padding: 48px 40px; }
  .service-page .page-section { padding: 48px 0; }
  .service-page .page-card { padding: 0 20px; }
}

@media (min-width: 480px) {
  .service-page .services-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .service-page .process-steps { grid-template-columns: repeat(3,1fr); }
  .service-page .cases-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
}

/* ==============================
   回收页响应式 (.recycling-page)
   ============================== */

@media (min-width: 640px) {
  .recycling-page .hero-title { font-size: 32px; }
  .recycling-page .section-title { font-size: 26px; }
  .recycling-page .cta-title { font-size: 26px; }
  .recycling-page .page-content { font-size: 15px; }
  .recycling-page .page-card .section-title { font-size: 24px; }
}

@media (min-width: 768px) {
  .recycling-page .hero-section { padding: 90px 20px 70px; }
  .recycling-page .hero-title { font-size: 40px; }
  .recycling-page .container { padding: 0 20px; }
  .recycling-page .process-steps { flex-direction: row; justify-content: center; gap: 0; }
  .recycling-page .step-arrow { display: block; position: absolute; left: -12px; top: 50%; transform: translateY(-50%); font-size: 20px; color: #aaa; }
  .recycling-page .notice-grid { grid-template-columns: repeat(4,1fr); }
  .recycling-page .cta-card { padding: 48px 40px; }
  .recycling-page .page-section { padding: 48px 0; }
  .recycling-page .page-card { padding: 0 20px; }
}

@media (min-width: 480px) {
  .recycling-page .recycling-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .recycling-page .notice-grid { grid-template-columns: repeat(2,1fr); }
}

@media (min-width: 1024px) {
  .recycling-page .recycling-grid { grid-template-columns: repeat(4,1fr); gap: 16px; }
}

/* ============================================================
   抵押借贷页 — 金色高端重设计 (v26)
   ============================================================ */

/* Hero 金色渐变覆盖 */
.hero-pawn .hero-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4a 40%, #292524 100%);
}

/* Hero 统计条 */
.pawn-page .hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.pawn-page .hero-stat {
    text-align: center;
}
.pawn-page .hero-stat-num {
    font-size: 28px;
    font-weight: 800;
    color: #eab308;
    line-height: 1.1;
}
.pawn-page .hero-stat-num small {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-left: 1px;
}
.pawn-page .hero-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

/* Section 上标文字 */
.pawn-page .section-overline {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #eab308;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

/* 抵押服务卡片 — 金色阴影 */
.pawn-services-section {
    padding: 48px 0;
    background: #f8f9fa;
}
@media (min-width: 768px) {
    .pawn-services-section { padding: 64px 0; }
}
.pawn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .pawn-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.pawn-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 18px;
    text-align: center;
    border: 1px solid rgba(234,179,8,0.12);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.pawn-card-glow {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #eab308, #f59e0b, #eab308);
    opacity: 0;
    transition: opacity 0.3s;
}
.pawn-card:hover .pawn-card-glow {
    opacity: 1;
}
.pawn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(234,179,8,0.12), 0 2px 8px rgba(0,0,0,0.06);
    border-color: rgba(234,179,8,0.25);
}
.pawn-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.pawn-icon {
    font-size: 26px;
    line-height: 1;
}
.pawn-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 6px;
}
.pawn-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    margin-bottom: 10px;
}
.pawn-loan-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fef3c7;
    border-radius: 8px;
    padding: 4px 10px;
    font-size: 12px;
}
.pawn-loan-label {
    color: #92400e;
    font-weight: 600;
}
.pawn-loan-value {
    color: #d97706;
    font-weight: 800;
}

/* 抵押流程 — 视觉连线 */
.pawn-process-section {
    padding: 48px 0;
    background: #fff;
}
@media (min-width: 768px) {
    .pawn-process-section { padding: 64px 0; }
}
.pawn-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .pawn-flow {
        flex-direction: row;
        align-items: flex-start;
        gap: 0;
    }
}
.pawn-flow-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    position: relative;
}
@media (min-width: 768px) {
    .pawn-flow-step {
        flex-direction: column;
        align-items: center;
        flex: 1;
        padding: 0 12px;
        text-align: center;
    }
}
.flow-node {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a5f, #0f172a);
    border: 2px solid #eab308;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
    position: relative;
}
@media (min-width: 768px) {
    .flow-node {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
}
.flow-number {
    font-size: 13px;
    font-weight: 800;
    color: #eab308;
}
@media (min-width: 768px) {
    .flow-number {
        font-size: 15px;
    }
}
.flow-icon {
    font-size: 16px;
}
@media (min-width: 768px) {
    .flow-icon {
        font-size: 20px;
    }
}
.flow-body {
    flex: 1;
    min-width: 0;
}
@media (min-width: 768px) {
    .flow-body {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.flow-title {
    font-size: 13px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 2px;
}
@media (min-width: 768px) {
    .flow-title {
        font-size: 14px;
        margin-bottom: 4px;
    }
}
.flow-desc {
    font-size: 11px;
    color: #888;
    line-height: 1.5;
}
@media (min-width: 768px) {
    .flow-desc {
        font-size: 12px;
        max-width: 160px;
    }
}
/* 箭头连接线 — 桌面端 */
@media (min-width: 768px) {
    .pawn-flow-step:not(:last-child) .flow-arrow {
        position: absolute;
        top: 30px;
        right: -18px;
        width: 36px;
        height: 2px;
        background: linear-gradient(90deg, #eab308, rgba(234,179,8,0.2));
        z-index: 1;
    }
    .pawn-flow-step:not(:last-child) .flow-arrow::after {
        content: '';
        position: absolute;
        right: -4px;
        top: -4px;
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 6px solid rgba(234,179,8,0.4);
    }
}
.flow-arrow {
    display: none;
}
@media (min-width: 768px) {
    .flow-arrow {
        display: block;
    }
}
/* 竖线连接 — 移动端 */
@media (max-width: 767px) {
    .pawn-flow-step:not(:last-child)::before {
        content: '';
        position: absolute;
        left: 23px;
        top: 58px;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, #eab308, rgba(234,179,8,0.15));
    }
}

/* 优势卡片 — 金色图标环 */
.pawn-advantages-section {
    padding: 48px 0;
    background: #f8f9fa;
}
@media (min-width: 768px) {
    .pawn-advantages-section { padding: 64px 0; }
}
.pawn-adv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 480px) {
    .pawn-adv-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (min-width: 768px) {
    .pawn-adv-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
.pawn-adv-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s;
}
.pawn-adv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(234,179,8,0.1);
}
.pawn-adv-icon-ring {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef3c7, #fffbeb);
    border: 2px solid #fde68a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.pawn-adv-icon {
    font-size: 22px;
    line-height: 1;
}
.pawn-adv-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 6px;
}
.pawn-adv-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.55;
}

/* FAQ — 分割线优化 */
.pawn-page .faq-section {
    padding: 48px 0;
    background: #fff;
}
@media (min-width: 768px) {
    .pawn-page .faq-section { padding: 64px 0; }
}
.pawn-page .faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.pawn-page .faq-item {
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
}
.pawn-page .faq-q {
    font-size: 15px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 6px;
}
.pawn-page .faq-a {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
}

/* 紧急 CTA */
.pawn-cta-section {
    padding: 0 0 48px;
    background: #fff;
}
.pawn-cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.pawn-cta-content {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4a 50%, #292524 100%);
    border-radius: 16px;
    padding: 36px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 40px;
}
.pawn-cta-content::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #eab308, #f59e0b, #eab308);
}
.pawn-cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    min-width: 0;
    z-index: 1;
}
.pawn-cta-right {
    flex-shrink: 0;
    z-index: 1;
}
.pawn-cta-emoji {
    font-size: 42px;
    flex-shrink: 0;
    line-height: 1;
}
.pawn-cta-text {
    min-width: 0;
}
.pawn-cta-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 4px;
}
.pawn-cta-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
    margin: 0;
}
.pawn-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}
.pawn-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #eab308, #f59e0b);
    color: #1e3a5f;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}
.pawn-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234,179,8,0.35);
}
.pawn-cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 26px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.25s;
}
.pawn-cta-btn-outline:hover {
    background: rgba(255,255,255,0.15);
}

/* ==============================
   抵押页响应式 (.pawn-page) — v26 重设计
   ============================== */

@media (min-width: 640px) {
  .pawn-page .hero-title { font-size: 32px; }
  .pawn-page .section-title { font-size: 26px; }
  .pawn-page .section-desc { font-size: 14px; }
  .pawn-page .pawn-adv-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (min-width: 768px) {
  .pawn-page .hero-stats {
    gap: 40px;
    justify-content: flex-start;
    margin-top: 28px;
  }
  .pawn-page .hero-stat-num { font-size: 36px; }
  .pawn-page .hero-stat-label { font-size: 12px; }
  .pawn-page .section-title { font-size: 28px; }
  .pawn-page .pawn-flow { gap: 0; }
  .pawn-page .pawn-cta-content { padding: 48px 40px; }
  .pawn-page .pawn-cta-title { font-size: 22px; }
}

@media (max-width: 767px) {
  .pawn-page .hero-stats {
    gap: 12px;
    justify-content: center;
    margin-top: 14px;
  }
  .pawn-page .hero-stat {
    position: relative;
  }
  .pawn-page .hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.15);
  }
  .pawn-page .hero-stat-num { font-size: 22px; }
  .pawn-page .hero-stat-label { font-size: 10px; }
  .pawn-page .pawn-card { padding: 18px 14px; }
  .pawn-page .pawn-icon-wrap { width: 48px; height: 48px; }
  .pawn-page .pawn-icon { font-size: 22px; }
  .pawn-page .pawn-loan-tag { font-size: 11px; padding: 3px 8px; }
  .pawn-page .pawn-adv-card { padding: 18px 14px; }
  .pawn-page .pawn-adv-icon-ring { width: 44px; height: 44px; }
  .pawn-page .pawn-adv-icon { font-size: 18px; }
  .pawn-page .pawn-cta-content { 
    flex-direction: column; 
    gap: 24px; 
    padding: 32px 20px; 
  }
  .pawn-page .pawn-cta-emoji { font-size: 32px; }
  .pawn-page .pawn-cta-title { font-size: 20px; }
  .pawn-page .pawn-cta-desc { font-size: 12px; }
  .pawn-page .pawn-cta-btns { flex-direction: column; align-items: stretch; width: 100%; }
  /* 手机端各区域收窄间距 */
  .pawn-services-section,
  .pawn-process-section,
  .pawn-advantages-section,
  .pawn-page .faq-section { padding: 28px 0; }
  .pawn-page .section-header { margin-bottom: 16px; }
  .pawn-page .section-desc { margin-bottom: 12px; }
}
@media (max-width: 480px) {
  .pawn-page .hero-stats {
    gap: 8px;
  }
  .pawn-page .hero-stat:not(:last-child)::after {
    right: -6px;
  }
  .pawn-page .hero-stat-num { font-size: 20px; }
  .pawn-page .hero-stat-num small { font-size: 10px; }
  .pawn-page .hero-stat-label { font-size: 9px; }

  /* ===== 手机端：抵押流程 — 2列3行紧凑网格 ===== */
  .pawn-flow {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 4px !important;
    align-items: start !important;
  }
  .pawn-flow-step {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 12px 8px 8px !important;
    gap: 6px !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
  }
  .flow-arrow { display: none !important; }
  .flow-node {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 0 !important;
  }
  .flow-number { font-size: 11px !important; }
  .flow-icon { font-size: 15px !important; }
  .flow-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin-bottom: 0 !important;
    line-height: 1.25 !important;
  }
  /* 描述精简为单行 */
  .flow-desc {
    font-size: 10.5px !important;
    color: #64748b !important;
    line-height: 1.35 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  /* ===== 手机端：典当优势 — 2列2行紧凑网格 ===== */
  .pawn-adv-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 4px !important;
  }
  .pawn-adv-card {
    padding: 14px 8px 10px !important;
    border-radius: 14px !important;
  }
  .pawn-adv-icon-ring {
    width: 38px !important;
    height: 38px !important;
    margin: 0 auto 6px !important;
  }
  .pawn-adv-icon { font-size: 17px !important; }
  .pawn-adv-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    margin-bottom: 3px !important;
    color: #1e293b !important;
  }
  .pawn-adv-desc {
    font-size: 10.5px !important;
    color: #64748b !important;
    line-height: 1.35 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
}

/* ==============================
   二手数码页响应式 (.secondhand-page)
   ============================== */

@media (min-width: 640px) {
  .secondhand-page .page-content { font-size: 15px; }
  .secondhand-page .page-card .section-title { font-size: 24px; }
}

@media (max-width: 768px) {
  .secondhand-page .hero-badges { flex-wrap: wrap; }
  .secondhand-page .features-grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 768px) {
  .secondhand-page .features-grid { grid-template-columns: repeat(2,1fr); }
}

@media (min-width: 768px) {
  .secondhand-page .page-section { padding: 48px 0; }
  .secondhand-page .page-card { padding: 0 20px; }
}

/* ==============================
   新闻页响应式 (.news-page)
   ============================== */

@media (max-width: 1023px) {
  .news-page .hero-news .hero-content {
    flex-direction: column;
    gap: 20px;
  }
  .news-page .hero-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .news-page .hero-title { font-size: 22px; margin-bottom: 4px; }
  .news-page .hero-subtitle { font-size: 13px; margin-bottom: 4px; line-height: 1.5; }
  .news-page .hero-news { padding: 20px 16px 24px; }
  .news-page .hero-news .hero-content { gap: 8px; }
  .news-page .hero-warning-card { padding: 10px 12px; }
  .news-list-section { padding: 24px 0 40px; }
  .news-grid {
    gap: 12px;
    padding: 0 12px;
  }
}

@media (max-width: 640px) {
  /* === 手机端: 紧凑竖向卡片 === */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 12px;
  }

  /* 卡片重置高度 */
  .news-card {
    flex-direction: column;
    border-radius: 13px;
    height: auto;
  }

  /* 图片区: 手机端隐藏, 纯文字卡片 */
  .news-image {
    display: none;
  }
  .news-image-empty {
    display: none;
  }

  /* 置顶徽章: 移到正文区 */
  .news-pin-badge {
    position: static;
    display: inline-block;
    font-size: 10px;
    padding: 3px 8px;
    margin-bottom: 6px;
  }

  /* 正文区紧凑 */
  .news-body {
    padding: 14px;
    flex: 1;
    min-width: 0;
    border-radius: 13px;
  }
  .news-meta {
    gap: 6px;
    margin-bottom: 6px;
  }
  .news-category {
    font-size: 10px;
    padding: 2px 8px;
  }
  .news-date {
    font-size: 11px;
  }
  .news-card-title {
    font-size: 15px;
    font-weight: 700;
    -webkit-line-clamp: 2;
    margin-bottom: 6px;
    line-height: 1.45;
  }
  .news-summary {
    font-size: 13px;
    color: #64748b;
    -webkit-line-clamp: 2;
    margin-bottom: 10px;
    line-height: 1.55;
  }
  .news-readmore {
    font-size: 12px;
  }

  /* hover效果减弱 */
  .news-card-link:hover {
    transform: translateY(-2px);
  }
  .news-card-link:hover .news-card {
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  }
}


/* ==============================
   产品详情页响应式 (.product-detail-page)
   ============================== */

@media (min-width: 640px) {
  .product-detail-page .breadcrumb { padding: 12px 0; }
  .product-detail-page .breadcrumb-inner { font-size: 14px; }
  .product-detail-page .main-image { border-radius: 16px; }
  .product-detail-page .thumbnails { gap: 10px; margin-top: 12px; }
  .product-detail-page .thumb { width: 72px; height: 72px; }
  .product-detail-page .detail-name { font-size: 26px; }
  .product-detail-page .detail-meta { font-size: 14px; margin-bottom: 20px; }
  .product-detail-page .price-box { gap: 12px; margin-bottom: 20px; }
  .product-detail-page .price-symbol { font-size: 18px; }
  .product-detail-page .price-value { font-size: 36px; }
  .product-detail-page .price-original { font-size: 18px; }
  .product-detail-page .discount-tag { font-size: 12px; padding: 3px 12px; }
  .product-detail-page .stock-box { margin-bottom: 20px; font-size: 14px; }
  .product-detail-page .quantity-box { margin-bottom: 20px; }
  .product-detail-page .quantity-box label { font-size: 14px; margin-bottom: 8px; }
  .product-detail-page .quantity-selector button { width: 44px; height: 44px; font-size: 16px; }
  .product-detail-page .quantity-selector input { width: 56px; height: 44px; }
  .product-detail-page .action-buttons { gap: 12px; margin-bottom: 28px; }
  .product-detail-page .buy-btn { padding: 14px 28px; font-size: 16px; min-width: 160px; }
  .product-detail-page .inquiry-btn { padding: 14px 24px; font-size: 15px; }
  .product-detail-page .specs-section { margin-bottom: 24px; padding-top: 24px; }
  .product-detail-page .specs-section h3 { font-size: 17px; margin-bottom: 16px; }
  .product-detail-page .specs-section .specs-grid { gap: 8px; }
  .product-detail-page .spec-item { padding: 10px 14px; gap: 8px; }
  .product-detail-page .spec-label,
  .product-detail-page .spec-value { font-size: 13px; }
  .product-detail-page .guarantee { gap: 20px; padding-top: 20px; }
  .product-detail-page .guar-item { font-size: 13px; gap: 6px; }
  .product-detail-page .description-content { font-size: 15px; }
  .product-detail-page .detail-description h2 { font-size: 20px; margin-bottom: 20px; }
  .product-detail-page .modal-header { padding: 18px 24px; }
  .product-detail-page .modal-header h3 { font-size: 17px; }
  .product-detail-page .modal-body { padding: 24px; }
}

@media (min-width: 768px) {
  .product-detail-page .detail-main { flex-direction: row; gap: 32px; margin-bottom: 56px; }
  .product-detail-page .detail-gallery { width: 45%; flex-shrink: 0; }
  .product-detail-page .main-image img { padding: 24px; }
  .product-detail-page .detail-name { font-size: 30px; }
  .product-detail-page .price-value { font-size: 42px; }
  .product-detail-page .detail-description { margin-bottom: 60px; padding-top: 36px; }
  .product-detail-page .detail-description h2 { font-size: 22px; }
}

@media (min-width: 1024px) {
  .product-detail-page .detail-main { gap: 48px; }
  .product-detail-page .detail-gallery { width: 480px; }
}

/* ============================================================
   PHP 模板补充样式
   从 Vue SPA 转换为纯 PHP 前端时新增的组件样式
   ============================================================ */

/* 通用 Page Hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 20px 56px;
  min-height: auto;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) { .page-hero { padding: 60px 20px 80px; min-height: 360px; } }
@media (min-width: 1024px) { .page-hero { padding: 72px 20px 90px; min-height: 420px; } }

.page-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .hero-gradient { position: absolute; inset: 0; }
.page-hero .hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}
.page-hero .hero-content {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 0 20px;
}
.page-hero .hero-title {
  font-size: 28px; font-weight: 800; color: #fff;
  margin-bottom: 12px; letter-spacing: -0.5px; line-height: 1.2;
}
/* Hero 徽章 — 固定在彩色背景上强制白色 */
.page-hero .hero-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
/* Hero标题图标 — 独立行，居中，与文字有间距 */
.page-hero .hero-title-icon,
.hero-title-icon {
  display: block;
  font-size: 40px;
  margin-bottom: 8px;
  line-height: 1;
}
@media (min-width: 640px) { .page-hero .hero-title { font-size: 34px; } }
@media (min-width: 768px) { .page-hero .hero-title { font-size: 40px; } }
@media (min-width: 1024px) { .page-hero .hero-title { font-size: 48px; } }

.page-hero .hero-subtitle {
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-bottom: 20px; line-height: 1.6; max-width: 1200px;
}
@media (min-width: 640px) { .page-hero .hero-subtitle { font-size: 16px; } }
@media (min-width: 768px) { .page-hero .hero-subtitle { font-size: 18px; margin-bottom: 24px; } }

.page-hero .hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (min-width: 640px) { .page-hero .hero-actions { gap: 12px; flex-wrap: nowrap; } }

/* Hero 颜色变体 */
.hero-service .hero-gradient { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); }
.hero-recycling .hero-gradient { background: linear-gradient(135deg, #065f46 0%, #10b981 100%); }
.hero-secondhand .hero-gradient { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.hero-news .hero-gradient { background: linear-gradient(135deg, #065f46 0%, #059669 100%); }
.hero-about .hero-gradient { background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 40%, #2563eb 100%); }
.hero-contact .hero-gradient { background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); }

/* 联系我们页面 — 电脑端 Hero 优化（减少右侧空白） */
@media (min-width: 768px) {
  .contact-page .page-hero.hero-contact .hero-content {
    gap: 24px;
  }
  .contact-page .page-hero.hero-contact .hero-right {
    flex: 0 0 380px !important;       /* 缩小防骗卡片区域 */
    max-width: 380px !important;
  }
}
@media (min-width: 1024px) {
  .contact-page .page-hero.hero-contact .hero-right {
    flex: 0 0 420px !important;
    max-width: 420px !important;
  }
}

/* All Pages Hero 左右两栏（首页除外） */
.page-hero:not(.hero-home) .hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .page-hero:not(.hero-home) .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .page-hero:not(.hero-home) .hero-left {
    flex: 1;
    min-width: 0;
  }
  .page-hero:not(.hero-home) .hero-right {
    flex: 0 0 470px;
    max-width: 470px;
  }
}

/* Hero 右侧防骗卡片 - 暖色醒目 */
.page-hero:not(.hero-home) .hero-warning-card {
  position: relative;
  background: linear-gradient(145deg, #fff7ed 0%, #ffedd5 100%);
  border: 2px solid #ff9f43;
  border-radius: 16px;
  padding: 20px 22px;
  width: 100%;
  box-shadow:
    0 8px 32px rgba(255, 107, 53, 0.25),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
}
.page-hero:not(.hero-home) .hero-warning-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff9f43, #ff6b35, #ff9f43);
}
.page-hero:not(.hero-home) .hero-warning-link {
  display: block;
  text-decoration: none;
  transition: transform 0.25s ease;
}
.page-hero:not(.hero-home) .hero-warning-link:hover {
  transform: translateY(-3px);
}
.page-hero:not(.hero-home) .hero-warning-link:hover .hero-warning-card {
  box-shadow:
    0 12px 40px rgba(255, 107, 53, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.page-hero:not(.hero-home) .hero-warning-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 159, 67, 0.3);
}
.page-hero:not(.hero-home) .hero-warning-icon {
  font-size: 18px;
}
.page-hero:not(.hero-home) .hero-warning-title {
  font-size: 16px;
  font-weight: 800;
  color: #c2410c;
  letter-spacing: 0.5px;
}
.page-hero:not(.hero-home) .hero-warning-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-hero:not(.hero-home) .hero-warning-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #78350f;
  line-height: 1.5;
}
.page-hero:not(.hero-home) .hero-warning-dot {
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}
.page-hero:not(.hero-home) .hero-warning-item p {
  margin: 0;
}

/* 全站子页面防骗卡片紧凑化 — 与关于我们/新闻页风格一致 */
.about-page .hero-warning-card,
.service-page .hero-warning-card,
.recycling-page .hero-warning-card,
.pawn-page .hero-warning-card,
.secondhand-page .hero-warning-card,
.guide-page .hero-warning-card {
  padding: 14px 18px;
}
.about-page .hero-warning-header,
.service-page .hero-warning-header,
.recycling-page .hero-warning-header,
.pawn-page .hero-warning-header,
.secondhand-page .hero-warning-header,
.guide-page .hero-warning-header {
  margin-bottom: 8px;
  padding-bottom: 8px;
}
.about-page .hero-warning-title,
.service-page .hero-warning-title,
.recycling-page .hero-warning-title,
.pawn-page .hero-warning-title,
.secondhand-page .hero-warning-title,
.guide-page .hero-warning-title {
  font-size: 14px;
  font-weight: 800;
}
.about-page .hero-warning-body,
.service-page .hero-warning-body,
.recycling-page .hero-warning-body,
.pawn-page .hero-warning-body,
.secondhand-page .hero-warning-body,
.guide-page .hero-warning-body {
  gap: 6px;
}
.about-page .hero-warning-item,
.service-page .hero-warning-item,
.recycling-page .hero-warning-item,
.pawn-page .hero-warning-item,
.secondhand-page .hero-warning-item,
.guide-page .hero-warning-item {
  gap: 6px;
  font-size: 12px;
  line-height: 1.45;
}
.about-page .hero-warning-dot,
.service-page .hero-warning-dot,
.recycling-page .hero-warning-dot,
.pawn-page .hero-warning-dot,
.secondhand-page .hero-warning-dot,
.guide-page .hero-warning-dot {
  font-size: 10px;
}

/* 通用 Content Section */
.content-section { padding: 36px 0; background: #fff; }
@media (min-width: 768px) { .content-section { padding: 48px 0; } }
.content-text { max-width: 1200px; margin: 0 auto; font-size: 14px; line-height: 1.8; color: #555; }
@media (min-width: 640px) { .content-text { font-size: 15px; } }
.content-text h2 { font-size: 20px; font-weight: 700; color: #1e3a5f; margin: 24px 0 12px; }
.content-text h3 { font-size: 17px; font-weight: 600; color: #2c4a6e; margin: 20px 0 10px; }
.content-text p { margin-bottom: 12px; }
.content-text ul, .content-text ol { padding-left: 20px; margin-bottom: 12px; }
.content-text li { margin-bottom: 4px; }
.content-text img { max-width: 100%; border-radius: 10px; margin: 16px 0; }
.content-text a { color: #2563eb; text-decoration: underline; }
.content-text strong { font-weight: 600; }

/* Process Section 通用 */
.process-section { padding: 36px 0; background: #f8f9fa; }
@media (min-width: 768px) { .process-section { padding: 56px 0; } }
.process-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; } }

.process-card {
  background: #fff; border-radius: 16px; padding: 20px; text-align: center;
  position: relative; border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.process-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.process-number {
  position: absolute; top: 10px; right: 14px; font-size: 32px;
  font-weight: 900; color: rgba(37,99,235,0.08); line-height: 1;
}
.process-icon { font-size: 28px; margin-bottom: 10px; }
.process-title { font-size: 14px; font-weight: 700; color: #1e3a5f; margin-bottom: 6px; }
@media (min-width: 640px) { .process-title { font-size: 15px; } }
.process-desc { font-size: 12px; color: #888; line-height: 1.5; }
@media (min-width: 640px) { .process-desc { font-size: 13px; } }

/* Advantages Section 通用 */
.advantages-section { padding: 36px 0; background: #f8f9fa; }
@media (min-width: 768px) { .advantages-section { padding: 56px 0; } }
.advantage-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
@media (min-width: 768px) { .advantage-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.advantage-card {
  background: #fff; border-radius: 16px; padding: 22px; text-align: center;
  border: 1px solid rgba(0,0,0,0.04); transition: all 0.3s;
}
.advantage-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.advantage-icon { font-size: 32px; margin-bottom: 10px; }
.advantage-title { font-size: 15px; font-weight: 700; color: #1e3a5f; margin-bottom: 6px; }
@media (min-width: 640px) { .advantage-title { font-size: 16px; } }
.advantage-desc { font-size: 12px; color: #888; line-height: 1.5; }
@media (min-width: 640px) { .advantage-desc { font-size: 13px; } }

/* FAQ Section */
.faq-section { padding: 36px 0; background: #fff; }
@media (min-width: 768px) { .faq-section { padding: 56px 0; } }
.faq-list { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.faq-item { padding: 18px 0; border-bottom: 1px solid #f0f0f0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 15px; font-weight: 600; color: #1e3a5f; margin-bottom: 6px; }
.faq-a { font-size: 13px; color: #666; line-height: 1.6; }

/* Condition Section (回收须知) */
.conditions-section { padding: 36px 0; background: #fff; }
@media (min-width: 768px) { .conditions-section { padding: 56px 0; } }
.condition-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
@media (min-width: 768px) { .condition-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.condition-card {
  text-align: center; padding: 20px; background: #f8f9fa;
  border-radius: 12px; border: 1px solid rgba(0,0,0,0.04);
}
.condition-icon { font-size: 28px; margin-bottom: 8px; }
.condition-title { font-size: 13px; font-weight: 600; color: #2c4a6e; }

/* Recycle Items Section */
.recycle-items-section { padding: 36px 0; background: #fff; }
@media (min-width: 768px) { .recycle-items-section { padding: 56px 0; } }
.recycle-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
@media (min-width: 768px) { .recycle-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.recycle-card {
  background: #f8f9fa; border-radius: 12px; padding: 18px; text-align: center;
  border: 1px solid rgba(0,0,0,0.04); transition: all 0.2s;
}
.recycle-card:hover { background: #f0f4ff; border-color: #dbeafe; }
.recycle-icon { font-size: 24px; margin-bottom: 6px; }
.recycle-name { font-size: 13px; font-weight: 600; color: #2c4a6e; margin-bottom: 4px; }
.recycle-price { font-size: 12px; color: #ff6b35; font-weight: 500; }
.recycle-note { font-size: 11px; color: #aaa; margin-top: 4px; }

/* Cases Section */
.cases-section { padding: 36px 0; background: #f8f9fa; }
@media (min-width: 768px) { .cases-section { padding: 56px 0; } }
.cases-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
@media (min-width: 640px) { .cases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cases-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.case-card {
  background: #fff; border-radius: 12px; padding: 18px;
  border: 1px solid rgba(0,0,0,0.04);
}
.case-title { font-size: 14px; font-weight: 600; color: #2c4a6e; margin-bottom: 6px; }
.case-desc { font-size: 12px; color: #888; line-height: 1.5; margin-bottom: 8px; }
.case-result { font-size: 12px; color: #10b981; font-weight: 500; }

/* Services Grid Section (服务列表通用) */
.services-grid-section { padding: 36px 0; background: #f8f9fa; }
@media (min-width: 768px) { .services-grid-section { padding: 56px 0; } }

/* Brands Section */
.brands-section { padding: 36px 0; background: #fff; }
@media (min-width: 768px) { .brands-section { padding: 56px 0; } }
.brand-grid {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.brand-item {
  padding: 8px 16px; background: #f8f9fa; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: #555; border: 1px solid #eee;
  transition: all 0.2s;
}
.brand-item:hover { border-color: #2563eb; color: #2563eb; background: #f0f4ff; }

/* Store Info Section */
.store-info-section { padding: 36px 0; background: #f8f9fa; }
@media (min-width: 768px) { .store-info-section { padding: 56px 0; } }
.store-grid {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  background: #fff; border-radius: 16px; padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.store-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid #f5f5f5;
}
.store-item:last-child { border-bottom: none; }
.store-icon { font-size: 18px; flex-shrink: 0; }
.store-detail { flex: 1; }
.store-label { font-size: 12px; color: #888; margin-right: 8px; }
.store-value { font-size: 14px; color: #2c4a6e; font-weight: 500; }

/* Warning Section */
.warning-section { padding: 36px 0; background: #fff8f0; }
@media (min-width: 768px) { .warning-section { padding: 48px 0; } }
.warning-list { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.warning-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; font-size: 13px; color: #8a6d3b; line-height: 1.6;
}
.warning-icon { font-size: 16px; flex-shrink: 0; }
.warning-text { flex: 1; }

/* Categories Grid Section */
.categories-grid-section { padding: 36px 0; background: #f8f9fa; }
@media (min-width: 768px) { .categories-grid-section { padding: 56px 0; } }

/* Contact Methods Section */
.contact-methods-section { padding: 36px 0; background: #fff; }
@media (min-width: 768px) { .contact-methods-section { padding: 56px 0; } }
.contact-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.contact-card-item {
  background: #f8f9fa; border-radius: 16px; padding: 22px; text-align: center;
  border: 1px solid rgba(0,0,0,0.04); transition: all 0.3s;
}
.contact-card-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.contact-icon { font-size: 28px; margin-bottom: 8px; }
.contact-label { font-size: 13px; color: #888; margin-bottom: 4px; }
.contact-value { font-size: 15px; font-weight: 600; color: #2c4a6e; margin-bottom: 8px; word-break: break-all; }
.contact-link { font-size: 13px; color: #2563eb; text-decoration: none; font-weight: 500; }
.contact-link:hover { text-decoration: underline; }

/* Address Section */
.address-section { padding: 36px 0; background: #f8f9fa; }
@media (min-width: 768px) { .address-section { padding: 56px 0; } }
.address-card {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr; gap: 20px;
}
@media (min-width: 768px) { .address-card { grid-template-columns: 1fr 1fr; gap: 28px; } }
.address-info { padding: 20px; }
.address-text { font-size: 14px; color: #555; margin-bottom: 6px; }
.address-text-cn { font-size: 15px; font-weight: 600; color: #2c4a6e; margin-bottom: 8px; }
.address-note { font-size: 12px; color: #888; }
.address-map { border-radius: 12px; overflow: hidden; }

/* Quick Actions Section */
.quick-actions-section { padding: 24px 0; background: #fff; }
.quick-grid {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.quick-card {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 24px; background: #f8f9fa; border-radius: 12px;
  text-decoration: none; transition: all 0.3s; border: 1px solid rgba(0,0,0,0.04);
  color: var(--accent, #2563eb);
}
.quick-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.quick-icon { font-size: 20px; }
.quick-title { font-size: 14px; font-weight: 600; }

/* Form Section */
.form-section { padding: 36px 0; background: #f8f9fa; }
@media (min-width: 768px) { .form-section { padding: 56px 0; } }
.form-wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.form-message {
  padding: 12px 16px; border-radius: 10px; margin-bottom: 16px;
  font-size: 14px; font-weight: 500;
}
.form-message.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.form-message.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: #555; }
.form-input {
  padding: 10px 14px; border: 1px solid #ddd; border-radius: 10px;
  font-size: 14px; transition: border-color 0.2s; outline: none;
  font-family: inherit;
}
.form-input:focus { border-color: #2563eb; box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; margin-top: 8px; }

/* Detail Layout (Product Detail) */
.detail-layout {
  max-width: 1200px; margin: 0 auto; padding: 24px 20px;
  display: flex; flex-direction: column; gap: 24px;
}
@media (min-width: 768px) {
  .detail-layout { flex-direction: row; gap: 32px; padding: 32px 20px; }
}
.detail-gallery { flex-shrink: 0; }
@media (min-width: 768px) { .detail-gallery { width: 45%; } }
@media (min-width: 1024px) { .detail-gallery { width: 480px; } }

.gallery-main {
  position: relative; background: linear-gradient(135deg, #f0f4ff, #e8ecf4);
  border-radius: 16px; overflow: hidden; padding-top: 100%;
}
.gallery-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.detail-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }

.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; }
.thumb-item { width: 64px; height: 64px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; cursor: pointer; flex-shrink: 0; }
.thumb-item.active { border-color: #2563eb; }
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }

.detail-info { flex: 1; min-width: 0; }
.detail-title { font-size: 22px; font-weight: 700; color: #1e3a5f; margin-bottom: 12px; line-height: 1.3; }
@media (min-width: 640px) { .detail-title { font-size: 26px; } }
@media (min-width: 768px) { .detail-title { font-size: 30px; } }

.detail-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.detail-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.price-discount { font-size: 12px; background: #ff4757; color: #fff; padding: 2px 8px; border-radius: 4px; font-weight: 600; }

.detail-stock { margin-bottom: 16px; }
.stock-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; border-radius: 6px; font-size: 13px; font-weight: 500; }
.stock-badge.in-stock { background: #ecfdf5; color: #065f46; }
.stock-badge.out-stock { background: #fef2f2; color: #991b1b; }

.detail-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.detail-actions .btn { flex: 1; min-width: 140px; justify-content: center; }

.detail-specs { margin-bottom: 20px; }
.specs-title { font-size: 16px; font-weight: 700; color: #1e3a5f; margin-bottom: 12px; }
.specs-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid #eee; border-radius: 10px; overflow: hidden; width: 100%; }
.spec-row { display: flex; width: 100%; padding: 10px 14px; border-bottom: 1px solid #f5f5f5; align-items: center; }
.spec-row:last-child { border-bottom: none; }
.spec-key { width: 120px; flex-shrink: 0; font-size: 13px; color: #888; white-space: nowrap; }
.spec-val { flex: 1; min-width: 0; font-size: 13px; color: #2c4a6e; font-weight: 500; word-break: keep-all; overflow-wrap: break-word; }

.detail-guarantees { display: flex; flex-wrap: wrap; gap: 8px; }
.guarantee-item { padding: 6px 12px; background: #f0f4ff; border-radius: 6px; font-size: 12px; color: #2563eb; font-weight: 500; }

.detail-description { margin-top: 24px; padding-top: 24px; border-top: 1px solid #f0f0f0; }
.description-content { max-width: 1200px; margin: 0 auto; font-size: 14px; line-height: 1.8; color: #555; }

.detail-back { padding: 20px; text-align: center; }

/* ============================================================
   入店指引页 (.guide-page)
   ============================================================ */

/* 地图区域 — 双栏布局 */
.guide-map-section { padding: 40px 0; }
.guide-map-section .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* 双栏容器 */
.guide-map-layout {
  display: flex; gap: 24px; align-items: stretch;
}

/* === 左侧：平面地图 === */
.guide-map-left {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
}
.guide-map-frame {
  flex: 1;
  position: relative;
  border-radius: 18px; overflow: hidden;
  min-height: 440px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  border: 2px solid #e0e7f0;
  background: #f0f4fa;
  transition: box-shadow 0.3s;
}
.guide-map-frame:hover {
  box-shadow: 0 12px 48px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
}
.guide-map-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* 脉冲定位点（模拟地图大头针） */
.guide-map-pulse {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  z-index: 10; pointer-events: none;
  width: 24px; height: 24px;
}
.guide-map-pulse-dot {
  position: absolute; top: 50%; left: 50%;
  width: 14px; height: 14px; margin: -7px 0 0 -7px;
  background: #e53e3e; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(229,62,62,0.30), 0 2px 6px rgba(0,0,0,0.25);
  z-index: 2;
}
.guide-map-pulse-ring {
  position: absolute; top: 50%; left: 50%;
  width: 36px; height: 36px; margin: -18px 0 0 -18px;
  border: 2px solid rgba(229,62,62,0.5);
  border-radius: 50%;
  animation: guidePulse 2s ease-out infinite;
}
@keyframes guidePulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  50% { opacity: 0.3; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* 地图底部地址条（左侧frame下方） */
.guide-map-bottom-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 8px 0;
  text-decoration: none;
  transition: opacity 0.2s; flex-shrink: 0;
}
.guide-map-bottom-pin { font-size: 18px; flex-shrink: 0; }
.guide-map-bottom-addr {
  flex: 1; font-size: 13px; font-weight: 600;
  color: #2c4a6e; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.guide-map-bottom-action {
  font-size: 12px; color: #2563eb; font-weight: 500;
  white-space: nowrap; flex-shrink: 0;
}

/* === 右侧：街景地图 === */
.guide-map-right {
  flex: 1; min-width: 300px;
  display: flex; flex-direction: column; gap: 0;
}
.guide-map-right .guide-map-frame {
  flex: 1; min-height: 300px;
  border-radius: 18px; overflow: hidden;
  border: 1px solid #e0e7f0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.04);
  position: relative;
}
.guide-map-right .guide-map-frame iframe {
  height: 100%;
}
.guide-map-street-label {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 0 0; font-size: 13px; font-weight: 600;
  color: #1e3a5f;
}
.guide-map-street-label span { font-size: 16px; }

/* === 保留信息卡样式（其他场景可能复用） === */
.guide-map-info-card {
  background: linear-gradient(155deg, #ffffff 0%, #f8faff 60%, #f0f4ff 100%);
  border: 1px solid #e0e7f0;
  border-radius: 18px; padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05), 0 1px 4px rgba(0,0,0,0.04);
  height: 100%; display: flex; flex-direction: column;
  transition: box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.guide-map-info-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.guide-map-info-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.guide-map-info-circle {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #1e3a5f);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}
.guide-map-info-emoji { font-size: 26px; }

.guide-map-info-title {
  font-size: 18px; font-weight: 700; color: #1e3a5f;
  text-align: center; margin: 0 0 8px;
}
.guide-map-info-addr {
  font-size: 14px; color: #475569; line-height: 1.7;
  text-align: center; margin: 0 0 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8ecf4;
}

/* 快捷操作按钮组 */
.guide-map-info-actions {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px;
}
.guide-map-info-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 12px;
  border: 1px solid #e0e7f0; background: #fff;
  text-decoration: none; font-size: 14px; font-weight: 500;
  color: #334155;
  transition: all 0.2s;
}
.guide-map-info-btn span { font-size: 18px; flex-shrink: 0; }
.guide-map-info-btn:hover {
  border-color: #cbd5e1; background: #f8faff;
  transform: translateX(4px);
}
.guide-map-info-btn.primary {
  background: linear-gradient(135deg, #2563eb, #1e3a5f);
  color: #fff; border-color: transparent;
  font-weight: 600; box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}
.guide-map-info-btn.primary:hover {
  background: linear-gradient(135deg, #1d4ed8, #152e4d);
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}

/* 快速提示 */
.guide-map-info-tips {
  background: #f8faff; border-radius: 12px;
  padding: 14px 16px; display: flex; flex-direction: column; gap: 8px;
  margin-top: auto;
}
.guide-map-info-tip {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12px; color: #64748b; line-height: 1.5;
}
.guide-map-info-tip-icon { flex-shrink: 0; font-size: 15px; }

/* 交通方式卡片 */
.guide-transport-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 40px;
}
.guide-transport-card {
  background: #fff; border: 1px solid #e8ecf4; border-radius: 14px;
  padding: 24px 20px; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.guide-transport-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.guide-transport-icon { font-size: 36px; margin-bottom: 12px; }
.guide-transport-name { font-size: 16px; font-weight: 700; color: #1e3a5f; margin: 0 0 8px; }
.guide-transport-desc { font-size: 13px; color: #64748b; line-height: 1.6; margin: 0; }

/* 路标实景 */
.guide-landmarks { margin-bottom: 40px; }
.guide-landmarks-title { font-size: 18px; font-weight: 700; color: #1e3a5f; margin-bottom: 16px; }
.guide-landmarks-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.guide-landmark-item { text-align: center; }
.guide-landmark-img {
  aspect-ratio: 4/3; border-radius: 12px; overflow: hidden;
  background: #f0f4ff; margin-bottom: 8px;
}
.guide-landmark-img img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: pointer; transition: opacity 0.2s; }
.guide-landmark-img img:hover { opacity: 0.85; }
.guide-landmark-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: #94a3b8; background: #f0f4ff;
}
.guide-landmark-caption { font-size: 13px; color: #64748b; }

/* CTA卡片 */
.guide-cta { margin-bottom: 24px; }
.guide-cta-card {
  background: linear-gradient(135deg, #1e3a5f, #2c4a6e);
  border-radius: 16px; padding: 28px 32px; text-align: center;
  color: #fff;
}
.guide-cta-card h3 { font-size: 20px; font-weight: 700; margin: 0 0 8px; }
.guide-cta-card p { font-size: 14px; opacity: 0.85; margin: 0 0 20px; }
.guide-cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.guide-cta-card .btn-accent { background: #fff; color: #1e3a5f; border-color: #fff; }
.guide-cta-card .btn-accent:hover { background: #f0f4ff; }
.guide-cta-card .btn-ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
.guide-cta-card .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* 方向指引区域 */
.guide-directions-section { padding: 40px 0; }
.guide-directions-section .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Hero 背景色 */
.hero-guide .hero-gradient { background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8a 40%, #2563eb 100%); }
/* Hero 纯文字居中（无左右分栏时使用） */
.hero-content--center { flex-direction: column; text-align: center; }
.hero-content--center .hero-title { justify-content: center; }

/* 响应式 */
@media (max-width: 900px) {
  .guide-map-layout { flex-direction: column; gap: 16px; }
  .guide-map-right { min-width: 0; }
  .guide-map-right .guide-map-frame { min-height: 300px; }
  .guide-map-street-label { font-size: 12px; }
}
@media (max-width: 768px) {
  .guide-map-right .guide-map-frame { min-height: 280px; border-radius: 14px; }
  .guide-map-frame iframe { height: 100%; }
  .guide-map-bottom-bar { padding: 8px 10px 0; }
  .guide-map-bottom-addr { font-size: 12px; }
  .guide-map-bottom-action { font-size: 11px; }
  .guide-transport-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .guide-transport-card { padding: 18px 14px; }
  .guide-transport-icon { font-size: 28px; }
  .guide-landmarks-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .guide-cta-card { padding: 28px 20px; }
  .guide-cta-buttons { flex-wrap: nowrap; }
  .guide-cta-buttons .btn { flex: 1; min-width: 0; padding: 12px 8px; font-size: 13px; }
  .guide-map-street-label { font-size: 12px; padding-top: 8px; }
  /* 手机端收紧 */
  .guide-page .hero-guide .hero-title { font-size: 20px; margin-bottom: 2px; }
  .guide-page .hero-guide .hero-title-icon { display: inline; font-size: 22px; margin-bottom: 0; margin-right: 6px; vertical-align: middle; }
  .guide-page .hero-guide .hero-subtitle { font-size: 14px; margin-bottom: 4px; }
  .guide-page .page-hero.hero-guide { padding: 18px 0 22px; }
  .guide-map-section { padding: 24px 0 12px; }
  .guide-map-section .section-header { margin-bottom: 12px; }
  .guide-map-section .section-header .section-title { font-size: 18px; }
  .guide-map-section .section-header .section-desc { font-size: 13px; }
  .guide-directions-section { padding: 24px 0 12px; }
  .guide-directions-section .section-header { margin-bottom: 12px; }
  .guide-directions-section .section-header .section-title { font-size: 18px; }
  .guide-directions-section .section-header .section-desc { font-size: 13px; }
  .guide-transport-card { padding: 14px 10px; }
  .guide-transport-icon { font-size: 24px; margin-bottom: 8px; }
  .guide-transport-name { font-size: 14px; margin-bottom: 4px; }
  .guide-transport-desc { font-size: 12px; }
  .guide-landmarks { margin-bottom: 24px; }
  .guide-landmarks-title { font-size: 16px; margin-bottom: 10px; }
  .guide-landmark-caption { font-size: 12px; }
  .guide-cta { margin-bottom: 20px; }
  .guide-cta-card { padding: 22px 16px; border-radius: 14px; }
  .guide-cta-card h3 { font-size: 17px; margin-bottom: 6px; }
  .guide-cta-card p { font-size: 13px; margin-bottom: 14px; opacity: 0.80; }
}

@media (max-width: 480px) {
  .guide-map-frame { min-height: 250px; border-radius: 12px; }
  .guide-map-frame iframe { height: 100%; }
  .guide-map-bottom-bar { padding: 6px 8px 0; }
  .guide-map-bottom-pin { font-size: 14px; }
  .guide-map-bottom-addr { font-size: 11px; }
  .guide-map-bottom-action { font-size: 10px; }
  .guide-map-pulse { width: 20px; height: 20px; }
  .guide-map-pulse-dot { width: 10px; height: 10px; margin: -5px 0 0 -5px; }
  .guide-map-pulse-ring { width: 28px; height: 28px; margin: -14px 0 0 -14px; }
  .guide-transport-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .guide-transport-card { padding: 12px 8px; border-radius: 10px; }
  .guide-transport-icon { font-size: 22px; margin-bottom: 4px; }
  .guide-transport-name { font-size: 13px; margin-bottom: 2px; }
  .guide-transport-desc { font-size: 11px; line-height: 1.4; }
  .guide-landmarks-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .guide-map-info-card { padding: 18px 14px; border-radius: 14px; }
  .guide-map-info-btn { padding: 10px 12px; font-size: 13px; }
  .guide-map-info-btn span { font-size: 16px; }
  .guide-map-info-tips { padding: 10px 12px; }
}

/* Sort Form */
.sort-form { display: inline; }

/* CTA 变体颜色 */
.cta-green { background: linear-gradient(135deg, #065f46 0%, #10b981 100%) !important; }
.cta-gold { background: linear-gradient(135deg, #78350f 0%, #d97706 50%, #f59e0b 100%) !important; }

/* 手机端菜单链接 active 状态 */
.mobile-link.active {
  background: #f0f4ff;
  color: #2563eb;
  font-weight: 600;
}

/* 底部栏 emoji 图标尺寸 */
.bottom-btn span:first-child {
  font-size: 20px;
  line-height: 1;
}

/* Home 页温馨提示 */
.notice-section {
  background: #fff8f0;
  padding: 12px 0;
}
.notice-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #8a6d3b;
}
.notice-content .notice-icon {
  font-size: 20px;
  flex-shrink: 0;
}
.notice-content .notice-text strong {
  margin-right: 6px;
}

/* Home 页统计数据 */
.stats-section {
  background: #f8f9fa;
  padding: 32px 0;
}
.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span {
  font-size: 18px;
  font-weight: 700;
}
.stat-label {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

/* Home 页分类入口 */
.categories-section {
  padding: 36px 0;
  background: #fff;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-header {
  text-align: center;
  margin-bottom: 28px;
}
.section-title {
  font-size: 24px;
  font-weight: 800;
  color: #1e3a5f;
  margin-bottom: 8px;
}
.section-subtitle {
  font-size: 14px;
  color: #888;
}
/* section-title 行内 tagline — 标题后小字 */
.section-tagline {
  display: inline;
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  margin-left: 6px;
  vertical-align: baseline;
}
@media (min-width: 768px) {
  .section-tagline { font-size: 15px; margin-left: 10px; }
}
.section-more {
  font-size: 14px;
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}
.section-more:hover { text-decoration: underline; }

.cat-scroll-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
}
@media (min-width: 768px) {
  .cat-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 14px; }
}
.cat-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  color: #2c4a6e;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.2s;
}
.cat-card:hover {
  background: #f0f4ff;
  border-color: #dbeafe;
  color: #2563eb;
}
.cat-icon { font-size: 18px; flex-shrink: 0; }
.cat-name { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cat-arrow { color: #ccc; font-size: 12px; }

/* 热销产品 */
.hot-section {
  padding: 36px 0;
  background: #f8f9fa;
}

/* 主营业务 */
.service-section {
  padding: 36px 0;
  background: #fff;
}

/* 维修服务 */
.repair-section {
  padding: 36px 0;
  background: #f8f9fa;
}
.repair-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) { .repair-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.repair-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.repair-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.repair-name { font-size: 14px; font-weight: 600; color: #2c4a6e; margin-bottom: 4px; }
.repair-desc { font-size: 12px; color: #888; margin-bottom: 6px; line-height: 1.4; }
.repair-price { font-size: 13px; color: #ff6b35; font-weight: 600; }

/* 店铺公告 */
.news-section {
  padding: 36px 0;
  background: #fff;
}
.announcement-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f5f5f5;
}
.news-item:last-child { border-bottom: none; }
.news-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  flex-shrink: 0;
  margin-top: 6px;
}
.news-dot.top { background: #ff6b35; }
.news-pin { margin-right: 4px; }
.news-title {
  font-size: 14px;
  font-weight: 600;
  color: #2c4a6e;
  margin-bottom: 4px;
}
.news-text {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

/* 查看更多链接 */
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-header-row .section-title {
  margin-bottom: 0;
}
.section-more {
  font-size: 13px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.section-more:hover {
  color: #1d4ed8;
}

/* 首页公告可点击 */
.news-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  border-radius: 8px;
  margin: 0 -8px;
  padding: 0 8px;
}
.news-item-link:hover {
  background: #f8fafc;
}
.news-item-link:hover .news-title {
  color: #059669;
}
.news-item-link .news-item {
  border-bottom: 1px solid #f5f5f5;
}
.news-item-link:last-of-type .news-item {
  border-bottom: none;
}

/* CTA Section */
.cta-section {
  padding: 48px 0;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: #fff;
}
.cta-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-desc {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 24px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 按钮通用 */
.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* Products 页面 - category-list 侧边栏分类 */
.category-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cat-item-name {
  font-size: 13px;
  color: #555;
}

/* Products 页面 - 排序区 */
.products-info {
  font-size: 14px;
  color: #888;
  margin-bottom: 16px;
}
.products-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sort-select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 13px;
  background: #fff;
  color: #555;
}

/* 面包屑 */
.breadcrumb {
  padding: 14px 0;
  font-size: 13px;
  color: #888;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.breadcrumb a {
  color: #2563eb;
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; color: #ccc; }

/* Products 页面布局 */
.products-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 1024px) {
  .products-layout { flex-direction: row; align-items: flex-start; }
}
.products-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .products-sidebar {
    display: block;
    width: 240px;
    flex-shrink: 0;
    position: sticky;
    top: 84px;
  }
}
.products-main { flex: 1; min-width: 0; }

/* Sidebar Section */
.sidebar-section {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(0,0,0,0.04);
}
.sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}
.cat-group-header {
  font-size: 11px;
  font-weight: 600;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 8px;
}
.cat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.15s;
}
.cat-item:hover, .cat-item.active {
  background: #f0f4ff;
  color: #2563eb;
}
.cat-item-icon { font-size: 14px; width: 20px; }
.sub-cat-list { display: flex; flex-direction: column; gap: 2px; padding-left: 12px; }
.sub-cat-item {
  padding: 6px 12px;
  font-size: 12px;
  color: #888;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s;
}
.sub-cat-item:hover { background: #f0f4ff; color: #2563eb; }

/* 手机端筛选栏 */
.mobile-filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1024px) { .mobile-filter-bar { display: none; } }
.mobile-filter-btn {
  flex-shrink: 0;
  padding: 8px 16px;
  background: #f8f9fa;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-filter-btn:hover, .mobile-filter-btn.active {
  background: #f0f4ff;
  border-color: #dbeafe;
  color: #2563eb;
}

/* Products Header */
.products-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .products-header { flex-direction: row; justify-content: space-between; align-items: center; }
}
.products-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a5f;
}
.products-count {
  font-size: 13px;
  color: #888;
}

/* 产品搜索框 */
.product-search-box {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.product-search-box:focus-within {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}
.psb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  font-size: 14px;
  color: #9ca3af;
  flex-shrink: 0;
}
.psb-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 4px;
  font-size: 16px;
  color: #1e3a5f;
  background: transparent;
  min-width: 0;
}
.psb-input::placeholder {
  color: #9ca3af;
  font-size: 14px;
}
.psb-clear {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: #9ca3af;
  font-size: 13px;
  text-decoration: none;
  margin-right: 4px;
  transition: all 0.15s;
}
.psb-clear:hover {
  background: #f3f4f6;
  color: #6b7280;
}
.psb-btn {
  flex-shrink: 0;
  border: none;
  outline: none;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: #f59e0b;
  cursor: pointer;
  transition: background 0.2s;
}
.psb-btn:hover {
  background: #d97706;
}
.psb-btn:active {
  background: #b45309;
}

/* Content Section */
.content-section {
  padding: 36px 0;
}
.content-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-section-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e3a5f;
  margin-bottom: 16px;
  text-align: center;
}

/* Mobile Sub Filters */
.mobile-sub-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 0;
}
@media (min-width: 1024px) { .mobile-sub-filters { display: none; } }

/* Address Content */
.address-content {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* 按钮基础类（用于 btn-accent/btn-ghost 等组合） */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

/* 联系卡片按钮 */
.card-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  min-height: 44px;
  border: none;
  cursor: pointer;
}
.card-btn-phone {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: #fff;
}
.card-btn-phone:hover {
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  transform: translateY(-1px);
}
.card-btn-tg {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.card-btn-tg:hover {
  background: rgba(255,255,255,0.25);
}

/* 新闻内容 */
.news-content {
  flex: 1;
  min-width: 0;
}

/* About Content */
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* ============================================================
   新闻详情页样式
   ============================================================ */
.news-detail-page {
  min-height: 100vh;
  background: #f8fafc;
  padding-bottom: 60px;
}

/* 面包屑 */
.breadcrumb {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 0;
}
.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 13px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb-inner a {
  color: #64748b;
  transition: color 0.2s;
}
.breadcrumb-inner a:hover {
  color: #059669;
}
.breadcrumb-inner .sep {
  color: #cbd5e1;
}
.breadcrumb-inner .current {
  color: #334155;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

/* 主体布局 */
.news-detail-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* 文章主体 */
.news-detail-main {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* 封面图 */
.news-detail-cover {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  background: #f1f5f9;
}
.news-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 标题区 */
.news-detail-header {
  padding: 32px 32px 20px;
}
.news-detail-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  margin-bottom: 10px;
}
.news-detail-subtitle {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
}
.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #94a3b8;
}
.meta-badge {
  background: #ecfdf5;
  color: #059669;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 正文内容 */
.news-detail-content {
  padding: 0 32px 32px;
  font-size: 15px;
  line-height: 1.85;
  color: #374151;
}
.news-detail-content p {
  margin-bottom: 16px;
}
.news-detail-content img {
  max-width: 100%;
  border-radius: 10px;
  margin: 16px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.news-detail-content h2,
.news-detail-content h3 {
  font-weight: 700;
  color: #1e293b;
  margin: 28px 0 12px;
  line-height: 1.35;
}
.news-detail-content h2 { font-size: 22px; }
.news-detail-content h3 { font-size: 18px; }
.news-detail-content ul,
.news-detail-content ol {
  margin: 12px 0 16px 24px;
  padding-left: 8px;
}
.news-detail-content ul { list-style: disc; }
.news-detail-content ol { list-style: decimal; }
.news-detail-content li {
  margin-bottom: 6px;
}
.news-detail-content blockquote {
  border-left: 3px solid #059669;
  background: #f0fdf4;
  padding: 14px 18px;
  margin: 16px 0;
  border-radius: 0 8px 8px 0;
  color: #166534;
}
.news-detail-content a {
  color: #059669;
  text-decoration: underline;
}
.news-detail-content a:hover {
  color: #047857;
}
.news-detail-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.news-detail-content th,
.news-detail-content td {
  border: 1px solid #e5e7eb;
  padding: 10px 14px;
  text-align: left;
}
.news-detail-content th {
  background: #f8fafc;
  font-weight: 600;
  color: #334155;
}

/* 底部分享/返回 */
.news-detail-footer {
  display: flex;
  gap: 12px;
  padding: 0 32px 32px;
  flex-wrap: wrap;
}
.news-detail-footer .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s;
}
.news-detail-footer .btn-primary {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  border: none;
}
.news-detail-footer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5,150,105,0.3);
}
.news-detail-footer .btn-outline {
  background: #fff;
  color: #059669;
  border: 1px solid #059669;
}
.news-detail-footer .btn-outline:hover {
  background: #ecfdf5;
}

/* 相关文章(手机端填补空白) */
.news-detail-related {
  margin: 0 24px 24px;
  padding: 20px 0 0;
  border-top: 1px solid #e5e7eb;
}
.related-title {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 14px;
}
.related-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.related-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.related-item:last-child {
  border-bottom: none;
}
.related-item:hover {
  color: #059669;
}
.related-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
}
.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.related-item-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #1f2937;
}
.related-item:hover .related-item-title {
  color: #059669;
}
.related-item-date {
  font-size: 12px;
  color: #9ca3af;
}

/* 侧边栏 */
.news-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: center;
  transition: box-shadow 0.3s;
}
.sidebar-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.sidebar-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: #f0fdf4;
}
.sidebar-contact .sidebar-icon-wrap {
  background: #fff7ed;
}
.sidebar-icon {
  font-size: 22px;
}
.sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}
.sidebar-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 16px;
}
.sidebar-phone {
  font-size: 22px;
  font-weight: 800;
  color: #059669;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.sidebar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: #f0fdf4;
  color: #059669;
  border: 1px solid rgba(5,150,105,0.15);
  text-decoration: none;
  transition: all 0.25s;
}
.sidebar-btn:hover {
  background: #059669;
  color: #fff;
  transform: translateY(-1px);
}
.sidebar-btn-accent {
  background: #fff7ed;
  color: #ea580c;
  border-color: rgba(234,88,12,0.15);
}
.sidebar-btn-accent:hover {
  background: #ea580c;
  color: #fff;
}
.sidebar-card .btn-accent:hover {
  box-shadow: 0 4px 12px rgba(255,107,53,0.4);
  transform: translateY(-1px);
}

/* 响应式 */
@media (max-width: 900px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px 12px;
  }
  .news-detail-sidebar {
    position: static;
    flex-direction: row;
    gap: 12px;
  }
  .sidebar-card {
    flex: 1;
    padding: 20px 16px;
  }
  .sidebar-icon-wrap {
    width: 42px; height: 42px; margin-bottom: 10px;
  }
  .sidebar-icon { font-size: 18px; }
  .sidebar-title { font-size: 15px; }
  .sidebar-phone { font-size: 17px; }
  .news-detail-header {
    padding: 22px 20px 14px;
  }
  .news-detail-title {
    font-size: 22px;
  }
  .news-detail-content {
    padding: 0 20px 20px;
  }
  .news-detail-footer {
    padding: 0 20px 20px;
  }
  .breadcrumb-inner .current {
    max-width: 180px;
  }
}

@media (max-width: 640px) {
  /* === 手机端: 新闻详情页优化 === */

  /* 面包屑可滚动 */
  .breadcrumb {
    padding: 10px 0;
  }
  .breadcrumb-inner {
    padding: 0 12px;
    font-size: 12px;
    gap: 5px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .breadcrumb-inner::-webkit-scrollbar { display: none; }
  .breadcrumb-inner .current {
    max-width: 150px;
  }

  /* 去掉 min-height, 消除底部大空白 */
  .news-detail-page {
    min-height: auto;
    padding-bottom: 20px;
  }

  /* 布局 */
  .news-detail-layout {
    padding: 12px 0;
    gap: 16px;
  }

  /* 封面图: 全宽无圆角 */
  .news-detail-main {
    border-radius: 0;
  }
  .news-detail-cover {
    max-height: 220px;
    border-radius: 0;
  }

  /* 标题区紧凑 */
  .news-detail-header {
    padding: 16px 14px 10px;
  }
  .news-detail-title {
    font-size: 19px;
    margin-bottom: 6px;
    line-height: 1.4;
  }
  .news-detail-subtitle {
    font-size: 13px;
    margin-bottom: 12px;
  }

  /* Meta: 紧凑标签行 */
  .news-detail-meta {
    gap: 8px;
    font-size: 11px;
  }
  .meta-badge {
    font-size: 10px;
    padding: 2px 8px;
  }
  .meta-item {
    gap: 3px;
  }

  /* 正文 */
  .news-detail-content {
    padding: 0 14px 18px;
    font-size: 14px;
    line-height: 1.75;
  }
  .news-detail-content h2 { font-size: 18px; }
  .news-detail-content h3 { font-size: 16px; }
  .news-detail-content p { margin-bottom: 12px; }
  .news-detail-content img {
    border-radius: 8px;
  }

  /* 侧边栏: 手机端隐藏 */
  .news-detail-sidebar {
    display: none;
  }

  /* 底部按钮: 一排2个, 紧凑 */
  .news-detail-footer {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 0 14px 18px;
  }
  .news-detail-footer .btn {
    flex: 1;
    justify-content: center;
    padding: 11px 10px;
    font-size: 13px;
    border-radius: 10px;
    white-space: nowrap;
  }

  /* 相关文章: 手机端紧凑 */
  .news-detail-related {
    margin: 0 14px 20px;
    padding: 16px 0 0;
  }
  .related-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .related-item {
    padding: 10px 0;
    gap: 10px;
  }
  .related-thumb {
    width: 52px;
    height: 38px;
    border-radius: 6px;
  }
  .related-item-title {
    font-size: 13px;
  }
  .related-item-date {
    font-size: 11px;
  }
}


/* ============================
   首页简洁版 Hero
   ============================ */
.hero-simple {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
    border: none;
}
.hero-simple .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}
.hero-simple .hero-center {
    max-width: 640px;
}
.hero-simple .hero-badge {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
}
.hero-simple .hero-title {
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 12px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-simple .hero-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,0.8);
    margin: 0 0 24px;
    line-height: 1.6;
}
.hero-simple .hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 28px;
}

/* Hero 信息条 — 玻璃态暗色 */
.hero-simple .hero-info-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 16px 24px;
    backdrop-filter: blur(12px);
    flex-wrap: wrap;
}
.hero-simple .hero-info-bar .info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
}
.hero-simple .hero-info-bar .info-icon {
    font-size: 16px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}
.hero-simple .hero-info-bar .info-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.hero-simple .hero-info-bar .info-value {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
}
.hero-simple .hero-info-bar .info-link {
    text-decoration: none;
    transition: all 0.2s;
}
.hero-simple .hero-info-bar .info-link:hover {
    text-decoration: underline;
    opacity: 0.85;
}
.hero-simple .hero-info-bar .info-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

/* 旧 hero-right 不再使用 */
.hero-simple .hero-right {
    display: none;
}

/* 快捷服务入口 - 电脑端 */
.services-section {
    padding: 40px 0;
    background: #fff;
}
.services-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}
.service-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.2s;
}
.service-icon-card:hover {
    transform: translateY(-4px);
}
.service-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: box-shadow 0.2s;
}
.service-icon-card:hover .service-icon-circle {
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.service-icon-label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    white-space: nowrap;
}

/* 热销产品 - 简洁卡片 */
.hot-section .product-card {
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.hot-section .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.hot-section .product-image {
    background: #f8fafc;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}
.hot-section .product-placeholder {
    text-align: center;
}
.hot-section .placeholder-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 2px;
}
.hot-section .placeholder-brand {
    font-size: 11px;
    color: #94a3b8;
}
.hot-section .product-info {
    padding: 10px 12px 12px;
}
.hot-section .product-name {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hot-section .product-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.hot-section .price-current {
    font-size: 15px;
    font-weight: 700;
    color: #ef4444;
}
.hot-section .price-original {
    font-size: 11px;
    color: #94a3b8;
    text-decoration: line-through;
}

@media (min-width: 768px) {
    .hot-section .product-image {
        padding: 20px;
        min-height: 140px;
    }
    .hot-section .placeholder-icon {
        font-size: 36px;
        margin-bottom: 4px;
    }
    .hot-section .product-info {
        padding: 12px 14px 14px;
    }
    .hot-section .product-name {
        font-size: 14px;
        margin: 0 0 8px;
    }
    .hot-section .price-current {
        font-size: 18px;
    }
    .hot-section .price-original {
        font-size: 13px;
    }
}

/* 新闻公告 - 紧凑版 */
.news-section {
    padding: 20px 0 24px;
    background: #f8fafc;
}
.news-section .section-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 12px;
}
.announcement-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.news-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f1f5f9;
}
.news-item-link:last-child {
    border-bottom: none;
}
.news-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    transition: background 0.1s;
}
.news-item:hover {
    background: #f8fafc;
}
.news-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
}
.news-dot.top {
    background: #ef4444;
}
.news-content {
    flex: 1;
    min-width: 0;
}
.news-title {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-pin {
    font-size: 11px;
}
.news-text {
    font-size: 12px;
    color: #94a3b8;
    margin: 4px 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-arrow {
    font-size: 11px;
    color: #94a3b8;
    flex-shrink: 0;
}

/* 响应式 */
@media (max-width: 768px) {
    .hero-simple {
        min-height: 200px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hero-simple .hero-content {
        flex-direction: column;
        align-items: center;
        padding: 0 16px;
        gap: 4px;
        width: 100%;
    }
    .hero-simple .hero-center {
        width: 100%;
        text-align: center;
        order: 0;
    }
    .hero-simple .hero-badge {
        padding: 1px 6px;
        font-size: 8.5px;
        margin-bottom: 2px;
    }
    .hero-simple .hero-title {
        font-size: 16px;
        color: #fff;
        text-shadow: 0 2px 6px rgba(0,0,0,0.4);
        margin: 0 0 3px;
    }
    .hero-simple .hero-subtitle {
        font-size: 9.5px;
        color: rgba(255,255,255,0.7);
        margin: 0 0 6px;
        line-height: 1.35;
    }
    .hero-simple .hero-actions {
        justify-content: center;
        gap: 5px;
        margin-bottom: 4px;
    }
    .hero-simple .hero-actions .btn-accent,
    .hero-simple .hero-actions .btn-phone,
    .hero-simple .hero-actions .btn-map {
        padding: 5px 8px;
        font-size: 9.5px;
        min-height: 26px;
        border-radius: 7px;
    }
    .hero-simple .hero-info-bar {
        justify-content: center;
        padding: 2px 0 0;
        gap: 0;
        background: transparent;
        border: none;
        border-radius: 0;
        backdrop-filter: none;
        box-shadow: none;
    }
    .hero-simple .hero-info-bar .info-divider {
        display: none;
    }
    .hero-simple .hero-info-bar .info-item {
        padding: 0 9px 0 0;
        gap: 2px;
    }
    .hero-simple .hero-info-bar .info-icon {
        font-size: 9.5px;
    }
    .hero-simple .hero-info-bar .info-label {
        font-size: 8.5px;
        color: rgba(255,255,255,0.48);
    }
    .hero-simple .hero-info-bar .info-value {
        font-size: 9.5px;
        color: rgba(255,255,255,0.82);
    }
    .hero-simple .hero-right {
        display: none;
        width: 100%;
    }
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        max-width: none;
    }
    .service-icon-circle {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    .service-icon-label {
        font-size: 11px;
    }

    /* 手机端首页区块间距压缩 */
    .home-page .hot-section {
        padding: 16px 0 8px;
    }
    .home-page .news-section {
        padding: 8px 0 12px;
    }
    .footer-mobile-info {
        padding: 10px 12px 6px;
    }
}

@media (max-width: 480px) {
    .hero-simple .hero-title {
        font-size: 24px;
    }
    .hero-simple .hero-subtitle {
        font-size: 13px;
    }

    /* 手机端店铺公告紧凑化 */
    .news-section {
        padding: 12px 0 14px;
    }
    .news-section .section-inner {
        padding: 0 10px;
    }
    .news-section .section-header-row {
        margin-bottom: 8px;
    }
    .news-section .section-header-row .section-title {
        font-size: 15px;
    }
    .news-section .section-more {
        font-size: 12px;
    }
    .announcement-card {
        border-radius: 8px;
    }
    .news-item {
        padding: 7px 10px;
        gap: 6px;
    }
    .news-title {
        font-size: 12px;
    }
    .news-dot {
        width: 4px;
        height: 4px;
    }
    .news-arrow {
        font-size: 10px;
    }
}

/* ============================================================
   首页Hero联系卡片 — 适配浅色背景（覆盖暗色样式）
   ============================================================ */
.hero-simple .hero-right .contact-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    color: #1e293b;
    padding: 18px;
    border-radius: 16px;
    min-width: 220px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.hero-simple .hero-right .card-title {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}
.hero-simple .hero-right .card-time {
    color: #ff6b35;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 2px;
}
.hero-simple .hero-right .card-divider {
    background: #e2e8f0;
    margin: 10px 0;
}
.hero-simple .hero-right .card-info p {
    color: #64748b;
    font-size: 12px;
    line-height: 1.6;
}
.hero-simple .hero-right .card-actions {
    gap: 8px;
}
.hero-simple .hero-right .card-btn {
    padding: 8px 14px;
    font-size: 12px;
    border-radius: 8px;
}
.hero-simple .hero-right .card-btn-phone {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: #fff;
}
.hero-simple .hero-right .card-btn-tg {
    background: #eff6ff;
    color: #2563eb;
}
.hero-simple .hero-right .card-btn-tg:hover {
    background: #dbeafe;
}

@media (min-width: 640px) {
    .hero-simple .hero-right .contact-card {
        padding: 20px;
        min-width: 240px;
    }
    .hero-simple .hero-right .card-time {
        font-size: 26px;
    }
    .hero-simple .hero-right .card-info p {
        font-size: 13px;
    }
}


/* ============================================================
   首页热销产品 — 更多列 + 更紧凑
   ============================================================ */
@media (min-width: 1024px) {
    .home-page .product-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    .home-page .product-card .product-info {
        padding: 10px 12px 12px;
    }
    .home-page .product-card .product-name {
        font-size: 13px;
    }
    .home-page .product-card .price-current {
        font-size: 15px;
    }
}
@media (min-width: 1280px) {
    .home-page .product-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* 产品页 1280px+ 6列 */
@media (min-width: 1280px) {
    .products-page .product-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }
    .products-page .product-card .product-name {
        font-size: 12px;
    }
    .products-page .product-card .price-current {
        font-size: 14px;
    }
}

/* ============================================================
   全站子页面 — 平板端 Hero 紧凑化 (max-width: 1023px)
   与关于我们页保持一致
   ============================================================ */
@media (max-width: 1023px) {
  .about-page .page-hero.hero-about .hero-content,
  .service-page .page-hero.hero-service .hero-content,
  .recycling-page .page-hero.hero-recycling .hero-content,
  .pawn-page .page-hero.hero-pawn .hero-content,
  .secondhand-page .page-hero.hero-secondhand .hero-content {
    flex-direction: column;
    gap: 20px;
  }
  .about-page .page-hero .hero-left,
  .service-page .page-hero .hero-left,
  .recycling-page .page-hero .hero-left,
  .pawn-page .page-hero .hero-left,
  .secondhand-page .page-hero .hero-left {
    width: 100%;
  }
  .about-page .page-hero .hero-right,
  .service-page .page-hero .hero-right,
  .recycling-page .page-hero .hero-right,
  .pawn-page .page-hero .hero-right,
  .secondhand-page .page-hero .hero-right {
    width: 100%;
  }
}

/* ============================================================
   全站子页面 — 手机端 Hero 紧凑化 (max-width: 767px)
   统一 padding / gap / 字号
   ============================================================ */
@media (max-width: 767px) {
  .service-page .page-hero,
  .recycling-page .page-hero,
  .pawn-page .page-hero,
  .secondhand-page .page-hero {
    padding: 20px 16px 20px;
  }
  .service-page .page-hero .hero-content,
  .recycling-page .page-hero .hero-content,
  .pawn-page .page-hero .hero-content,
  .secondhand-page .page-hero .hero-content {
    padding: 0 0;
    gap: 8px;
  }
  .service-page .page-hero .hero-title,
  .recycling-page .page-hero .hero-title,
  .pawn-page .page-hero .hero-title,
  .secondhand-page .page-hero .hero-title {
    font-size: 22px;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
  }
  .service-page .page-hero .hero-subtitle,
  .recycling-page .page-hero .hero-subtitle,
  .pawn-page .page-hero .hero-subtitle,
  .secondhand-page .page-hero .hero-subtitle {
    font-size: 13px;
    margin-bottom: 4px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
  }
  /* hero-actions 按钮缩小 */
  .service-page .hero-actions .btn,
  .recycling-page .hero-actions .btn,
  .pawn-page .hero-actions .btn,
  .secondhand-page .hero-actions .btn {
    padding: 9px 16px;
    font-size: 13px;
  }
}

/* ============================================================
   关于我们页面 — 平板端紧凑优化 (max-width: 1023px)
   ============================================================ */
@media (max-width: 1023px) {
  .about-page .page-hero.hero-about .hero-content {
    flex-direction: column;
    gap: 20px;
  }
  .about-page .page-hero .hero-left {
    width: 100%;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: nowrap;
  }
  .about-page .page-hero .hero-title {
    margin-bottom: 0;
    white-space: nowrap;
  }
  .about-page .page-hero .hero-subtitle {
    margin-bottom: 0;
    white-space: nowrap;
  }
  .about-page .page-hero .hero-right {
    width: 100%;
  }
}

/* ============================================================
   关于我们页面 — 手机端紧凑优化 v2 (max-width: 767px)
   只影响手机端，桌面端布局不变
   优化：品牌横滑、门店2列网格、故事折叠、间距压缩
   ============================================================ */
@media (max-width: 767px) {
  /* ===== Hero — 紧凑 ===== */
  .about-page .page-hero {
    padding: 20px 16px 28px;
  }
  .about-page .page-hero .hero-content {
    padding: 0 0;
    gap: 8px;
  }
  .about-page .page-hero .hero-left {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .about-page .page-hero .hero-title {
    font-size: 22px;
    margin-bottom: 0;
    letter-spacing: -0.3px;
    white-space: nowrap;
  }
  .about-page .page-hero .hero-subtitle {
    font-size: 12px;
    margin-bottom: 0;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
  }
  .about-page .hero-warning-card,
  .service-page .hero-warning-card,
  .recycling-page .hero-warning-card,
  .pawn-page .hero-warning-card,
  .secondhand-page .hero-warning-card,
  .guide-page .hero-warning-card,
  .contact-page .hero-warning-card,
  .news-page .hero-warning-card {
    padding: 10px 12px;
    border-radius: 12px;
  }
  .about-page .hero-warning-header,
  .service-page .hero-warning-header,
  .recycling-page .hero-warning-header,
  .pawn-page .hero-warning-header,
  .secondhand-page .hero-warning-header,
  .guide-page .hero-warning-header,
  .contact-page .hero-warning-header,
  .news-page .hero-warning-header {
    margin-bottom: 6px;
    padding-bottom: 6px;
    gap: 6px;
  }
  .about-page .hero-warning-icon,
  .service-page .hero-warning-icon,
  .recycling-page .hero-warning-icon,
  .pawn-page .hero-warning-icon,
  .secondhand-page .hero-warning-icon,
  .guide-page .hero-warning-icon,
  .contact-page .hero-warning-icon,
  .news-page .hero-warning-icon {
    font-size: 16px;
  }
  .about-page .hero-warning-title,
  .service-page .hero-warning-title,
  .recycling-page .hero-warning-title,
  .pawn-page .hero-warning-title,
  .secondhand-page .hero-warning-title,
  .guide-page .hero-warning-title,
  .contact-page .hero-warning-title,
  .news-page .hero-warning-title {
    font-size: 13px;
  }
  .about-page .hero-warning-body,
  .service-page .hero-warning-body,
  .recycling-page .hero-warning-body,
  .pawn-page .hero-warning-body,
  .secondhand-page .hero-warning-body,
  .guide-page .hero-warning-body,
  .contact-page .hero-warning-body,
  .news-page .hero-warning-body {
    gap: 4px;
  }
  .about-page .hero-warning-item,
  .service-page .hero-warning-item,
  .recycling-page .hero-warning-item,
  .pawn-page .hero-warning-item,
  .secondhand-page .hero-warning-item,
  .guide-page .hero-warning-item,
  .contact-page .hero-warning-item,
  .news-page .hero-warning-item {
    font-size: 11.5px;
    gap: 4px;
    padding: 0;
    line-height: 1.45;
  }
  .about-page .hero-warning-dot,
  .service-page .hero-warning-dot,
  .recycling-page .hero-warning-dot,
  .pawn-page .hero-warning-dot,
  .secondhand-page .hero-warning-dot,
  .guide-page .hero-warning-dot,
  .contact-page .hero-warning-dot,
  .news-page .hero-warning-dot {
    font-size: 10px;
  }

  /* ===== 我们的故事 — 折叠展开 ===== */
  .about-page .about-story-section {
    padding: 28px 0 20px;
  }
  .about-page .about-story-content {
    font-size: 14px;
    line-height: 1.8;
    padding: 0 2px;
  }
  .about-page .about-story-content h2 {
    font-size: 17px;
    margin: 18px 0 10px;
  }
  .about-page .about-story-content h3 {
    font-size: 15px;
    margin: 14px 0 8px;
  }
  .about-page .about-story-content p {
    margin-bottom: 10px;
  }
  /* 折叠容器 */
  .about-page .story-content-collapse {
    max-height: 160px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.4s ease;
  }
  .about-page .story-content-collapse.expanded {
    max-height: 3000px;
  }
  .about-page .story-content-collapse:not(.expanded)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, #fff 20%, transparent);
    pointer-events: none;
  }
  .about-page .story-expand-btn {
    display: block;
    width: 100%;
    margin: 12px auto 0;
    padding: 10px 0;
    background: transparent;
    color: #2563eb;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.3px;
  }
  .about-page .story-expand-btn:active {
    background: #eff6ff;
  }

  /* ===== 我们的优势 — 精简：图标+标题，3列2排 ===== */
  .about-page .advantages-section {
    padding: 28px 0 20px;
  }
  .about-page .advantage-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
    padding: 0 14px;
  }
  .about-page .advantage-card {
    padding: 14px 6px 10px;
    border-radius: 14px;
  }
  .about-page .advantage-icon {
    font-size: 26px;
    margin-bottom: 5px;
  }
  .about-page .advantage-title {
    font-size: 10.5px;
    margin-bottom: 0;
    font-weight: 600;
  }
  /* 手机端隐藏优势描述 */
  .about-page .advantage-desc {
    display: none;
  }

  /* ===== 维修服务 — 精简：图标+标题，3列网格 ===== */
  .about-page .services-grid-section {
    padding: 28px 0 22px;
  }
  .about-page .services-grid-section .section-desc {
    font-size: 13px;
    margin-top: -2px;
    margin-bottom: 16px;
    color: #64748b;
    line-height: 1.5;
  }
  .about-page .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 14px;
  }
  .about-page .service-card {
    padding: 16px 8px 12px;
    border-radius: 14px;
    text-align: center;
  }
  .about-page .service-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 19px;
    margin: 0 auto 8px;
  }
  .about-page .service-title {
    font-size: 11px;
    margin-bottom: 0;
    font-weight: 600;
  }
  /* 手机端隐藏服务描述 */
  .about-page .service-desc {
    display: none;
  }
  /* "了解更多"按钮紧凑 */
  .about-page .services-grid-section .section-more {
    margin-top: 18px;
  }
  .about-page .services-grid-section .btn {
    padding: 10px 24px;
    font-size: 13px;
  }

  /* ===== 合作品牌 — 横滑单行 ===== */
  .about-page .brands-section {
    padding: 28px 0 22px;
  }
  .about-page .brand-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 7px;
    padding: 0 14px 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .about-page .brand-grid::-webkit-scrollbar {
    display: none;
  }
  .about-page .brand-item {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 7px 15px;
    font-size: 11px;
    border-radius: 10px;
  }

  /* ===== 门店信息 — 3列卡片网格 + 地图 ===== */
  .about-page .store-info-section {
    padding: 28px 0 24px;
  }
  .about-page .store-map-layout {
    gap: 16px;
    padding: 0 14px;
  }
  /* 信息区 — 3列卡片网格 */
  .about-page .store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    border: none;
  }
  .about-page .store-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 6px 10px;
    gap: 5px;
    border: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    min-height: 0;
  }
  /* 最后一个(无分店) — 金色底 */
  .about-page .store-item:last-child {
    background: linear-gradient(135deg, #fffbf0, #fff8e1);
    border-color: #fde68a;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  .about-page .store-item:last-child .store-icon {
    font-size: 22px;
  }
  .about-page .store-item:last-child .store-value {
    font-size: 10.5px;
    color: #b45309;
    font-weight: 700;
  }
  .about-page .store-icon {
    font-size: 20px;
    width: auto;
    margin-bottom: 2px;
  }
  .about-page .store-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .about-page .store-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: #9ca3af;
    margin-right: 0;
    display: block;
    margin-bottom: 0;
  }
  .about-page .store-value {
    font-size: 11px;
    line-height: 1.35;
    font-weight: 600;
    color: #1e3a5f;
    word-break: break-all;
  }
  .about-page .store-link {
    color: #2563eb;
    text-decoration: none;
  }
  .about-page .store-map {
    border-radius: 14px;
    min-height: 220px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }
  .about-page .store-map iframe {
    min-height: 220px;
  }

  /* ===== 通用 — 区块标题 ===== */
  .about-page .section-title {
    font-size: 18px;
    font-weight: 700;
  }
  .about-page .section-header {
    margin-bottom: 18px;
  }
  .about-page .section-more {
    margin-top: 18px;
  }
}

/* ================================================================
   回收品牌页/型号页/主页品牌入口 样式
   ================================================================ */

/* --- 面包屑导航 --- */
.breadcrumb { padding: 12px 0; background: #f8f9fa; }
.breadcrumb .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; font-size: 13px; color: #888; }
.breadcrumb a { color: #64748b; text-decoration: none; }
.breadcrumb a:hover { color: #2563eb; }
.breadcrumb .sep { margin: 0 6px; color: #cbd5e1; }
.breadcrumb .current { color: #1e3a5f; font-weight: 600; }

/* --- 回收主页 — 品牌入口卡片 --- */
.recycle-brands-section { padding: 48px 0; background: #f8f9fa; }
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 768px) {
    .brand-grid { grid-template-columns: repeat(5, 1fr); }
}
.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}
.brand-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.brand-icon { font-size: 32px; margin-bottom: 10px; }
.brand-name { font-size: 14px; font-weight: 600; color: #1e3a5f; margin-bottom: 6px; }
.brand-link { font-size: 12px; color: #2563eb; }

@media (max-width: 767px) {
    .recycle-brands-section { padding: 32px 0; }
    .brand-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 14px; }
    .brand-card { padding: 18px 10px; border-radius: 14px; }
    .brand-icon { font-size: 26px; }
    .brand-name { font-size: 12px; }
    .brand-link { font-size: 11px; }
}

/* --- 品牌页 — 型号价格表 --- */
.brand-models-section { padding: 48px 0; }
.price-legend { display: flex; gap: 20px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #64748b; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.legend-dot.perfect { background: #10b981; }
.legend-dot.good { background: #3b82f6; }
.legend-dot.fair { background: #f59e0b; }

.models-table { max-width: 1000px; margin: 0 auto; border-radius: 16px; overflow: hidden; border: 1px solid #e2e8f0; }
.table-header {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 0.7fr;
    background: #1e3a5f; color: #fff; font-size: 13px; font-weight: 600; text-align: center;
}
.table-header > div { padding: 14px 8px; }
.table-body {}
.table-row {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 0.7fr;
    font-size: 14px; border-bottom: 1px solid #f1f5f9; align-items: center;
}
.table-row.even { background: #f8fafc; }
.table-row:hover { background: #eff6ff; }
.table-row > div { padding: 14px 8px; }
.col-model { text-align: left; display: flex; align-items: center; gap: 8px; font-weight: 500; color: #1e3a5f; }
.col-price { text-align: center; font-weight: 600; }
.col-price.perfect { color: #059669; }
.col-price.good { color: #2563eb; }
.col-price.fair { color: #d97706; }
.col-action { text-align: center; }
.col-action .btn { padding: 6px 14px; font-size: 12px; }

.empty-state { text-align: center; padding: 40px; color: #94a3b8; }

@media (max-width: 767px) {
    .brand-models-section { padding: 32px 0; }
    .price-legend { flex-direction: column; gap: 8px; align-items: flex-start; padding: 0 14px; }
    .legend-item { font-size: 11px; }
    .models-table { margin: 0 14px; border-radius: 12px; }
    .table-header { font-size: 11px; }
    .table-header > div { padding: 10px 4px; }
    .table-row { font-size: 12px; }
    .table-row > div { padding: 10px 4px; }
    .col-model { font-size: 11px; gap: 4px; }
    .col-action .btn { padding: 4px 10px; font-size: 10px; }
}

/* --- 型号详情页 — 三档价格卡片 --- */
.model-price-section { padding: 48px 0; }
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 900px; margin: 0 auto 32px; padding: 0 20px; }
.price-card { text-align: center; padding: 28px 20px; border-radius: 16px; border: 1px solid #e2e8f0; background: #fff; }
.price-card-header { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 14px; font-weight: 600; color: #64748b; margin-bottom: 12px; }
.price-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.price-dot.perfect { background: #10b981; }
.price-dot.good { background: #3b82f6; }
.price-dot.fair { background: #f59e0b; }
.price-value { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.price-card.perfect .price-value { color: #059669; }
.price-card.good .price-value { color: #2563eb; }
.price-card.fair .price-value { color: #d97706; }
.price-desc { font-size: 12px; color: #94a3b8; }

.price-cta { text-align: center; }
.price-cta p { font-size: 14px; color: #64748b; margin-bottom: 16px; }
.price-cta .cta-buttons { display: flex; gap: 12px; justify-content: center; }

@media (max-width: 767px) {
    .model-price-section { padding: 32px 0; }
    .price-cards { grid-template-columns: 1fr; gap: 12px; padding: 0 14px; }
    .price-card { padding: 20px 16px; }
    .price-value { font-size: 24px; }
    .price-cta .cta-buttons { flex-direction: column; align-items: center; }
}

/* --- 型号详情页 — 同品牌其他型号 --- */
.related-models-section { padding: 48px 0; background: #f8f9fa; }
.related-models-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.related-model-card {
    display: flex; align-items: center; gap: 12px; padding: 16px;
    background: #fff; border-radius: 14px; text-decoration: none;
    border: 1px solid #e2e8f0; transition: all 0.3s;
}
.related-model-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.related-model-icon { font-size: 24px; flex-shrink: 0; }
.related-model-name { font-size: 14px; font-weight: 600; color: #1e3a5f; flex: 1; min-width: 0; }
.related-model-price { font-size: 12px; color: #059669; font-weight: 600; white-space: nowrap; }

@media (max-width: 767px) {
    .related-models-section { padding: 32px 0; }
    .related-models-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 0 14px; }
    .related-model-card { padding: 12px; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
    .related-model-name { font-size: 12px; }
    .related-model-price { font-size: 11px; }
}
/* ============================================================
   维修页面全新样式 - 参考 fixermanme.com 设计
   覆盖旧样式（旧样式在 3333-3680 行，不会冲突）
   ============================================================ */

/* ===== 维修页面容器 ===== */
.service-page {
    overflow-x: hidden;
}

/* ===== Hero 区 ===== */
.service-page .page-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
    color: #fff;
    padding: 60px 16px 50px;
    overflow: hidden;
}
.service-page .page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.service-page .page-hero .hero-gradient {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.service-page .page-hero .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
}
.service-page .page-hero .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}
.service-page .hero-content {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}
.service-page .hero-left {
    flex: 1;
    min-width: 280px;
}
.service-page .hero-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
    margin-bottom: 10px;
}
.service-page .hero-title-row .hero-badge {
    margin-bottom: 0;
    flex-shrink: 0;
    padding: 7px 18px;
    font-size: 13px;
}
.service-page .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #93b4ff;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}
.service-page .hero-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    flex: 1;
    min-width: 200px;
}
@media (min-width: 1024px) {
    .service-page .hero-title {
        font-size: 48px;
    }
}
.service-page .hero-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 6px;
    margin-top: 4px;
    max-width: 520px;
}
.service-page .hero-btns {
    display: none;
}
.service-page .service-page-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(37,99,235,0.35);
}
.service-page .service-page-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,99,235,0.5);
}
.service-page .service-page-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}
.service-page .service-page-btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-2px);
}
.service-page .btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* 特色标签 */
.service-page .hero-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
}
.service-page .hero-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
    white-space: nowrap;
}
.service-page .hero-feature-tag:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.28);
    transform: translateY(-1px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ===== Hero 右侧：防骗提示卡片 ===== */
.service-page .hero-right {
    flex-shrink: 0;
    width: 360px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 8px;
}
/* 特色标签（在 hero-left 内，trust-wall 下方） */
.service-page .hero-left .hero-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    margin-bottom: 0;
}
/* 信任数据墙 — 居中统计条 */
.service-page .trust-wall-inline {
    display: flex;
    gap: 0;
    margin-top: 14px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
}
.service-page .trust-wall-inline .trust-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    background: none;
    border: none;
    border-radius: 0;
    position: relative;
    min-width: 0;
    transition: transform 0.2s ease;
}
.service-page .trust-wall-inline .trust-item:hover {
    transform: translateY(-1px);
}
.service-page .trust-wall-inline .trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}
.service-page .trust-wall-inline .trust-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.9;
}
.service-page .trust-wall-inline .trust-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    line-height: 1;
    min-width: 0;
}
.service-page .trust-wall-inline .trust-value {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.5px;
}
.service-page .trust-wall-inline .trust-label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
/* 旧版trust-wall（保留备用，如果还在hero-right里） */
.service-page .hero-right .trust-wall {
    display: none;
}

/* ===== 通用 Section 容器 ===== */
.service-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.service-page .section-header {
    text-align: center;
    margin-bottom: 36px;
}
.service-page .section-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.service-page .section-title {
    font-size: 28px;
    font-weight: 900;
    color: #1e3a5f;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}
@media (min-width: 1024px) {
    .service-page .section-title {
        font-size: 34px;
    }
}
.service-page .section-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== 维修项目（Services Grid）===== */
.service-page .services-section {
    padding: 64px 0;
    background: #f8f9fa;
}
.service-page .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 640px) {
    .service-page .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .service-page .services-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
.service-page .service-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}
.service-page .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #2563eb, #1d4ed8);
    opacity: 0;
    transition: opacity 0.3s;
}
.service-page .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(37,99,235,0.1);
    border-color: rgba(37,99,235,0.12);
}
.service-page .service-card:hover::before {
    opacity: 1;
}
.service-page .service-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.35s;
}
.service-page .service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    transform: scale(1.05);
}
.service-page .service-icon {
    font-size: 26px;
    line-height: 1;
    transition: filter 0.3s;
}
.service-page .service-card:hover .service-icon {
    filter: brightness(0) invert(1);
}
.service-page .service-name {
    font-size: 15px;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 8px;
}
.service-page .service-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 12px;
}
.service-page .service-price {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* ===== 维修流程（Process Steps）===== */
.service-page .process-section {
    padding: 64px 0;
    background: #fff;
}
.service-page .process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
}
@media (min-width: 768px) {
    .service-page .process-steps {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        gap: 16px;
    }
}
@media (min-width: 1024px) {
    .service-page .process-steps {
        gap: 20px;
    }
}
.service-page .process-step {
    text-align: center;
    padding: 24px 16px;
    position: relative;
    transition: all 0.3s;
}
.service-page .process-step:hover {
    transform: translateY(-4px);
}
/* 桌面端步骤之间的箭头 */
@media (min-width: 768px) {
    .service-page .process-step:not(:last-child) .step-arrow {
        display: block;
        position: absolute;
        top: 44px;
        right: -10px;
        font-size: 20px;
        color: #c7d2fe;
        z-index: 2;
    }
}
.service-page .step-arrow {
    display: none;
}
.service-page .step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 14px rgba(37,99,235,0.3);
    transition: all 0.3s;
}
.service-page .process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,99,235,0.45);
}
.service-page .step-icon {
    font-size: 24px;
    margin-bottom: 10px;
}
.service-page .step-title {
    font-size: 14px;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 6px;
}
.service-page .step-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.6;
}

/* ===== 维修案例 — Google Review 卡片风格 ===== */
.service-page .cases-section {
    padding: 64px 0;
    background: #f8f9fa;
}
.service-page .cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 640px) {
    .service-page .cases-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .service-page .cases-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.service-page .case-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 18px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-page .case-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: #d1d5db;
}

/* === 评论头部：头像 + 姓名 + 星级 === */
.service-page .case-review-top {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.service-page .case-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    /* 背景由PHP内联style覆盖 */
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.service-page .case-reviewer-info {
    flex: 1;
    min-width: 0;
}
.service-page .case-reviewer-name {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2px;
    line-height: 1.3;
}
.service-page .case-review-meta {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #9ca3af;
}
.service-page .case-review-date {
    color: #9ca3af;
}
.service-page .case-review-dot {
    color: #d1d5db;
}
/* Google 彩色文字评价标识 */
.service-page .google-badge-inline {
    font-weight: 500;
    font-size: 11px;
}
.service-page .g-blue  { color: #4285F4; }
.service-page .g-red   { color: #EA4335; }
.service-page .g-yellow{ color: #FBBC05; }
.service-page .g-green { color: #34A853; }

/* 星级评价 */
.service-page .case-stars {
    display: flex;
    gap: 1px;
    flex-shrink: 0;
    margin-left: auto;
    align-items: center;
}
.service-page .case-stars .star {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1;
}
.service-page .case-stars .star.filled {
    color: #f59e0b;
}

/* === 评价内容 === */
.service-page .case-body {
    padding: 0;
}
.service-page .case-desc {
    font-size: 13px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 10px;
}
.service-page .case-result {
    display: inline-block;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

/* ===== CTA 区（已隐藏） ===== */
.service-page .cta-section {
    display: none;
}
.service-page .cta-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
    border-radius: 24px;
    padding: 48px 24px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.service-page .cta-card::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.service-page .cta-title {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 12px;
    position: relative;
}
@media (min-width: 1024px) {
    .service-page .cta-title {
        font-size: 32px;
    }
}
.service-page .cta-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.service-page .cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ===== 后端页面内容 ===== */
.service-page .page-section {
    padding: 48px 0;
    background: #fff;
}
.service-page .page-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.service-page .page-content {
    color: #444;
    line-height: 1.8;
    font-size: 14px;
}
.service-page .page-content h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1e3a5f;
    margin: 28px 0 14px;
}
.service-page .page-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #2c4a6e;
    margin: 22px 0 10px;
}
.service-page .page-content p {
    margin-bottom: 12px;
}
.service-page .page-content ul,
.service-page .page-content ol {
    margin: 14px 0;
    padding-left: 20px;
}
.service-page .page-content li {
    margin-bottom: 6px;
}
.service-page .page-content img {
    max-width: 100%;
    border-radius: 10px;
    margin: 14px 0;
}
.service-page .page-content a {
    color: #2563eb;
    text-decoration: underline;
}
.service-page .page-content strong {
    color: #1e3a5f;
    font-weight: 600;
}

/* ===== 滚动动画 ===== */
.service-page .scroll-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-page .scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 手机端禁用scroll-animate，解决滑动卡死 */
@media (max-width: 767px) {
    .service-page .scroll-animate {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ===== 手机端适配 ===== */
@media (max-width: 768px) {
    /* 手机端隐藏：标签 + 信任数据墙 */
    .service-page .hero-badge,
    .service-page .trust-wall-inline {
        display: none !important;
    }
    .service-page .page-hero {
        padding: 16px 14px 12px;
    }
    .service-page .hero-content {
        flex-direction: column;
        gap: 10px;
    }
    .service-page .hero-left {
        min-width: unset;
    }
    .service-page .hero-title {
        font-size: 28px;
    }
    .service-page .hero-subtitle {
        font-size: 13px;
        margin-bottom: 6px;
    }
    .service-page .hero-right {
        width: 100%;
    }
    .service-page .hero-left .hero-feature-tags {
        display: flex;
        flex-wrap: nowrap;
        gap: 4px;
        justify-content: center;
        margin-top: 6px;
    }
    .service-page .hero-left .hero-feature-tag {
        font-size: 10px;
        padding: 3px 7px;
        white-space: nowrap;
    }
    .service-page .hero-title-row {
        flex-wrap: nowrap;
        gap: 10px;
        margin-bottom: 6px;
    }
    .service-page .hero-title-row .hero-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    .service-page .hero-title {
        font-size: 28px;
    }
    .service-page .trust-wall-inline {
        gap: 0;
        margin-top: 16px;
        padding: 14px 0;
        flex-wrap: nowrap;
        justify-content: center;
    }
    .service-page .trust-wall-inline .trust-item {
        flex: 1;
        padding: 0 8px;
        background: none;
        border: none;
        border-radius: 0;
    }
    .service-page .trust-wall-inline .trust-icon { font-size: 16px; }
    .service-page .trust-wall-inline .trust-value { font-size: 18px; }
    .service-page .trust-wall-inline .trust-label { font-size: 10px; }
    .service-page .services-section,
    .service-page .process-section,
    .service-page .cases-section,
    .service-page .cta-section {
        padding: 48px 0;
    }
    .service-page .section-title {
        font-size: 22px;
    }
    .service-page .cta-title {
        font-size: 22px;
    }
    .service-page .service-page-btn-primary,
    .service-page .service-page-btn-outline {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ============================================================
   全站子页面 — 手机端 Section 间距统一 (max-width: 767px)
   统一所有子页面上下间距，解决松散问题
   ============================================================ */
@media (max-width: 767px) {
  /* --- Hero 统一收紧 --- */
  .about-page .page-hero,
  .news-page .page-hero,
  .recycling-page .page-hero,
  .pawn-page .page-hero,
  .service-page .page-hero,
  .secondhand-page .page-hero,
  .contact-page .page-hero {
    padding: 18px 16px 22px !important;
  }
  /* 新闻页：手机端上下收得更紧 */
  .news-page .page-hero {
    padding: 10px 16px 12px !important;
  }
  /* 新闻页：防骗卡片压扁 */
  .news-page .hero-warning-card {
    padding: 10px 12px !important;
    border-radius: 12px !important;
    border-width: 1.5px !important;
  }
  .news-page .hero-warning-header {
    margin-bottom: 4px !important;
    padding-bottom: 6px !important;
    gap: 6px !important;
  }
  .news-page .hero-warning-icon {
    font-size: 14px !important;
  }
  .news-page .hero-warning-title {
    font-size: 13px !important;
  }
  .news-page .hero-warning-body {
    gap: 2px !important;
  }
  .news-page .hero-warning-item {
    gap: 5px !important;
  }
  .news-page .hero-warning-item p {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }
  .news-page .hero-warning-dot {
    font-size: 10px !important;
  }
  .news-page .hero-title {
    font-size: 20px !important;
    margin-bottom: 2px !important;
  }
  .news-page .hero-subtitle {
    font-size: 12px !important;
    margin-bottom: 2px !important;
    line-height: 1.35 !important;
  }
  .news-page .hero-content {
    gap: 4px !important;
  }

  /* --- 新闻列表手机端更紧凑 --- */
  .news-page .news-list-section {
    padding: 14px 0 !important;
  }

  /* --- 所有 Section 统一间距 --- */
  .about-page .about-story-section,
  .about-page .advantages-section,
  .about-page .services-grid-section,
  .about-page .brands-section,
  .about-page .store-info-section,
  .recycling-page .content-section,
  .recycling-page .process-section,
  .recycling-page .recycle-brands-section,
  .recycling-page .conditions-section,
  .pawn-page .content-section,
  .pawn-page .pawn-services-section,
  .pawn-page .pawn-process-section,
  .pawn-page .pawn-advantages-section,
  .pawn-page .faq-section,
  .service-page .content-section,
  .service-page .services-section,
  .service-page .process-section,
  .service-page .cases-section,
  .service-page .cta-section,
  .secondhand-page .content-section,
  .secondhand-page .product-section,
  .contact-page .content-section,
  .contact-page .contact-info-section,
  .contact-page .contact-intro-section {
    padding: 18px 0 !important;
  }

  /* ===== 联系我们 Hero 手机端 — 照搬关于我们模式（左对齐） ===== */
  .contact-page .page-hero {
    padding-left: 16px !important;
    padding-right: 12px !important;
  }
  .contact-page .page-hero .hero-left {
    width: 100%;
    display: flex !important;
    align-items: baseline !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
    text-align: left !important;
    justify-content: flex-start !important;
  }
  .contact-page .page-hero .hero-title {
    font-size: 20px !important;
    margin-bottom: 0 !important;
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }
  .contact-page .page-hero .hero-subtitle {
    font-size: 12px !important;
    margin-bottom: 0 !important;
    line-height: 1.4 !important;
    color: rgba(255,255,255,0.8) !important;
    white-space: nowrap !important;
    display: inline !important;
  }
  /* 联系我们 — 手机端隐藏防骗卡片（节省空间） */
  .contact-page .page-hero .hero-right {
    display: none !important;
  }
  .contact-page .hero-actions { display: none !important; }
  .contact-page .hero-content { gap: 2px !important; max-width: none !important; margin: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }
  .contact-page .hero-grid { gap: 10px !important; }
  .contact-page .contact-section-icon { font-size: 17px !important; margin-right: 3px !important; }
  .contact-page .section-tagline { font-size: 11px !important; margin-left: 4px !important; }

  /* ===== 快速联系 - 手机端 2列纵向卡片（干净整齐） ===== */
  .contact-page .contact-info-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .contact-page .contact-info-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 16px 8px 12px !important;
    gap: 6px !important;
    border-radius: 14px !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
  }

  .contact-page .contact-info-card:hover {
    transform: translateY(-2px) scale(1.02) !important;
  }

  .contact-page .contact-info-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    border-radius: 12px !important;
    font-size: 20px !important;
    margin-bottom: 4px !important;
  }

  .contact-page .contact-info-label {
    font-size: 11px !important;
    margin-bottom: 1px !important;
    letter-spacing: 0.3px !important;
    color: #6b7280 !important;
    word-break: keep-all !important;
  }

  .contact-page .contact-info-value {
    font-size: 13px !important;
    margin-bottom: 0 !important;
    font-weight: 600 !important;
    color: #111827 !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    line-height: 1.35 !important;
  }

  .contact-page .contact-info-action {
    display: none !important;
  }

  /* WeChat multiline on mobile */
  .contact-page .contact-info-value-multiline {
    font-size: 13px !important;
    line-height: 1.4;
    word-break: break-all;
    white-space: normal !important;
  }

  /* Map card — single line on mobile */
  .contact-page .contact-info-value-nowrap {
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Copy badge on mobile */
  .contact-page .contact-info-copied {
    top: auto;
    bottom: 8px;
    right: 10px;
    font-size: 10px;
  }

  /* Interactive hint for copy card */
  .contact-page .contact-info-copy:active {
    background: #f0fdf4;
    border-color: #bbf7d0;
  }

  /* ===== 手机端各区块间距收紧 ===== */
  .contact-page .address-card { padding: 16px !important; gap: 12px !important; }
  .contact-page .address-text { font-size: 14px !important; margin-bottom: 6px !important; }
  .contact-page .address-note { font-size: 12px !important; }
  .contact-page .form-section { padding: 24px 0 16px !important; }
  .contact-page .form-section .section-header { margin-bottom: 14px !important; }
  .footer { padding-top: 16px !important; }

  /* --- Section Header 统一 --- */
  .about-page .section-header,
  .news-page .section-header,
  .recycling-page .section-header,
  .pawn-page .section-header,
  .service-page .section-header,
  .secondhand-page .section-header,
  .contact-page .section-header {
    margin-bottom: 14px !important;
  }

  /* --- Section Title 统一 --- */
  .about-page .section-title,
  .news-page .section-title,
  .recycling-page .section-title,
  .pawn-page .section-title,
  .service-page .section-title,
  .secondhand-page .section-title,
  .contact-page .section-title {
    font-size: 17px !important;
  }

  /* --- 描述文字间距 --- */
  .about-page .section-desc,
  .news-page .section-desc,
  .recycling-page .section-subtitle,
  .pawn-page .section-subtitle,
  .service-page .section-desc,
  .secondhand-page .section-desc,
  .contact-page .section-desc {
    margin-top: 4px !important;
    margin-bottom: 0 !important;
    font-size: 12px !important;
  }

  /* ===== 维修页面手机端专项优化 ===== */
  /* Hero区收紧 */
  .service-page .page-hero {
    padding: 18px 16px 22px !important;
  }
  .service-page .hero-left {
    text-align: center;
  }
  .service-page .hero-title-row {
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
    text-align: center;
    margin-bottom: 4px;
    align-items: baseline;
  }
  /* 手机端隐藏 badge，给标题+副标题腾出空间 */
  .service-page .hero-title-row .hero-badge {
    display: none !important;
  }
    flex-shrink: 0;
  }
  .service-page .hero-title {
    font-size: 20px !important;
    margin: 0 !important;
    min-width: 0;
    white-space: nowrap;
    display: inline-flex !important;
    align-items: baseline !important;
    flex-shrink: 0 !important;
  }
  /* 副标题紧跟标题后面，同行显示 */
  .service-page .hero-title-row .hero-subtitle {
    font-size: 12px !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    color: rgba(255,255,255,0.8) !important;
    white-space: nowrap !important;
    display: inline !important;
  }
  .service-page .hero-btns {
    display: none !important;
  }

  /* 手机端特色标签：单行排列 */
  .service-page .hero-left .hero-feature-tags {
    gap: 4px;
    margin-top: 10px;
    margin-bottom: 0;
    flex-wrap: nowrap;
    display: flex;
    justify-content: center;
  }
  .service-page .hero-left .hero-feature-tag {
    font-size: 10px;
    padding: 3px 7px;
    white-space: nowrap;
  }

  /* 手机端数据墙：2×2网格，居中统计 */
  .service-page .trust-wall-inline {
    gap: 0;
    margin-top: 14px;
    padding: 14px 0;
    justify-content: center;
    flex-wrap: wrap;
  }
  .service-page .trust-wall-inline .trust-item {
    flex: 0 0 calc(50% - 0px);
    padding: 0 10px;
    background: none;
    border: none;
    border-radius: 0;
    gap: 5px;
    margin-bottom: 10px;
  }
  /* 奇数项显示右边分隔线，偶数项不显示 */
  .service-page .trust-wall-inline .trust-item:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.08);
  }
  .service-page .trust-wall-inline .trust-item:nth-child(even)::after {
    display: none;
  }
  /* 第3、4项不显示底部分隔 */
  .service-page .trust-wall-inline .trust-item:nth-child(3),
  .service-page .trust-wall-inline .trust-item:nth-child(4) {
    margin-bottom: 0;
  }
  .service-page .trust-wall-inline .trust-icon { font-size: 16px; }
  .service-page .trust-wall-inline .trust-value { font-size: 18px; }
  .service-page .trust-wall-inline .trust-label { font-size: 10px; }

  /* 服务网格3列，简化卡片 */
  .service-page .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  .service-page .service-card {
    padding: 10px 6px;
  }
  .service-page .service-icon-wrap {
    width: 40px;
    height: 40px;
    margin-bottom: 6px;
  }
  .service-page .service-icon {
    font-size: 18px;
  }
  .service-page .service-name {
    font-size: 11px;
    margin-bottom: 2px;
  }
  .service-page .service-desc {
    display: none;
  }
  .service-page .service-price {
    font-size: 10px;
    padding: 2px 8px;
    margin-top: 4px;
  }

  /* 维修流程 — 手机端横向滚动简化 */
  .service-page .process-section {
    padding: 16px 0 20px !important;
  }
  .service-page .process-section .section-header {
    margin-bottom: 12px;
  }
  .service-page .process-section .section-title {
    font-size: 18px;
  }
  .service-page .process-section .section-desc {
    display: none;
  }
  .service-page .process-steps {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 8px !important;
    padding: 0 16px 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .service-page .process-steps::-webkit-scrollbar {
    display: none;
  }
  .service-page .process-step {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    text-align: left;
    min-width: 0;
  }
  .service-page .step-number {
    font-size: 10px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin: 0;
  }
  .service-page .step-icon {
    font-size: 18px;
    margin: 0;
    flex-shrink: 0;
  }
  .service-page .step-title {
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    line-height: 1.2;
  }
  .service-page .step-desc {
    display: none;
  }
  .service-page .step-arrow {
    display: none;
  }

  /* 案例网格2列 */
  .service-page .cases-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .service-page .case-card {
    padding: 12px;
    gap: 8px;
  }
  .service-page .case-avatar {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
  .service-page .case-reviewer-name {
    font-size: 11px;
  }
  .service-page .case-review-meta {
    font-size: 10px;
  }
  .service-page .case-stars .star {
    font-size: 12px;
  }
  .service-page .case-desc {
    font-size: 10px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .service-page .case-result {
    font-size: 10px;
  }

  /* 手机端案例卡片头部重排：头像+姓名/星级上下堆叠，防止错位 */
  .service-page .case-review-top {
    flex-wrap: wrap;
    gap: 6px;
  }
  .service-page .case-reviewer-info {
    flex: 1 1 calc(100% - 40px);
    min-width: 0;
  }
  .service-page .case-reviewer-name {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .service-page .case-review-meta {
    font-size: 9px;
    gap: 3px;
    flex-wrap: nowrap;
  }
  .service-page .case-review-meta .case-review-date {
    white-space: nowrap;
  }
  .service-page .case-review-meta .google-badge-inline {
    white-space: nowrap;
    font-size: 9px;
  }
  .service-page .case-stars {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
    order: 3;
    padding-left: 34px; /* 对齐头像右侧 */
    margin-top: -2px;
  }
  .service-page .case-stars .star {
    font-size: 11px;
  }
}
