/* ===== 联系通道 /contact ===== */
.page-contact {
  --plate-radius: 16px;
  display: block;
}

.page-contact *,
.page-contact *::before,
.page-contact *::after {
  box-sizing: border-box;
}

/* ---- 面包屑 ---- */
.page-contact .contact-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 40px 0 28px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.page-contact .contact-crumb a {
  color: var(--text-dim);
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px dashed var(--rule-strong);
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.page-contact .contact-crumb a:hover,
.page-contact .contact-crumb a:focus-visible {
  color: var(--cyan);
  border-color: var(--cyan);
}
.page-contact .contact-crumb .sep {
  color: var(--magenta);
}
.page-contact .contact-crumb .here {
  color: var(--text);
}

/* ---- 题头 ---- */
.page-contact .contact-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.page-contact .contact-eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 14px;
  border: 1px solid rgba(47, 230, 200, 0.45);
  border-radius: 999px;
  background: rgba(47, 230, 200, 0.06);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--cyan);
}
.page-contact .contact-head h1 {
  margin: 0 0 22px;
  font-family: var(--font-title);
  font-size: clamp(31px, 7vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.page-contact .contact-head h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--violet), var(--blue) 52%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-contact .contact-lead {
  margin: 0;
  max-width: 38em;
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text-dim);
}

/* ---- 首屏：信息牌 + 视觉 ---- */
.page-contact .contact-hero {
  display: grid;
  gap: 44px;
  align-items: start;
}

.page-contact .plate-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-contact .info-plate {
  position: relative;
  padding: 24px 22px;
  border: 1px solid var(--rule-strong);
  border-radius: var(--plate-radius);
  background: linear-gradient(150deg, rgba(22, 20, 58, 0.96), rgba(10, 9, 24, 0.96));
  box-shadow: 10px 10px 0 -1px rgba(124, 58, 237, 0.3);
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.page-contact .info-plate:hover {
  transform: translateY(-2px);
  box-shadow: 12px 14px 0 -1px rgba(124, 58, 237, 0.4);
}
.page-contact .info-plate--lg {
  width: 100%;
}
.page-contact .info-plate--md {
  width: 94%;
}
.page-contact .info-plate--sm {
  width: 88%;
}

.page-contact .plate-label {
  display: inline-block;
  margin: 0 0 16px;
  padding: 4px 11px;
  border: 1px solid var(--violet);
  border-radius: 4px;
  background: rgba(124, 58, 237, 0.16);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text);
}
.page-contact .plate-label--blue {
  border-color: var(--blue);
  background: rgba(29, 107, 255, 0.16);
}
.page-contact .plate-label--orange {
  border-color: var(--orange);
  background: rgba(255, 122, 26, 0.16);
}

.page-contact .plate-value {
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: clamp(16px, 4.4vw, 22px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--paper);
  word-break: break-all;
}
.page-contact .plate-value--address {
  font-family: var(--font-body);
  font-size: clamp(17px, 4.2vw, 21px);
  font-weight: 600;
  letter-spacing: 0.01em;
  word-break: normal;
  line-height: 1.6;
}

.page-contact .plate-note {
  margin: 0 0 20px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--text-dim);
}

.page-contact .copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  background: rgba(10, 9, 24, 0.6);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
  cursor: pointer;
  transition: border-color 160ms var(--ease), background 160ms var(--ease), color 160ms var(--ease);
}
.page-contact .copy-btn::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(47, 230, 200, 0.8);
}
.page-contact .copy-btn:hover {
  border-color: var(--cyan);
  background: rgba(47, 230, 200, 0.1);
}
.page-contact .copy-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}
.page-contact .copy-btn.is-copied {
  border-color: var(--green);
  color: var(--green);
}
.page-contact .copy-btn.is-copied::before {
  background: var(--green);
  box-shadow: 0 0 8px rgba(46, 212, 122, 0.8);
}

.page-contact .hero-visual {
  position: relative;
  margin: 0;
}
.page-contact .media-frame {
  overflow: hidden;
  border-radius: 14px;
}
.page-contact .media-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-contact .media-caption {
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-dim);
}

.page-contact .hero-stamp {
  position: absolute;
  top: 16px;
  left: -12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 9px;
  border: 2px solid var(--ink-on-paper);
  border-radius: 4px;
  background: var(--sign);
  box-shadow: 4px 4px 0 rgba(124, 58, 237, 0.45);
  transform: rotate(-3deg);
}
.page-contact .hero-stamp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e23b2e;
}
.page-contact .hero-stamp-text {
  font-family: var(--font-title);
  font-size: 18px;
  line-height: 1;
  color: var(--ink-on-paper);
}

/* ---- 受理范围横带 ---- */
.page-contact .scope-band {
  position: relative;
  padding: 34px 22px;
  border: 2px solid var(--ink-on-paper);
  border-radius: 6px;
  background: var(--sign);
  color: var(--ink-on-paper);
}
.page-contact .scope-band::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(26, 24, 54, 0.35);
  border-radius: 3px;
  pointer-events: none;
}
.page-contact .scope-kicker {
  position: relative;
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--violet);
}
.page-contact .scope-band h2 {
  position: relative;
  margin: 0 0 26px;
  font-family: var(--font-title);
  font-size: clamp(23px, 5vw, 34px);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--ink-on-paper);
}
.page-contact .scope-grid {
  position: relative;
  display: grid;
  gap: 28px;
}
.page-contact .scope-col-title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-on-paper);
}
.page-contact .scope-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-contact .scope-col li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.78;
  color: #2a2748;
}
.page-contact .scope-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--violet);
}
.page-contact .scope-col--muted li::before {
  background: var(--orange);
}
.page-contact .scope-foot {
  position: relative;
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(26, 24, 54, 0.25);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-on-paper);
}

/* ---- 工作时段与服务地区 ---- */
.page-contact .hours-grid {
  display: grid;
  gap: 36px;
  align-items: start;
}
.page-contact .hours-visual {
  margin: 0;
}
.page-contact .hours-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.page-contact .shift-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}
.page-contact .shift {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--rule-strong);
}
.page-contact .shift-time {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--orange);
  border-bottom: 1px solid rgba(255, 122, 26, 0.4);
  align-self: flex-start;
  padding-bottom: 2px;
}
.page-contact .shift-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dim);
}
.page-contact .shift-name {
  display: inline-block;
  margin-right: 10px;
  padding: 2px 9px;
  border-radius: 4px;
  background: rgba(124, 58, 237, 0.2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
}

.page-contact .region-note {
  padding: 22px 20px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(22, 20, 58, 0.55);
}
.page-contact .region-title {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cyan);
}
.page-contact .region-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-dim);
}

/* ---- 备案与属地 ---- */
.page-contact .reg-card {
  position: relative;
  overflow: hidden;
  padding: 32px 24px 28px 32px;
  border: 1px solid var(--rule);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(29, 107, 255, 0.08) 58%, rgba(10, 9, 24, 0));
}
.page-contact .reg-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--violet), var(--blue) 55%, var(--orange));
}
.page-contact .reg-kicker {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}
.page-contact .reg-value {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--paper);
}
.page-contact .reg-note {
  margin: 0 0 24px;
  max-width: 40em;
  font-size: 15px;
  line-height: 1.82;
  color: var(--text-dim);
}
.page-contact .reg-facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}
.page-contact .reg-facts li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
}
.page-contact .reg-fact-k {
  flex: 0 0 84px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--mist);
}
.page-contact .reg-fact-v {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* ---- 快速自查 ---- */
.page-contact .check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-contact .check-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 20px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(22, 20, 58, 0.5);
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.page-contact .check-item:hover {
  border-color: rgba(124, 58, 237, 0.6);
  background: rgba(22, 20, 58, 0.78);
}
.page-contact .check-index {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--magenta);
}
.page-contact .check-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
}
.page-contact .check-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.82;
  color: var(--text-dim);
}
.page-contact .check-link {
  display: inline-block;
  margin-top: 12px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(47, 230, 200, 0.45);
  font-size: 14px;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.page-contact .check-link:hover,
.page-contact .check-link:focus-visible {
  color: var(--paper);
  border-color: var(--paper);
}

.page-contact .followup {
  margin: 32px 0 0;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text-dim);
}
.page-contact .followup a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.page-contact .followup a:hover,
.page-contact .followup a:focus-visible {
  color: var(--cyan);
  border-color: var(--cyan);
}

/* ---- 中等屏幕 ---- */
@media (min-width: 760px) {
  .page-contact .scope-band {
    padding: 46px 44px;
  }
  .page-contact .scope-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }
  .page-contact .reg-card {
    padding: 44px 40px 36px 48px;
  }
  .page-contact .reg-facts {
    flex-direction: row;
    gap: 40px;
  }
  .page-contact .check-item {
    padding: 26px 28px;
  }
  .page-contact .shift {
    flex-direction: row;
    align-items: baseline;
    gap: 22px;
  }
  .page-contact .shift-time {
    flex: 0 0 136px;
  }
}

/* ---- 宽屏双栏 ---- */
@media (min-width: 960px) {
  .page-contact .contact-hero {
    grid-template-columns: 1.3fr 0.95fr;
    gap: 60px;
  }
  .page-contact .hero-visual {
    margin-top: 26px;
  }
  .page-contact .hours-grid {
    grid-template-columns: 1fr 1.12fr;
    gap: 60px;
  }
  .page-contact .hours-visual {
    margin-top: 8px;
  }
  .page-contact .plate-stack {
    gap: 32px;
  }
}

/* ---- 窄屏收敛 ---- */
@media (max-width: 599px) {
  .page-contact .contact-crumb {
    margin-top: 28px;
  }
  .page-contact .contact-head {
    margin-bottom: 40px;
  }
  .page-contact .info-plate {
    padding: 20px 18px;
    box-shadow: 6px 6px 0 -1px rgba(124, 58, 237, 0.3);
  }
  .page-contact .info-plate--md {
    width: 96%;
  }
  .page-contact .info-plate--sm {
    width: 92%;
  }
  .page-contact .scope-band {
    padding: 26px 18px;
  }
  .page-contact .scope-band::before {
    inset: 6px;
  }
  .page-contact .hero-stamp {
    top: 12px;
    left: -8px;
    padding: 8px 7px;
  }
  .page-contact .check-item {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 20px 16px;
  }
  .page-contact .check-index {
    font-size: 17px;
  }
  .page-contact .reg-card {
    padding: 26px 18px 24px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-contact .info-plate,
  .page-contact .copy-btn,
  .page-contact .check-item,
  .page-contact .check-link,
  .page-contact .followup a,
  .page-contact .contact-crumb a {
    transition: none;
  }
  .page-contact .info-plate:hover {
    transform: none;
  }
}
<<<PAGE_CSS_END>>>
<<<END>>>
