/**
 * CN/network — 全国数字化服务网络（自包含，不 import partner-common）
 */
*, *::before, *::after { box-sizing: border-box; }

body.network-page {
  margin: 0;
  padding-top: calc(55px + 42px) !important;
  background: #f8fafc;
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: #0f172a;
  line-height: 1.6;
}

body.network-page main { display: block; width: 100%; }

body.network-page main img,
body.network-page .network-map-wrap img,
body.network-page .network-footer img {
  max-width: 100%;
  height: auto;
}

body.network-page .network-header__logo img {
  height: 40px;
  width: auto;
  max-width: 120px;
  display: block;
  object-fit: contain;
}

body.network-page ol, body.network-page ul { list-style: none; margin: 0; padding: 0; }

.network-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 55px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
}

.network-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 55px;
  gap: 1rem;
}

.network-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.network-header__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
  font-size: 0.8125rem;
}

@media (min-width: 768px) {
  .network-header__nav { font-size: 0.875rem; }
}

.network-header__nav a {
  color: #334155;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.network-header__nav a:hover,
.network-header__nav a.is-active {
  color: #059669;
  font-weight: 700;
}

.network-header__cta {
  background: #10b981 !important;
  color: #fff !important;
  padding: 0.45rem 0.85rem !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
}

.network-header__cta:hover {
  background: #059669 !important;
  color: #fff !important;
}

/* 页脚 */
.network-footer {
  background: #111827;
  color: #d1d5db;
  padding: 2rem 0;
  margin-top: 2.5rem;
  font-size: 0.875rem;
}

.network-footer strong { color: #fff; }

.network-footer__links {
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.network-footer__links a {
  color: #6ee7b7;
  text-decoration: none;
}

.network-footer__links a:hover { text-decoration: underline; }

.network-link {
  color: #059669;
  font-weight: 700;
  text-decoration: none;
}

.network-link:hover { text-decoration: underline; }

.network-shell {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .network-shell { padding: 0 1.5rem; }
}

.network-subnav {
  position: fixed;
  top: 55px;
  left: 0;
  right: 0;
  z-index: 45;
  background: linear-gradient(90deg, #047857, #10b981);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.network-subnav-inner {
  display: none;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.45rem 1rem;
  gap: 0.35rem;
  overflow-x: auto;
  flex-wrap: nowrap;
}

@media (min-width: 768px) {
  .network-subnav-inner { display: flex; }
}

.network-subnav-link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.network-subnav-link.is-active,
.network-subnav-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.network-subnav-mobile { display: block; padding: 0.4rem 1rem; }

@media (min-width: 768px) {
  .network-subnav-mobile { display: none; }
}

.network-subnav-select {
  width: 100%;
  padding: 0.45rem;
  border-radius: 8px;
  border: none;
}

.network-breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.network-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.network-breadcrumb a { color: #059669; text-decoration: none; font-weight: 500; }

.network-breadcrumb li[aria-current="page"] { color: #475569; font-weight: 600; }

.network-hero {
  background: linear-gradient(145deg, #064e3b, #0f766e);
  color: #fff;
  padding: 2.5rem 0 2rem;
}

.network-hero--compact { padding: 2rem 0 1.5rem; }

.network-hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.network-eyebrow {
  font-size: 0.75rem;
  opacity: 0.85;
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
}

.network-hero__lead {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.92;
  max-width: 42rem;
  margin: 0 0 1.25rem;
}

.network-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.network-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
}

.network-btn--primary { background: #fff; color: #065f46; }

/* Hero / 绿底 CTA 上的白按钮：强制深色字，避免 inherit 成白字 */
.network-hero .network-btn--primary,
.network-cta-band .network-btn--primary {
  background: #fff !important;
  color: #065f46 !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.network-hero .network-btn--primary:hover,
.network-cta-band .network-btn--primary:hover {
  background: #ecfdf5 !important;
  color: #047857 !important;
}

/* 白底正文区的按钮用实心绿，避免白底白钮 */
.network-section .network-btn--primary {
  background: #059669 !important;
  color: #fff !important;
  border: none;
}

.network-section .network-btn--primary:hover {
  background: #047857 !important;
  color: #fff !important;
}

.network-btn--solid {
  background: #059669 !important;
  color: #fff !important;
}

.network-btn--solid:hover {
  background: #047857 !important;
  color: #fff !important;
}

.network-btn--ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.network-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 36rem;
}

@media (min-width: 640px) {
  .network-stats { grid-template-columns: repeat(4, 1fr); }
}

.network-stats div {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.75rem;
  text-align: center;
}

.network-stats strong { display: block; font-size: 1.35rem; font-weight: 800; }

.network-stats span { font-size: 0.6875rem; opacity: 0.85; }

.network-stats-note { font-size: 0.6875rem; opacity: 0.75; margin-top: 0.75rem; }

.network-section { padding: 2.5rem 0; }

.network-section--alt { background: #fff; }

.network-section h2 { font-size: 1.35rem; font-weight: 800; margin: 0 0 1rem; }

.network-lead { color: #475569; line-height: 1.7; margin: 0 0 1.25rem; max-width: 42rem; }

.network-compare {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .network-compare { grid-template-columns: repeat(3, 1fr); }
}

.network-compare-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.25rem;
}

.network-compare-card--us {
  border-color: #6ee7b7;
  background: linear-gradient(145deg, #ecfdf5, #fff);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

.network-compare-card h3 { font-size: 1rem; font-weight: 800; margin: 0 0 0.5rem; }

.network-compare-card p { font-size: 0.875rem; color: #475569; line-height: 1.6; margin: 0; }

.network-diff-grid { display: grid; gap: 0.75rem; }

@media (min-width: 640px) {
  .network-diff-grid { grid-template-columns: repeat(3, 1fr); }
}

.network-diff-grid div {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid #e2e8f0;
}

.network-diff-grid .other {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.35rem;
}

.network-city-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.network-city-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: #065f46;
  text-decoration: none;
}

.network-hub-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
}

.network-hub-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  text-decoration: none;
  color: inherit;
}

.network-hub-card h3 { font-size: 0.9375rem; font-weight: 800; margin: 0; color: #0f172a; }

.network-hub-card p {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0.35rem 0 0;
  line-height: 1.5;
}

.network-hub-card:hover {
  border-color: #6ee7b7;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.1);
}

.network-search-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }

.network-search-bar input,
.network-search-bar select {
  flex: 1 1 200px;
  padding: 0.55rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
}

.network-expert-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}

.network-expert-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1rem;
}

.network-expert-card.hidden { display: none; }

.network-map-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  min-height: 320px;
}

.network-map-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  background: #10b981;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

/* —— v2 枢纽页 —— */
.network-hero--v2 {
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.network-hero--v2 h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

.network-hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  opacity: 0.95;
  margin: 0 0 0.75rem;
}

.network-hero__promise {
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  opacity: 0.92;
}

.network-pillars {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
  margin: 0 auto 1.75rem;
  text-align: left;
}

@media (min-width: 768px) {
  .network-pillars { grid-template-columns: repeat(3, 1fr); }
}

.network-pillar {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 1rem;
}

.network-pillar i {
  color: #a7f3d0;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
  display: block;
}

.network-pillar strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.network-pillar span {
  font-size: 0.8125rem;
  opacity: 0.85;
  line-height: 1.5;
}

.network-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 0.65rem;
  max-width: none;
  margin: 0 auto 1.5rem;
  width: 100%;
}

.network-flow-step {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.75rem;
  padding: 0.75rem 0.55rem;
}

.network-flow-step__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.network-flow-step__title,
.network-flow-step p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
}

.network-flow-step__desc {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1.45;
  opacity: 0.88;
}

.network-flow-arrow {
  display: none;
}

.network-hero--v2 .network-hero__cta {
  justify-content: center;
  margin-bottom: 0;
}

.network-resource-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

.network-resource-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.1rem;
}

.network-resource-card i {
  color: #059669;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.network-resource-card h3 {
  font-size: 0.9375rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
}

.network-resource-card p {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.network-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.network-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.network-table th,
.network-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.network-table th {
  background: #f8fafc;
  font-weight: 800;
}

.network-table th:last-child,
.network-table td:last-child {
  background: #ecfdf5;
}

.network-table tbody tr:last-child td { border-bottom: none; }

.network-map-wrap--large {
  min-height: 420px;
}

.network-map-bg {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.35;
}

.network-map-example {
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 1rem;
}

.network-map-example a {
  color: #059669;
  font-weight: 600;
  text-decoration: none;
}

.network-map-list-title {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 2rem 0 1rem;
}

.network-trust-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
}

.network-trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.25rem 1rem;
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
  font-size: 0.875rem;
  text-align: center;
}

.network-trust-card i {
  font-size: 1.5rem;
  color: #059669;
}

.network-funnel-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
}

.network-funnel-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.network-funnel-card:hover {
  border-color: #6ee7b7;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.12);
}

.network-funnel-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: #059669;
}

.network-funnel-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0.35rem 0 0.25rem;
}

.network-funnel-card p {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0 0 0.75rem;
}

.network-funnel-cta {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #059669;
}

.network-cta-band {
  background: linear-gradient(145deg, #064e3b, #0f766e);
  color: #fff;
  padding: 2.5rem 0;
  text-align: center;
}

.network-cta-band h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.5rem;
}

.network-cta-band p {
  opacity: 0.9;
  margin: 0 0 1.25rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.network-city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.network-city-highlights {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .network-city-highlights { grid-template-columns: repeat(3, 1fr); }
}

.network-city-highlight {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
}

.network-city-highlight strong {
  display: block;
  color: #047857;
  margin-bottom: 0.35rem;
}

.network-city-highlight span {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.55;
}

.network-city-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.network-city-industry {
  background: #ecfdf5;
  color: #047857;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.network-hub-card--rich {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 100%;
}

.network-hub-card__desc {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0.35rem 0 0.5rem;
  flex: 1;
}

.network-hub-card__more {
  font-size: 0.75rem;
  color: #059669;
  font-weight: 700;
}

.network-city-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .network-city-steps { grid-template-columns: repeat(2, 1fr); }
}

.network-city-steps li {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.85rem 1rem;
}

.network-city-steps strong {
  display: block;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.network-city-steps span {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
}

.network-city-faq-list {
  display: grid;
  gap: 0.5rem;
}

.network-city-faq {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0.65rem 0.85rem;
}

.network-city-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #0f172a;
}

.network-city-faq p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }

/* 三站交集：network（交付）× biz（商务）× partner（入驻） */
.network-related-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
}

.network-related-card {
  display: block;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.15rem;
  text-decoration: none;
  color: inherit;
}

.network-related-card:hover {
  border-color: #6ee7b7;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.1);
}

.network-related-card.is-current {
  border-color: #10b981;
  background: linear-gradient(145deg, #ecfdf5, #fff);
}

.network-related-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #059669;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.network-related-card h3 {
  font-size: 0.9375rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: #0f172a;
}

.network-related-card p {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* —— 城市中心索引页 cities/index —— */
.network-cities-hero {
  background: linear-gradient(155deg, #022c22 0%, #064e3b 42%, #0f766e 100%);
  color: #fff;
  padding: 2.75rem 0 2.25rem;
  position: relative;
  overflow: hidden;
}

.network-cities-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(110, 231, 183, 0.18), transparent 42%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.08), transparent 35%);
  pointer-events: none;
}

.network-cities-hero .network-shell { position: relative; z-index: 1; }

.network-cities-hero h1 {
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 800;
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.network-cities-hero__lead {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.92;
  max-width: 40rem;
  margin: 0 0 1.35rem;
}

.network-cities-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 36rem;
}

@media (min-width: 640px) {
  .network-cities-stats { grid-template-columns: repeat(4, 1fr); }
}

.network-cities-stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0.75rem 0.65rem;
  text-align: center;
}

.network-cities-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.network-cities-stat span {
  display: block;
  font-size: 0.6875rem;
  opacity: 0.82;
  margin-top: 0.2rem;
}

.network-cities-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.network-cities-toolbar input[type="search"],
.network-cities-toolbar select {
  flex: 1 1 180px;
  min-width: 0;
  padding: 0.6rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.875rem;
  background: #fff;
}

.network-cities-toolbar__count {
  flex: 1 1 100%;
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
}

@media (min-width: 768px) {
  .network-cities-toolbar__count {
    flex: 0 0 auto;
    margin-left: auto;
  }
}

.network-cities-featured {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  margin-bottom: 2rem;
}

.network-cities-featured[hidden] { display: none !important; }

.network-city-card--featured {
  background: linear-gradient(145deg, #ecfdf5, #fff);
  border-color: #6ee7b7;
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.12);
}

.network-region-block {
  margin-bottom: 2rem;
}

.network-region-block[hidden] { display: none !important; }

.network-region-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid #ecfdf5;
}

.network-region-block__head h2 {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0;
  color: #0f172a;
}

.network-region-block__head p {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
  flex: 1 1 200px;
}

.network-cities-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}

.network-city-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.1rem 1.15rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-height: 100%;
}

.network-city-card[hidden] { display: none !important; }

.network-city-card:hover {
  border-color: #6ee7b7;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.14);
  transform: translateY(-2px);
}

.network-city-card__tier {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.network-city-card__tier--t1 {
  background: #fef3c7;
  color: #92400e;
}

.network-city-card__tier--t2 {
  background: #dbeafe;
  color: #1e40af;
}

.network-city-card__tier--t3 {
  background: #f1f5f9;
  color: #475569;
}

.network-city-card__name {
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0;
  color: #0f172a;
}

.network-city-card__region {
  font-size: 0.8125rem;
  color: #64748b;
}

.network-city-card__region i {
  color: #10b981;
  margin-right: 0.25rem;
}

.network-city-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.35rem 0 0.5rem;
}

.network-city-card__svc {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #047857;
  background: #ecfdf5;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  text-decoration: none;
  pointer-events: none;
}

.network-city-card:hover .network-city-card__svc {
  background: #d1fae5;
}

.network-city-card__more {
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #059669;
}

.network-cities-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: #64748b;
  background: #fff;
  border: 1px dashed #cbd5e1;
  border-radius: 14px;
}

.network-cities-empty[hidden] { display: none !important; }

.network-cities-empty i {
  font-size: 2rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

.network-cities-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.network-cities-service {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
}

.network-cities-service:hover {
  border-color: #6ee7b7;
  color: #047857;
  background: #ecfdf5;
}

.network-cities-service i { color: #10b981; }

/* —— 移动端适配 v20260706 —— */
@media (max-width: 767px) {
  body.network-page {
    font-size: 15px;
    -webkit-text-size-adjust: 100%;
  }

  body.network-page:not(.network-city-page) {
    padding-top: calc(55px + 38px) !important;
  }

  .network-hero,
  .network-hero--v2,
  .network-hero--compact {
    padding: 1.75rem 0 1.35rem;
  }

  .network-hero--v2 {
    padding: 2rem 0 1.5rem;
  }

  .network-hero h1,
  .network-hero--v2 h1 {
    font-size: clamp(1.25rem, 5.5vw, 1.75rem);
  }

  .network-hero__lead,
  .network-hero__promise,
  .network-hero__tagline {
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .network-hero__cta,
  .network-hero--v2 .network-hero__cta {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 1rem;
  }

  .network-hero__cta .network-btn,
  .network-hero--v2 .network-hero__cta .network-btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    font-size: 0.9375rem;
    border-radius: 12px;
  }

  .network-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .network-flow-step {
    padding: 0.65rem 0.45rem;
  }

  .network-map-wrap {
    min-height: 220px;
    padding: 0.75rem;
  }

  .network-map-wrap--large {
    min-height: 260px;
  }

  .network-map-dot {
    font-size: 0.625rem;
    max-width: 4.5rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
    padding: 0.2rem 0.35rem;
  }

  .network-section h2,
  .network-region-block__head h2 {
    font-size: 1.0625rem;
  }

  .network-hub-card p,
  .network-region-block__head p,
  .network-expert-card p {
    font-size: 0.875rem;
  }

  .network-breadcrumb {
    font-size: 0.75rem;
    padding: 0.5rem 0;
  }

  .network-search-bar input,
  .network-search-bar select {
    flex: 1 1 100%;
  }

  .network-cities-toolbar input[type="search"],
  .network-cities-toolbar select {
    flex: 1 1 100%;
  }
}
