﻿/* 黑客24小时在线查询 - 百变模板前缀 zefb06 */
:root {
  --zefb06bg: #f3f6f4;
  --zefb06surface: #ffffff;
  --zefb06ink: #12201a;
  --zefb06muted: #5a6b62;
  --zefb06line: #d5e0d9;
  --zefb06brand: #0a4d3c;
  --zefb06brand-deep: #063528;
  --zefb06accent: #c8f542;
  --zefb06accent-ink: #1a2e12;
  --zefb06banner-from: #063528;
  --zefb06banner-to: #0f6b52;
  --zefb06shadow: 0 18px 40px rgba(6, 53, 40, 0.12);
  --zefb06radius: 4px;
  --zefb06max: 1120px;
  --zefb06header-h: 68px;
  --zefb06font-display: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --zefb06font-body: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.zefb06body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--zefb06font-body);
  color: var(--zefb06ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(200, 245, 66, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(10, 77, 60, 0.08), transparent 50%),
    var(--zefb06bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}

.zefb06container {
  width: 100%;
  max-width: var(--zefb06max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.zefb06body ul.zefb06nav-list,
.zefb06body ul.zefb06contact-list,
.zefb06body ul.zefb06scope-list,
.zefb06body ul.zefb06flink-list,
.zefb06body ol.zefb06steps,
.zefb06body ol.zefb06contact-tips {
  list-style-position: outside;
}

.zefb06body .zefb06nav-list li,
.zefb06body .zefb06flink-list li,
.zefb06body .zefb06feature,
.zefb06body .zefb06banner-visual,
.zefb06body .zefb06banner-img {
  float: none;
}

.zefb06body .zefb06banner-img {
  max-width: 100% !important;
  height: auto !important;
}

/* ========== 顶部导航 ========== */
.zefb06header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--zefb06line);
}

.zefb06header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  min-height: var(--zefb06header-h);
  gap: 12px;
}

.zefb06logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 55%;
}

.zefb06logo-mark {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--zefb06brand);
  color: var(--zefb06accent);
  font-size: 0.75rem;
  font-family: var(--zefb06font-display);
  border-radius: var(--zefb06radius);
}

.zefb06logo-text {
  font-size: 1.05rem;
  color: var(--zefb06brand-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zefb06nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
}

.zefb06nav-btn {
  display: none;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  gap: 5px;
  cursor: pointer;
  border: 1px solid var(--zefb06line);
  border-radius: var(--zefb06radius);
  background: var(--zefb06surface);
}

.zefb06nav-btn-bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--zefb06brand);
}

/* PC 默认横排导航 */
.zefb06nav {
  position: static;
  max-height: none;
  overflow: visible;
  background: transparent;
  border: 0;
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

.zefb06nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.zefb06nav-link {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
  color: var(--zefb06muted);
  border-radius: var(--zefb06radius);
  transition: color 0.2s ease, background 0.2s ease;
}

.zefb06nav-link:hover,
.zefb06nav-link-active {
  color: var(--zefb06brand);
  background: rgba(10, 77, 60, 0.06);
}

.zefb06nav-cta {
  margin-left: 0.35rem;
  background: var(--zefb06brand) !important;
  color: #fff !important;
}

.zefb06nav-cta:hover {
  background: var(--zefb06brand-deep) !important;
}

/* ========== 主横幅 ========== */
.zefb06banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: block;
  overflow: hidden;
  color: #f5faf7;
  background-color: #063528;
  background-image:
    linear-gradient(125deg, rgba(6, 53, 40, 0.94) 0%, rgba(15, 107, 82, 0.82) 48%, rgba(6, 53, 40, 0.9) 100%),
    radial-gradient(circle at 78% 35%, rgba(200, 245, 66, 0.18), transparent 42%),
    linear-gradient(160deg, #063528, #0f6b52);
}

.zefb06banner::before {
  content: "";
  position: absolute;
  left: 45%;
  right: 0;
  bottom: -20%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(200, 245, 66, 0.14), transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.zefb06banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 24px 32px;
  padding-top: 48px;
  padding-bottom: 56px;
  width: 100%;
  max-width: var(--zefb06max);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.zefb06banner-content {
  max-width: 540px;
  min-width: 0;
  width: 100%;
}

.zefb06banner-brand {
  margin: 0 0 1rem;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--zefb06accent);
  font-family: var(--zefb06font-display);
}

.zefb06banner-title {
  margin: 0 0 1.1rem;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.zefb06banner-desc {
  margin: 0 0 1.75rem;
  font-size: 16px;
  color: rgba(245, 250, 247, 0.88);
  max-width: 32rem;
}

.zefb06banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.zefb06banner-visual {
  position: relative;
  justify-self: stretch;
  width: 100%;
  max-width: 520px;
  min-width: 0;
  margin-left: auto;
  overflow: hidden;
}

.zefb06banner-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* ========== 按钮 ========== */
.zefb06btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--zefb06radius);
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.zefb06btn:hover {
  transform: translateY(-1px);
}

.zefb06btn-primary {
  background: var(--zefb06accent);
  color: var(--zefb06accent-ink);
}

.zefb06btn-primary:hover {
  background: #d6ff5c;
}

.zefb06btn-ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.zefb06btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.zefb06btn-block {
  width: 100%;
  margin-top: 1.25rem;
}

/* ========== 通用板块 ========== */
.zefb06section {
  padding: 4.5rem 0;
}

.zefb06section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.75rem;
}

.zefb06section-head-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 34rem;
}

.zefb06section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
  color: var(--zefb06brand-deep);
  letter-spacing: -0.01em;
}

.zefb06section-desc {
  margin: 0;
  color: var(--zefb06muted);
  font-size: 1rem;
}

.zefb06grid {
  display: grid;
  gap: 1.25rem;
}

.zefb06grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.zefb06feature {
  padding: 1.6rem 1.4rem 1.7rem;
  background: var(--zefb06surface);
  border: 1px solid var(--zefb06line);
  border-radius: var(--zefb06radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.zefb06feature:hover {
  border-color: rgba(10, 77, 60, 0.35);
  box-shadow: var(--zefb06shadow);
}

.zefb06feature-icon {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--zefb06brand);
  border-bottom: 2px solid var(--zefb06accent);
  padding-bottom: 0.2rem;
}

.zefb06feature-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--zefb06ink);
}

.zefb06feature-text {
  margin: 0;
  color: var(--zefb06muted);
  font-size: 0.95rem;
}

/* ========== 服务范围 ========== */
.zefb06scope {
  background: var(--zefb06surface);
  border-block: 1px solid var(--zefb06line);
}

.zefb06scope-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.zefb06scope-col {
  padding: 1.6rem 1.5rem 1.7rem;
  border-radius: var(--zefb06radius);
  border: 1px solid var(--zefb06line);
}

.zefb06scope-yes {
  background: linear-gradient(165deg, rgba(10, 77, 60, 0.06), transparent 60%);
  border-color: rgba(10, 77, 60, 0.22);
}

.zefb06scope-no {
  background: linear-gradient(165deg, rgba(120, 40, 40, 0.05), transparent 60%);
  border-color: rgba(120, 40, 40, 0.18);
}

.zefb06scope-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--zefb06brand-deep);
}

.zefb06scope-no .zefb06scope-title {
  color: #6b2e2e;
}

.zefb06scope-list {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.65rem;
  color: var(--zefb06muted);
  font-size: 0.95rem;
}

.zefb06scope-yes .zefb06scope-list li::marker {
  color: var(--zefb06brand);
}

.zefb06scope-no .zefb06scope-list li::marker {
  color: #a05a5a;
}

/* ========== 咨询流程 ========== */
.zefb06steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: none;
}

.zefb06step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.4rem 1.2rem 1.5rem;
  background: var(--zefb06surface);
  border: 1px solid var(--zefb06line);
  border-radius: var(--zefb06radius);
  position: relative;
}

.zefb06step-num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  background: var(--zefb06brand);
  color: var(--zefb06accent);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--zefb06radius);
}

.zefb06step-title {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--zefb06ink);
}

.zefb06step-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--zefb06muted);
}

/* ========== 常见问题 ========== */
.zefb06faq-list {
  max-width: 52rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.zefb06faq-item {
  background: var(--zefb06surface);
  border: 1px solid var(--zefb06line);
  border-radius: var(--zefb06radius);
  padding: 0;
  overflow: hidden;
}

.zefb06faq-q {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.25rem;
  font-weight: 650;
  color: var(--zefb06brand-deep);
  font-size: 1rem;
}

.zefb06faq-q::-webkit-details-marker {
  display: none;
}

.zefb06faq-q::after {
  content: "+";
  float: right;
  color: var(--zefb06brand);
  font-weight: 700;
}

.zefb06faq-item[open] .zefb06faq-q::after {
  content: "–";
}

.zefb06faq-a {
  padding: 0 1.25rem 1.15rem;
  border-top: 1px solid var(--zefb06line);
}

.zefb06faq-a p {
  margin: 0.9rem 0 0;
  color: var(--zefb06muted);
  font-size: 0.95rem;
}

/* ========== 联系方式（核心） ========== */
.zefb06contact {
  background:
    linear-gradient(180deg, rgba(10, 77, 60, 0.04), transparent 40%),
    var(--zefb06bg);
}

.zefb06contact-wrap {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.zefb06contact-panel,
.zefb06contact-aside {
  background: var(--zefb06surface);
  border: 1px solid var(--zefb06line);
  border-radius: var(--zefb06radius);
  padding: 1.75rem 1.6rem;
}

.zefb06contact-panel {
  box-shadow: var(--zefb06shadow);
}

.zefb06contact-panel-title,
.zefb06contact-aside-title {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
  color: var(--zefb06brand-deep);
}

.zefb06contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.zefb06contact-item {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--zefb06line);
}

.zefb06contact-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.zefb06contact-item:first-child {
  padding-top: 0;
}

.zefb06contact-label {
  font-size: 0.9rem;
  color: var(--zefb06muted);
}

.zefb06contact-value {
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--zefb06brand);
  word-break: break-all;
}

a.zefb06contact-value:hover {
  color: var(--zefb06brand-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.zefb06contact-aside {
  background: linear-gradient(165deg, var(--zefb06brand-deep), var(--zefb06brand));
  color: #f5faf7;
  border-color: transparent;
}

.zefb06contact-aside-title {
  color: var(--zefb06accent);
}

.zefb06contact-tips {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.75rem;
  color: rgba(245, 250, 247, 0.88);
  font-size: 0.95rem;
}

.zefb06contact-tip::marker {
  color: var(--zefb06accent);
}

.zefb06contact-aside .zefb06btn-primary {
  color: var(--zefb06accent-ink);
}

/* ========== 关于 ========== */
.zefb06about {
  padding-top: 2rem;
}

.zefb06about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  background: var(--zefb06surface);
  border: 1px solid var(--zefb06line);
  border-radius: var(--zefb06radius);
}

.zefb06about .zefb06section-head {
  margin-bottom: 0;
}

.zefb06about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.zefb06stat {
  text-align: center;
  padding: 1.1rem 0.5rem;
  border-left: 1px solid var(--zefb06line);
}

.zefb06stat:first-child {
  border-left: 0;
}

.zefb06stat-num {
  display: block;
  font-size: 1.45rem;
  font-weight: 750;
  color: var(--zefb06brand);
  margin-bottom: 0.25rem;
}

.zefb06stat-label {
  font-size: 0.85rem;
  color: var(--zefb06muted);
}

.zefb06about-extra {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.zefb06about-card {
  padding: 1.4rem 1.25rem;
  background: var(--zefb06surface);
  border: 1px solid var(--zefb06line);
  border-radius: var(--zefb06radius);
}

.zefb06about-card-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  color: var(--zefb06brand-deep);
}

.zefb06about-card-text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--zefb06muted);
}

/* ========== 页脚 ========== */
.zefb06footer {
  background: var(--zefb06brand-deep);
  color: rgba(245, 250, 247, 0.78);
  padding: 2.25rem 0;
  margin-top: 3rem;
}

.zefb06footer-inner {
  text-align: center;
}

.zefb06footer-brand {
  margin: 0 0 0.75rem;
  color: var(--zefb06accent);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.zefb06footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.1rem;
  margin-bottom: 0.85rem;
}

.zefb06footer-link {
  font-size: 0.9rem;
  color: rgba(245, 250, 247, 0.85);
}

.zefb06footer-link:hover {
  color: var(--zefb06accent);
}

.zefb06footer-copy,
.zefb06footer-note {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
}

.zefb06footer-note {
  opacity: 0.75;
}

.zefb06footer-power {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  color: rgba(245, 250, 247, 0.72);
}

.zefb06footer-power p {
  margin: 0.35rem 0 0;
}

.zefb06footer-power a {
  color: var(--zefb06accent);
}

.zefb06footer-power a:hover {
  text-decoration: underline;
}

/* ========== 广告位 ========== */
.zefb06ad {
  padding: 1.25rem 0 0;
}

.zefb06ad-banner {
  text-align: center;
}

/* ========== 友情链接 ========== */
.zefb06flink {
  padding-top: 2rem;
}

.zefb06flink-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  justify-content: center;
}

.zefb06flink-link {
  display: inline-block;
  padding: 0.35rem 0.15rem;
  color: var(--zefb06muted);
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.zefb06flink-link:hover {
  color: var(--zefb06brand);
  border-bottom-color: var(--zefb06accent);
}

/* ========== 响应式 ========== */

/* 大屏导航略收紧 */
@media (max-width: 1100px) {
  .zefb06nav-link {
    padding: 0.45rem 0.55rem;
    font-size: 0.88rem;
  }

  .zefb06banner-title {
    font-size: 36px;
  }

  .zefb06banner-brand {
    font-size: 24px;
  }
}

/* 平板：折叠导航 + 横幅单列 */
@media (max-width: 992px) {
  .zefb06nav-btn {
    display: grid;
  }

  .zefb06nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    display: block;
    flex: none;
    background: #ffffff;
    border-bottom: 1px solid var(--zefb06line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 200;
  }

  .zefb06nav-toggle:checked ~ .zefb06nav {
    max-height: 520px;
  }

  .zefb06nav-list {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 10px 16px 16px;
    gap: 4px;
  }

  .zefb06nav-link {
    display: block;
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
  }

  .zefb06nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .zefb06banner {
    min-height: 0;
  }

  .zefb06banner-inner {
    grid-template-columns: 1fr;
    padding-top: 36px;
    padding-bottom: 40px;
    gap: 20px;
  }

  .zefb06banner-content {
    max-width: none;
  }

  .zefb06banner-visual {
    margin-left: 0;
    max-width: 420px;
    justify-self: center;
  }

  .zefb06grid-3,
  .zefb06steps,
  .zefb06about-extra,
  .zefb06scope-wrap,
  .zefb06contact-wrap,
  .zefb06about-inner {
    grid-template-columns: 1fr;
  }

  .zefb06section {
    padding: 48px 0;
  }

  .zefb06contact-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .zefb06about-inner {
    padding: 20px;
  }

  .zefb06about-stats {
    border-top: 1px solid var(--zefb06line);
    padding-top: 12px;
  }

  .zefb06stat {
    border-left: 0;
    border-top: 1px solid var(--zefb06line);
  }

  .zefb06stat:first-child {
    border-top: 0;
  }
}

/* 小平板：服务两列 */
@media (min-width: 641px) and (max-width: 992px) {
  .zefb06grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .zefb06steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* 手机 */
@media (max-width: 768px) {
  .zefb06banner-title {
    font-size: 28px;
  }

  .zefb06banner-brand {
    font-size: 20px;
  }

  .zefb06banner-desc {
    font-size: 15px;
  }

  .zefb06banner-actions {
    flex-direction: column;
  }

  .zefb06banner-actions .zefb06btn {
    width: 100%;
  }

  .zefb06banner-visual {
    max-width: 100%;
  }

  .zefb06logo {
    max-width: 70%;
  }
}

@media (max-width: 480px) {
  .zefb06container,
  .zefb06banner-inner {
    padding-left: 12px;
    padding-right: 12px;
  }

  .zefb06banner-title {
    font-size: 24px;
  }

  .zefb06logo-text {
    font-size: 15px;
  }

  .zefb06grid-3,
  .zefb06steps {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .zefb06banner::before {
    animation: none;
  }
}
