/* ============================================================
   network.html 页面专属样式(线路列表页)
   ============================================================ */

/* ---- 页头 ---- */
.page-head{
  padding-top:52px;padding-bottom:6px;
  display:flex;flex-direction:column;align-items:flex-start;gap:16px;
}
.page-head h1{max-width:16em}
.page-head .lead{
  font-size:16.5px;line-height:1.75;color:var(--text-muted);max-width:40em;
}
.page-head .lead strong{color:var(--text)}

/* ---- 总览区 ---- */
.overview-copy{
  display:flex;flex-direction:column;gap:12px;
  margin-top:26px;max-width:46em;
}
.overview-copy p{font-size:15px;line-height:1.8;color:var(--text-muted)}
.overview-copy p strong{color:var(--text)}
.region-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
  margin-top:28px;
}
.region-card{
  background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-m);
  padding:18px 18px 16px;box-shadow:var(--shadow-card);min-width:0;
}
.region-card h3{
  position:relative;padding-left:18px;
  font-size:15px;margin-bottom:12px;
}
.region-card h3::before{
  content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);
  width:8px;height:8px;border-radius:50%;background:var(--grad-sunrise);
}
.region-countries{display:flex;flex-wrap:wrap;gap:6px}
.region-countries span{
  font-size:12px;color:var(--text-muted);
  border:1px solid var(--border);border-radius:999px;
  padding:2px 9px;background:var(--bg-panel2);
}
.route-ticker{margin-top:34px}

/* ---- 线路表格区 ---- */
.route-block{margin-top:28px}
.route-block h3{font-size:18px;margin-bottom:12px}
.route-block h3 .mono{
  font-size:12px;color:var(--text-muted);font-weight:400;
  letter-spacing:.08em;margin-left:6px;
}
.table-note{font-size:13px;color:var(--text-muted);margin-top:10px;max-width:52em}

/* ---- 线路类型卡 ---- */
.type-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
  margin-top:26px;
}
.type-card{
  background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-l);
  padding:24px;box-shadow:var(--shadow-card);
  display:flex;flex-direction:column;gap:12px;min-width:0;
}
.type-head{display:flex;align-items:center;justify-content:space-between;gap:10px}
.type-head h3{font-size:18px}
.type-cost{
  flex:none;font-family:var(--font-mono);font-size:12px;color:var(--text-muted);
  border:1px solid var(--border);border-radius:999px;
  padding:2px 11px;background:var(--bg-panel2);white-space:nowrap;
}
.type-card p{font-size:14px;line-height:1.78;color:var(--text-muted)}
.type-card p strong{color:var(--text)}
.type-fit{
  display:flex;flex-wrap:wrap;gap:6px;align-items:center;
  padding-top:12px;border-top:1px dashed var(--border);margin-top:auto;
}
.type-fit .fit-label{font-size:12px;color:var(--text-muted);margin-right:2px}
.type-fit span:not(.fit-label){
  font-size:12px;color:var(--accent-dark);
  border:1px solid var(--accent-line);border-radius:999px;
  padding:2px 9px;background:var(--accent-soft);
}
#types .callout{margin-top:24px}

/* ---- 用途建议卡 ---- */
.use-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:16px;
  margin-top:26px;
}
.use-card{
  background:var(--bg-panel);border:1px solid var(--border);border-radius:var(--radius-m);
  padding:20px;box-shadow:var(--shadow-card);min-width:0;
}
.use-card h3{font-size:16px;margin-bottom:8px}
.use-card p{font-size:14px;line-height:1.75;color:var(--text-muted)}
#advice .callout{margin-top:24px;max-width:56em}
#advice .callout a{color:var(--accent-dark);border-bottom:1px solid var(--accent-line)}

/* ---- FAQ 区 ---- */
.faq-list{display:flex;flex-direction:column;margin-top:8px;max-width:820px}
.end-links{padding-top:22px;font-size:14px;color:var(--text-muted)}
.end-links a{color:var(--accent-dark);border-bottom:1px solid var(--accent-line)}

/* ---- 响应式 ---- */
@media (max-width:960px){
  .region-grid{grid-template-columns:1fr 1fr}
  .type-grid{grid-template-columns:1fr}
  .page-head{padding-top:38px}
}
@media (max-width:640px){
  .region-grid{grid-template-columns:1fr}
  .route-ticker{margin-top:26px}
  .type-card{padding:20px}
}