/* =========================================================
   达冠军体育 · 品牌官网样式
   设计：深色主题 / 活力橙 / 专业运动风
   ========================================================= */

:root {
  --brand: #ff5a2c;
  --brand-dark: #e8431a;
  --brand-glow: rgba(255, 90, 44, .45);
  --brand-soft: #fff1ec;
  --bg: #0a0a0f;
  --bg-2: #111118;
  --surface: #181822;
  --surface-2: #20202d;
  --ink: #f5f5f8;
  --ink-2: #c5c6ce;
  --muted: #8b8c99;
  --line: rgba(255,255,255,.08);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 44px -16px rgba(0, 0, 0, .55);
  --shadow-lg: 0 34px 70px -22px rgba(0, 0, 0, .65);
  --maxw: 1160px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px -12px var(--brand-glow);
}
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 18px 36px -12px var(--brand-glow); }
.btn--ghost {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .16); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--brand); color: var(--brand); }
.btn--sm { padding: 9px 18px; font-size: 14px; background: var(--brand); color: #fff; }
.btn--sm:hover { background: var(--brand-dark); }
.btn--block { width: 100%; }

/* ---------- 导航 ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(10, 10, 15, .0);
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 18px 0;
}
.nav.is-scrolled {
  background: rgba(10, 10, 15, .92);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .6);
  padding: 10px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 18px; color: #fff; }
.brand__mark {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 18px;
  overflow: hidden;
}
.brand__logo {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { color: rgba(255,255,255,.85); font-weight: 500; font-size: 15px; transition: color .2s; }
.nav__links a:hover { color: var(--brand); }
.nav__links a.btn--sm { color: #fff; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: #fff; transition: .3s; }

/* ---------- 全屏视觉区 ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 120% at 80% 0%, #1b2230 0%, #0f1118 55%, #0a0a0f 100%);
  color: #fff;
  overflow: hidden;
  padding: 150px 0 120px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.orb { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .55; }
.orb--1 { width: 420px; height: 420px; background: var(--brand); top: -80px; right: -40px; animation: float 9s ease-in-out infinite; }
.orb--2 { width: 320px; height: 320px; background: #2f6bff; bottom: -100px; left: -60px; animation: float 11s ease-in-out infinite reverse; }
.ring {
  position: absolute; top: 50%; left: 50%; width: 720px; height: 720px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.08); border-radius: 50%;
}
.hero__ramp { position: absolute; left: 0; bottom: 0; width: 100%; height: 28%; z-index: 0; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-26px) } }

.hero__inner { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-block; letter-spacing: 3px; font-size: 13px; font-weight: 600;
  color: var(--brand); background: rgba(255,90,44,.12); padding: 7px 16px; border-radius: 999px; margin: 0 0 32px;
}
.hero__title { margin: 0 0 34px; }
.hero__line {
  display: block;
  font-size: clamp(40px, 7.5vw, 92px);
  line-height: 1.05; font-weight: 900; letter-spacing: 1px;
}
.hero__line--brand { color: var(--brand); margin-top: 18px; }
.hero__sub { font-size: clamp(16px, 2.2vw, 22px); margin: 0 0 50px; color: rgba(255,255,255,.8); font-weight: 500; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); }
.hero__mouse { display: block; width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.hero__mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: #fff; border-radius: 4px; animation: scroll 1.6s infinite; }
@keyframes scroll { 0% { opacity: 0; top: 7px } 40% { opacity: 1 } 100% { opacity: 0; top: 20px } }

/* ---------- 通用区块 ---------- */
.section { padding: clamp(70px, 9vw, 110px) 0; }
.section--alt { background: var(--bg-2); }
.section--cta { background: var(--surface); }
.section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section__kicker { color: var(--brand); font-weight: 700; letter-spacing: 2px; font-size: 13px; margin: 0 0 12px; }
.section__title { font-size: clamp(30px, 4.4vw, 44px); font-weight: 800; margin: 0 0 16px; letter-spacing: .5px; }
.section__lead { color: var(--muted); font-size: 17px; margin: 0; }

/* ---------- 业务卡片 ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden; text-align: center;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__header { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; margin-bottom: 8px; }
.card__logo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.card__title { font-size: 26px; font-weight: 800; margin: 0; }
.card__desc { color: var(--ink-2); margin: 0 0 18px; font-size: 15px; }
.card__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.card__list li { position: relative; padding-left: 22px; font-size: 14px; color: var(--ink-2); }
.card__list li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }

/* ---------- 筛选标签 ---------- */
.filter { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 40px; }
.filter__btn {
  padding: 8px 20px; border-radius: 999px; background: transparent; border: 1px solid var(--line);
  color: var(--ink-2); font-size: 14px; font-weight: 500; cursor: pointer; transition: .25s;
}
.filter__btn:hover { border-color: var(--brand); color: var(--brand); }
.filter__btn.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---------- 运动卡片 ---------- */
.course-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.course-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: .35s var(--ease); display: flex; flex-direction: column;
  width: 100%; max-width: 320px; flex: 1 1 280px;
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.course-card__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.course-card__tag { padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; }
.course-card__tag--cat { background: rgba(255,90,44,.12); color: var(--brand); }
.course-card__tag--level { background: rgba(255,255,255,.06); color: var(--muted); }
.course-card__title { font-size: 20px; font-weight: 800; margin: 0 0 18px; }
.course-card__meta { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 12px; flex: 1; }
.course-card__meta li { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: var(--ink-2); border-bottom: 1px dashed var(--line); padding-bottom: 10px; }
.course-card__meta li span { color: var(--muted); }
.course-card__meta li b { color: var(--ink); font-weight: 700; }
.course-card__price { color: var(--brand) !important; }

/* ---------- 学员案例 ---------- */
.case-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.case-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: .35s var(--ease);
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(255,90,44,.25); }
.case-card__avatar { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.avatar {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: 22px; color: #fff; flex-shrink: 0;
}
.avatar--girl { background: linear-gradient(135deg, #ff7eb3, #ff758c); }
.avatar--boy { background: linear-gradient(135deg, #5b8def, #2f6bff); }
.case-card__info h4 { margin: 0 0 4px; font-size: 17px; }
.case-card__tag-mini { padding: 3px 10px; border-radius: 6px; font-size: 12px; color: var(--brand); background: rgba(255,90,44,.12); }
.case-card__title { font-size: 17px; color: var(--brand); font-weight: 700; margin: 0 0 10px; }
.case-card__desc { color: var(--ink-2); font-size: 15px; margin: 0; line-height: 1.7; }

/* ---------- 门店信息 ---------- */
.store-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.store-card {
  display: flex; flex-direction: column; gap: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: .35s var(--ease);
}
.store-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.store-card__media { display: none; }
.store-card { padding: 24px 26px; }
.store-card__body { padding: 0; display: flex; flex-direction: column; justify-content: center; }
.store-card__title { font-size: 18px; font-weight: 800; margin: 0 0 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; }
.store-card__rows { display: grid; gap: 10px; margin-bottom: 18px; }
.store-card__rows p { display: flex; align-items: center; gap: 10px; margin: 0; color: var(--ink-2); font-size: 14px; }
.store-card__rows p { display:flex; align-items:center; gap:6px; min-width:0; }
.store-card__rows p span { white-space:nowrap; overflow:hidden; text-overflow:ellipsis; min-width:0; flex:1; }

.store-card__rows p svg { color: var(--brand); flex-shrink: 0; }
.store-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.store-card__tags span { padding: 5px 11px; border-radius: 6px; font-size: 12px; color: var(--brand); background: rgba(255,90,44,.12); }

/* ---------- 新闻动态 ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 18px; transition: .35s var(--ease);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(255,90,44,.25); }
.news-card__date {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 14px auto 0;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,90,44,.12);
  color: var(--brand);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .3px;
  width: fit-content;
  border: 1px solid rgba(255,90,44,.22);
}
.news-card__date small { font-size: 11px; opacity: .8; font-weight: 500; }
.news-card__title { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.news-card__desc { color: var(--ink-2); font-size: 14px; margin: 0; line-height: 1.6; }

/* ---------- 关于 ---------- */
.about { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; margin-bottom: 44px; }
.about__media { position: relative; min-height: 340px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; }
.about__shape { position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,90,44,.08), transparent 45%); }
.about__logo { width: 180px; height: 180px; border-radius: 24px; object-fit: cover; box-shadow: var(--shadow-lg); position: relative; z-index: 1; }
.about__big { color: var(--ink); font-weight: 900; font-size: 30px; letter-spacing: 2px; position: relative; z-index: 1; }
.about__body p { color: var(--ink-2); margin: 0 0 16px; }
.about__points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px; }
.point { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 14px; text-align: center; }
.point strong { display: block; color: var(--brand); font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.point span { font-size: 13px; color: var(--muted); }

/* ---------- 背书徽章 ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.badge { padding: 10px 18px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid var(--line); font-size: 14px; color: var(--ink-2); }

/* ---------- 联系区 ---------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact__intro .section__title, .contact__intro .section__kicker { text-align: left; }
.contact__intro .section__lead { text-align: left; }
.contact__direct { display: flex; align-items: center; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.direct { display: flex; flex-direction: column; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 22px; }
.direct__k { font-size: 12px; color: var(--muted); }
.direct__v { font-size: 22px; font-weight: 800; color: var(--brand); }

.form { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); display: grid; gap: 16px; }
.form__row { display: grid; gap: 7px; }
.form label { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.form input, .form select, .form textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; color: var(--ink); background: var(--surface); transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(255,90,44,.14); }
.form textarea { resize: vertical; }
.form__hint { margin: 0; font-size: 14px; min-height: 20px; }
.form__hint.is-ok { color: #4ade80; }
.form__hint.is-err { color: #f87171; }

/* ---------- 页脚 ---------- */
.footer { background: var(--bg); color: rgba(255,255,255,.6); padding: 56px 0 48px; border-top: 1px solid var(--line); }
.footer__inner { display: flex; flex-direction: column; gap: 22px; align-items: center; text-align: center; }
.footer__brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 17px; }
.footer__contact { margin: 0; font-size: 14px; }
.footer__copy { margin: 0; font-size: 13px; color: rgba(255,255,255,.45); }
.footer__icp { color: rgba(255,255,255,.45); }

.footer__qr { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 4px; }
.footer__qr-title { margin: 0; font-size: 14px; color: rgba(255,255,255,.7); letter-spacing: 1px; }
.footer__qr-list { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer__qr-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.footer__qr-item img { width: 96px; height: 96px; border-radius: 8px; background: #fff; padding: 4px; box-sizing: content-box; border: 1px solid rgba(255,255,255,.1); object-fit: contain; }
.footer__qr-label { font-size: 12px; color: rgba(255,255,255,.6); }
@media (max-width: 600px) {
  .footer__qr-item img { width: 80px; height: 80px; }
  .footer__qr-list { gap: 12px; }
}

/* ---------- 滚动揭示动画 ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 响应式 ---------- */
@media (max-width: 920px) {
  .cards, .news-grid { grid-template-columns: 1fr; }
  .about, .contact { grid-template-columns: 1fr; gap: 32px; }
  .about__media { min-height: 240px; }
  .store-grid { grid-template-columns: 1fr; }
  .store-card { display: flex; }
  .about__points { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav__links {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); padding: 12px 22px 22px; box-shadow: var(--shadow); transform: translateY(-120%); transition: transform .3s var(--ease); height: auto;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a { color: var(--ink-2) !important; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__links a.btn--sm { margin-top: 12px; text-align: center; border-bottom: 0; }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; max-width: 260px; }
  .hero__scroll { display: none; }  /* 手机端隐藏「向下滚动」鼠标提示 */
  .case-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .orb, .hero__mouse::after { animation: none; }
}

/* ===== GEO: 轮滑运动 FAQ ===== */
.faq { max-width: 860px; margin: 30px auto 0; display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 20px; transition: border-color .2s var(--ease); }
.faq__item[open] { border-color: var(--brand); }
.faq__q { font-weight: 700; font-size: 16px; color: var(--ink); padding: 18px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; font-size: 22px; color: var(--brand); line-height: 1; flex: none; transition: transform .2s var(--ease); }
.faq__item[open] .faq__q::after { content: "\2212"; }
.faq__a { padding: 0 0 18px; color: var(--ink-2); line-height: 1.85; font-size: 15px; }

.faq__cat {
  margin: 28px auto 10px; text-align: center;        /* 居中：跟上方 section__head 风格一致 */
  font-size: 14px; font-weight: 800; letter-spacing: .08em; color: var(--brand);
  display: block;
  width: fit-content; padding: 4px 14px;
  border: 1px dashed rgba(255,90,44,.45); border-radius: 999px;
  background: rgba(255,90,44,.06);
}
.faq__cat:first-child { margin-top: 0; }
.faq__cat:first-child { margin-top: 0; }
/* FAQ 主标题：保证 PC 端单行居中，移动端允许自然换行 */
.faq__title { white-space: nowrap; }
@media (max-width: 520px) { .faq__title { white-space: normal; } }


/* ---------- 视频号区块 ---------- */
.footer__sph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  width: 100%;
}
.footer__sph-title {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__sph-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: linear-gradient(135deg, #ff8a3d 0%, #ff5a2c 100%);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 6px, #000 6.5px) center/contain no-repeat;
          mask: radial-gradient(circle at 50% 50%, transparent 6px, #000 6.5px) center/contain no-repeat;
  border-radius: 3px;
  position: relative;
}
.footer__sph-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff8a3d 0%, #ff5a2c 100%);
  -webkit-mask: linear-gradient(45deg, transparent 40%, #000 40%, #000 60%, transparent 60%) center/100% 100% no-repeat;
          mask: linear-gradient(45deg, transparent 40%, #000 40%, #000 60%, transparent 60%) center/100% 100% no-repeat;
  border-radius: 3px;
}
.footer__sph-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__sph-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer__sph-item img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  box-sizing: content-box;
  border: 1px solid rgba(255, 90, 44, 0.25);
  object-fit: contain;
}
.footer__sph-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 600px) {
  .footer__sph-item img { width: 80px; height: 80px; }
  .footer__sph-list { gap: 12px; }
  .footer__sph { padding-top: 14px; }
}

/* GEO：门店覆盖城市 chips */
.city-chips{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;align-items:center;margin:20px 0 4px}
.city-chips__label{font-size:14px;color:var(--ink-2,#9aa0b4);margin-right:6px;font-weight:600}
.city-chip{display:inline-flex;align-items:center;padding:6px 14px;border:1px solid rgba(255,90,44,.5);background:rgba(255,90,44,.08);color:#ff5a2c;border-radius:999px;font-size:14px;font-weight:600}
@media (max-width:520px){.city-chips{gap:8px}.city-chip{padding:5px 11px;font-size:13px}}

/* ===== 运动干货 / 资讯栏目排版 ===== */
.article-hero { padding-top: 56px; padding-bottom: 8px; }
.article-meta { margin-top: 10px; color: var(--muted); font-size: 15px; }
.article { max-width: 820px; margin: 0 auto; line-height: 1.95; color: var(--ink-2); font-size: 17px; }
.article-lead { font-size: 18px; color: var(--ink); margin-bottom: 28px; }
.article h2 { color: var(--ink); font-size: 24px; margin: 38px 0 16px; padding-left: 14px; border-left: 4px solid var(--brand); }
.article h3 { color: var(--ink); font-size: 19px; margin: 26px 0 12px; }
.article p { margin: 0 0 16px; }
.article ul, .article ol { margin: 0 0 18px; padding-left: 22px; }
.article li { margin: 8px 0; }
.article ul li::marker { color: var(--brand); }
.article-warn { background: var(--brand-soft); color: var(--brand-dark); border-radius: var(--radius-sm); padding: 14px 16px; font-weight: 600; }
.article__figure { margin: 24px 0; }
.article__figure img { display: block; width: 100%; max-width: 640px; margin: 0 auto; border-radius: var(--radius); border: 1px solid var(--line); }
.article__figure figcaption { text-align: center; color: var(--muted); font-size: 14px; margin-top: 10px; }
.article__tips { background: var(--surface); border-radius: var(--radius); padding: 22px 22px 22px 38px; border-left: 4px solid var(--brand); }
.article__tips li { color: var(--ink); }
.article__tips li::marker { color: var(--brand); font-weight: 700; }
.article-cta { margin-top: 30px; padding: 20px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.article-cta a { color: var(--brand); font-weight: 700; }
.article-back { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line); }
.article-back a { color: var(--brand); font-weight: 600; }
.article-back a:hover { text-decoration: underline; }
/* 列表页卡片 */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.news-card { display: block; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; color: var(--ink-2); transition: transform .25s var(--ease), border-color .25s, box-shadow .25s; text-decoration: none; }
.news-card:hover { transform: translateY(-4px); border-color: var(--brand); box-shadow: var(--shadow); }
.news-card__tag { display: inline-block; font-size: 13px; color: var(--brand); background: var(--brand-soft); border-radius: 999px; padding: 3px 12px; margin-bottom: 12px; }
.news-card__title { color: var(--ink); font-size: 20px; margin: 0 0 10px; }
.news-card__desc { font-size: 15px; margin: 0 0 14px; }
.news-card__date { color: var(--brand); background: rgba(255,90,44,.12); border-color: rgba(255,90,44,.22); }
.news-more { text-align: center; margin-top: 30px; }


/* ===== 运动干货 区块大屏满铺（2026-09-07）+ 占位卡视觉 ===== */
@media (min-width: 981px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.news-card { min-height: 220px; }
.news-card__tag--soon {
  background: transparent;
  border: 1px dashed rgba(139,148,163,.55);
  color: var(--muted);
}
@media (max-width: 920px) {
  .news-grid { gap: 18px; }
}

/* 为什么选我们区块：卡片网格响应式 */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
}
/* 城市 chip 作为链接 */
a.city-chip { color: inherit; text-decoration: none; }
