/* ===== 联系与反馈 /find-us/ ===== */
.page-contact {
  --ct-gold-line: rgba(200, 164, 75, 0.34);
  --ct-hair: rgba(169, 181, 174, 0.14);
  background: var(--ink-900);
  color: var(--paper);
  overflow-x: clip;
}

.page-contact .ct-breadcrumb {
  margin-bottom: 26px;
  font-size: 13px;
}

/* ---------- 首屏 ---------- */
.page-contact .ct-hero {
  position: relative;
  padding: 96px 0 44px;
  background: linear-gradient(180deg, var(--ink-800) 0%, var(--ink-900) 80%);
}

.page-contact .ct-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    linear-gradient(180deg, var(--grid-line) 1px, transparent 1px);
  background-size: 120px 120px;
  pointer-events: none;
}

.page-contact .ct-hero > .shell {
  position: relative;
  z-index: 1;
}

.page-contact .ct-hero-inner {
  display: grid;
  gap: 26px;
}

.page-contact .ct-hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--ink-800);
  border-left: 3px solid var(--gold);
}

.page-contact .ct-hero-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: brightness(0.84) saturate(0.95);
}

.page-contact .ct-hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(6, 18, 13, 0) 0%, rgba(6, 18, 13, 0.86) 100%);
  pointer-events: none;
}

.page-contact .ct-hero-ruler {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 14px 0;
  background: linear-gradient(270deg, rgba(6, 18, 13, 0.76), rgba(6, 18, 13, 0));
  border-left: 1px solid var(--ct-gold-line);
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  opacity: 0.72;
  pointer-events: none;
}

.page-contact .ct-hero-ruler span {
  display: block;
  padding-left: 10px;
}

.page-contact .ct-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-contact .ct-kicker {
  color: var(--gold);
  font-family: var(--font-num);
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-contact .ct-hero-copy h1 {
  font-size: clamp(29px, 5.6vw, 50px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--paper);
}

.page-contact .ct-lead {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--muted);
  max-width: 42em;
}

.page-contact .ct-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

@media (max-width: 1023px) {
  .page-contact .ct-hero-copy { order: -1; }
  .page-contact .ct-hero-img { aspect-ratio: 4 / 3; }
}

@media (min-width: 1024px) {
  .page-contact .ct-hero {
    padding: 128px 0 72px;
  }
  .page-contact .ct-hero-inner {
    grid-template-columns: 58fr 42fr;
    gap: 44px;
    align-items: start;
  }
  .page-contact .ct-hero-img {
    aspect-ratio: 4 / 5;
    max-height: 560px;
  }
  .page-contact .ct-hero-copy {
    padding-top: 8px;
    gap: 20px;
  }
}

/* ---------- 通用区块 ---------- */
.page-contact .ct-channels,
.page-contact .ct-feedback,
.page-contact .ct-cooperate,
.page-contact .ct-hours,
.page-contact .ct-next {
  position: relative;
  padding: 56px 0;
}

.page-contact .ct-channels { background: var(--ink-800); }
.page-contact .ct-feedback { background: var(--ink-900); }
.page-contact .ct-cooperate {
  background:
    linear-gradient(105deg, rgba(142, 44, 110, 0.16) 0%, rgba(142, 44, 110, 0) 48%),
    var(--ink-800);
}
.page-contact .ct-hours {
  background:
    linear-gradient(285deg, rgba(216, 242, 60, 0.07) 0%, rgba(216, 242, 60, 0) 44%),
    var(--ink-900);
}
.page-contact .ct-next {
  background: linear-gradient(180deg, var(--ink-800) 0%, var(--ink-700) 100%);
  border-top: 3px solid var(--gold);
}

@media (min-width: 1024px) {
  .page-contact .ct-channels,
  .page-contact .ct-feedback,
  .page-contact .ct-cooperate,
  .page-contact .ct-hours,
  .page-contact .ct-next {
    padding: 84px 0;
  }
}

.page-contact .ct-sec-head {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.page-contact .ct-sec-head .label {
  color: var(--gold);
  font-family: var(--font-num);
  font-size: var(--fs-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-contact .ct-sec-head h2 {
  font-size: clamp(23px, 3.4vw, 34px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--paper);
  max-width: 24ch;
}

/* ---------- 联系方式 ---------- */
.page-contact .ct-channels-grid {
  display: grid;
  gap: 26px;
}

.page-contact .ct-channels-figure {
  margin: 0;
}

.page-contact .ct-channels-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-top: 3px solid var(--gold);
}

.page-contact .ct-channels-figure figcaption {
  margin-top: 12px;
}

.page-contact .ct-channel-list {
  border-top: 3px solid var(--gold);
}

.page-contact .ct-channel {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease);
}

.page-contact .ct-channel:hover {
  border-bottom-color: var(--gold);
}

.page-contact .ct-channel .label {
  color: var(--muted);
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-contact .ct-value {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: clamp(17px, 2.6vw, 21px);
  line-height: 1.4;
  color: var(--paper);
  overflow-wrap: anywhere;
}

.page-contact .ct-usefor {
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 40em;
}

.page-contact .ct-channel--meta .ct-value {
  color: var(--gold-soft);
  font-size: 16px;
  letter-spacing: 0.06em;
}

@media (min-width: 900px) {
  .page-contact .ct-channels-grid {
    grid-template-columns: 5fr 7fr;
    gap: 40px;
    align-items: start;
  }
}

/* ---------- 站内反馈 ---------- */
.page-contact .ct-feedback-grid {
  display: grid;
  gap: 26px;
}

.page-contact .ct-field-list {
  border-top: 1px solid var(--line);
}

.page-contact .ct-field {
  position: relative;
  padding: 16px 18px 16px 20px;
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--ct-hair);
  outline: none;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}

.page-contact .ct-field:hover,
.page-contact .ct-field:focus-visible {
  border-left-color: var(--gold);
  background: var(--wash);
}

.page-contact .ct-field:focus-visible {
  box-shadow: var(--focus-ring);
}

.page-contact .ct-field-label {
  color: var(--neon);
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.page-contact .ct-field-hint {
  font-size: 15px;
  line-height: 1.72;
  color: var(--paper);
  max-width: 40em;
}

.page-contact .ct-aside {
  padding: 26px 24px 28px;
  background: var(--ink-700);
  border-top: 3px solid var(--gold);
  align-self: start;
}

.page-contact .ct-aside-title {
  display: block;
  color: var(--gold-soft);
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-contact .ct-flow {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-contact .ct-flow li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-soft);
}

.page-contact .ct-flow li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.page-contact .ct-flow .num {
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--neon);
}

.page-contact .ct-flow p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--paper);
}

.page-contact .ct-aside .stack-note {
  display: block;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

@media (min-width: 1024px) {
  .page-contact .ct-feedback-grid {
    grid-template-columns: 7fr 5fr;
    gap: 40px;
    align-items: start;
  }
}

/* ---------- 纠错与合作 ---------- */
.page-contact .ct-coop-grid {
  display: grid;
  gap: 22px;
}

.page-contact .ct-coop-card {
  padding: 26px 24px 28px;
  background: linear-gradient(160deg, rgba(20, 64, 47, 0.72) 0%, rgba(12, 36, 27, 0.9) 100%);
}

.page-contact .ct-coop-card--fix { border-top: 3px solid var(--bracket-a); }
.page-contact .ct-coop-card--media { border-top: 3px solid var(--bracket-b); }

.page-contact .ct-coop-card h3 {
  font-size: var(--fs-card);
  font-weight: 800;
  line-height: 1.3;
  color: var(--paper);
  margin-bottom: 10px;
}

.page-contact .ct-coop-lead {
  font-size: 15px;
  line-height: 1.74;
  color: var(--muted);
  max-width: 38em;
}

.page-contact .ct-coop-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.page-contact .ct-coop-list li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.page-contact .ct-coop-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 7px;
  height: 1px;
  background: var(--gold);
}

.page-contact .ct-coop-list a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.page-contact .ct-coop-list a:hover {
  border-bottom-color: var(--neon);
  color: var(--neon);
}

.page-contact .ct-coop-list a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

@media (min-width: 860px) {
  .page-contact .ct-coop-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ---------- 回复时段 ---------- */
.page-contact .ct-hours-grid {
  display: grid;
  gap: 30px;
}

.page-contact .ct-hours-notes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-contact .ct-hours-notes li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 40em;
}

.page-contact .ct-hours-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--neon);
}

.page-contact .ct-hours-track {
  position: relative;
  height: 6px;
  background: var(--ink-700);
  overflow: hidden;
}

.page-contact .ct-hours-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold) 0%, var(--pitch) 58%, var(--neon) 100%);
  opacity: 0.88;
}

.page-contact .ct-hours-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.page-contact .ct-hours-caption {
  display: block;
  margin-top: 14px;
  color: var(--gold-soft);
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .page-contact .ct-hours-grid {
    grid-template-columns: 6fr 6fr;
    gap: 52px;
    align-items: center;
  }
}

/* ---------- 收尾 ---------- */
.page-contact .ct-next-inner {
  display: grid;
  gap: 22px;
}

.page-contact .ct-next-copy {
  display: grid;
  gap: 12px;
}

.page-contact .ct-next-copy p {
  font-size: 15px;
  line-height: 1.74;
  color: var(--paper);
  max-width: 40em;
}

.page-contact .ct-next-copy .ct-kicker {
  color: var(--neon);
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-contact .ct-next-copy .stack-note {
  color: var(--muted);
}

.page-contact .ct-next-copy .stack-note a {
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.page-contact .ct-next-copy .stack-note a:hover {
  color: var(--neon);
  border-bottom-color: var(--neon);
}

.page-contact .ct-next-copy .stack-note a:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.page-contact .ct-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 860px) {
  .page-contact .ct-next-inner {
    grid-template-columns: 7fr 5fr;
    gap: 40px;
    align-items: center;
  }
  .page-contact .ct-next-actions {
    justify-content: flex-end;
  }
}
<<<END>>>
