@charset "UTF-8";
/* ==========================================================================
   VPNWY · nodes.css
   节点 / 线路页专属样式：页头光晕与类型索引行、线路类型卡、按用途选线清单、
   覆盖地区索引、表注与相关链接。所有颜色与间距引用 base.css 设计令牌。
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. 页头
   -------------------------------------------------------------------------- */
.nodes-head{overflow-x:clip;}
.nodes-halo{
  position:absolute;
  top:-90px;
  right:-120px;
  width:480px;
  height:480px;
  border-radius:50%;
  background:radial-gradient(50% 50% at 50% 50%,var(--accent-a12) 0%,var(--accent-a05) 46%,transparent 74%);
  filter:blur(24px);
  pointer-events:none;
  z-index:0;
}
.nodes-head-inner{position:relative;z-index:1;max-width:54em;}
.nodes-facts{margin-top:var(--sp-6);}
.nodes-actions{display:flex;flex-wrap:wrap;align-items:center;gap:12px;margin-top:var(--sp-6);}
.nodes-legend{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin-top:var(--sp-6);
  padding-top:var(--sp-5);
  border-top:1px dashed var(--grid-line);
}
.nodes-legend-k{font-size:12px;letter-spacing:.04em;color:var(--text-muted);}
.page-note{margin-top:var(--sp-4);font-size:14.5px;line-height:1.75;color:var(--text-muted);max-width:58em;}

/* --------------------------------------------------------------------------
   2. 目录条与表格注释
   -------------------------------------------------------------------------- */
.nodes-toc{padding-inline:var(--pad-x);margin-block:0;}
.table-note{margin-top:var(--sp-5);margin-bottom:var(--sp-3);font-size:13px;line-height:1.7;color:var(--text-muted);}
.table-scroll + .callout{margin-top:var(--sp-5);}

/* --------------------------------------------------------------------------
   3. 线路类型卡
   -------------------------------------------------------------------------- */
.type-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:var(--sp-6);}
.type-card{
  display:flex;
  flex-direction:column;
  padding:var(--sp-6);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  background:var(--bg-panel);
  box-shadow:var(--sh-1);
  min-width:0;
}
.type-figure{
  display:flex;
  align-items:center;
  justify-content:center;
  width:48px;
  height:48px;
  border-radius:var(--r-sm);
  background:var(--accent-a05);
  color:var(--accent);
  flex-shrink:0;
}
.type-card h3{margin-top:var(--sp-4);font-size:17px;}
.type-card > p{margin-top:var(--sp-3);font-size:14.5px;line-height:1.75;color:var(--text-muted);}
.type-facts{
  display:grid;
  gap:10px;
  margin-top:var(--sp-5);
  padding-top:var(--sp-4);
  border-top:1px dashed var(--grid-line);
  font-size:13.5px;
  line-height:1.7;
  color:var(--text-muted);
}
.type-facts li{display:grid;grid-template-columns:64px 1fr;gap:10px;align-items:baseline;}
.type-k{font-size:12.5px;font-weight:600;color:var(--text);}

/* --------------------------------------------------------------------------
   4. 按用途选线
   -------------------------------------------------------------------------- */
.pick-list{display:grid;margin-top:var(--sp-6);}
.pick-item{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:var(--sp-5);
  padding-block:var(--sp-5);
  border-bottom:1px dashed var(--grid-line);
}
.pick-item:first-child{padding-top:0;}
.pick-item:last-child{padding-bottom:0;border-bottom:0;}
.pick-body{min-width:0;}
.pick-body h3{font-size:17px;}
.pick-body > p{margin-top:var(--sp-2);font-size:14.5px;line-height:1.75;color:var(--text-muted);max-width:62em;}
.pick-body .pick-tags{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  margin-top:var(--sp-4);
  font-size:12.5px;
  color:var(--text-muted);
}

/* --------------------------------------------------------------------------
   5. 覆盖地区索引
   -------------------------------------------------------------------------- */
.region-index{display:grid;margin-top:var(--sp-6);}
.region-row{
  display:grid;
  grid-template-columns:210px 1fr;
  gap:var(--sp-6);
  align-items:start;
  padding-block:var(--sp-5);
  border-bottom:1px dashed var(--grid-line);
}
.region-row:first-child{padding-top:0;}
.region-row:last-child{padding-bottom:0;border-bottom:0;}
.region-label{display:flex;align-items:center;gap:12px;min-width:0;}
.region-label h3{font-size:16px;}
.region-body{min-width:0;}
.region-note{font-size:14px;line-height:1.7;color:var(--text-muted);}
.region-chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:var(--sp-4);}

/* --------------------------------------------------------------------------
   6. 常见问题与相关链接
   -------------------------------------------------------------------------- */
.nodes-faq{margin-top:var(--sp-6);}
.nodes-next{
  display:flex;
  flex-wrap:wrap;
  gap:var(--sp-5);
  margin-top:var(--sp-7);
  padding-top:var(--sp-5);
  border-top:1px dashed var(--grid-line);
}

/* --------------------------------------------------------------------------
   7. 响应式
   -------------------------------------------------------------------------- */
@media (max-width:1080px){
  .type-grid{grid-template-columns:1fr;}
  .region-row{grid-template-columns:1fr;gap:var(--sp-3);}
}

@media (max-width:768px){
  .nodes-halo{display:none;}
  .pick-item{grid-template-columns:1fr;gap:var(--sp-3);}
}

@media (max-width:480px){
  .type-facts li{grid-template-columns:1fr;gap:2px;}
}