/* ==========================================================================
   立华星财务移动站改版 —— 全站共享样式表
   依据：《移动原型/改版设计方案.md》第三节设计规范
   用法：所有页面统一 <link rel="stylesheet" href="css/mobile.css" />
   约定：设计稿宽度 375px；页面左右安全边距 12px（.container 控制）；
         版块上下间距 40px（.section 控制）；可点区域高度 ≥44px
   ========================================================================== */


/* --------------------------------------------------------------------------
   一、Reset 基础重置
   -------------------------------------------------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Source Han Sans SC", "思源黑体", "阿里巴巴普惠体", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 14px;            /* 正文字号（规范 3.2 第 4 档） */
  line-height: 1.7;
  color: #3F4650;             /* 正文灰黑 */
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { border: 0; vertical-align: middle; max-width: 100%; }
ul, ol { list-style: none; }
a { color: #444444; text-decoration: none; }
input, button { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5 { font-weight: normal; color: #222222; }
button, a { -webkit-tap-highlight-color: transparent; }


/* --------------------------------------------------------------------------
   二、设计变量（规范 3.1 / 3.2 / 3.3 —— 全站只允许这些值）
   -------------------------------------------------------------------------- */
:root {
  --red:        #D9272E;   /* 主红（品牌色） */
  --red-dark:   #B61D24;   /* 深红：按下态 */
  --red-light:  #FFF1F1;   /* 浅红底：图标圆底、标签底 */
  --red-soft:   #FFF8F7;   /* 极浅品牌底 */
  --black:      #171A1F;   /* 标题黑 */
  --gray:       #3F4650;   /* 正文灰黑 */
  --gray-light: #69727E;   /* 辅助灰：日期、来源、摘要 */
  --border:     #E8E9EC;   /* 分隔线/边框 */
  --bg:         #FFFFFF;
  --bg-gray:    #F7F8FA;   /* 浅灰分层底 */
  --footer-bg:  #25282D;   /* 页脚深色底 */
  --footer-txt: #C4C8CF;   /* 页脚文字 */
  --shadow-sm:  0 4px 16px rgba(24, 28, 35, .06);
  --shadow-md:  0 10px 28px rgba(24, 28, 35, .09);

  /* 字号六档（规范 3.2，全站只允许这 6 档） */
  --fs-banner:  22px;      /* Banner 大标题 Bold / 1.3 */
  --fs-section: 18px;      /* 版块标题 Bold / 1.3 */
  --fs-card:    15px;      /* 列表/卡片标题 Medium / 1.5 */
  --fs-body:    14px;      /* 正文 Regular / 1.7 */
  --fs-article: 16px;      /* 文章页正文 Regular / 1.9 */
  --fs-aux:     12px;      /* 辅助文字 Regular / 1.5 */

  /* 间距与圆角（规范 3.3） */
  --page-pad:    16px;     /* 页面左右安全边距 */
  --section-gap: 40px;     /* 栏目上下间距 */
  --card-gap:    12px;     /* 卡片间距 / 卡片内边距 */
  --radius:      12px;     /* 统一圆角 */
  --tap:         44px;     /* 可点区域最小高度 */
}


/* --------------------------------------------------------------------------
   三、版心与版块骨架
   -------------------------------------------------------------------------- */
.container { width: 100%; padding: 0 var(--page-pad); }

.section { padding: var(--section-gap) 0; }
.section--gray { background-color: var(--bg-gray); }

/* 底部悬浮条占位：页面最后一个元素后留出高度，防止内容被遮挡 */
.float-spacer { height: calc(50px + env(safe-area-inset-bottom, 0px)); }


/* --------------------------------------------------------------------------
   四、版块标题组件
   用法：<div class="sec-title"><h2><span>主营</span>业务</h2><p>Main business</p></div>
   -------------------------------------------------------------------------- */
.sec-title { text-align: center; margin-bottom: 24px; }

.sec-title h2 {
  font-size: var(--fs-section);
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  letter-spacing: .02em;
}

.sec-title h2 span { color: var(--red); }

.sec-title p {
  font-size: var(--fs-aux);
  line-height: 1.5;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  margin-top: 4px;
}

/* 侧栏/局部小标题：15px Bold + 左侧 4px 红色竖条（规范 6.2） */
.side-title {
  font-size: var(--fs-card);
  font-weight: bold;
  line-height: 1.5;
  color: var(--black);
  border-left: 4px solid var(--red);
  padding-left: 10px;
  margin-bottom: 16px;
}


/* --------------------------------------------------------------------------
   五、按钮（规范 3.4：无渐变、无阴影、6px 圆角、高度 ≥44px）
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: var(--tap);
  padding: 0 24px;
  font-size: var(--fs-body);
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.btn--primary { background-color: var(--red); color: #FFFFFF; box-shadow: 0 6px 16px rgba(217, 39, 46, .18); }
.btn--primary:active { background-color: var(--red-dark); transform: translateY(1px); }

.btn--outline { background-color: #FFFFFF; border-color: var(--red); color: var(--red); }
.btn--outline:active { background-color: var(--red-light); transform: translateY(1px); }

/* 双按钮并排（电话咨询 / 添加微信） */
.btn-pair { display: flex; gap: var(--card-gap); }
.btn-pair .btn { flex: 1; }


/* --------------------------------------------------------------------------
   六、通用卡片与文本截断
   -------------------------------------------------------------------------- */
.card {
  background-color: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--card-gap);
  box-shadow: var(--shadow-sm);
}

.clamp-1 { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}


/* --------------------------------------------------------------------------
   七、头部（logo + 菜单键）
   -------------------------------------------------------------------------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, .96);
  box-shadow: 0 2px 12px rgba(24, 28, 35, .04);
}

.site-header .logo img { display: block; height: 30px; width: auto; }

/* 菜单键：44px 可点区域 */
.menu-btn {
  width: var(--tap);
  height: var(--tap);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-right: calc(-1 * var(--page-pad));
  border-radius: 10px;
  transition: background-color .2s ease;
}
.menu-btn i {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #252A31;
  border-radius: 1px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-btn:active { background-color: var(--bg-gray); }
.menu-btn[aria-expanded="true"] i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* --------------------------------------------------------------------------
   八、首页 Banner（品牌红渐变插画背景 images/m-banner.svg：金色上升折线
   + 金币 + 城市剪影，财税意象；文字为代码层）
   -------------------------------------------------------------------------- */
.banner {
  position: relative;
  background: url("../images/m-banner.svg") no-repeat center center;
  background-size: cover;
  color: #FFFFFF;
  padding: 44px var(--page-pad) 40px;
  text-align: center;
  isolation: isolate;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(117, 8, 15, .12), rgba(217, 39, 46, .02));
}

.banner .banner-brand {
  font-size: var(--fs-banner);
  font-weight: bold;
  line-height: 1.3;
  color: #FFFFFF;
  letter-spacing: .08em;
  text-shadow: 0 2px 12px rgba(77, 0, 5, .18);
}

.banner .banner-sub {
  font-size: var(--fs-body);
  line-height: 1.7;
  margin-top: 12px;
  opacity: .9;
}

/* Banner 轮播指示点 */
.banner-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.banner-dots i {
  width: 6px; height: 6px; border-radius: 50%;
  background-color: rgba(255, 255, 255, .5);
}
.banner-dots i.on { width: 16px; border-radius: 3px; background-color: #FFFFFF; }


/* --------------------------------------------------------------------------
   九、内页 Banner（浅红渐变底，避免大面积红底刺眼，与 PC 版一致）
   用法：<section class="page-banner"><h1>新闻资讯</h1><p class="en">NEWS</p></section>
   -------------------------------------------------------------------------- */
.page-banner {
  background:
    radial-gradient(circle at 92% 12%, rgba(217, 39, 46, .08), transparent 32%),
    linear-gradient(180deg, var(--red-soft) 0%, #FFFFFF 100%);
  color: var(--black);
  padding: 28px var(--page-pad) 24px;
  border-bottom: 1px solid var(--border);
}

.page-banner h1 {
  font-size: var(--fs-banner);
  font-weight: bold;
  line-height: 1.3;
  color: var(--black);
  border-left: 4px solid var(--red);
  padding-left: 12px;
}

.page-banner .en {
  font-size: var(--fs-aux);
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 6px;
  padding-left: 16px;
}

/* 公共面包屑：12px 辅助灰，当前页主红 */
.crumbs { font-size: var(--fs-aux); line-height: 1.5; margin-top: 12px; padding-left: 16px; color: var(--gray-light); }
.crumbs a { color: var(--gray-light); }
.crumbs .sep { margin: 0 6px; color: var(--border); }
.crumbs .cur { color: var(--red); }


/* --------------------------------------------------------------------------
   十、分类标签（规范 3.4 次按钮样式，当前项反色）
   -------------------------------------------------------------------------- */
.tag-row {
  display: flex;
  gap: 10px;
  padding: 16px var(--page-pad) 0;
  flex-wrap: wrap;
}

.tag-row .tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 18px;
  font-size: var(--fs-body);
  border: 1px solid var(--red);
  border-radius: 999px;
  color: var(--red);
  background-color: #FFFFFF;
  font-weight: 500;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.tag-row .tag.on { background-color: var(--red); color: #FFFFFF; box-shadow: 0 5px 14px rgba(217, 39, 46, .16); }
.tag-row .tag:active { transform: translateY(1px); }


/* --------------------------------------------------------------------------
   十一、文章列表行（规范 6.1：标题 15px 最多 2 行 + 12px 灰日期，
        行高 ≥64px，行间 1px 发丝线）
   -------------------------------------------------------------------------- */
.news-list li { border-bottom: 1px solid var(--border); }

.news-list a {
  display: block;
  padding: 14px 0;
  min-height: 64px;
  transition: color .2s ease, transform .2s ease;
}

.news-list h3 {
  font-size: var(--fs-card);
  font-weight: 500;
  line-height: 1.5;
  color: var(--black);
  transition: color .2s ease;
}

.news-list a:active h3 { color: var(--red); }

.news-list .date {
  font-size: var(--fs-aux);
  line-height: 1.5;
  color: var(--gray-light);
  margin-top: 6px;
  font-family: Roboto, "DIN Alternate", sans-serif;
}

/* 带图行：右侧缩略图 120×68px（16:9），左侧标题+日期 */
.news-list .with-img a { display: flex; gap: var(--card-gap); align-items: center; }
.news-list .with-img .txt { flex: 1; min-width: 0; }
.news-list .with-img img {
  flex: none;
  width: 120px;
  height: 68px;
  object-fit: cover;
  border-radius: var(--radius);
}


/* --------------------------------------------------------------------------
   十二、分页器（规范 6.1：按钮高度 ≥44px，当前页红底白字）
   -------------------------------------------------------------------------- */
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 24px var(--page-pad) 0;
  flex-wrap: wrap;
}

.pager a, .pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--tap);
  height: var(--tap);
  padding: 0 14px;
  font-size: var(--fs-body);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--gray);
  background-color: #FFFFFF;
}

.pager .on { background-color: var(--red); border-color: var(--red); color: #FFFFFF; box-shadow: 0 5px 14px rgba(217, 39, 46, .16); }


/* --------------------------------------------------------------------------
   十三、核心业务图标栅格（规范 5.1：2 列×3 行，图标 56px 浅红圆底）
   图标为内联 SVG：stroke="currentColor" stroke-width="2"
   -------------------------------------------------------------------------- */
.biz-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--card-gap);
}

.biz-grid .biz {
  width: calc((100% - var(--card-gap)) / 2);
  text-align: center;
  padding: 20px var(--card-gap);
  background-color: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 3px 14px rgba(24, 28, 35, .045);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.biz-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, #FFF8F7 0%, #FFE8E9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--red);
}

.biz-icon svg { width: 28px; height: 28px; }
.biz:active { border-color: rgba(217, 39, 46, .24); box-shadow: var(--shadow-md); transform: translateY(1px); }

.biz h3 {
  font-size: var(--fs-card);
  font-weight: 500;
  line-height: 1.5;
  color: var(--black);
  margin-top: 10px;
}

.biz p { font-size: var(--fs-aux); color: var(--gray-light); line-height: 1.5; }


/* --------------------------------------------------------------------------
   十四、页脚（规范 6.6：城市名 14px 白，信息 12px #BBBBBB，版权两行）
   -------------------------------------------------------------------------- */
.site-footer {
  background: linear-gradient(145deg, #2B2E34 0%, var(--footer-bg) 100%);
  color: var(--footer-txt);
  padding: 32px var(--page-pad) 24px;
}

.footer-cities .city { padding: 14px 0; border-bottom: 1px solid #4A4A4A; }
.footer-cities .city:last-child { border-bottom: 0; }

.footer-cities h4 {
  font-size: var(--fs-body);
  font-weight: 500;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.footer-cities p { font-size: var(--fs-aux); line-height: 1.7; color: var(--footer-txt); }
.footer-cities a { color: var(--footer-txt); }

.footer-copy {
  text-align: center;
  font-size: var(--fs-aux);
  line-height: 1.7;
  color: var(--footer-txt);
  padding-top: 20px;
}

.footer-copy a { color: var(--footer-txt); }


/* --------------------------------------------------------------------------
   十五、底部悬浮咨询条（规范 3.4：50px 高 + iPhone 安全区）
   -------------------------------------------------------------------------- */
.float-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99;
  display: flex;
  background-color: #FFFFFF;
  border-top: 1px solid rgba(232, 233, 236, .9);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -8px 24px rgba(24, 28, 35, .09);
}

.float-bar a {
  flex: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: var(--fs-body);
  font-weight: 600;
}

.float-bar .wechat { background-color: #FFFFFF; color: var(--red); border-right: 1px solid var(--border); }
.float-bar .tel { background-color: var(--red); color: #FFFFFF; }
.float-bar .tel:active { background-color: var(--red-dark); }

.float-bar svg { width: 18px; height: 18px; }


/* --------------------------------------------------------------------------
   十六、Tab 切换面板（配合 js/mobile.js：默认只显示 .on 面板）
   -------------------------------------------------------------------------- */
[data-panel] { display: none; }
[data-panel].on { display: block; }


/* --------------------------------------------------------------------------
   十七、移动端导航抽屉（点击右上角菜单键展开，一行一个，≥44px）
   -------------------------------------------------------------------------- */
.m-nav {
  position: fixed;
  top: 52px;             /* 头部高度 */
  left: 0; right: 0;
  z-index: 101;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--border);
  display: none;
  box-shadow: var(--shadow-md);
}

.m-nav.on { display: block; }

.m-nav a {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  padding: 0 var(--page-pad);
  font-size: var(--fs-card);
  color: var(--black);
  border-bottom: 1px solid var(--border);
  transition: color .2s ease, background-color .2s ease, padding-left .2s ease;
}

.m-nav li:last-child a { border-bottom: 0; }
.m-nav a:active { color: var(--red); background-color: var(--red-light); }
.m-nav a[aria-current="page"] { color: var(--red); font-weight: 600; background-color: var(--red-soft); }

/* 遮罩：点击空白处关闭导航 */
.nav-mask {
  position: fixed;
  top: 52px; left: 0; right: 0; bottom: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, .4);
  display: none;
}

.nav-mask.on { display: block; }

/* --------------------------------------------------------------------------
   十八、可访问性与细节收口
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 3px solid rgba(217, 39, 46, .28);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (hover: hover) {
  .btn--primary:hover { background-color: var(--red-dark); box-shadow: 0 8px 20px rgba(217, 39, 46, .22); }
  .btn--outline:hover { background-color: var(--red-light); }
  .biz:hover { border-color: rgba(217, 39, 46, .24); box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .news-list a:hover h3 { color: var(--red); }
  .m-nav a:hover { color: var(--red); background-color: var(--red-soft); padding-left: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* --------------------------------------------------------------------------
   十九、复制成功 toast（配合 js/mobile.js 的 data-copy 一键复制）
   -------------------------------------------------------------------------- */
.copy-toast {
  position: fixed;
  left: 50%;
  bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(12px);
  z-index: 200;
  max-width: 80%;
  padding: 10px 18px;
  font-size: var(--fs-body);
  line-height: 1.5;
  color: #FFFFFF;
  background-color: rgba(23, 26, 31, .88);
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.copy-toast.on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== 移动: index.html ===== */
.why-panel {
  background-color: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 16px;
  box-shadow: var(--shadow-sm);
}
.why-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.why-row:last-child { border-bottom: 0; }
.why-row .num {
  flex: none;
  width: 40px;
  font-family: Roboto, "DIN Alternate", sans-serif;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  color: var(--red);
  border-right: 2px solid var(--red-light);
  padding-right: 12px;
}
.why-row h3 { font-size: var(--fs-card); font-weight: 500; line-height: 1.5; color: var(--black); }
.why-row p { font-size: var(--fs-aux); line-height: 1.5; color: var(--gray-light); margin-top: 2px; }

.home-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 8px; cursor: pointer; }
.home-tabs span {
  min-height: 36px; display: inline-flex; align-items: center;
  padding: 0 22px; font-size: var(--fs-body);
  border: 1px solid var(--red); border-radius: 999px; color: var(--red);
  font-weight: 500;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.home-tabs .on { background-color: var(--red); color: #FFFFFF; box-shadow: 0 5px 14px rgba(217, 39, 46, .16); }

.banner .banner-brand {
  font-size: var(--fs-aux); font-weight: normal; letter-spacing: 4px;
  opacity: .9; margin: 0; text-shadow: none;
}
.banner .banner-title {
  font-size: 28px; font-weight: bold; line-height: 1.3; color: #FFFFFF;
  margin-top: 8px; text-shadow: 0 2px 12px rgba(77, 0, 5, .18);
}
.banner .banner-sub { font-size: 14px; line-height: 1.8; margin-top: 10px; opacity: .92; }
.banner-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.banner-tags span {
  font-size: 12px; line-height: 26px; padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .55); border-radius: 999px; color: #FFFFFF;
}
.banner-steps {
  display: flex; justify-content: space-between; gap: 6px;
  margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .25);
}
.banner-steps .stp { flex: 1; min-width: 0; }
.banner-steps .num {
  display: block; font-family: Roboto, "DIN Alternate", sans-serif;
  font-size: 16px; font-weight: bold; line-height: 1.2; color: #FFD9A0;
}
.banner-steps .lbl { display: block; font-size: 12px; line-height: 1.4; color: rgba(255, 255, 255, .9); margin-top: 4px; }

/* ===== 移动: list_contact.html ===== */
.city-list { display: flex; flex-direction: column; gap: var(--card-gap); }

.city-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 5px;
  border-bottom: 1px solid var(--border);
}
.city-head h3 { font-size: var(--fs-article); font-weight: bold; line-height: 1.5; color: var(--black); }

.city-pin {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background-color: var(--bg-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.city-pin svg { width: 20px; height: 20px; display: block; }

.city-rows .row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 7px 0;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--gray);
}
.city-rows .ico { flex: none; width: 12px; height: 12px; margin-top: 6px; color: var(--red); }
.city-rows .ico svg { display: block; width: 100%; height: 100%; }

.city-rows a.row { padding: 0; min-height: var(--tap); align-items: center; }
.city-rows a.row .ico { margin-top: 0; }
.tel-num { color: var(--red); font-weight: bold; font-family: Roboto, "DIN Alternate", sans-serif; }

/* ===== 移动: list_cwzs.html ===== */
.list-section { padding-top: 24px; padding-bottom: 32px; }

/* ===== 移动: list_cwzslist.html ===== */
.kb-body { padding: 4px var(--page-pad) 32px; }

/* ===== 移动: list_news.html ===== */
.news-body { padding-top: 8px; }

.pager { padding-bottom: 40px; }

/* ===== 移动: list_newslist.html ===== */
.news-wrap { padding-top: 8px; }

.pager { padding-bottom: 40px; }

/* ===== 移动: list_yewu.html ===== */
.scope-block + .scope-block {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.scope-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

.scope-head .biz-icon { width: 40px; height: 40px; margin: 0; flex: none; }
.scope-head .biz-icon svg { width: 20px; height: 20px; }

.scope-head h2 {
  font-size: var(--fs-section);
  font-weight: bold;
  line-height: 1.3;
  color: var(--black);
}

.scope-items p {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 12px;
}
.scope-items p:last-child { margin-bottom: 0; }

.scope-items strong { font-size: var(--fs-card); font-weight: 500; color: var(--red); }

/* ===== 移动: msg_about.html ===== */
.about-intro p { font-size: var(--fs-body); line-height: 1.7; color: var(--gray); }
.about-intro p + p { margin-top: 12px; }
.about-intro .em { color: var(--red); }
.about-intro img { display: block; max-width: 100%; height: auto; border-radius: var(--radius); margin-top: 16px; }

.data-band { display: flex; flex-wrap: wrap; }
.data-band .data {
  width: 50%;
  text-align: center;
  padding: 20px var(--card-gap);
  border-bottom: 1px solid var(--border);
}
.data-band .data:nth-child(odd) { border-right: 1px solid var(--border); }
.data-band .data:nth-last-child(-n+2) { border-bottom: 0; }
.data-band .num {
  font-family: Roboto, "DIN Alternate", sans-serif;
  font-size: var(--fs-banner);
  font-weight: bold;
  line-height: 1.3;
  color: var(--red);
}
.data-band .label { font-size: var(--fs-aux); line-height: 1.5; color: var(--gray-light); margin-top: 4px; }

.promise-list li { display: flex; align-items: flex-start; gap: 12px; min-height: var(--tap); padding: 12px 0; border-bottom: 1px solid var(--border); }
.promise-list li:last-child { border-bottom: 0; }
.promise-list .check {
  flex: none; width: 28px; height: 28px; border-radius: 50%;
  background-color: var(--red-light); color: var(--red);
  display: flex; align-items: center; justify-content: center;
}
.promise-list .check svg { width: 16px; height: 16px; }
.promise-list h3 { font-size: var(--fs-card); font-weight: 500; line-height: 1.5; color: var(--black); }
.promise-list p { font-size: var(--fs-aux); line-height: 1.5; color: var(--gray-light); margin-top: 2px; }

/* ===== 移动: msg_cwzs.html ===== */
.article-top {
  background: linear-gradient(180deg, var(--red-light) 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
  padding: 14px var(--page-pad) 12px;
}
.article-top .brand { font-size: var(--fs-banner); font-weight: bold; line-height: 1.3; color: var(--black); border-left: 4px solid var(--red); padding-left: 12px; }
.article-top .slogan { font-size: var(--fs-aux); line-height: 1.5; color: var(--red); margin-top: 2px; padding-left: 16px; }

.article-head { padding-top: 24px; }
.article-title { font-size: var(--fs-section); font-weight: bold; line-height: 1.3; color: var(--black); }
.article-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 12px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-aux); line-height: 1.5; color: var(--gray-light);
}
.article-meta i { font-style: normal; font-family: Roboto, "DIN Alternate", sans-serif; }

.article-body { margin-top: 20px; font-size: var(--fs-article); line-height: 1.9; color: var(--gray); }
.article-body p { margin-bottom: 16px; }
.article-body a { color: var(--red); text-decoration: underline; }
.article-body img { max-width: 100%; height: auto; }

.article-body h2, .article-body h3 { font-size: var(--fs-card); font-weight: bold; line-height: 1.4; color: var(--black); margin: 28px 0 12px; }

.article-body .em { color: var(--red); font-weight: 500; }

.table-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-body); line-height: 1.5; text-align: center;
}
.article-body th, .article-body td { padding: 10px 12px; border: 1px solid var(--border); }
.article-body thead th { background-color: var(--bg-gray); color: var(--black); font-weight: 500; }
.article-body tbody tr:nth-child(even) td { background-color: #F7F7F7; }

/* ===== 移动: zhaopin.html ===== */
.job-list {
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
}

.job-card { padding: 20px 16px; }

.job-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.job-head h2 {
  flex: 1;
  min-width: 0;
  font-size: var(--fs-card);
  font-weight: bold;
  line-height: 1.45;
  color: var(--black);
}

.job-salary {
  flex: none;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: var(--red-soft);
  color: var(--red);
  font-size: var(--fs-aux);
  font-weight: 600;
  line-height: 1.5;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.job-meta li {
  padding: 4px 9px;
  border-radius: 6px;
  background-color: var(--bg-gray);
  color: var(--gray);
  font-size: var(--fs-aux);
  line-height: 1.5;
}

.job-content {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.job-content h3 {
  margin-bottom: 8px;
  font-size: var(--fs-body);
  font-weight: 600;
  line-height: 1.5;
  color: var(--black);
}

.job-desc {
  color: var(--gray);
  font-size: var(--fs-body);
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.job-desc p + p { margin-top: 8px; }

.job-contact {
  margin-top: var(--card-gap);
  padding: 20px 16px;
  text-align: center;
}

.job-contact h2 {
  font-size: var(--fs-card);
  font-weight: bold;
  color: var(--black);
}

.job-contact p {
  margin-top: 8px;
  color: var(--gray);
  font-size: var(--fs-body);
  line-height: 1.7;
}

.job-contact a { color: var(--red); }

.job-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  margin-top: 12px;
  padding: 0 18px;
  border: 1px solid var(--red);
  border-radius: 999px;
  font-weight: 600;
}

.like-sec { padding: 24px var(--page-pad) 40px; }

.promo-box {
  background-color: var(--red-light); border-left: 4px solid var(--red);
  border-radius: var(--radius); padding: 16px 18px;
  font-size: var(--fs-body); line-height: 1.8; color: var(--gray);
  margin: 28px 0 0;
}
.promo-box strong { color: var(--red); font-weight: 500; }
.promo-box a { color: var(--red); font-weight: bold; text-decoration: none; }

/* ===== 移动: msg_news.html ===== */
.article-top {
  background: linear-gradient(180deg, var(--red-light) 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
  padding: 14px var(--page-pad) 12px;
}
.article-top .brand { font-size: var(--fs-banner); font-weight: bold; line-height: 1.3; color: var(--black); border-left: 4px solid var(--red); padding-left: 12px; }
.article-top .slogan { font-size: var(--fs-aux); line-height: 1.5; color: var(--red); margin-top: 2px; padding-left: 16px; }

.article-head { padding-top: 24px; }
.article-title { font-size: var(--fs-section); font-weight: bold; line-height: 1.3; color: var(--black); }
.article-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 12px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-aux); line-height: 1.5; color: var(--gray-light);
}
.article-meta i { font-style: normal; font-family: Roboto, "DIN Alternate", sans-serif; }

.article-body { margin-top: 20px; font-size: var(--fs-article); line-height: 1.9; color: var(--gray); }
.article-body p { margin-bottom: 16px; }
.article-body a { color: var(--red); text-decoration: underline; }
.article-body img { max-width: 100%; height: auto; }

.article-body h2, .article-body h3 { font-size: var(--fs-card); font-weight: bold; line-height: 1.4; color: var(--black); margin: 28px 0 12px; }

.article-body .em { color: var(--red); font-weight: 500; }

.table-scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border); border-radius: var(--radius);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-body); line-height: 1.5; text-align: center;
}
.article-body th, .article-body td { padding: 10px 12px; border: 1px solid var(--border); }
.article-body thead th { background-color: var(--bg-gray); color: var(--black); font-weight: 500; }
.article-body tbody tr:nth-child(even) td { background-color: #F7F7F7; }

.like-sec { padding: 24px var(--page-pad) 40px; }

.promo-box {
  background-color: var(--red-light); border-left: 4px solid var(--red);
  border-radius: var(--radius); padding: 16px 18px;
  font-size: var(--fs-body); line-height: 1.8; color: var(--gray);
  margin: 28px 0 0;
}
.promo-box strong { color: var(--red); font-weight: 500; }
.promo-box a { color: var(--red); font-weight: bold; text-decoration: none; }

/* ===== 移动: sitemap.html ===== */
.smap-group { margin-bottom: 18px; }
.smap-group strong { display: block; font-size: var(--fs-article); font-weight: bold; color: var(--black); margin-bottom: 8px; }
.smap-group a { display: inline-block; font-size: var(--fs-body); color: var(--gray); line-height: 2; margin-right: 18px; }
.smap-group a:hover { color: var(--red); }
