/* 浩源永亨官网样式 v7：多页结构 + 科技感视觉 + 页面过渡/滚动动画 */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body { overflow-x: hidden; }

:root {
  --primary: #1a4f8b;
  --primary-dark: #123a68;
  --accent: #2f7bb8;
  --text: #333;
  --text-light: #666;
  --bg-light: #f5f7fa;
  --border: #e5e8ec;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---------- 页头（多页共用） ---------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
  position: relative;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 55%, rgba(47, 123, 184, 0) 100%);
  opacity: .55;
}

.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: block; line-height: 0; }
.logo img { height: 36px; width: auto; }

.nav a {
  color: var(--text);
  font-size: 16px;
  text-decoration: none;
  margin-left: 24px;
  padding-bottom: 4px;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width .25s ease;
}
.nav a:hover { color: var(--primary); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--primary); }

/* ---------- 首页 hero（背景图 + 渐变遮罩 + 科技网格） ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(18, 58, 104, .62), rgba(18, 58, 104, .78)),
    url("../images/hero-home.jpg") center / cover no-repeat;
  color: #fff;
  padding: 110px 0;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.hero .container { position: relative; }

.hero h1 { font-size: 34px; margin-bottom: 14px; text-wrap: balance; }
.hero h1 .hero-l1, .hero h1 .hero-l2, .hero h1 .hero-l3 { display: block; }
.tagline { font-size: 19px; opacity: .95; text-wrap: balance; }
.notice { margin-top: 22px; font-size: 15px; opacity: .82; }

.hero-actions { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- 子页面标题横幅 ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 48px 0;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.page-hero .container { position: relative; }

.page-hero h1 { font-size: 28px; margin-bottom: 8px; }
.page-hero p { font-size: 15px; opacity: .85; }

/* ---------- 业务板块锚点导航 ---------- */
.board-nav { background: #fff; border-bottom: 1px solid var(--border); }
.board-nav-inner { display: flex; flex-wrap: wrap; gap: 8px; padding: 14px 20px; }
.board-nav a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  transition: all .2s;
}
.board-nav a:hover { color: #fff; background: var(--primary); border-color: var(--primary); }

/* ---------- 通用区块 ---------- */
.section { padding: 56px 0; scroll-margin-top: 6px; }
.section-alt { background: var(--bg-light); }
.section h3, .article-heading { font-size: 22px; margin-bottom: 16px; color: var(--primary); }
.section h3::before, .article-heading::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 20px;
  margin-right: 10px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  vertical-align: -3px;
}
.lead { font-size: 16px; margin-bottom: 14px; }
.sub-title { font-size: 17px; margin: 22px 0 10px; color: var(--text); }

.section p + p { margin-top: 10px; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-block;
  margin-top: 8px;
  padding: 9px 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(26, 79, 139, .25);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(26, 79, 139, .35); }

.btn-light { background: #fff; color: var(--primary); }
.btn-light:hover { background: #e8eef6; }

.btn-outline { background: transparent; border: 1px solid #fff; color: #fff; box-shadow: none; }
.btn-outline:hover { background: rgba(255, 255, 255, .15); }

/* ---------- 简介要点 ---------- */
.brief-points { margin: 14px 0 20px; padding-left: 22px; }
.brief-points li { margin-bottom: 8px; }

/* ---------- 业务卡片（图文） ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}

.card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: 0 8px 22px rgba(26, 79, 139, .14); transform: translateY(-4px); }
.card-img { width: 100%; height: 160px; object-fit: cover; display: block; transition: transform .5s ease; }
.card:hover .card-img { transform: scale(1.05); }
.card h4 { font-size: 17px; color: var(--primary); padding: 16px 22px 0; }
.card p { font-size: 14.5px; color: var(--text-light); padding: 6px 22px 20px; }

/* ---------- 业务板块图文布局（services 页） ---------- */
.board {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px;
  align-items: start;
  scroll-margin-top: 8px;
}

.board-img { width: 100%; border-radius: 6px; display: block; }

/* ---------- 数据亮点 ---------- */
.stats {
  background: linear-gradient(135deg, #16304f, var(--primary-dark));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat { padding: 10px 0; }
.stat-num { display: block; font-size: 34px; font-weight: 700; color: #fff; }
.stat-label { font-size: 14px; color: rgba(255, 255, 255, .78); }

/* ---------- 代表业绩 ---------- */
.project-list { margin: 6px 0 18px; padding-left: 22px; }
.project-list li { margin-bottom: 10px; font-size: 15px; }

/* ---------- CTA 区块 ---------- */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-align: center;
}
.cta h3 { color: #fff; }
.cta p { font-size: 15.5px; opacity: .9; }
.cta-actions { margin-top: 22px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- 联系我们 ---------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 24px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.contact-card:hover { box-shadow: 0 6px 16px rgba(26, 79, 139, .12); transform: translateY(-2px); }
.contact-card h4 { font-size: 15px; color: var(--primary); margin-bottom: 8px; }
.contact-card p { font-size: 14.5px; color: var(--text-light); }
.contact-card p a { color: var(--text-light); text-decoration: none; }
.contact-card p a:hover { color: var(--primary); }
.contact-card .ci { display: inline-block; width: 30px; height: 30px; color: var(--primary); margin-bottom: 6px; }
.contact-cards-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 768px) {
  .contact-cards-2 { grid-template-columns: 1fr; }
}

/* ---------- 经营资质 ---------- */
.qual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 8px 0 20px;
}

.qual-item {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.qual-item strong { font-size: 15.5px; }
.qual-item span {
  flex-shrink: 0;
  background: var(--primary);
  color: #fff;
  font-size: 13.5px;
  border-radius: 3px;
  padding: 3px 10px;
}
.qual-item-wide { grid-column: 1 / -1; }

/* ---------- 业绩表格 ---------- */
.table-wrap { overflow-x: auto; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14.5px;
  min-width: 560px;
}

.data-table th, .data-table td {
  border: 1px solid var(--border);
  padding: 9px 12px;
  text-align: left;
}

.data-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}

.data-table td:first-child { width: 52px; text-align: center; color: var(--text-light); }
.data-table tbody tr:nth-child(even) { background: #fafbfc; }
.data-table tbody tr:hover { background: #f0f4f9; }

/* ---------- 客户标签 ---------- */
.tag-list { margin: 10px 0 18px; }
.tag {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 5px 14px;
  margin: 0 8px 8px 0;
  font-size: 14px;
  color: var(--text);
  transition: all .2s;
}
.tag:hover { border-color: var(--primary); color: var(--primary); }

/* ---------- 服务流程 ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 14px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.step:hover { box-shadow: 0 6px 16px rgba(26, 79, 139, .12); transform: translateY(-3px); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step h4 { font-size: 15px; color: var(--primary); margin-bottom: 4px; }
.step p { font-size: 13.5px; color: var(--text-light); }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--primary-dark); color: #fff; padding: 24px 0; text-align: center; font-size: 14px; }
.site-footer p + p { margin-top: 4px; opacity: .8; }

/* ---------- 浮动联系按钮（全站） ---------- */
/* 双浮动按钮容器：整体固定视窗底部（子元素静态排布，任意缩放不重叠） */
.float-actions {
  position: fixed; right: 24px; bottom: 24px; z-index: 100;
  display: flex; align-items: center; gap: 14px;
}
.float-contact {
  background: #e33d2e;
  color: #fff;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  transition: background .2s, transform .2s;
}
.float-contact:hover { background: #c93325; transform: translateY(-2px); }

/* ---------- 页面过渡与滚动动画（仅 JS 可用时生效） ---------- */
html.js body { transition: opacity .24s ease; }
html.js body.page-leaving { opacity: 0; }
html.js body.page-enter { animation: pageIn .45s ease both; }

@keyframes pageIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

html.js .anim > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
html.js .anim.in-view > * { opacity: 1; transform: none; }
html.js .anim.in-view > :nth-child(1) { transition-delay: .04s; }
html.js .anim.in-view > :nth-child(2) { transition-delay: .10s; }
html.js .anim.in-view > :nth-child(3) { transition-delay: .16s; }
html.js .anim.in-view > :nth-child(4) { transition-delay: .22s; }
html.js .anim.in-view > :nth-child(5) { transition-delay: .28s; }
html.js .anim.in-view > :nth-child(6) { transition-delay: .34s; }
html.js .anim.in-view > :nth-child(7) { transition-delay: .40s; }
html.js .anim.in-view > :nth-child(8) { transition-delay: .46s; }

/* 用户偏好减弱动效时全部关闭 */
@media (prefers-reduced-motion: reduce) {
  html.js body, html.js .anim > *, html.js .anim.in-view > * {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}

/* ---------- 移动端适配 ---------- */
@media (max-width: 768px) {
  .site-header .container { flex-wrap: wrap; gap: 8px; }
  .logo img { height: 30px; }
  .logo { width: 100%; }
  .nav {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    display: flex;
    gap: 20px;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { margin-left: 0; font-size: 14.5px; white-space: nowrap; }
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 22px; }
  .page-hero { padding: 36px 0; }
  .section { padding: 40px 0; }
  .cards, .contact-cards, .stats-grid, .qual-grid, .process { grid-template-columns: 1fr; }
  .board { grid-template-columns: 1fr; }
  .card-img { height: 130px; }
  .float-contact { padding: 11px 16px; font-size: 14px; }
}

/* ============================================================================
   v8：服务业绩改版（信任条 / 案例卡片 / 客户墙 / 栏目卡片 / 导航适配）
   ============================================================================ */

/* 首页信任徽章条（资质与能力数字，可作 stats 区块补充） */
.trust-strip { background: var(--primary-dark); color: #fff; padding: 16px 0; }
.trust-strip-inner { display: flex; flex-wrap: wrap; gap: 8px 32px; justify-content: center; align-items: center; }
.trust-item { font-size: 15px; opacity: .96; letter-spacing: .5px; }
.trust-item b { font-weight: 700; margin-right: 4px; }

/* 案例卡片（痛点→方案→成果结构，服务业绩页与首页共用） */
.case-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 8px; }
.case-cards .case-wide { grid-column: 1 / -1; }
.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 22px 18px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(26, 79, 139, .12); border-color: var(--accent); }
.case-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.case-head h4 { font-size: 17px; color: var(--primary); line-height: 1.45; }
.case-badge {
  flex: 0 0 auto; font-size: 12px; color: #fff; background: var(--accent);
  border-radius: 999px; padding: 2px 10px; white-space: nowrap;
}
.case-client { font-size: 13px; color: var(--text-light); margin-bottom: 8px; }
.case-row { font-size: 14px; margin-top: 6px; line-height: 1.65; }
.case-row b { color: var(--primary-dark); }

/* 客户墙（文本标签形式，LOGO 素材到位后升级为 LOGO 墙） */
.client-wall { margin-top: 8px; }

/* 栏目入口卡片（资讯 / 招聘 / 知识连载） */
.column-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 8px; }
.column-card {
  display: block; background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; text-decoration: none; color: var(--text);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.column-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(26, 79, 139, .12); border-color: var(--accent); }
.column-card h4 { font-size: 17px; color: var(--primary); margin-bottom: 8px; }
.column-card p { font-size: 14px; color: var(--text-light); }
.column-card .soon {
  display: inline-block; margin-top: 12px; font-size: 12.5px; color: var(--accent);
  border: 1px solid var(--accent); border-radius: 999px; padding: 2px 12px;
}

/* 资讯/知识连载文章列表占位 */
.article-list { margin-top: 16px; }
.article-item {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 14px 4px; border-bottom: 1px dashed var(--border); font-size: 15px;
}
.article-item:last-child { border-bottom: none; }
.article-item .date { flex: 0 0 auto; font-size: 13px; color: var(--text-light); }

@media (max-width: 768px) {
  .case-cards, .column-cards { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 6px 18px; }
  .trust-item { font-size: 13.5px; }
}

/* ---------- 内容文章页（Markdown 构建产物） ---------- */
.breadcrumb { font-size: 13px; color: var(--text-light); margin-bottom: 14px; }
.breadcrumb a { color: var(--accent); text-decoration: none; }
.article-body { font-size: 15.5px; }
.article-body p { margin: 0 0 14px; }
.article-body img { max-width: 100%; height: auto; border-radius: 8px; margin: 8px 0; display: block; }
.article-body h2 { margin: 18px 0 8px; font-size: 16px; }
.article-body h3 { margin: 16px 0 6px; font-size: 15.5px; color: var(--text); }
.article-body h3::before { content: none; }
.article-body h4 { color: var(--primary); margin: 22px 0 10px; font-size: 17px; }
.article-body h5 { margin: 18px 0 8px; font-size: 16px; }
.article-body ul { margin: 8px 0 16px; padding-left: 22px; }
.article-body li { margin-bottom: 6px; }
.article-body blockquote {
  border-left: 3px solid var(--accent); padding: 4px 14px; margin: 12px 0;
  color: var(--text-light); background: var(--bg-light); border-radius: 0 6px 6px 0;
}
.article-body pre { background: #0f2740; color: #d7e4f5; padding: 14px 16px; border-radius: 8px; overflow-x: auto; font-size: 13.5px; margin: 12px 0; }
.article-body code { background: #eef2f7; padding: 1px 6px; border-radius: 4px; font-size: .92em; color: #1a4f8b; }
.article-body pre code { background: none; color: inherit; padding: 0; }
.article-body hr { border: none; border-top: 1px dashed var(--border); margin: 18px 0; }
.article-title { color: var(--text); text-decoration: none; }
.article-title:hover { color: var(--primary); }
.video-wrap { position: relative; padding-top: 56.25%; margin: 16px 0; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 8px; }
.series-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; padding-top: 14px; border-top: 1px dashed var(--border); font-size: 14px; }
.series-nav a { color: var(--accent); text-decoration: none; }

/* ---------- 资质证书墙（关于我们） ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 12px; }
.cert-card {
  display: block; background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 10px 10px 12px; text-decoration: none; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(26, 79, 139, .12); border-color: var(--accent); }
.cert-card img { width: 100%; height: 190px; object-fit: contain; border-radius: 6px; display: block; }
.cert-card span { display: block; margin-top: 10px; font-size: 14px; color: var(--primary); font-weight: 600; }
@media (max-width: 768px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-card img { height: 130px; }
}

/* ---------- 发展历程时间线（圆点与引导线严格对中） ---------- */
.timeline { position: relative; margin-top: 8px; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 10px; bottom: 14px; width: 4px; background: var(--accent); }
.tl-item { position: relative; padding: 0 0 24px 24px; }
.tl-item:last-child { padding-bottom: 4px; }
.tl-item::before { content: ""; position: absolute; left: -28px; top: 7px; width: 10px; height: 10px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(26, 79, 139, .12); }
.tl-period { display: inline-block; background: var(--primary); color: #fff; font-size: 12.5px; border-radius: 999px; padding: 2px 12px; margin-bottom: 8px; }
.tl-item h4 { font-size: 17px; color: var(--primary); margin-bottom: 4px; }
.tl-item p { font-size: 14.5px; color: var(--text-light); }

/* ---------- 客户 LOGO 墙 ---------- */
.logo-wall {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 8px;
}
.logo-cell {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  height: 76px; padding: 10px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.logo-cell:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(26, 79, 139, .10); border-color: var(--accent); }
.logo-cell img { max-width: 88%; max-height: 48px; width: auto; height: auto; object-fit: contain; }
.logo-note { font-size: 12.5px; color: #7a8699; margin-top: 14px; }
@media (max-width: 768px) {
  .logo-wall { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .logo-cell { height: 64px; padding: 8px; }
  .logo-cell img { max-height: 36px; }
}

/* ---------- 沟通渠道（二维码卡片） ---------- */
.qr-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.qr-card {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 14px 16px; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.qr-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(26, 79, 139, .12); }
.qr-card img { width: 168px; height: 168px; object-fit: contain; display: block; margin: 0 auto 10px; }
.qr-card p { font-size: 14px; color: var(--primary); font-weight: 600; line-height: 1.5; }

/* ---------- 留言表单 ---------- */
.contact-form-panel {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 22px 24px; margin-top: 26px;
}
.contact-form-panel h4 { font-size: 17px; color: var(--primary); margin-bottom: 12px; }
.contact-form-panel label { display: block; font-size: 13.5px; color: var(--text-light); margin: 12px 0 4px; }
.contact-form-panel input, .contact-form-panel textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 8px;
  padding: 9px 12px; font-size: 14.5px; font-family: inherit; color: var(--text);
  background: #fafbfd; transition: border-color .2s, background .2s;
}
.contact-form-panel input:focus, .contact-form-panel textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
}
.contact-form-panel textarea { min-height: 96px; resize: vertical; }
.contact-form-panel .hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.contact-form-panel button {
  margin-top: 14px; border: 0; cursor: pointer; border-radius: 8px;
  background: var(--primary); color: #fff; font-size: 15px; padding: 10px 28px;
  transition: background .2s;
}
.contact-form-panel button:hover { background: var(--primary-dark); }
.contact-form-panel button:disabled { opacity: .6; cursor: not-allowed; }
.form-msg { margin-top: 10px; font-size: 13.5px; }
.form-msg.ok { color: #0a8f4d; }
.form-msg.err { color: #b00020; }

/* ---------- 企业微信客服悬浮按钮（与应急抢修同高同款胶囊，图标文字同行） ---------- */
.kf-float {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  background: #fff; border: 1px solid #e5f2ea;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  text-decoration: none; transition: background .2s, transform .2s;
}
.kf-float:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(7, 180, 96, .28); }
.kf-float-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: #07c160;
}
.kf-float-icon svg { width: 16px; height: 16px; }
.kf-float-text { font-size: 15px; color: #0a8f4d; }
@media (max-width: 768px) {
  .float-actions { right: 14px; bottom: 14px; gap: 10px; }
  .kf-float { padding: 11px 16px; font-size: 14px; }
  .qr-cards { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .qr-card { padding: 12px 6px 10px; }
  .qr-card img { width: 86px; height: 86px; }
  .qr-card p { font-size: 12.5px; }
}

/* 页脚链接与地址文字同色（不体现访问状态，hover 不变色） */
.site-footer a { color: inherit; text-decoration: none; opacity: .92; }
.site-footer a:hover { color: inherit; text-decoration: none; }

/* ---------- 文章尾部：行业内参入口（低调小条） ---------- */
.intel-entry {
  display: flex; align-items: center; gap: 14px;
  margin-top: 26px; padding: 8px 14px;
  border: 1px solid var(--border); border-radius: 8px;
  background: #f7f9fc;
}
.intel-entry-main { flex: 1; display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: var(--text); }
.intel-entry-main a { color: var(--accent); text-decoration: none; font-size: 13.5px; }
.intel-entry-main a:hover { text-decoration: underline; }
.intel-entry-qr { flex: 0 0 auto; line-height: 0; }
.intel-entry-qr img { width: 44px; height: 44px; border-radius: 4px; display: block; }

/* ---------- 电价公告：结构化电价表（Markdown 管道表格产物） ---------- */
.table-wrap {
  margin: 18px 0; overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border); border-radius: 8px; background: #fff;
}
.price-table {
  border-collapse: collapse; width: 100%; min-width: 680px;
  font-size: 13px; font-variant-numeric: tabular-nums;
}
.price-table th, .price-table td {
  padding: 8px 10px; border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border); white-space: nowrap; vertical-align: top;
}
.price-table th:last-child, .price-table td:last-child { border-right: none; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table thead th {
  background: var(--bg-light); color: var(--primary-dark);
  font-weight: 600; text-align: left;
}
.price-table tbody tr:nth-child(even) { background: #fafbfd; }
.price-table tbody tr:hover { background: #eef4fb; }
.price-table .ta-l { text-align: left; }
.price-table .ta-r { text-align: right; }
.price-table .ta-c { text-align: center; }
@media (max-width: 768px) {
  .price-table { font-size: 12px; }
  .price-table th, .price-table td { padding: 6px 8px; }
}
