/* =========================================================
 * 证件拍照 全站共享样式（apple.com 风格）
 * 设计语言：磨砂半透明超细导航 / 超大居中标题 / SF 系字体 /
 *           #0071e3 胶囊按钮 / #06c 文字链接 / 白与 #f5f5f7 交替区块 /
 *           28px 大圆角卡片 / #f5f5f7 页脚小字 + 备案栏
 * ========================================================= */
:root {
  --blue: #0071e3;          /* 主按钮蓝（apple 胶囊按钮） */
  --blue-h: #0077ed;        /* 按钮悬停 */
  --link: #06c;             /* 文字链接蓝 */
  --ink: #1d1d1f;           /* 一级文字 */
  --ink-2: #6e6e73;         /* 二级文字 */
  --ink-3: #86868b;         /* 三级文字 */
  --line: #d2d2d7;          /* 分割线 */
  --gray: #f5f5f7;          /* 浅灰区块/页脚底 */
  --radius-lg: 28px;        /* 大卡片圆角 */
  --radius-md: 18px;        /* 中卡片圆角 */
}
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Text", "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif;
  background: #fff; color: var(--ink);
  font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul, li { list-style: none; }
img { max-width: 100%; }
.a-container { max-width: 980px; margin: 0 auto; padding: 0 22px; }

/* ================= 全局导航（apple 磨砂细条） ================= */
.a-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251, 251, 253, .8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}
.a-nav .inner {
  max-width: 1024px; margin: 0 auto; padding: 0 22px;
  height: 48px; display: flex; align-items: center; gap: 30px;
}
.a-nav .brand { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; flex-shrink: 0; }
.a-nav .brand .logo {
  width: 24px; height: 24px; border-radius: 7px; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.a-nav .menu { display: flex; gap: 30px; font-size: 12px; margin: 0 auto; }
.a-nav .menu a { color: rgba(0,0,0,.8); transition: color .2s; }
.a-nav .menu a:hover, .a-nav .menu a.active { color: #000; }
.a-nav .nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; margin-left: auto; }
.a-nav .nav-cta {
  font-size: 12px; background: var(--blue); color: #fff;
  padding: 6px 15px; border-radius: 980px; transition: background .2s;
}
.a-nav .nav-cta:hover { background: var(--blue-h); }

/* ================= 按钮 / 链接（apple 胶囊与箭头链接） ================= */
.a-btn {
  display: inline-block; border: none; cursor: pointer; text-align: center;
  font-size: 17px; font-weight: 400; line-height: 1.18;
  padding: 13px 28px; border-radius: 980px;
  background: var(--blue); color: #fff; transition: background .2s;
}
.a-btn:hover { background: var(--blue-h); }
.a-btn.secondary { background: transparent; color: var(--link); border: 1px solid var(--link); }
.a-btn.secondary:hover { background: var(--link); color: #fff; }
.a-link { color: var(--link); font-size: 17px; }
.a-link::after { content: " ›"; }
.a-link:hover { text-decoration: underline; }

/* ================= 区块（大留白 + 居中大标题） ================= */
.a-section { padding: 96px 0; }
.a-section.gray { background: var(--gray); }
.a-sec-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.a-sec-head h2 {
  font-size: clamp(32px, 4.6vw, 48px); font-weight: 600;
  letter-spacing: -.003em; line-height: 1.1;
}
.a-sec-head p { font-size: 19px; color: var(--ink-2); margin-top: 16px; line-height: 1.5; }

/* 大圆角卡片（bento tile） */
.tile {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 2px 4px 12px rgba(0, 0, 0, .06);
}
.a-section:not(.gray) .tile { background: var(--gray); box-shadow: none; }

/* ================= 页脚（apple #f5f5f7 小字） ================= */
.a-footer { background: var(--gray); font-size: 12px; color: #424245; }
.a-footer .inner { max-width: 980px; margin: 0 auto; padding: 30px 22px 42px; }
.a-footer .foot-note {
  padding-bottom: 16px; border-bottom: 1px solid var(--line);
  color: var(--ink-3); line-height: 1.7;
}
.a-footer .cols { display: flex; gap: 20px; padding: 24px 0 18px; border-bottom: 1px solid var(--line); }
.a-footer dl { width: 180px; }
.a-footer dt { font-weight: 600; color: var(--ink); margin-bottom: 10px; font-size: 12px; }
.a-footer dd { margin-bottom: 8px; }
.a-footer dd a { color: #424245; }
.a-footer dd a:hover { text-decoration: underline; }
.a-footer .foot-contact { margin-left: auto; text-align: right; }
.a-footer .foot-contact .tel { font-size: 17px; font-weight: 600; color: var(--ink); }
.a-footer .foot-contact p { margin-top: 6px; line-height: 1.8; color: var(--ink-2); }
.a-footer .legal { padding-top: 16px; color: var(--ink-3); line-height: 2; }
.a-footer .legal a { color: var(--ink-3); }
.a-footer .legal a:hover { text-decoration: underline; }
.a-footer .legal .sep { margin: 0 8px; color: var(--line); }

/* ================= 二级页面（文档版式） ================= */
.a-doc { max-width: 820px; margin: 0 auto; padding: 70px 22px 110px; }
.a-doc .crumbs { font-size: 13px; color: var(--ink-3); margin-bottom: 22px; }
.a-doc .crumbs a { color: var(--ink-2); }
.a-doc .crumbs a:hover { color: var(--link); }
.a-doc h1 { font-size: clamp(34px, 5vw, 48px); font-weight: 600; letter-spacing: -.003em; }
.a-doc .doc-meta { font-size: 15px; color: var(--ink-3); margin: 10px 0 44px; }
.a-doc h2 { font-size: 24px; font-weight: 600; margin: 44px 0 14px; letter-spacing: -.002em; }
.a-doc p { font-size: 17px; line-height: 1.75; color: #333336; margin-bottom: 12px; }
.a-doc ul.dots { margin: 8px 0 16px; }
.a-doc ul.dots li {
  font-size: 17px; line-height: 1.75; color: #333336;
  padding-left: 18px; position: relative; margin-bottom: 6px;
}
.a-doc ul.dots li::before {
  content: ''; position: absolute; left: 4px; top: 13px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--ink-3);
}
.a-doc a.inline { color: var(--link); }
.a-doc a.inline:hover { text-decoration: underline; }
.a-doc table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px; }
.a-doc table th, .a-doc table td { border-bottom: 1px solid var(--line); padding: 14px 8px; text-align: left; }
.a-doc table th { color: var(--ink-3); font-weight: 400; width: 160px; }
/* 联系我们卡片组（apple bento 风） */
.a-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0 8px; }
.a-contact-cell {
  background: var(--gray); border-radius: var(--radius-md); padding: 30px 24px; text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.a-contact-cell:hover { transform: translateY(-3px); box-shadow: 2px 8px 22px rgba(0,0,0,.08); }
.a-contact-cell .ic {
  width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%;
  background: #fff; display: flex; align-items: center; justify-content: center;
}
.a-contact-cell h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.a-contact-cell p { font-size: 14px !important; color: var(--ink-2) !important; line-height: 1.8; margin: 0 !important; }
.a-contact-cell p b { color: var(--ink); font-size: 17px; }

/* ================= 响应式 ================= */
@media (max-width: 900px) {
  .a-footer .cols { flex-wrap: wrap; gap: 18px 0; }
  .a-footer dl { width: 50%; }
  .a-footer .foot-contact { margin: 8px 0 0; text-align: left; width: 100%; }
  .a-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 734px) {
  .a-nav .menu { display: none; }        /* 移动端隐藏中部菜单，入口保留在页脚 */
  .a-nav .inner { height: 44px; }
  .a-section { padding: 64px 0; }
  .a-sec-head { margin-bottom: 36px; }
  .a-sec-head p { font-size: 17px; }
  .a-btn { font-size: 16px; padding: 12px 24px; }
  .a-doc { padding: 44px 20px 70px; }
}
