/* ==========================================================================
   立华星财务（杭州分公司）官网 —— 全站样式
   品牌色：立华星红 #C92532（公司设计规范，全站统一）
   图片、字体与图标均使用 assets 目录中的本地资源
   ========================================================================== */

:root {
  /* 主红（品牌色） */
  --red: #C92532;
  /* 深红 hover */
  --red-dark: #A91D28;
  /* 浅红底 */
  --red-light: #FFF2F3;
  /* 标题黑 */
  --black: #172033;
  /* 正文灰黑 */
  --gray: #465166;
  /* 辅助灰 */
  --gray-light: #7D8798;
  /* 分隔线（发丝线） */
  --border: #E7EAF0;
  --bg: #FFFFFF;
  --bg-gray: #F6F8FB;
  /* 页脚深色底 */
  --footer-bg: #202733;
  --footer-txt: #B8C0CC;
  --radius: 8px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--gray);
  font: 15px/1.8 -apple-system, "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", Arial, sans-serif;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .2s ease
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%
}

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

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: auto
}

.wrap,
.page-layout>*,
.hero-grid>*,
.footer-main>* {
  min-width: 0
}

/* ---------------- 顶部导航 ---------------- */
.top {
  min-height: 84px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 1px 6px rgba(23, 32, 51, .04)
}

.topin {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 38px;
  flex-wrap: wrap
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto
}

.brand-logo {
  display: block;
  width: 184px;
  height: auto
}

.footer .logo {
  padding: 0
}

.footer .brand-logo {
  width: 184px
}

.top nav {
  display: flex;
  gap: 26px;
  font-weight: 700;
  color: var(--black);
  flex-wrap: wrap
}

.top nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 2px;
  cursor: pointer;
  touch-action: manipulation
}

.top nav a:hover,
.top nav a[aria-current="page"] {
  color: var(--red)
}

.top nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--red)
}

.topphone {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .5px
}

.topphone:hover {
  color: var(--red-dark)
}

.topphone svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
  font-size: 20px;
  line-height: 1;
  padding: 8px 12px;
  color: var(--black);
  cursor: pointer
}

/* ---------------- 首页 Hero ---------------- */
.hero {
  background: linear-gradient(180deg, #FDF3F3 0%, #FFFFFF 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border)
}

.hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0
}

.kicker,
.kicker-red {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 0;
  text-transform: uppercase
}

.hero h1 {
  font-size: 56px;
  line-height: 1.25;
  margin: 16px 0 22px;
  letter-spacing: -1px
}

.hero h1 span {
  color: var(--red)
}

.hero-desc {
  color: var(--gray);
  font-size: 18px;
  margin: 0 0 14px;
  max-width: 640px
}

.hero-points {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 26px
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease
}

.btn-red {
  background: var(--red);
  color: #fff
}

.btn-red:hover {
  background: var(--red-dark);
  color: #fff
}

.btn-ghost {
  border-color: var(--black);
  color: var(--black);
  background: #fff
}

.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red)
}

/* Hero 右侧服务承诺面板：纯 CSS 实现 */
.hero-assurance {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 34px 32px;
  box-shadow: 0 18px 44px rgba(23, 32, 51, .07)
}

.hero-assurance h2 {
  font-size: 24px;
  margin: 10px 0 12px
}

.hero-assurance h2 span {
  color: var(--red)
}

.assurance-desc {
  margin: 0 0 18px;
  font-size: 14px
}

.hero-assurance ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.hero-assurance li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--border)
}

.hero-assurance li i {
  font-style: normal;
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  border: 1px solid var(--red-light);
  background: var(--red-light);
  border-radius: 6px;
  padding: 4px 8px
}

.hero-assurance li span {
  color: var(--black);
  font-weight: 600
}

/* ---------------- 数据带 ---------------- */
.stats {
  border-bottom: 1px solid var(--border)
}

.stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr)
}

.stats .stat {
  padding: 30px 10px;
  text-align: center;
  border-right: 1px solid var(--border)
}

.stats .stat:last-child {
  border-right: 0
}

.stats b {
  display: block;
  color: var(--red);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2
}

.stats b small {
  font-size: 18px;
  font-weight: 800
}

.stats span {
  color: var(--gray-light);
  font-size: 13px;
  letter-spacing: 1px
}

/* ---------------- 通用版块头 ---------------- */
section.block {
  padding: 76px 0
}

.block-head {
  text-align: center;
  margin-bottom: 38px
}

.block-head h2 {
  font-size: 30px;
  margin: 6px 0
}

.block-head>span {
  color: var(--gray-light)
}

.block-head.left {
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.block-head.left h2 {
  margin-bottom: 0
}

.more-link {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap
}

.more-link:hover {
  color: var(--red-dark)
}

/* ---------------- 服务网格 ---------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff
}

.services-grid a {
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
  transition: background .2s ease;
  display: block
}

.services-grid a:hover {
  background: var(--bg-gray)
}

.services-grid a:nth-child(3n) {
  border-right: 0
}

.services-grid a:nth-last-child(-n+3) {
  border-bottom: 0
}

.services-grid i {
  font-style: normal;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px
}

.services-grid h3 {
  font-size: 20px;
  margin: 12px 0 6px;
  display: flex;
  align-items: center;
  gap: 10px
}

.services-grid h3 svg {
  width: 22px;
  height: 22px;
  color: var(--red);
  flex: 0 0 22px
}

.services-grid p {
  color: var(--gray);
  margin: 0;
  font-size: 14px
}

.services-grid .tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 2px 10px
}

/* ---------------- 为什么选择 ---------------- */
.why {
  background: var(--bg-gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff
}

.why-item {
  padding: 30px 26px;
  border-right: 1px solid var(--border)
}

.why-item:last-child {
  border-right: 0
}

.why-item svg {
  width: 30px;
  height: 30px;
  color: var(--red)
}

.why-item h3 {
  font-size: 17px;
  margin: 14px 0 6px
}

.why-item p {
  margin: 0;
  font-size: 13.5px;
  color: var(--gray)
}

/* ---------------- 文章列表（知识/新闻） ---------------- */
.article-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border)
}

.article-list li {
  border-bottom: 1px solid var(--border)
}

.article-list a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 16px 4px;
  transition: background .15s ease
}

.article-list a:hover {
  background: var(--bg-gray)
}

.article-list time {
  color: var(--gray-light);
  font-size: 13px;
  flex: 0 0 92px;
  font-variant-numeric: tabular-nums
}

.article-list h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: var(--black);
  flex: 1
}

.article-list a:hover h3 {
  color: var(--red)
}

.article-list .arrow {
  color: var(--gray-light);
  flex: 0 0 auto
}

/* ---------------- 创业知识栏目页 ---------------- */
.knowledge-category-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  padding: 58px 0 70px
}

.knowledge-category-side {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  position: sticky;
  top: 108px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px
}

.knowledge-category-side h2 {
  font-size: 17px;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border)
}

.knowledge-category-side nav {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.knowledge-category-side a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 11px;
  border-radius: 6px;
  color: var(--gray);
  font-size: 14px
}

.knowledge-category-side a:hover {
  background: var(--red-light);
  color: var(--red)
}

.knowledge-category-side a[aria-current="page"] {
  background: var(--red);
  color: #fff;
  font-weight: 700
}

.knowledge-category-qr {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center
}

.knowledge-category-qr h3 {
  margin: 0 0 7px;
  color: var(--black);
  font-size: 16px
}

.knowledge-category-qr p {
  margin: 0 auto 14px;
  color: var(--gray-light);
  font-size: 12px;
  line-height: 1.65
}

.knowledge-category-qr img {
  display: block;
  width: 176px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 11px;
  padding: 7px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff
}

.knowledge-category-qr strong,
.knowledge-category-qr span {
  display: block
}

.knowledge-category-qr strong {
  color: var(--red);
  font-size: 14px
}

.knowledge-category-qr span {
  margin-top: 3px;
  color: var(--gray-light);
  font-size: 12px
}

.knowledge-category-main {
  grid-column: 1;
  grid-row: 1;
  min-width: 0
}

.knowledge-category-main>header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 4px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--black)
}

.knowledge-category-main>header h2 {
  font-size: 24px;
  margin: 0
}

.knowledge-category-main>header span {
  color: var(--gray-light);
  font-size: 13px
}

.knowledge-row {
  padding: 22px 2px;
  border-bottom: 1px solid var(--border)
}

.knowledge-row-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--gray-light);
  font-size: 12px;
  margin: 0 0 5px
}

.knowledge-row-meta span {
  color: var(--red)
}

.knowledge-row h3 {
  font-size: 18px;
  margin: 0 0 7px
}

.knowledge-row h3 a:hover {
  color: var(--red)
}

.knowledge-row .summary {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.75
}

.knowledge-overview-section {
  margin-top: 36px
}

.knowledge-overview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 2px 12px;
  border-bottom: 1px solid var(--border)
}

.knowledge-overview-head>div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0
}

.knowledge-overview-head span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em
}

.knowledge-overview-head h3 {
  margin: 0;
  color: var(--black);
  font-size: 20px
}

.knowledge-overview-head>a {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 13px;
  font-weight: 700
}

.knowledge-overview-head>a:hover {
  text-decoration: underline
}

/* ---------------- FAQ 手风琴（创业咨询） ---------------- */
.faq {
  border-top: 1px solid var(--border)
}

.faq details {
  border-bottom: 1px solid var(--border)
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 4px;
  font-weight: 700;
  color: var(--black);
  font-size: 16px
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary .q-badge {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  border: 1px solid var(--red-light);
  background: var(--red-light);
  border-radius: 6px;
  padding: 3px 8px
}

.faq summary .chev {
  margin-left: auto;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--gray-light);
  transition: transform .25s ease
}

.faq details[open] summary .chev {
  transform: rotate(180deg);
  color: var(--red)
}

.faq details[open] summary {
  color: var(--red)
}

.faq .faq-a {
  padding: 0 4px 20px 62px;
  margin: 0;
  font-size: 14.5px;
  color: var(--gray)
}

.faq .faq-a b {
  color: var(--black)
}

/* ---------------- CTA 带 ---------------- */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff
}

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 44px 0;
  flex-wrap: wrap
}

.cta-band h2 {
  color: #fff;
  font-size: 26px;
  margin: 0 0 6px
}

.cta-band p {
  margin: 0;
  color: #FFD9DC;
  font-size: 14px
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--red);
  font-weight: 800;
  font-size: 22px;
  padding: 14px 28px;
  border-radius: var(--radius);
  letter-spacing: .5px
}

.cta-phone svg {
  width: 22px;
  height: 22px
}

.cta-phone:hover {
  color: var(--red-dark)
}

/* ---------------- 页脚 ---------------- */
.footer {
  position: relative;
  background: var(--footer-bg);
  color: var(--footer-txt);
  font-size: 13.5px
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr 1.55fr;
  gap: 36px;
  padding: 56px 0 40px
}

.footer h4 {
  color: #fff;
  font-size: 15px;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  letter-spacing: 1px
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.footer li {
  margin-bottom: 9px
}

.footer a:hover {
  color: #fff
}

.footer-brand p {
  margin: 12px 0 0;
  line-height: 1.9
}

.footer-contact li {
  display: flex;
  gap: 8px;
  align-items: baseline
}

.footer-contact b {
  color: #fff;
  font-weight: 700;
  flex: 0 0 auto
}

.footer-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 18px;
  align-items: start
}

.footer-qr {
  text-align: center;
  color: #D7DCE5;
  font-size: 11px;
  line-height: 1.45
}

.footer-qr img {
  display: block;
  width: 112px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  margin: 0 auto 7px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18)
}

.footer-qr b {
  display: block;
  color: #fff;
  font-size: 12px;
  letter-spacing: .3px;
  margin-top: 2px
}

.footer-bottom {
  background: rgba(0, 0, 0, .12);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: #9EA8B8
}

.footer-bottom a {
  color: #9EA8B8
}

.footer-bottom a:hover {
  color: #fff
}

/* ---------------- 内页通用 ---------------- */
.page-hero {
  background: linear-gradient(180deg, #FDF3F3 0%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
  padding: 46px 0
}

.breadcrumb {
  font-size: 13px;
  color: var(--gray-light);
  margin-bottom: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.breadcrumb a:hover {
  color: var(--red)
}

.breadcrumb span[aria-current] {
  color: var(--black);
  font-weight: 600
}

.page-hero h1 {
  font-size: 38px;
  margin: 0 0 10px;
  letter-spacing: -.5px
}

.page-hero h1 span {
  color: var(--red)
}

.page-hero .lead {
  max-width: 720px;
  margin: 0;
  font-size: 16px
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: 64px 0
}

.page-layout.full {
  grid-template-columns: 1fr
}

/* 侧边栏 */
.side-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  background: #fff
}

.side-box h3 {
  font-size: 16px;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border)
}

.side-box ul {
  list-style: none;
  margin: 0;
  padding: 0
}

.side-box li {
  margin-bottom: 4px
}

.side-box li a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--gray)
}

.side-box li a:hover {
  background: var(--red-light);
  color: var(--red)
}

.side-box li a[aria-current="page"] {
  background: var(--red);
  color: #fff;
  font-weight: 700
}

.side-qr {
  position: sticky;
  top: 108px;
  overflow: hidden;
  border: 0;
  background: linear-gradient(145deg, #D62E3B 0%, #A91D28 100%);
  color: #fff;
  text-align: center;
  padding: 26px 24px 24px;
  box-shadow: 0 14px 34px rgba(169, 29, 40, .18)
}

.side-qr::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 35px solid rgba(255, 255, 255, .06);
  border-radius: 50%;
  right: -88px;
  top: -86px;
  pointer-events: none
}

.side-qr h3 {
  position: relative;
  color: #fff;
  border: 0;
  margin: 0 0 4px;
  padding: 0;
  font-size: 18px
}

.side-qr p {
  position: relative;
  margin: 0 0 16px;
  color: #FFD9DC;
  font-size: 13px
}

.side-qr img {
  position: relative;
  display: block;
  width: 190px;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  margin: 0 auto 14px;
  box-shadow: 0 8px 22px rgba(54, 0, 5, .2)
}

.side-qr .wechat-id {
  position: relative;
  display: block;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .5px
}

.side-qr .wechat-tip {
  position: relative;
  display: block;
  color: #FFD9DC;
  font-size: 12px;
  margin-top: 2px
}

/* 内页内容排版 */
.prose h2 {
  font-size: 23px;
  margin: 38px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--red)
}

.prose h3 {
  font-size: 18px;
  margin: 28px 0 10px
}

.prose p {
  margin: 0 0 14px
}

.prose ul,
.prose ol {
  margin: 0 0 16px;
  padding-left: 22px
}

.prose li {
  margin-bottom: 8px
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 14px
}

.prose th,
.prose td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left
}

.prose th {
  background: var(--bg-gray);
  color: var(--black);
  font-weight: 700
}

.prose .note {
  background: var(--red-light);
  border: 1px solid #F5D5D8;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--black)
}

.prose img {
  max-width: 100%
}

.prose,
.article-body {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal
}

.article-body p {
  margin: 0 0 18px
}

.article-body .article-subhead {
  margin: 28px 0 10px;
  color: var(--black);
  font-size: 17px
}

.article-body ul,
.article-body ol {
  margin: 0 0 18px;
  padding-left: 22px
}

.article-body li {
  margin-bottom: 8px
}

.article-body .article-tip {
  margin: 20px 0;
  color: var(--gray)
}

/* 流程步骤 */
.steps {
  list-style: none;
  counter-reset: step;
  margin: 20px 0 28px;
  padding: 0
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 22px 58px
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red-light);
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  display: grid;
  place-items: center;
  border: 1px solid #F0C7CB
}

.steps li::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 2px;
  width: 1px;
  background: var(--border)
}

.steps li:last-child::after {
  display: none
}

.steps b {
  display: block;
  color: var(--black);
  font-size: 16px;
  margin-bottom: 2px
}

.steps p {
  margin: 0;
  font-size: 14px
}

/* 文章详情 */
.article-head h1 {
  font-size: 30px;
  line-height: 1.4;
  margin: 0 0 12px
}

.article-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--gray-light);
  font-size: 13px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 26px
}

.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  margin-top: 36px;
  padding-top: 20px;
  font-size: 14px;
  flex-wrap: wrap
}

.article-nav a {
  color: var(--black);
  font-weight: 600;
  max-width: 46%
}

.article-nav a:hover {
  color: var(--red)
}

.article-nav .label {
  display: block;
  color: var(--gray-light);
  font-size: 12px;
  font-weight: 400
}

/* 联系页 */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden
}

.contact-item {
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  background: #fff
}

.contact-item:last-child {
  border-right: 0
}

.contact-item svg {
  width: 26px;
  height: 26px;
  color: var(--red)
}

.contact-item h3 {
  font-size: 16px;
  margin: 14px 0 6px
}

.contact-item p {
  margin: 0;
  font-size: 14px
}

.contact-item .big {
  font-size: 20px;
  font-weight: 800;
  color: var(--red)
}

.contact-qr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px
}

.contact-qr img {
  width: 106px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--border);
  padding: 5px;
  border-radius: 9px;
  box-shadow: 0 7px 20px rgba(23, 32, 51, .08)
}

.contact-qr p {
  line-height: 1.7
}

.contact-qr b {
  display: block;
  color: var(--red);
  font-size: 16px
}

.contact-item>i {
  display: block;
  color: var(--red);
  font-size: 27px;
  line-height: 1
}

.topphone>i {
  font-size: 18px;
  line-height: 1
}

.contact-location {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  margin: 0;
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  border-radius: var(--radius)
}

.contact-location>img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center right
}

.contact-location figcaption {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px
}

.contact-location h2 {
  margin: 5px 0 12px;
  font-size: 22px
}

.contact-location figcaption p {
  margin: 0 0 18px
}

/* CSS 绘制的区位示意（替代地图图片） */
.map-canvas {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-gray);
  padding: 34px;
  position: relative;
  overflow: hidden
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .5
}

.map-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap
}

.map-pin {
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border-radius: 50% 50% 50% 4px;
  background: var(--red);
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(201, 37, 50, .3)
}

.map-pin span {
  transform: rotate(45deg);
  color: #fff;
  font-weight: 800;
  font-size: 15px
}

.map-addr h3 {
  margin: 0 0 6px;
  font-size: 18px
}

.map-addr p {
  margin: 0;
  font-size: 14px
}

/* 表单（静态原型） */

/* 分页 */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 36px
}

.pagination a,
.pagination span {
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--gray);
  padding: 0 10px
}

.pagination a:hover {
  border-color: var(--red);
  color: var(--red)
}

.pagination .cur {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  font-weight: 700
}

/* 标签 */
.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 0
}

.tag-row a {
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  color: var(--gray)
}

.tag-row a:hover {
  border-color: var(--red);
  color: var(--red)
}

/* ---------------- 响应式（平板） ---------------- */
@media (max-width:1024px) {
  .hero h1 {
    font-size: 44px
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .why-item:nth-child(2n) {
    border-right: 0
  }

  .why-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--border)
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .page-layout {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .side-qr {
    display: none
  }

  .knowledge-category-layout {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .knowledge-category-side,
  .knowledge-category-main {
    grid-column: auto;
    grid-row: auto
  }

  .knowledge-category-side {
    position: static
  }

  .knowledge-category-qr {
    display: none
  }

  .knowledge-category-side nav {
    flex-direction: row;
    flex-wrap: wrap
  }

  .knowledge-category-side nav a {
    flex: 1 1 160px
  }
}

@media (max-width:768px) {
  .wrap {
    width: calc(100% - 36px)
  }

  .topin {
    gap: 16px;
    padding: 10px 0
  }

  .top nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 14px
  }

  .top nav.open {
    display: flex
  }

  .top nav a {
    padding: 11px 4px;
    border-top: 1px solid var(--border)
  }

  .top nav a[aria-current="page"]::after {
    display: none
  }

  .nav-toggle {
    display: block
  }

  .topphone {
    margin-left: 0;
    font-size: 16px
  }

  .hero h1 {
    font-size: 34px;
    letter-spacing: 0
  }

  .hero-desc {
    font-size: 16px
  }

  .stats .wrap {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats .stat:nth-child(2n) {
    border-right: 0
  }

  .stats .stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--border)
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .services-grid a {
    border-right: 0 !important;
    border-bottom: 1px solid var(--border) !important
  }

  .services-grid a:last-child {
    border-bottom: 0 !important
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .why-item {
    border-right: 0;
    border-bottom: 1px solid var(--border)
  }

  .why-item:last-child {
    border-bottom: 0
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .contact-item {
    border-right: 0;
    border-bottom: 1px solid var(--border)
  }

  .contact-item:last-child {
    border-bottom: 0
  }

  .page-hero h1 {
    font-size: 28px
  }

  .article-head h1 {
    font-size: 24px
  }

  .cta-band .wrap {
    padding: 34px 0
  }

  .cta-phone {
    font-size: 18px;
    padding: 12px 20px
  }

  section.block {
    padding: 52px 0
  }

  .faq .faq-a {
    padding-left: 4px
  }
}

/* ==========================================================================
   移动端细化优化（≤768px 覆盖上面的规则，解决小屏拥挤问题）
   ========================================================================== */
@media (max-width:768px) {
  body {
    font-size: 14.5px;
    line-height: 1.75
  }

  /* ---- 头部：压缩高度，logo 居左，电话+汉堡按钮靠右一行排开 ---- */
  .top {
    min-height: 62px
  }

  .topin {
    min-height: 62px;
    gap: 10px;
    padding: 0
  }

  .logo {
    flex: 1 1 auto;
    min-width: 0
  }

  .brand-logo {
    width: 158px
  }

  .top nav {
    order: 10
  }

  .topphone {
    margin-left: 0;
    flex: 0 0 auto;
    font-size: 14px;
    gap: 5px;
    letter-spacing: 0
  }

  .topphone svg {
    width: 16px;
    height: 16px;
    flex-basis: 16px
  }

  .nav-toggle {
    margin-left: 0;
    flex: 0 0 auto;
    padding: 6px 10px;
    font-size: 17px
  }

  /* ---- Hero：收紧留白与字号 ---- */
  .hero-grid {
    padding: 34px 0;
    gap: 28px;
    min-height: 0
  }

  .hero h1 {
    font-size: 30px;
    margin: 12px 0 14px;
    line-height: 1.35
  }

  .hero-desc {
    font-size: 15.5px
  }

  .hero-points {
    font-size: 14px;
    margin-bottom: 20px
  }

  .hero-cta .btn {
    padding: 12px 18px;
    font-size: 14px
  }

  .hero-assurance {
    padding: 24px 20px
  }

  .hero-assurance h2 {
    font-size: 20px;
    margin: 8px 0 10px
  }

  .hero-assurance li {
    padding: 11px 0
  }

  /* ---- 版块节奏 ---- */
  section.block {
    padding: 44px 0
  }

  .block-head {
    margin-bottom: 26px
  }

  .block-head h2 {
    font-size: 24px
  }

  .why-item {
    padding: 24px 20px
  }

  /* ---- 数据带：更小数字、更紧凑 ---- */
  .stats .stat {
    padding: 20px 6px
  }

  .stats b {
    font-size: 26px
  }

  .stats b small {
    font-size: 15px
  }

  .stats span {
    font-size: 12px
  }

  /* ---- 服务网格：强制单列（覆盖内联样式） ---- */
  .services-grid {
    grid-template-columns: 1fr !important
  }

  .services-grid a {
    padding: 22px 20px
  }

  /* ---- 文章列表：日期上移一行，标题独占整行，避免左右挤压 ---- */
  .article-list a {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 2px
  }

  .article-list time {
    flex: none;
    font-size: 12px
  }

  .article-list h3 {
    font-size: 15px;
    line-height: 1.6
  }

  .article-list .arrow {
    display: none
  }

  /* ---- FAQ 手风琴 ---- */
  .faq summary {
    font-size: 15px;
    padding: 16px 2px;
    gap: 10px;
    line-height: 1.6
  }

  .faq .faq-a {
    padding: 0 2px 18px;
    font-size: 14px
  }

  /* ---- 内页布局 ---- */
  .page-hero {
    padding: 32px 0
  }

  .page-hero h1 {
    font-size: 26px
  }

  .page-hero .lead {
    font-size: 14.5px
  }

  .page-layout {
    padding: 40px 0;
    gap: 32px
  }

  .side-box {
    padding: 20px;
    margin-bottom: 18px
  }

  .breadcrumb {
    font-size: 12px
  }

  .prose h2 {
    font-size: 20px;
    margin: 30px 0 12px
  }

  .prose h3 {
    font-size: 16px
  }

  /* ---- 文字与表格：按手机宽度自动换行，不产生整页横向滚动 ---- */
  .page-layout>*,
  .prose,
  .article-body,
  .article-list,
  .article-list li,
  .article-list a {
    min-width: 0;
    max-width: 100%
  }

  .page-hero h1,
  .page-hero .lead,
  .prose p,
  .prose li,
  .prose h1,
  .prose h2,
  .prose h3,
  .article-list h3,
  .side-box a,
  .footer li {
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal
  }

  .prose table {
    display: table;
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    overflow: visible;
    white-space: normal;
    font-size: 12.5px
  }

  .prose th,
  .prose td {
    padding: 8px 7px;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
    vertical-align: top
  }

  .article-body p,
  .article-body li {
    font-size: 15px;
    line-height: 1.9
  }

  .article-body .article-subhead {
    font-size: 16px;
    margin-top: 24px
  }

  .knowledge-category-layout {
    padding: 38px 0 48px;
    gap: 26px
  }

  .knowledge-category-side {
    padding: 16px
  }

  .knowledge-category-side nav {
    gap: 7px
  }

  .knowledge-category-side nav a {
    flex: 1 1 calc(50% - 7px);
    min-width: 0;
    padding: 9px
  }

  .knowledge-category-main>header {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px
  }

  .knowledge-category-main>header h2 {
    font-size: 21px
  }

  .knowledge-row {
    padding: 19px 0
  }

  .knowledge-row h3 {
    font-size: 16px;
    line-height: 1.6;
    overflow-wrap: anywhere
  }

  .knowledge-row .summary {
    font-size: 14px;
    line-height: 1.8;
    overflow-wrap: anywhere
  }

  .knowledge-overview-section {
    margin-top: 30px
  }

  .knowledge-overview-head {
    gap: 12px;
    padding-inline: 0
  }

  .knowledge-overview-head h3 {
    font-size: 18px
  }

  .knowledge-overview-head>a {
    font-size: 12px
  }

  /* ---- 流程步骤：缩小序号占位 ---- */
  .steps li {
    padding-left: 50px;
    padding-bottom: 18px
  }

  .steps li::before {
    width: 32px;
    height: 32px;
    font-size: 12px
  }

  .steps li::after {
    left: 16px;
    top: 38px
  }

  /* ---- 文章详情 ---- */
  .article-head h1 {
    font-size: 22px
  }

  .article-meta {
    gap: 10px
  }

  .article-nav {
    flex-direction: column;
    gap: 14px
  }

  .article-nav a {
    max-width: 100%;
    text-align: left !important
  }

  /* ---- 联系页 ---- */
  .contact-item {
    padding: 24px 20px
  }

  .contact-location {
    grid-template-columns: 1fr
  }

  .contact-location>img {
    min-height: 190px;
    max-height: 230px
  }

  .contact-location figcaption {
    padding: 26px 20px
  }

  .map-canvas {
    padding: 24px 18px
  }

  .map-pin {
    width: 60px;
    height: 60px;
    flex-basis: 60px
  }

  /* ---- CTA 带 ---- */
  .cta-band h2 {
    font-size: 21px
  }

  .cta-phone {
    font-size: 17px
  }

  /* ---- 页脚：移动端精简导航，保留品牌、电话、微信二维码与备案 ---- */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 0 26px
  }

  .footer-brand p {
    display: none
  }

  .footer-brand::after {
    content: "杭州注册公司 · 代理记账 · 商标注册 一站式服务";
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: var(--footer-txt)
  }

  .footer-main nav {
    display: none
  }

  .footer-contact-block>h4 {
    display: none
  }

  .footer-contact-inner {
    grid-template-columns: 1fr 108px;
    gap: 18px;
    align-items: center
  }

  .footer-contact li {
    display: none
  }

  .footer-contact li:nth-child(-n+2) {
    display: flex;
    margin: 0 0 5px
  }

  .footer-contact li:first-child a {
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: .5px
  }

  .footer-qr img {
    width: 96px
  }

  .footer-bottom {
    flex-direction: column;
    gap: 4px;
    line-height: 1.7;
    padding: 14px 0
  }

  /* ---- 分页 ---- */
  .pagination {
    flex-wrap: wrap
  }
}

/* ---------------- 超小屏（≤380px） ---------------- */
@media (max-width:380px) {
  .hero h1 {
    font-size: 26px
  }

  .topphone {
    font-size: 13px
  }

  .topphone svg {
    display: none
  }

  .brand-logo {
    width: 128px
  }

  .footer .brand-logo {
    width: 164px
  }

  .footer-contact-inner {
    grid-template-columns: 1fr
  }

  .footer-qr {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px
  }

  .footer-qr img {
    width: 88px;
    margin: 0
  }

  .btn {
    width: 100%;
    justify-content: center
  }
}

/* ========================================================================== 
   杭州站方案三：首页「内容权威型」
   ========================================================================== */
.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 9999;
  background: #fff;
  color: var(--black);
  padding: 10px 16px;
  border: 2px solid var(--red);
  border-radius: 6px;
  font-weight: 700
}

.skip-link:focus {
  top: 12px
}

.home-v3 {
  background: #fff;
  color: #465166
}

.home-v3 .top {
  min-height: 76px;
  box-shadow: none
}

.home-v3 .topin {
  min-height: 76px;
  gap: 42px
}

.home-v3 .top nav {
  margin-left: 18px;
  gap: 34px
}

.home-v3 .top nav a {
  font-size: 15px
}

.home-v3 .topphone {
  font-size: 20px
}

.home-v3 .topphone i {
  font-size: 18px
}

.hz-hero {
  position: relative;
  min-height: 410px;
  background: #fbf8f4;
  overflow: hidden;
  border-bottom: 1px solid var(--border)
}

.hz-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 64%;
  background: rgba(251, 248, 244, .7);
  box-shadow: 96px 0 112px rgba(251, 248, 244, .64);
  pointer-events: none
}

.hz-hero-media {
  position: absolute;
  inset: 0 0 0 18%;
  z-index: 0;
  overflow: hidden
}

.hz-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.hz-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 150px minmax(500px, 620px) 1fr;
  min-height: 410px;
  align-items: center
}

.hero-rail {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  border-right: 1px solid rgba(23, 32, 51, .13);
  padding-right: 24px
}

.hero-rail div {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 12px;
  align-items: center
}

.hero-rail div:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 43px;
  width: 1px;
  height: 30px;
  background: #d9dde5
}

.hero-rail i {
  grid-row: 1/3;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #f0d8da;
  border-radius: 50%;
  color: var(--red);
  font-size: 16px;
  background: #fff
}

.hero-rail b {
  color: var(--black);
  font-size: 14px;
  line-height: 1.4
}

.hero-rail span {
  color: var(--gray-light);
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap
}

.hero-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 48px 44px 36px;
  max-width: 620px
}

.local-mark {
  margin: 0 0 22px;
  color: #5c6678;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em
}

.local-mark i {
  color: var(--red);
  margin-right: 8px
}

.hero-copy h1 {
  margin: 0;
  color: var(--black);
  font-size: 52px;
  line-height: 1.28;
  letter-spacing: -1.5px
}

.hero-copy h1 span {
  color: var(--red)
}

.hero-copy .hero-desc {
  margin: 24px 0 0;
  max-width: 580px;
  color: #465166;
  font-size: 17px;
  line-height: 1.9
}

.hero-location {
  position: absolute;
  z-index: 2;
  right: max(3vw, 32px);
  bottom: 18px;
  padding: 10px 18px;
  color: #fff;
  background: rgba(23, 32, 51, .82);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(6px)
}

.hero-location i {
  margin-right: 7px
}

.service-path {
  padding: 18px 0 20px;
  background: #fff
}

.section-rule-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  margin: 0 0 20px
}

.section-rule-title span {
  height: 1px;
  background: #d9dde5
}

.section-rule-title h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -.4px
}

.service-path-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr)
}

.service-path-grid a {
  position: relative;
  display: block;
  min-width: 0;
  padding: 10px 24px;
  text-align: center;
  border-right: 1px solid var(--border)
}

.service-path-grid a:last-child {
  border-right: 0
}

.service-path-grid i {
  display: block;
  margin: 0 auto 10px;
  color: var(--red);
  font-size: 31px;
  line-height: 1
}

.service-path-grid h3 {
  margin: 0 0 5px;
  color: var(--black);
  font-size: 17px
}

.service-path-grid p {
  margin: 0;
  color: var(--gray-light);
  font-size: 12.5px;
  line-height: 1.65
}

.service-path-grid a:hover h3 {
  color: var(--red)
}

.service-path-grid a::after {
  content: "";
  position: absolute;
  left: 36%;
  right: 36%;
  bottom: 2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s ease
}

.service-path-grid a:hover::after,
.service-path-grid a:focus-visible::after {
  transform: scaleX(1)
}

.local-proof {
  background: #fbf9f6;
  border-top: 1px solid #eee9e3;
  border-bottom: 1px solid #eee9e3
}

.local-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr)
}

.local-proof-grid>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px 30px;
  border-right: 1px solid #e5e1dc
}

.local-proof-grid>div:last-child {
  border-right: 0
}

.local-proof-grid i {
  color: var(--red);
  font-size: 30px
}

.local-proof-grid p {
  margin: 0
}

.local-proof-grid b,
.local-proof-grid span {
  display: block
}

.local-proof-grid b {
  color: var(--black);
  font-size: 16px
}

.local-proof-grid span {
  margin-top: 2px;
  color: var(--gray-light);
  font-size: 12.5px
}

.knowledge-editorial {
  padding: 38px 0 68px
}

.knowledge-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, .85fr);
  gap: 54px
}

.guide-column {
  padding-right: 54px;
  border-right: 1px solid var(--border)
}

.editorial-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px
}

.editorial-head h2 {
  font-size: 27px;
  margin: 1px 0 3px
}

.editorial-head p {
  margin: 0;
  color: var(--gray-light);
  font-size: 13px
}

.editorial-head .kicker-red {
  color: var(--red);
  font-size: 11px;
  letter-spacing: .13em;
  font-weight: 800
}

.editorial-head>a {
  color: var(--gray);
  font-size: 13px;
  white-space: nowrap
}

.editorial-head>a:hover {
  color: var(--red)
}

.featured-guide {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border)
}

.guide-image,
.compact-guide>a {
  display: block;
  overflow: hidden;
  border-radius: 3px;
  background: #f2eee8
}

.featured-guide img,
.compact-guide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease
}

.featured-guide .guide-image {
  aspect-ratio: 12/7
}

.featured-guide:hover img,
.compact-guide:hover img {
  transform: scale(1.025)
}

.featured-guide h3 {
  font-size: 20px;
  line-height: 1.55;
  margin: 6px 0 8px
}

.featured-guide h3 a:hover,
.compact-guide h3 a:hover {
  color: var(--red)
}

.featured-guide>div>p:last-child {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8
}

.knowledge-editorial .article-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--gray-light);
  font-size: 12px
}

.knowledge-editorial .article-meta span {
  color: var(--red)
}

.compact-guide {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 0 0
}

.compact-guide>a {
  aspect-ratio: 12/7
}

.compact-guide h3 {
  font-size: 17px;
  line-height: 1.55;
  margin: 5px 0
}

.news-text-list {
  border-top: 2px solid var(--black)
}

.news-lead {
  position: relative;
  padding: 22px 22px 21px 0;
  border-bottom: 1px solid var(--border)
}

.news-lead h3 {
  max-width: 650px;
  margin: 6px 0 7px;
  font-size: 22px;
  line-height: 1.5
}

.news-lead h3 a:hover {
  color: var(--red)
}

.news-lead>p:not(.article-meta) {
  max-width: 690px;
  margin: 0;
  padding-right: 94px;
  color: var(--gray);
  font-size: 13.5px;
  line-height: 1.75
}

.news-read-more {
  position: absolute;
  right: 0;
  bottom: 23px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700
}

.news-read-more:hover {
  text-decoration: underline
}

.news-rows article {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border)
}

.news-rows article:last-child {
  border-bottom: 0
}

.news-rows time {
  color: var(--gray-light);
  font-size: 11.5px;
  font-variant-numeric: tabular-nums
}

.news-rows span {
  display: block;
  margin-bottom: 2px;
  color: var(--red);
  font-size: 10.5px;
  font-weight: 700
}

.news-rows h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.55
}

.news-rows h3 a:hover {
  color: var(--red)
}

.editorial-faq {
  border-top: 1px solid var(--border)
}

.editorial-faq summary {
  padding: 17px 0;
  font-size: 15px
}

.editorial-faq summary i {
  margin-left: auto;
  transition: transform .2s ease;
  color: var(--gray-light)
}

.editorial-faq details[open] summary i {
  transform: rotate(180deg);
  color: var(--red)
}

.editorial-faq .faq-a {
  padding: 0 0 18px;
  color: var(--gray);
  font-size: 13.5px;
  line-height: 1.85
}

.consult-note {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border)
}

.consult-note>img {
  display: block;
  width: 104px;
  height: 104px;
  object-fit: cover;
  padding: 5px;
  border: 1px solid var(--border);
  background: #fff
}

.consult-note h3 {
  font-size: 18px;
  margin: 2px 0 4px
}

.consult-note p {
  margin: 0;
  color: var(--gray-light);
  font-size: 13px;
  line-height: 1.65
}

.consult-note p.kicker-red {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em
}

.consult-note a {
  display: inline-block;
  margin-top: 5px;
  color: var(--red);
  font-weight: 800;
  font-size: 17px
}

/* 首页文章资料库 */
.article-library {
  padding: 0 0 72px;
  background: #fff
}

.article-library-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-top: 34px;
  margin-bottom: 26px;
  border-top: 1px solid var(--border)
}

.article-library-head h2 {
  margin: 2px 0 4px;
  font-size: 28px
}

.article-library-head p {
  margin: 0;
  color: var(--gray-light);
  font-size: 13px
}

.article-library-head .kicker-red {
  color: var(--red);
  font-size: 11px;
  letter-spacing: .13em;
  font-weight: 800
}

.article-library-head>a {
  flex: 0 0 auto;
  color: var(--gray);
  font-size: 13px
}

.article-library-head>a:hover {
  color: var(--red)
}

.article-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border)
}

.article-category-card {
  min-width: 0;
  padding: 26px 28px 18px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff
}

.article-category-card>header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 17px
}

.article-category-card>header>div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0
}

.article-category-card>header span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em
}

.article-category-card h3 {
  margin: 0;
  font-size: 19px
}

.article-category-card>header>a {
  flex: 0 0 auto;
  color: var(--gray-light);
  font-size: 12px
}

.article-category-card>header>a:hover {
  color: var(--red)
}

.article-category-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--black)
}

.article-category-card li {
  border-bottom: 1px solid var(--border)
}

.article-category-card li:last-child {
  border-bottom: 0
}

.article-category-card li>a {
  position: relative;
  display: block;
  padding: 15px 0 14px 48px
}

.article-category-card time {
  position: absolute;
  left: 0;
  top: 17px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums
}

.article-category-card strong,
.article-category-card li span {
  display: block
}

.article-category-card strong {
  color: var(--black);
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: 700
}

.article-category-card li span {
  margin-top: 3px;
  color: var(--gray-light);
  font-size: 11.5px;
  line-height: 1.55
}

.article-category-card li>a:hover strong {
  color: var(--red)
}

.home-v3 .footer h2 {
  color: #fff;
  font-size: 15px;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  letter-spacing: 1px
}

.home-v3 .mobile-actions {
  display: none
}

.home-v3 :focus-visible {
  outline: 3px solid rgba(201, 37, 50, .3);
  outline-offset: 3px
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #fbf8f4;
  text-align: center
}

.error-page h1 {
  margin: 8px 0;
  font-size: 48px
}

.error-page p {
  margin: 0 0 24px
}

.error-page .hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap
}

@media (max-width:1120px) {
  .home-v3 .topin {
    gap: 22px
  }

  .home-v3 .top nav {
    gap: 22px;
    margin-left: 0
  }

  .hz-hero-grid {
    grid-template-columns: 132px minmax(420px, 520px) 1fr
  }

  .hero-copy h1 {
    font-size: 46px
  }

  .hz-hero-media {
    left: 12%
  }

  .knowledge-editorial-grid {
    grid-template-columns: 1.25fr .75fr;
    gap: 36px
  }

  .guide-column {
    padding-right: 36px
  }

  .featured-guide {
    grid-template-columns: 220px 1fr
  }
}

@media (max-width:900px) {
  .home-v3 .top nav {
    margin-left: 0
  }

  .hz-hero {
    min-height: 480px
  }

  .hz-hero-media {
    left: 0;
    opacity: .25
  }

  .hz-hero::before {
    display: none
  }

  .hz-hero-grid {
    min-height: 480px;
    grid-template-columns: 126px minmax(0, 560px) 1fr
  }

  .hero-copy {
    padding-left: 28px
  }

  .service-path-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .service-path-grid a:nth-child(3) {
    border-right: 0
  }

  .service-path-grid a:nth-child(-n+3) {
    border-bottom: 1px solid var(--border)
  }

  .knowledge-editorial-grid {
    grid-template-columns: 1fr
  }

  .guide-column {
    padding-right: 0;
    border-right: 0
  }

  .article-category-grid {
    grid-template-columns: 1fr
  }

  .article-category-card {
    padding: 24px 28px 16px
  }
}

@media (max-width:768px) {
  .home-v3 {
    padding-bottom: 62px
  }

  .home-v3 .top {
    min-height: 64px
  }

  .home-v3 .topin {
    min-height: 64px;
    display: flex;
    flex-wrap: wrap
  }

  .home-v3 .logo {
    flex: 0 1 auto
  }

  .home-v3 .brand-logo {
    width: 148px
  }

  .home-v3 .topphone {
    margin-left: auto;
    font-size: 0
  }

  .home-v3 .topphone i {
    font-size: 20px
  }

  .home-v3 .nav-toggle {
    font-size: 0;
    padding: 7px 9px
  }

  .home-v3 .nav-toggle i {
    font-size: 22px
  }

  .home-v3 .top nav {
    order: 20
  }

  .hz-hero {
    display: block;
    min-height: 440px;
    background: #fbf8f4;
    isolation: isolate
  }

  .hz-hero-grid {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    min-height: 440px;
    padding: 28px 18px 18px
  }

  .hero-copy {
    order: 1;
    align-self: auto;
    width: 100%;
    min-width: 0;
    padding: 0;
    max-width: none
  }

  .local-mark {
    margin-bottom: 12px;
    color: #5c6678;
    font-size: 13px;
    text-shadow: none
  }

  .hero-copy h1 {
    color: var(--black);
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -.6px;
    text-shadow: none
  }

  .hero-copy .hero-desc {
    margin: 15px 0 0;
    max-width: 350px;
    color: #465166;
    font-size: 14px;
    line-height: 1.7;
    text-shadow: none
  }

  .hero-rail {
    order: 2;
    align-self: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 10px;
    padding: 0;
    margin: auto 0 0;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 10px 28px rgba(23, 32, 51, .1);
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px)
  }

  .hero-rail div {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4px;
    padding: 15px 8px;
    border-right: 1px solid var(--border)
  }

  .hero-rail div:last-child {
    border-right: 0
  }

  .hero-rail div::after {
    display: none !important
  }

  .hero-rail i {
    grid-row: auto;
    margin: auto;
    width: 34px;
    height: 34px;
    font-size: 17px
  }

  .hero-rail b {
    font-size: 16px;
    line-height: 1.45
  }

  .hero-rail span {
    white-space: normal;
    font-size: 11px
  }

  .hz-hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .26
  }

  .hz-hero-media img {
    object-position: 82% center;
    filter: saturate(.55) contrast(.88) brightness(1.08)
  }

  .hz-hero::before {
    display: block;
    z-index: 1;
    inset: 0;
    width: auto;
    background: linear-gradient(90deg, rgba(251, 248, 244, .98) 0%, rgba(251, 248, 244, .9) 58%, rgba(251, 248, 244, .66) 100%);
    box-shadow: none
  }

  .hero-location {
    display: none
  }

  .service-path {
    padding: 30px 0
  }

  .section-rule-title {
    gap: 14px;
    margin-bottom: 18px
  }

  .section-rule-title h2 {
    font-size: 22px
  }

  .service-path-grid {
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border)
  }

  .service-path-grid a {
    padding: 20px 12px;
    border-right: 1px solid var(--border) !important;
    border-bottom: 1px solid var(--border) !important
  }

  .service-path-grid i {
    font-size: 27px
  }

  .service-path-grid h3 {
    font-size: 16px
  }

  .local-proof-grid {
    grid-template-columns: 1fr
  }

  .local-proof-grid>div {
    justify-content: flex-start;
    padding: 18px 8px;
    border-right: 0;
    border-bottom: 1px solid #e5e1dc
  }

  .local-proof-grid>div:last-child {
    border-bottom: 0
  }

  .knowledge-editorial {
    padding: 48px 0 56px
  }

  .knowledge-editorial-grid {
    gap: 48px
  }

  .editorial-head {
    align-items: flex-end;
    margin-bottom: 20px
  }

  .editorial-head h2 {
    font-size: 23px
  }

  .editorial-head p:not(.kicker-red) {
    max-width: 240px
  }

  .featured-guide {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .featured-guide .guide-image {
    aspect-ratio: 16/9
  }

  .compact-guide {
    grid-template-columns: 112px 1fr;
    gap: 15px
  }

  .news-lead {
    padding-right: 0
  }

  .news-lead>p:not(.article-meta) {
    padding-right: 0
  }

  .news-read-more {
    position: static;
    display: inline-block;
    margin-top: 9px
  }

  .news-rows article {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px
  }

  .consult-note {
    grid-template-columns: 92px 1fr
  }

  .consult-note>img {
    width: 92px;
    height: 92px
  }

  .article-library {
    padding-bottom: 56px
  }

  .article-library-head {
    align-items: flex-start;
    padding-top: 28px;
    margin-bottom: 20px
  }

  .article-library-head h2 {
    font-size: 23px
  }

  .article-library-head p:not(.kicker-red) {
    max-width: 250px
  }

  .article-category-card {
    padding: 22px 20px 14px
  }

  .article-category-card h3 {
    font-size: 18px
  }

  .home-v3 .footer-main>div:nth-child(2),
  .home-v3 .footer-main>div:nth-child(3) {
    display: none
  }

  .home-v3 .mobile-actions {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(23, 32, 51, .08)
  }

  .home-v3 .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    color: var(--black);
    font-weight: 700
  }

  .home-v3 .mobile-actions a:last-child {
    background: var(--red);
    color: #fff
  }

  .home-v3 .mobile-actions i {
    font-size: 19px
  }
}

@media (max-width:390px) {
  .hero-copy h1 {
    font-size: 30px
  }

  .section-rule-title h2 {
    font-size: 20px
  }

  .service-path-grid p {
    font-size: 11.5px
  }

  .featured-guide h3 {
    font-size: 18px
  }

  .editorial-head>a {
    font-size: 12px
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important
  }
}

/* 移动端联系入口与复制提示 */
.mobile-actions {
  display: none
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: 82px;
  z-index: 220;
  max-width: calc(100% - 36px);
  padding: 11px 18px;
  transform: translate(-50%, 12px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(23, 32, 51, .82);
  box-shadow: 0 10px 30px rgba(23, 32, 51, .2);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px)
}

.copy-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0)
}

@media (max-width:768px) {
  body {
    padding-bottom: 62px
  }

  .topphone,
  .home-v3 .topphone {
    display: none !important
  }

  .nav-toggle,
  .home-v3 .nav-toggle {
    margin-left: auto !important
  }

  .mobile-actions,
  .home-v3 .mobile-actions {
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(23, 32, 51, .08)
  }

  .mobile-actions a,
  .home-v3 .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 58px;
    color: var(--black);
    font-weight: 700
  }

  .mobile-actions a:last-child,
  .home-v3 .mobile-actions a:last-child {
    background: var(--red);
    color: #fff
  }

  .mobile-actions i,
  .home-v3 .mobile-actions i {
    font-size: 19px
  }
}
