/* ============================================================
   万商云集·眉山站 · 三苏文脉主题（墨青 + 宣纸）
   类前缀：ms- ｜ 零内联样式 ｜ 全部样式均在此文件
   ============================================================ */

:root {
  --ink: #222831;
  --primary: #34495E;
  --primary-2: #4A627C;
  --accent: #B89B6A;
  --bg: #F7F4EC;
  --bg-alt: #EFEADD;
  --line: #E1D9C8;
  --heading: #262C30;
  --muted: #5E6A6E;
  --radius: 8px;
  --shadow: 0 10px 24px rgba(34, 40, 49, .10);
  --gradient: linear-gradient(135deg, #34495E, #B89B6A);
  --maxw: 1180px;
  --paper:
    radial-gradient(circle at 20% 18%, rgba(184, 155, 106, .06) 0, transparent 42%),
    radial-gradient(circle at 82% 72%, rgba(52, 73, 94, .05) 0, transparent 46%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", "STSong", "Source Han Serif SC", "Microsoft YaHei", serif;
  color: var(--ink);
  background: var(--bg);
  background-image: var(--paper);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; }

h1, h2, h3, h4 { color: var(--heading); font-weight: 700; line-height: 1.3; }

.ms-noscroll { overflow: hidden; }

/* ---------- 顶部导航条 ---------- */
.ms-topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--gradient);
  color: #F4EEDF;
  box-shadow: 0 4px 18px rgba(34, 40, 49, .18);
}
.ms-topbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.ms-brand { display: flex; align-items: baseline; gap: 8px; color: #FBF6EA; }
.ms-brand__logo { height: 30px; width: auto; display: inline-block; vertical-align: middle; margin-right: 8px; border-radius: 4px; }
.ms-brand__name { font-size: 20px; font-weight: 700; letter-spacing: 2px; color: #FBF5E6; }
.ms-brand__name:hover { color: #fff; }
.ms-brand__tel { font-size: 14px; color: #E9D9B6; margin-left: 6px; }
.ms-brand__tel:hover { color: #fff; }
.ms-brand__region { font-size: 13px; color: #D9C9A3; }
.ms-brand__region b { color: var(--accent); }
.ms-nav { margin-left: auto; display: flex; gap: 4px; }
.ms-nav__link {
  color: #F1E9D6;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 15px;
  letter-spacing: 1px;
  transition: background .2s ease, color .2s ease;
}
.ms-nav__link:hover,
.ms-nav__link--on { background: rgba(255, 255, 255, .16); color: #fff; }
.ms-burger {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 9px;
}
.ms-burger span { display: block; height: 2px; background: #F1E9D6; border-radius: 2px; }

/* ---------- 移动抽屉 ---------- */
.ms-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 360px;
  height: 100%;
  background: var(--ink);
  color: #EDE6D6;
  z-index: 80;
  transition: right .3s ease;
  display: flex;
  flex-direction: column;
  padding: 18px;
  overflow-y: auto;
}
.ms-drawer.is-open { right: 0; }
.ms-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: 17px;
  letter-spacing: 1px;
}
.ms-drawer__close {
  background: transparent;
  border: none;
  color: #EDE6D6;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.ms-drawer__link {
  display: block;
  color: #E7DECB;
  padding: 13px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 16px;
  letter-spacing: 1px;
}
.ms-drawer__link:hover,
.ms-drawer__link--on { color: var(--accent); }
.ms-drawer__tel {
  margin-top: auto;
  display: block;
  text-align: center;
  background: var(--accent);
  color: var(--ink);
  padding: 13px;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 1px;
}
.ms-scrim {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 28, .55);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease;
}
.ms-scrim.is-open { opacity: 1; visibility: visible; }

/* ---------- 主内容容器 ---------- */
.ms-main { display: block; }
.ms-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.ms-center { text-align: center; }

/* ---------- 文脉 Hero ---------- */
.ms-hero {
  position: relative;
  background:
    linear-gradient(160deg, rgba(34, 40, 49, .92), rgba(52, 73, 94, .92)),
    var(--paper);
  color: #F3ECDD;
  text-align: center;
  padding: 92px 22px 76px;
  overflow: hidden;
}
.ms-hero::before {
  content: "眉";
  position: absolute;
  right: -40px;
  bottom: -70px;
  font-size: 320px;
  color: rgba(184, 155, 106, .10);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.ms-hero__inner { position: relative; max-width: 860px; margin: 0 auto; }
.ms-hero__eyebrow {
  display: inline-block;
  letter-spacing: 6px;
  font-size: 14px;
  color: var(--accent);
  border: 1px solid rgba(184, 155, 106, .5);
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
}
.ms-hero__title {
  font-size: clamp(30px, 5vw, 52px);
  color: #FBF5E6;
  letter-spacing: 3px;
  margin: 0 0 22px;
}
.ms-hero__title em { color: var(--accent); font-style: normal; padding: 0 10px; }
.ms-hero__sub {
  font-size: 17px;
  color: #E3DAC6;
  max-width: 680px;
  margin: 0 auto 18px;
}
.ms-hero__meta { color: #C9BEA4; font-size: 15px; margin-bottom: 30px; }
.ms-hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- 独立广告图大块 ---------- */
.ms-banner {
  max-width: var(--maxw);
  margin: -46px auto 0;
  padding: 0 22px;
  position: relative;
  z-index: 2;
}
.ms-banner__img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 4px solid #fff;
  object-fit: cover;
  max-height: 360px;
}

/* ---------- 按钮 ---------- */
.ms-btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
}
.ms-btn:hover { transform: translateY(-2px); }
.ms-btn--primary { background: var(--primary); color: #FBF5E6; box-shadow: var(--shadow); }
.ms-btn--primary:hover { background: var(--primary-2); }
.ms-btn--gold { background: var(--accent); color: var(--ink); }
.ms-btn--ghost { background: transparent; color: #FBF5E6; border-color: rgba(243, 236, 221, .6); }
.ms-btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.ms-btn--outline { background: #fff; color: var(--primary); border-color: var(--primary); }
.ms-btn--lg { padding: 15px 36px; font-size: 16px; }

/* ---------- 通用区块 ---------- */
.ms-sec { padding: 70px 0; }
.ms-sec--alt { background: var(--bg-alt); }
.ms-sec--band { background: linear-gradient(135deg, #2C3A47, #34495E); color: #EDE6D6; }
.ms-sec--band h2, .ms-sec--band .ms-sec__title { color: #FBF5E6; }
.ms-sec--band .ms-sec__lead { color: #C9BEA4; }
.ms-sec__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.ms-sec__head { text-align: center; max-width: 760px; margin: 0 auto 46px; }
.ms-sec__eyebrow {
  display: inline-block;
  color: var(--accent);
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 12px;
}
.ms-sec__title { font-size: clamp(24px, 3.4vw, 34px); margin: 0 0 16px; letter-spacing: 1px; }
.ms-sec__lead { color: var(--muted); font-size: 16px; margin: 0; }
.ms-sec__more { display: inline-block; margin-top: 18px; color: var(--primary); font-weight: 700; }
.ms-sec__more:hover { color: var(--accent); }
.ms-sec__phone {
  display: inline-block;
  margin: 20px 0;
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
}
.ms-sec__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ms-sec__cta--block { margin-top: 30px; }
.ms-cta-tip { margin: 0 0 12px; color: var(--muted); }
.ms-sec__inner--center { text-align: center; }

/* ---------- 砚形装饰 ---------- */
.ms-inkstone {
  width: 64px;
  height: 40px;
  margin: 0 auto 18px;
  border-radius: 50% / 60%;
  background: radial-gradient(circle at 50% 38%, #4A627C, #222831 72%);
  box-shadow: inset 0 -6px 12px rgba(0, 0, 0, .4), var(--shadow);
  position: relative;
}
.ms-inkstone::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 14px;
  border-radius: 50%;
  background: rgba(184, 155, 106, .5);
}

/* ---------- 数字实力 ---------- */
.ms-metrics { padding: 46px 0; background: #fff; }
.ms-metrics__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.ms-metrics__num { font-size: 34px; font-weight: 700; color: var(--primary); }
.ms-metrics__unit { font-size: 16px; color: var(--accent); margin-left: 2px; }
.ms-metrics__label { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ---------- 杂志混排（左图右文交替） ---------- */
.ms-mag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 40px;
}
.ms-mag__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--bg-alt);
  aspect-ratio: 4 / 3;
}
.ms-mag__media img { width: 100%; height: 100%; object-fit: cover; }
.ms-mag__title { font-size: 26px; margin: 10px 0 14px; }
.ms-mag__text { color: var(--muted); }
.ms-mag--rev .ms-mag__media { order: 2; }
.ms-about__full { color: var(--muted); max-height: 132px; overflow: hidden; position: relative; transition: max-height .3s ease; }
.ms-about__full.is-open { max-height: 6000px; }
.ms-about__toggle { margin-top: 16px; }
.ms-about__btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--primary);
  padding: 9px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 1px;
}
.ms-about__btn:hover { border-color: var(--accent); color: var(--accent); }
.ms-about__link { margin-top: 18px; }

/* ---------- 引文引用块 ---------- */
.ms-quote {
  max-width: 820px;
  margin: 18px auto;
  padding: 30px 36px 30px 64px;
  background: #fff;
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}
.ms-quote::before {
  content: "\201C";
  position: absolute;
  left: 18px;
  top: 4px;
  font-size: 60px;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
}
.ms-quote p { margin: 0; font-size: 18px; color: var(--heading); }
.ms-quote cite { display: block; margin-top: 12px; color: var(--muted); font-size: 14px; font-style: normal; }

/* ---------- 产品编号卡 01–06 ---------- */
.ms-nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: msnum; }
.ms-num {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
  counter-increment: msnum;
}
.ms-num:hover { transform: translateY(-4px); border-color: var(--accent); }
.ms-num__no {
  font-size: 40px;
  font-weight: 700;
  color: var(--bg-alt);
  -webkit-text-stroke: 1px var(--accent);
  letter-spacing: 1px;
  line-height: 1;
}
.ms-num__no::before { content: counter(msnum, decimal-leading-zero); }
.ms-num__title { font-size: 20px; margin: 14px 0 10px; }
.ms-num__desc { color: var(--muted); font-size: 15px; }

/* ---------- 服务流程 ---------- */
.ms-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ms-step {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(184, 155, 106, .35);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.ms-step__no { color: var(--accent); letter-spacing: 2px; font-size: 13px; }
.ms-step__title { color: #FBF5E6; font-size: 18px; margin: 8px 0 10px; }
.ms-step__desc { color: #C9BEA4; font-size: 14px; }

/* ---------- 新闻 / 产品 网格 ---------- */
.ms-newsgrid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 34px; align-items: start; }
.ms-news__item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}
.ms-news__link { color: var(--heading); font-size: 16px; }
.ms-news__link:hover { color: var(--accent); }
.ms-news__date { color: var(--muted); font-size: 14px; white-space: nowrap; }
.ms-featured {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.ms-featured__title { font-size: 21px; margin: 0 0 8px; }
.ms-featured__meta { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.ms-featured__more { color: var(--primary); font-weight: 700; }

.ms-prodgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ms-prod {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.ms-prod:hover { transform: translateY(-4px); border-color: var(--accent); }
.ms-prod__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ms-prod__ph {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  color: var(--primary-2);
}
.ms-prod__ph svg { width: 48px; height: 48px; }
.ms-prod__body { padding: 20px; }
.ms-prod__title { font-size: 18px; margin: 0 0 8px; }
.ms-prod__desc { color: var(--muted); font-size: 14px; }

/* ---------- 列表页 ---------- */
.ms-list__item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.ms-list__thumb { width: 160px; height: 110px; object-fit: cover; border-radius: var(--radius); }
.ms-list__title { font-size: 18px; margin: 0 0 8px; }
.ms-list__title a { color: var(--heading); }
.ms-list__title a:hover { color: var(--accent); }
.ms-list__desc { color: var(--muted); font-size: 14px; margin: 0; }
.ms-list__date { color: var(--muted); font-size: 13px; white-space: nowrap; }
.ms-list__more { white-space: nowrap; }

/* ---------- 详情 / 双栏 ---------- */
.ms-detail { display: grid; grid-template-columns: 1fr 320px; gap: 38px; align-items: start; }
.ms-post__meta { color: var(--muted); font-size: 14px; display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 16px; }
.ms-post__thumb { width: 100%; border-radius: var(--radius); margin-bottom: 20px; box-shadow: var(--shadow); }
.ms-post__body { color: var(--ink); font-size: 16px; }
.ms-post__body h2 { margin-top: 30px; }
.ms-post__back { display: inline-block; margin-top: 24px; color: var(--primary); font-weight: 700; }
.ms-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.ms-panel__title { font-size: 17px; margin: 0 0 14px; padding-left: 12px; border-left: 3px solid var(--accent); }
.ms-newslist { list-style: none; margin: 0; padding: 0; }
.ms-newslist__item { padding: 10px 0; border-bottom: 1px dashed var(--line); }
.ms-newslist__link { color: var(--heading); font-size: 14px; }
.ms-newslist__link:hover { color: var(--accent); }
.ms-newslist__date { display: block; color: var(--muted); font-size: 12px; }
.ms-newslist__more { display: inline-block; margin-top: 12px; color: var(--primary); font-weight: 700; }

/* 产品详情首屏 */
.ms-prodhero { background: linear-gradient(160deg, #2C3A47, #34495E); color: #EDE6D6; padding: 40px 0 56px; }
.ms-prodhero__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.ms-prodhero__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  margin-top: 18px;
}
.ms-prodhero__media img,
.ms-prodhero__media .ms-prodhero__ph {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--bg-alt);
}
.ms-prodhero__ph { display: flex; align-items: center; justify-content: center; color: var(--primary-2); }
.ms-prodhero__ph svg { width: 56px; height: 56px; }
.ms-prodhero__kicker { display: inline-block; color: var(--accent); letter-spacing: 3px; font-size: 13px; }
.ms-prodhero__title { font-size: 28px; margin: 10px 0 14px; color: var(--heading); }
.ms-prodhero__desc { color: var(--muted); margin-bottom: 18px; }
.ms-pointlist { list-style: none; margin: 0 0 20px; padding: 0; }
.ms-pointlist li { padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 15px; }
.ms-pointlist li b { color: var(--primary); margin-right: 6px; }
.ms-prodhero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ms-prodshow { display: grid; grid-template-columns: 1fr 320px; gap: 38px; align-items: start; }
/* 首页产品展示网格 / 伙伴企业 */
.ms-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.ms-showcase__fig { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.ms-showcase__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ms-showcase__cap { padding: 12px; font-size: 14px; color: var(--muted); }
.ms-citymore { text-align: center; margin-top: 22px; }
.ms-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ms-chips--center { justify-content: center; }
.ms-chip {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--primary);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
}
.ms-chip--fact { background: transparent; border-color: var(--accent); color: var(--primary-2); }

/* ---------- 面包屑 / 页头 ---------- */
.ms-pagehead { background: var(--bg-alt); border-bottom: 1px solid var(--line); padding: 26px 0; }
.ms-pagehead__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.ms-crumb { font-size: 14px; color: var(--muted); margin-bottom: 10px; }
.ms-crumb a { color: var(--muted); }
.ms-crumb a:hover { color: var(--accent); }
.ms-crumb__sep { margin: 0 8px; color: var(--line); }
.ms-crumb__item { color: var(--primary); }
.ms-pagehead__title { font-size: 30px; margin: 0; letter-spacing: 1px; }

/* ---------- FAQ ---------- */
.ms-faq { max-width: 860px; margin: 0 auto; }
.ms-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ms-faq__item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 700;
  color: var(--heading);
  list-style: none;
  position: relative;
  padding-right: 46px;
}
.ms-faq__item summary::-webkit-details-marker { display: none; }
.ms-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--accent);
}
.ms-faq__item[open] summary::after { content: "\2212"; }
.ms-faq__body { padding: 0 22px 20px; color: var(--muted); }
.ms-faq__body p { margin: 0; }

/* ---------- 分站互链 ---------- */
.ms-citylinks { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 980px; margin: 0 auto; }
.ms-citylinks__item {
  display: block;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(184, 155, 106, .35);
  border-radius: var(--radius);
  padding: 14px 22px;
  text-align: center;
  color: #EDE6D6;
  min-width: 150px;
}
.ms-citylinks__item:hover { border-color: var(--accent); }
.ms-citylinks__item--cur { border-color: var(--accent); background: rgba(184, 155, 106, .18); }
.ms-citylinks__region { display: block; font-size: 18px; font-weight: 700; }
.ms-citylinks__site { display: block; font-size: 13px; color: #C9BEA4; }
.ms-citylinks__more {
  background: var(--accent);
  border: none;
  color: var(--ink);
  padding: 11px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
}
.ms-citylinks__item--fold { display: none; }
.ms-citylinks.is-expanded .ms-citylinks__item--fold { display: block; }

/* ---------- 底部 ---------- */
.ms-foot { background: var(--ink); color: #D8CFBC; padding: 56px 0 30px; }
.ms-foot__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.ms-foot__cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 34px; }
.ms-foot__brand { font-size: 20px; color: #FBF5E6; letter-spacing: 1px; margin-bottom: 14px; }
.ms-foot__brand b { color: var(--accent); margin: 0 4px; }
.ms-foot__text { color: #B7AE99; font-size: 14px; }
.ms-foot__phone { display: inline-block; margin-top: 12px; color: var(--accent); font-size: 22px; font-weight: 700; }
.ms-foot__title { color: #FBF5E6; font-size: 16px; margin-bottom: 14px; letter-spacing: 1px; }
.ms-foot__cols a { color: #D8CFBC; font-size: 14px; display: block; padding: 5px 0; }
.ms-foot__cols a:hover { color: var(--accent); }
.ms-foot__cols p { margin: 5px 0; font-size: 14px; color: #B7AE99; }
.ms-foot__notice { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .12); }
.ms-foot__notice p { font-size: 13px; color: #9F9682; margin: 6px 0; }
.ms-foot__copy {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #9F9682;
}
.ms-foot__copy a { color: var(--accent); }

/* 底部城市行 */
.ms-footcity { background: #1B2025; padding: 18px 0; color: #B7AE99; }
.ms-footcity__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.ms-footcity__label { font-size: 14px; color: #D8CFBC; }
.ms-footcity__link { color: #B7AE99; font-size: 13px; padding: 4px 10px; border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; }
.ms-footcity__link:hover { color: var(--accent); border-color: var(--accent); }

/* 移动端拨号栏 */
.ms-callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  background: var(--ink);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, .3);
}
.ms-callbar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FBF5E6;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 14px;
  font-size: 16px;
}
.ms-callbar__btn svg { width: 20px; height: 20px; fill: var(--accent); }

/* ---------- 响应式 ---------- */
@media (max-width: 980px) {
  .ms-nav { display: none; }
  .ms-burger { display: flex; }
  .ms-metrics__inner { grid-template-columns: repeat(2, 1fr); }
  .ms-mag, .ms-newsgrid, .ms-prodhero__card, .ms-detail, .ms-prodshow { grid-template-columns: 1fr; }
  .ms-mag--rev .ms-mag__media { order: 0; }
  .ms-nums, .ms-flow, .ms-prodgrid { grid-template-columns: repeat(2, 1fr); }
  .ms-list__item { grid-template-columns: 1fr; }
  .ms-list__thumb { width: 100%; height: 180px; }
  .ms-callbar { display: block; }
  body { padding-bottom: 56px; }
}

@media (max-width: 560px) {
  .ms-nums, .ms-flow, .ms-prodgrid, .ms-metrics__inner { grid-template-columns: 1fr; }
  .ms-hero { padding: 70px 18px 60px; }
  .ms-sec { padding: 52px 0; }
  .ms-foot__cols { grid-template-columns: 1fr; }
}
