/* ===== 联系通道 · 页面专属样式 ===== */
.page-contact {
  --contact-accent: #00FF9D;
  --contact-purple: #B537F2;
  --contact-deep: #0B1B3D;
  --contact-mid: #1E3A6E;
  --contact-glass: rgba(255, 255, 255, 0.06);
  --contact-line: rgba(255, 255, 255, 0.14);
  --contact-ink: #F5F7FA;
  position: relative;
  overflow-x: hidden;
}

.page-contact .container {
  position: relative;
  z-index: 2;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* 首屏 */
.page-contact .contact-hero {
  position: relative;
  padding: 3rem 0 4.5rem;
  background: radial-gradient(ellipse at 85% 15%, rgba(181, 55, 242, 0.28) 0%, transparent 52%), radial-gradient(ellipse at 10% 85%, rgba(0, 255, 157, 0.14) 0%, transparent 48%), linear-gradient(135deg, #0B1B3D 0%, #1E3A6E 68%, #0B1B3D 100%);
  overflow: hidden;
}

.page-contact .contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 255, 157, 0.08) 1px, transparent 1px), linear-gradient(0deg, rgba(0, 255, 157, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.page-contact .contact-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: linear-gradient(150deg, transparent 62%, rgba(0, 255, 157, 0.26) 62.1%, rgba(0, 255, 157, 0.16) 68%, transparent 68.1%);
  pointer-events: none;
  opacity: 0.7;
}

.page-contact .breadcrumb {
  margin-bottom: 2.75rem;
}

.page-contact .contact-hero__grid {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.page-contact .contact-hero__title {
  margin: 0.75rem 0 1rem;
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 6.4vw, 3.9rem);
  font-weight: 900;
  line-height: 1.08;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.page-contact .contact-hero__highlight {
  color: var(--contact-accent);
  text-shadow: 0 0 28px rgba(0, 255, 157, 0.35);
}

.page-contact .contact-hero__lead {
  max-width: 34rem;
  margin: 0 0 1.75rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 247, 250, 0.8);
}

.page-contact .contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.page-contact .contact-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 220px;
  padding: 2rem 0;
}

.page-contact .contact-hero__speed {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.page-contact .contact-hero__speed-cn {
  font-family: var(--font-title);
  font-size: clamp(4.5rem, 13vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.12em;
  color: var(--contact-accent);
  text-shadow: 0 0 34px rgba(0, 255, 157, 0.5), 10px 10px 0 rgba(181, 55, 242, 0.45);
}

.page-contact .contact-hero__speed-en {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(245, 247, 250, 0.58);
  text-transform: uppercase;
}

/* 即时联系渠道 */
.page-contact .contact-channels {
  padding: 4.5rem 0 3.5rem;
}

.page-contact .contact-channels__head {
  margin-bottom: 2.5rem;
}

.page-contact .contact-channels__head .section__title {
  margin-bottom: 0.5rem;
}

.page-contact .contact-channels__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.page-contact .contact-channel {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--contact-line);
  border-radius: 2px 20px 2px 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.page-contact .contact-channel:hover,
.page-contact .contact-channel:focus-within {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 255, 157, 0.5);
  box-shadow: 0 18px 45px -20px rgba(0, 255, 157, 0.35);
}

.page-contact .contact-channel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.page-contact .contact-channel__num {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 900;
  color: rgba(245, 247, 250, 0.42);
}

.page-contact .contact-channel__badge {
  background: rgba(0, 255, 157, 0.12);
  color: var(--contact-accent);
}

.page-contact .tag--purple.contact-channel__badge {
  background: rgba(181, 55, 242, 0.16);
  color: #C77DFF;
}

.page-contact .contact-channel__name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.page-contact .contact-channel__value {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 3.4vw, 1.9rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--contact-accent);
  word-break: break-all;
  margin-bottom: 0.75rem;
}

.page-contact .contact-channel__value--long {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
}

.page-contact .contact-channel__desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(245, 247, 250, 0.72);
  margin-bottom: 1rem;
}

.page-contact .contact-channel__scenario {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(245, 247, 250, 0.55);
}

.page-contact .contact-channel--hotline {
  overflow: hidden;
}

.page-contact .contact-channel--hotline::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 255, 157, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.page-contact .contact-channel--email {
  border-top-color: rgba(181, 55, 242, 0.65);
}

.page-contact .contact-channel--general {
  border-right-color: rgba(0, 255, 157, 0.35);
  border-bottom-color: rgba(181, 55, 242, 0.35);
}

.page-contact .contact-channel__pulse {
  position: absolute;
  top: 1.35rem;
  right: 3.6rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--contact-accent);
  box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.5);
  animation: pg-contact-pulse 2s infinite;
  pointer-events: none;
}

@keyframes pg-contact-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(0, 255, 157, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0); }
}

/* 响应机制 */
.page-contact .contact-response {
  position: relative;
  padding: 4.5rem 0;
  background: linear-gradient(180deg, rgba(30, 58, 110, 0.24) 0%, transparent 100%);
}

.page-contact .contact-response::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  width: 5px;
  height: 55%;
  background: linear-gradient(180deg, var(--contact-accent), var(--contact-purple));
  opacity: 0.5;
}

.page-contact .contact-response__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.page-contact .contact-path {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.page-contact .contact-path__item {
  display: flex;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid rgba(0, 255, 157, 0.7);
  border-radius: 2px 12px 2px 12px;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.page-contact .contact-path__item:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateX(6px);
  border-left-color: var(--contact-accent);
}

.page-contact .contact-path__index {
  flex-shrink: 0;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--contact-accent);
}

.page-contact .contact-path__title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1rem;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
}

.page-contact .contact-path__text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(245, 247, 250, 0.68);
}

.page-contact .contact-speedproof {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.page-contact .contact-speedproof img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px 20px 2px 20px;
  border: 1px solid var(--contact-line);
}

.page-contact .contact-speedproof__caption {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--contact-accent);
}

.page-contact .contact-response__notes {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(245, 247, 250, 0.65);
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(0, 255, 157, 0.3);
  border-radius: 2px 14px 2px 14px;
}

.page-contact .contact-response__notes a {
  color: var(--contact-accent);
  text-underline-offset: 3px;
}

/* 办公地址 */
.page-contact .contact-location {
  padding: 4.5rem 0;
}

.page-contact .contact-location__inner {
  display: grid;
  gap: 2rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--contact-line);
  border-radius: 2px 28px 2px 28px;
}

.page-contact .contact-location__copy .section__label {
  color: var(--contact-accent);
}

.page-contact .contact-location__title {
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0.5rem 0 1rem;
}

.page-contact .contact-location__desc {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.75);
  margin-bottom: 1.25rem;
}

.page-contact .contact-location__note {
  padding: 0.75rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(245, 247, 250, 0.68);
  background: rgba(255, 179, 0, 0.08);
  border-left: 3px solid rgba(255, 179, 0, 0.8);
  border-radius: 2px 8px 2px 8px;
}

.page-contact .contact-location__trust {
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.6);
}

.page-contact .contact-location__trust a {
  color: var(--contact-accent);
  text-underline-offset: 3px;
}

.page-contact .contact-location__icp {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: rgba(245, 247, 250, 0.45);
  letter-spacing: 0.04em;
}

.page-contact .contact-location__figure {
  margin: 0;
}

.page-contact .contact-location__figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px 22px 2px 22px;
  border: 1px solid var(--contact-line);
}

.page-contact .contact-location__caption {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: rgba(245, 247, 250, 0.5);
}

/* 响应式增强 */
@media (min-width: 640px) {
  .page-contact .contact-channels__grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-contact .contact-channel--hotline {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .page-contact .contact-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }

  .page-contact .contact-hero__visual {
    min-height: 260px;
  }

  .page-contact .contact-response__inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }

  .page-contact .contact-location__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-contact .contact-hero {
    padding-top: 4rem;
    padding-bottom: 7rem;
  }

  .page-contact .contact-hero__visual {
    min-height: 320px;
  }

  .page-contact .contact-channels__grid {
    grid-template-columns: 1.15fr 1fr 0.85fr;
    gap: 2rem;
  }

  .page-contact .contact-channel--hotline {
    grid-column: auto;
  }
}
<<<END>>>
