.page-contact {
  --ct-hair: rgba(142, 155, 171, .2);
  --ct-hair-strong: rgba(142, 155, 171, .34);
  --ct-plate-bg: linear-gradient(135deg, rgba(15, 29, 51, .95), rgba(7, 13, 24, .88));
  --ct-shadow: 0 22px 48px -30px rgba(0, 0, 0, .9);
  display: block;
  background: var(--ink);
  color: var(--mist);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.page-contact .ct-crumb {
  position: relative;
  z-index: 2;
  padding-top: 16px;
}

/* ---------- 首屏 ---------- */

.page-contact .ct-hero {
  position: relative;
  overflow: hidden;
  padding: 26px 0 8px;
}

.page-contact .ct-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(72% 78% at 10% -6%, rgba(74, 222, 208, .13), transparent 66%),
    radial-gradient(58% 72% at 94% 2%, rgba(255, 107, 26, .15), transparent 70%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 86%);
}

.page-contact .ct-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  padding-bottom: 34px;
}

.page-contact .ct-hero h1 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 6.6vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--white);
}

.page-contact .ct-hero__lead {
  margin: 16px 0 0;
  max-width: 54ch;
  font-size: 17px;
  line-height: 1.85;
  color: var(--metal);
}

/* 铭牌式联络卡 */

.page-contact .ct-plates {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-contact .ct-plate {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 24px;
  border-radius: var(--r-md);
  border: 1px solid var(--ct-hair);
  background: var(--ct-plate-bg);
  box-shadow: var(--ct-shadow);
}

.page-contact .ct-plate::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: var(--pill);
  background: var(--cyan);
}

.page-contact .ct-plate--orange::before { background: var(--orange); }
.page-contact .ct-plate--amber::before { background: var(--amber); }

.page-contact .ct-plate__idx {
  flex: 0 0 auto;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--metal);
}

.page-contact .ct-plate__body {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.page-contact .ct-plate__key {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--metal);
}

.page-contact .ct-plate__val {
  font-size: 15px;
  line-height: 1.5;
  color: var(--mist);
  overflow-wrap: anywhere;
}

.page-contact .ct-plate__val--tel {
  font-size: clamp(20px, 5.2vw, 26px);
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--white);
}

.page-contact .ct-hero__media {
  margin: 26px 0 0;
  border: 1px solid var(--ct-hair);
}

.page-contact .ct-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(.88) contrast(1.05);
}

/* 登记卡 */

.page-contact .ct-panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 26px 22px 24px;
  border-radius: var(--r-lg);
  border: 1px solid var(--ct-hair-strong);
  background: linear-gradient(160deg, rgba(15, 29, 51, .98), rgba(7, 13, 24, .94));
  box-shadow: 0 34px 70px -46px rgba(0, 0, 0, .95);
  overflow: hidden;
}

.page-contact .ct-panel::after {
  content: "";
  position: absolute;
  right: -74px;
  top: -74px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 26, .24), transparent 68%);
  pointer-events: none;
}

.page-contact .ct-panel > * {
  position: relative;
  z-index: 1;
}

.page-contact .ct-panel__intro {
  margin: 0;
  font-size: 15px;
  line-height: 1.82;
  color: var(--metal);
}

.page-contact .ct-fields {
  display: grid;
  gap: 10px;
}

.page-contact .ct-field {
  display: grid;
  gap: 6px;
}

.page-contact .ct-field__key {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--metal);
}

.page-contact .ct-field__input {
  box-sizing: border-box;
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--pill);
  border: 1px solid var(--ct-hair);
  background: rgba(7, 13, 24, .78);
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease);
}

.page-contact .ct-field__input::placeholder {
  color: rgba(142, 155, 171, .68);
}

.page-contact .ct-field__input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(74, 222, 208, .16);
}

.page-contact .ct-panel__note {
  margin: 2px 0 0;
  font-size: 14px;
  line-height: 1.82;
  color: var(--metal);
}

.page-contact .ct-panel__note .mono {
  color: var(--white);
}

.page-contact .ct-panel__link {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(74, 222, 208, .45);
}

.page-contact .ct-panel__link:hover,
.page-contact .ct-panel__link:focus-visible {
  color: var(--white);
  border-bottom-color: var(--white);
}

.page-contact .ct-panel__cta {
  justify-self: start;
  margin-top: 4px;
}

/* ---------- 受理范围 ---------- */

.page-contact .ct-scope {
  position: relative;
}

.page-contact .ct-scope__head {
  max-width: 660px;
}

.page-contact .ct-hours {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px 20px;
  border-radius: var(--pill);
  border: 1px dashed rgba(255, 176, 32, .45);
  background: rgba(255, 176, 32, .07);
}

.page-contact .ct-hours__label {
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--amber);
}

.page-contact .ct-hours__val {
  font-size: clamp(16px, 4.2vw, 20px);
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--white);
}

.page-contact .ct-scope__lead {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--metal);
}

.page-contact .ct-scope__list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid var(--ct-hair);
}

.page-contact .ct-scope__item {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ct-hair);
}

.page-contact .ct-scope__no {
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--orange);
}

.page-contact .ct-scope__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--white);
}

.page-contact .ct-scope__desc {
  margin: 6px 0 0;
  max-width: 58ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--metal);
}

.page-contact .ct-scope__item .tag {
  justify-self: start;
}

/* ---------- 自助查询 ---------- */

.page-contact .ct-locate__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.page-contact .ct-locate__media {
  margin: 0;
}

.page-contact .ct-locate__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid var(--ct-hair);
}

.page-contact .ct-locate__lead {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--metal);
}

.page-contact .ct-locate__cards {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.page-contact .ct-card {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--ct-hair);
  background: linear-gradient(150deg, rgba(15, 29, 51, .9), rgba(7, 13, 24, .72));
  text-decoration: none;
  color: inherit;
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}

.page-contact .ct-card:hover,
.page-contact .ct-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(74, 222, 208, .55);
}

.page-contact .ct-card__code {
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--orange);
}

.page-contact .ct-card__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}

.page-contact .ct-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--metal);
}

/* ---------- 到访与转接 ---------- */

.page-contact .ct-visit__head {
  max-width: 760px;
}

.page-contact .ct-visit__lead {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--metal);
}

.page-contact .ct-folds {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.page-contact .ct-fold {
  border-radius: var(--r-md);
  border: 1px solid var(--ct-hair);
  background: rgba(15, 29, 51, .6);
  overflow: hidden;
}

.page-contact .ct-fold .fold-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--mist);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color .22s var(--ease), background .22s var(--ease);
}

.page-contact .ct-fold .fold-trigger:hover,
.page-contact .ct-fold .fold-trigger:focus-visible {
  background: rgba(38, 58, 85, .34);
  color: var(--white);
}

.page-contact .ct-fold__code {
  flex: 0 0 auto;
  padding: 4px 10px;
  border-radius: var(--pill);
  border: 1px solid rgba(255, 107, 26, .42);
  font-size: 12px;
  letter-spacing: .16em;
  color: var(--orange);
}

.page-contact .ct-fold__label {
  flex: 1 1 auto;
  min-width: 0;
}

.page-contact .ct-fold__sign {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}

.page-contact .ct-fold__sign::before,
.page-contact .ct-fold__sign::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  height: 2px;
  margin-top: -1px;
  border-radius: var(--pill);
  background: var(--cyan);
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}

.page-contact .ct-fold__sign::after {
  transform: rotate(90deg);
}

.page-contact .ct-fold .fold-trigger[aria-expanded="true"] .ct-fold__sign::after {
  transform: rotate(0deg);
  opacity: 0;
}

.page-contact .ct-fold .fold-panel {
  padding: 0 18px 18px;
}

.page-contact .ct-fold .fold-panel p {
  margin: 0;
  max-width: 72ch;
  font-size: 15px;
  line-height: 1.85;
  color: var(--metal);
}

/* ---------- 桌面端 ---------- */

@media (min-width: 700px) {
  .page-contact .ct-scope__item {
    grid-template-columns: 76px minmax(0, 1fr) auto;
    column-gap: 22px;
    align-items: start;
  }

  .page-contact .ct-scope__body {
    min-width: 0;
  }

  .page-contact .ct-scope__item .tag {
    margin-top: 4px;
  }

  .page-contact .ct-locate__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .page-contact .ct-crumb {
    padding-top: 22px;
  }

  .page-contact .ct-hero {
    padding-top: 34px;
  }

  .page-contact .ct-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 38px;
    align-items: start;
    padding-bottom: 52px;
  }

  .page-contact .ct-panel {
    padding: 30px 28px 28px;
  }

  .page-contact .ct-locate__grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 44px;
    align-items: center;
  }

  .page-contact .ct-folds {
    margin-top: 32px;
  }
}
</｜｜DSML｜｜ parameter>
</invoke>
</result>
