/* ========================================
   黑客24小时联系方式 - style.css
   百变模板前缀: ze37f5
   ======================================== */

/* ---------- 变量与重置 ---------- */
html {
  width: 100%;
  max-width: 100%;
}

.ze37f5body {
  --ze37f5bg: #0b1220;
  --ze37f5bg_alt: #111a2e;
  --ze37f5surface: #152038;
  --ze37f5line: rgba(94, 234, 212, 0.18);
  --ze37f5text: #e8eef8;
  --ze37f5muted: #9aabc4;
  --ze37f5accent: #2dd4bf;
  --ze37f5accent_2: #38bdf8;
  --ze37f5danger: #f87171;
  --ze37f5warn: #fbbf24;
  --ze37f5ok: #34d399;
  --ze37f5radius: 12px;
  --ze37f5shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --ze37f5max: 1120px;
  --ze37f5font: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --ze37f5mono: "Cascadia Code", "Consolas", "Courier New", monospace;

  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: both;
  font-family: var(--ze37f5font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ze37f5text);
  background: var(--ze37f5bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.ze37f5body img {
  max-width: 100%;
  height: auto;
  display: block;
}

.ze37f5body a {
  color: inherit;
  text-decoration: none;
}

.ze37f5body ul,
.ze37f5body ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ze37f5body h1,
.ze37f5body h2,
.ze37f5body h3,
.ze37f5body p {
  margin: 0;
}

/* ---------- 布局框架 ---------- */
.ze37f5header,
.ze37f5main,
.ze37f5footer,
.ze37f5banner,
.ze37f5stats,
.ze37f5section,
.ze37f5ad {
  width: 100%;
  max-width: 100%;
  float: none;
  clear: both;
}

.ze37f5container {
  display: block;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto !important;
  padding-left: 16px;
  padding-right: 16px;
  float: none !important;
  clear: both;
}

.ze37f5main {
  overflow: hidden;
}

.ze37f5grid {
  display: grid;
  width: 100%;
  gap: 1.25rem;
}

.ze37f5grid_2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ze37f5grid_3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ---------- 顶部导航 ---------- */
.ze37f5header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ze37f5line);
}

.ze37f5nav_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.ze37f5logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.ze37f5logo_mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ze37f5accent);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.2);
  animation: ze37f5pulse 2s ease-in-out infinite;
}

@keyframes ze37f5pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(45, 212, 191, 0.08); }
}

.ze37f5logo_text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  max-width: 42vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ze37f5logo_accent {
  color: var(--ze37f5accent);
}

.ze37f5nav_toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ze37f5nav_btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.ze37f5nav_btn_line {
  display: block;
  width: 22px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  background: var(--ze37f5text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.ze37f5nav_list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.ze37f5nav_link {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.95rem;
  color: var(--ze37f5muted);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
}

.ze37f5nav_link:hover,
.ze37f5nav_link_active {
  color: var(--ze37f5text);
  background: rgba(45, 212, 191, 0.1);
}

.ze37f5header_cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #042f2e;
  background: linear-gradient(135deg, var(--ze37f5accent), var(--ze37f5accent_2));
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ze37f5header_cta:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

/* ---------- 主横幅 ---------- */
.ze37f5banner {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  isolation: isolate;
}

.ze37f5banner_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(45, 212, 191, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(56, 189, 248, 0.12), transparent 50%),
    linear-gradient(180deg, #0d1628 0%, var(--ze37f5bg) 100%);
}

.ze37f5banner_bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    linear-gradient(rgba(45, 212, 191, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 85%);
  pointer-events: none;
}

.ze37f5banner_inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 2.5rem;
}

.ze37f5banner_content {
  min-width: 0;
}

.ze37f5banner_tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ze37f5accent);
  border: 1px solid rgba(45, 212, 191, 0.35);
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.08);
}

.ze37f5banner_title {
  margin-bottom: 1rem;
  font-size: 2.6rem;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.02em;
  word-wrap: break-word;
}

.ze37f5banner_desc {
  max-width: 34rem;
  margin-bottom: 1.75rem;
  color: var(--ze37f5muted);
  font-size: 1.05rem;
}

.ze37f5banner_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.ze37f5btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ze37f5btn_primary {
  color: #042f2e;
  background: linear-gradient(135deg, var(--ze37f5accent), #5eead4);
}

.ze37f5btn_primary:hover {
  transform: translateY(-2px);
}

.ze37f5btn_ghost {
  color: var(--ze37f5text);
  border: 1px solid var(--ze37f5line);
  background: rgba(255, 255, 255, 0.03);
}

.ze37f5btn_ghost:hover {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(45, 212, 191, 0.08);
}

.ze37f5banner_visual {
  position: relative;
  width: 100%;
  min-width: 0;
}

.ze37f5banner_figure {
  position: relative;
  margin: 0;
  border-radius: var(--ze37f5radius);
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow:
    var(--ze37f5shadow),
    0 0 0 1px rgba(45, 212, 191, 0.08),
    0 0 40px rgba(56, 189, 248, 0.18);
  animation: ze37f5float 5s ease-in-out infinite;
}

.ze37f5banner_figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(11, 18, 32, 0.15), transparent 40%),
    linear-gradient(180deg, transparent 55%, rgba(11, 18, 32, 0.72));
}

.ze37f5banner_figure::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(162, 217, 255, 0.18);
  border-radius: 8px;
}

.ze37f5banner_img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.ze37f5banner_caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  margin: 0;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #e8f6ff;
  text-align: center;
  background: rgba(8, 20, 40, 0.7);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 8px;
  backdrop-filter: blur(6px);
}

@keyframes ze37f5float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- 通用广告 ---------- */
.ze37f5ad {
  padding: 0 0 1rem;
}

.ze37f5ad_inner {
  text-align: center;
}

.ze37f5ad_inner img {
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- 友情链接 ---------- */
.ze37f5flink_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
}

.ze37f5flink_link {
  font-size: 0.92rem;
  color: var(--ze37f5muted);
  transition: color 0.2s ease;
}

.ze37f5flink_link:hover {
  color: var(--ze37f5accent);
}

/* ---------- 数据条 ---------- */
.ze37f5stats {
  padding: 0 0 1rem;
}

.ze37f5stats_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.25rem;
  background: var(--ze37f5surface);
  border: 1px solid var(--ze37f5line);
  border-radius: var(--ze37f5radius);
}

.ze37f5stat_item {
  text-align: center;
  padding: 0.5rem;
}

.ze37f5stat_num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--ze37f5accent);
  letter-spacing: 0.02em;
}

.ze37f5stat_label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: var(--ze37f5muted);
}

/* ---------- 通用区块 ---------- */
.ze37f5section {
  padding: 4.5rem 0;
}

.ze37f5section_alt {
  background: linear-gradient(180deg, var(--ze37f5bg_alt), var(--ze37f5bg));
}

.ze37f5section_head {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.ze37f5section_title {
  margin-bottom: 0.65rem;
  font-size: 1.85rem;
  font-weight: 800;
}

.ze37f5section_desc {
  color: var(--ze37f5muted);
}

/* ---------- 服务项目 ---------- */
.ze37f5service {
  padding: 1.5rem 1.35rem;
  background: var(--ze37f5surface);
  border: 1px solid var(--ze37f5line);
  border-radius: var(--ze37f5radius);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ze37f5service:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.4);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.ze37f5service_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  font-family: var(--ze37f5mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ze37f5accent);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 10px;
  background: rgba(45, 212, 191, 0.08);
}

.ze37f5service_title {
  margin-bottom: 0.55rem;
  font-size: 1.08rem;
  font-weight: 700;
}

.ze37f5service_text {
  font-size: 0.94rem;
  color: var(--ze37f5muted);
}

/* ---------- 核心优势 ---------- */
.ze37f5advantage {
  padding: 1.6rem 1.5rem;
  border-left: 3px solid var(--ze37f5accent);
  background: rgba(21, 32, 56, 0.7);
  border-radius: 0 var(--ze37f5radius) var(--ze37f5radius) 0;
}

.ze37f5advantage_title {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.ze37f5advantage_text {
  color: var(--ze37f5muted);
  font-size: 0.95rem;
}

/* ---------- 服务流程 ---------- */
.ze37f5process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: ze37f5step;
}

.ze37f5process_item {
  position: relative;
  padding: 1.5rem 1.2rem;
  background: var(--ze37f5surface);
  border: 1px solid var(--ze37f5line);
  border-radius: var(--ze37f5radius);
}

.ze37f5process_step {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ze37f5accent_2);
  text-transform: uppercase;
}

.ze37f5process_title {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.ze37f5process_text {
  font-size: 0.92rem;
  color: var(--ze37f5muted);
}

/* ---------- 联系方式 ---------- */
.ze37f5section_contact {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(45, 212, 191, 0.1), transparent 60%),
    var(--ze37f5bg);
}

.ze37f5contact {
  padding: 1.75rem 1.4rem;
  text-align: center;
  background: var(--ze37f5surface);
  border: 1px solid var(--ze37f5line);
  border-radius: var(--ze37f5radius);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.ze37f5contact:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 189, 248, 0.45);
}

.ze37f5contact_title {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--ze37f5muted);
  font-weight: 600;
}

.ze37f5contact_value {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ze37f5accent);
  word-break: break-all;
}

.ze37f5contact_note {
  font-size: 0.86rem;
  color: var(--ze37f5muted);
}

.ze37f5contact_tip {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border: 1px dashed rgba(45, 212, 191, 0.35);
  border-radius: var(--ze37f5radius);
  background: rgba(45, 212, 191, 0.05);
}

.ze37f5contact_tip_text {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ze37f5muted);
}

/* ---------- 页脚 ---------- */
.ze37f5footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--ze37f5line);
  background: #080e1a;
}

.ze37f5footer_inner {
  display: grid;
  gap: 1.25rem;
  text-align: center;
}

.ze37f5footer_desc {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: var(--ze37f5muted);
}

.ze37f5footer_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}

.ze37f5footer_link {
  font-size: 0.9rem;
  color: var(--ze37f5muted);
  transition: color 0.2s ease;
}

.ze37f5footer_link:hover {
  color: var(--ze37f5accent);
}

.ze37f5copyright {
  font-size: 0.82rem;
  color: #6b7c96;
}

.ze37f5copyright p {
  margin: 0.35rem 0 0;
}

.ze37f5copyright a {
  color: var(--ze37f5muted);
  transition: color 0.2s ease;
}

.ze37f5copyright a:hover {
  color: var(--ze37f5accent);
}

/* ---------- 响应式 ---------- */
@media (max-width: 960px) {
  .ze37f5banner_inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .ze37f5banner_visual {
    order: -1;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .ze37f5banner_title {
    font-size: 2.1rem;
  }

  .ze37f5grid_3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ze37f5process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ze37f5stats_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ze37f5header {
    position: relative;
  }

  .ze37f5nav_wrap {
    position: relative;
    flex-wrap: wrap;
  }

  .ze37f5nav_btn {
    display: flex;
    order: 2;
  }

  .ze37f5header_cta {
    margin-left: auto;
    order: 1;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
  }

  .ze37f5nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    display: none;
    padding: 0.75rem 1rem 1rem;
    background: rgba(11, 18, 32, 0.98);
    border-bottom: 1px solid var(--ze37f5line);
    z-index: 101;
  }

  .ze37f5nav_toggle:checked ~ .ze37f5nav {
    display: block;
  }

  .ze37f5nav_toggle:checked + .ze37f5nav_btn .ze37f5nav_btn_line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .ze37f5nav_toggle:checked + .ze37f5nav_btn .ze37f5nav_btn_line:nth-child(2) {
    opacity: 0;
  }

  .ze37f5nav_toggle:checked + .ze37f5nav_btn .ze37f5nav_btn_line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .ze37f5nav_list {
    flex-direction: column;
    align-items: stretch;
  }

  .ze37f5nav_link {
    padding: 0.75rem 1rem;
  }

  .ze37f5banner {
    padding: 3.5rem 0 3rem;
  }

  .ze37f5banner_title {
    font-size: 1.85rem;
  }

  .ze37f5section {
    padding: 3.25rem 0;
  }

  .ze37f5section_title {
    font-size: 1.55rem;
  }

  .ze37f5stats_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .ze37f5grid_2,
  .ze37f5grid_3,
  .ze37f5process {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .ze37f5container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .ze37f5header_cta {
    display: none;
  }

  .ze37f5banner_actions {
    flex-direction: column;
  }

  .ze37f5btn {
    width: 100%;
  }

  .ze37f5stats_grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ze37f5banner_title {
    font-size: 1.65rem;
  }
}

/* ---------- 减少动效偏好 ---------- */
@media (prefers-reduced-motion: reduce) {
  .ze37f5logo_mark,
  .ze37f5banner_figure,
  .ze37f5service,
  .ze37f5contact,
  .ze37f5btn,
  .ze37f5header_cta {
    animation: none;
    transition: none;
  }
}
