/* ============================================================
   世界时间 · 全局样式表
   版本：2026.09 · 完整版
   说明：全站统一设计系统，所有页面共用
   ============================================================ */

/* ═══════════════════════════════════════════════════════════
   1. 基础重置与字体栈
   ═══════════════════════════════════════════════════════════ */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  font-family:
    -apple-system, BlinkMacSystemFont,
    "SF Pro SC", "PingFang SC",
    "HarmonyOS Sans SC", "MiSans",
    "Hiragino Sans GB",
    "Microsoft YaHei UI", "Microsoft YaHei",
    system-ui, sans-serif;
  background:#f4f8fc;
  color:#1e293b;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-feature-settings:"kern" 1, "liga" 1;
}

/* 等宽数字字体栈 */
.mono,
.hero-time,
.big-clock,
.fs-time,
.tz-time,
.tz-badge,
.st-num,
.stat-num,
.industry-prec,
.pt-prec,
.pt-level,
.tz-diff .val,
.hour-table td,
.tz-meta .dt,
.info-row dd code,
.def-para code,
.section-desc code,
.know-title em,
.fs-zone,
.fs-offset,
.hero-zone,
.hero-offset,
.cb-num,
.chip-sub,
.stat-sub,
.tool-result .val,
.diff-table th,
.diff-table td{
  font-family:
    "SF Mono", "JetBrains Mono", "Cascadia Mono", "Cascadia Code",
    "Roboto Mono", ui-monospace, Menlo, Monaco, Consolas, monospace;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "zero" 1;
}

/* 标题字体栈 */
h1, h2, h3, h4,
.section-head h2,
.tool-title,
.know-title,
.cta-text h2,
.page-hero h1{
  font-family:
    -apple-system, BlinkMacSystemFont,
    "SF Pro Display", "PingFang SC",
    "HarmonyOS Sans SC", "MiSans",
    "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei",
    system-ui, sans-serif;
  font-feature-settings: "kern" 1, "ss01" 1;
}

a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font-family:inherit;cursor:pointer;border:none;background:none}
input,select,textarea{font-family:inherit}

.app{max-width:1280px;margin:0 auto;padding:0 16px}

/* ═══════════════════════════════════════════════════════════
   2. 头部导航
   ═══════════════════════════════════════════════════════════ */
.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 24px;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.7);
  box-shadow:0 4px 20px rgba(0,0,0,.03);
  margin:20px auto 0;
  max-width:1280px;
  position:sticky;
  top:12px;
  z-index:100;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:18px;
  font-weight:800;
  letter-spacing:-.03em;
  flex-shrink:0;
}
.logo-ico{
  width:38px;
  height:38px;
  border-radius:11px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex-shrink:0;
}
.logo-ico img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.logo em{
  font-style:normal;
  color:#1a73e8;
}

.nav-links{
  display:flex;
  gap:26px;
  font-size:14.5px;
  font-weight:500;
  list-style:none;
}
.nav-links a{
  color:rgba(15,23,42,.55);
  padding:4px 0;
  border-bottom:2px solid transparent;
  transition:.2s;
  letter-spacing:-.01em;
}
.nav-links a:hover,
.nav-links a.active{
  color:#1a73e8;
  border-bottom-color:#1a73e8;
}

/* ═══════════════════════════════════════════════════════════
   3. 面包屑
   ═══════════════════════════════════════════════════════════ */
.breadcrumb{
  max-width:1280px;
  margin:16px auto 0;
  padding:0 16px;
  font-size:13px;
  color:rgba(15,23,42,.5);
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
}
.breadcrumb a{
  color:rgba(15,23,42,.55);
  transition:.2s;
}
.breadcrumb a:hover{color:#1a73e8}
.breadcrumb .sep{color:rgba(15,23,42,.3)}
.breadcrumb .cur{
  color:#0f172a;
  font-weight:500;
}

/* ═══════════════════════════════════════════════════════════
   4. 页面 Hero（内页标题区）
   ═══════════════════════════════════════════════════════════ */
.page-hero{
  max-width:1280px;
  margin:0 auto;
  padding:16px 16px 22px;
  border-bottom:1px solid rgba(15,23,42,.06);
}
.page-hero h1{
  font-size:30px;
  font-weight:800;
  letter-spacing:-.8px;
  color:#0f172a;
  margin-bottom:8px;
}
.page-hero .sub{
  font-size:13.5px;
  color:rgba(15,23,42,.5);
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.page-hero .sub .sep{
  width:3px;
  height:3px;
  border-radius:50%;
  background:rgba(15,23,42,.25);
}
.page-hero .sub code{
  font-family:"SF Mono", "JetBrains Mono", Menlo, monospace;
  background:#eef2f7;
  padding:2px 7px;
  border-radius:5px;
  font-size:12.5px;
  color:#334155;
}

/* ═══════════════════════════════════════════════════════════
   5. 定义段落（BLUF，AI 可提取）
   ═══════════════════════════════════════════════════════════ */
.def-para{
  max-width:1280px;
  margin:18px auto 0;
  padding:0 16px;
}
.def-para p{
  font-size:14.5px;
  color:#475569;
  line-height:1.85;
  background:#fff;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.06);
  border-left:4px solid #1a73e8;
  padding:16px 20px;
  margin-bottom:10px;
}
.def-para p:last-child{margin-bottom:0}
.def-para p.green{border-left-color:#059669}
.def-para p.violet{border-left-color:#7c3aed}
.def-para strong{
  color:#0f172a;
  font-weight:600;
}
.def-para code{
  background:#eef2f7;
  padding:2px 7px;
  border-radius:5px;
  font-size:13px;
  color:#334155;
}

/* 首页专用 BLUF 段落 */
.home-def{
  max-width:960px;
  margin:24px auto 0;
  padding:22px 28px;
  background:#fff;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.06);
  border-left:4px solid #1a73e8;
  box-shadow:0 1px 2px rgba(15,23,42,.03);
}
.home-def p{
  font-size:15px;
  color:#475569;
  line-height:1.9;
}
.home-def strong{color:#0f172a;font-weight:600}
.home-def code{
  background:#eef2f7;
  padding:2px 7px;
  border-radius:5px;
  font-size:13px;
  color:#334155;
}

/* ═══════════════════════════════════════════════════════════
   6. Hero 时钟（深色渐变）
   ═══════════════════════════════════════════════════════════ */
.hero{
  background:linear-gradient(135deg,#0f0c29 0%,#1a1a4e 45%,#2d1b69 100%);
  border-radius:22px;
  padding:32px 28px 28px;
  color:#fff;
  position:relative;
  overflow:hidden;
  margin:18px 0 22px;
  text-align:center;
  box-shadow:0 12px 36px rgba(15,12,41,.18);
}
.hero::before{
  content:'';
  position:absolute;
  top:-50%;
  right:-15%;
  width:60%;
  height:180%;
  background:radial-gradient(circle,rgba(108,92,231,.16) 0%,transparent 65%);
  pointer-events:none;
}
.hero::after{
  content:'';
  position:absolute;
  bottom:-60%;
  left:-10%;
  width:50%;
  height:160%;
  background:radial-gradient(circle,rgba(59,130,246,.13) 0%,transparent 65%);
  pointer-events:none;
}
.hero-time{
  font-size:60px;
  font-weight:700;
  letter-spacing:-2.5px;
  line-height:1;
  color:#fff;
  text-shadow:0 0 60px rgba(124,58,237,.55),0 0 24px rgba(103,232,249,.30);
  display:block;
  margin-bottom:12px;
  position:relative;
  z-index:1;
}
.hero-time .am-pm{
  font-size:18px;
  font-weight:600;
  color:#a78bfa;
  margin-left:6px;
  vertical-align:super;
  letter-spacing:0;
}
.hero-date-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  font-size:13.5px;
  color:rgba(255,255,255,.78);
  margin-bottom:10px;
  position:relative;
  z-index:1;
}
.hero-date-row .sep{
  width:4px;
  height:4px;
  border-radius:50%;
  background:rgba(255,255,255,.28);
}
.hero-zone-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  font-size:11.5px;
  position:relative;
  z-index:1;
}
.hero-zone{
  padding:3px 10px;
  background:rgba(167,139,250,.12);
  border-radius:60px;
  border:1px solid rgba(167,139,250,.20);
  color:#c4b5fd;
}
.hero-offset{
  padding:3px 10px;
  background:rgba(103,232,249,.10);
  border-radius:60px;
  border:1px solid rgba(103,232,249,.20);
  color:#67e8f9;
}

/* ═══════════════════════════════════════════════════════════
   7. Section 通用
   ═══════════════════════════════════════════════════════════ */
.section{
  margin-bottom:36px;
  scroll-margin-top:80px;
  margin-top:1rem;
}
.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:12px;
  gap:16px;
  flex-wrap:wrap;
}
.section-head h2{
  font-size:21px;
  font-weight:800;
  color:#0f172a;
  display:flex;
  align-items:center;
  gap:11px;
  letter-spacing:-.5px;
}
.section-head h2 .sec-ico{
  width:32px;
  height:32px;
  border-radius:9px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:15px;
  color:#fff;
}
.sec-ico.blue{background:linear-gradient(135deg,#1a73e8,#0d47a1)}
.sec-ico.violet{background:linear-gradient(135deg,#7c3aed,#4c1d95)}
.sec-ico.rose{background:linear-gradient(135deg,#e84393,#9d174d)}
.sec-ico.green{background:linear-gradient(135deg,#059669,#065f46)}
.sec-ico.orange{background:linear-gradient(135deg,#f39c12,#b45309)}
.sec-ico.cyan{background:linear-gradient(135deg,#0ea5e9,#0369a1)}
.section-head h2 .badge{
  background:rgba(26,115,232,.08);
  font-size:11.5px;
  font-weight:600;
  padding:3px 10px;
  border-radius:60px;
  color:#1a73e8;
  border:1px solid rgba(26,115,232,.10);
}
.section-head .more{
  font-size:13px;
  color:rgba(15,23,42,.35);
  font-weight:500;
  display:inline-flex;
  align-items:center;
  gap:5px;
  transition:.2s;
}
.section-head .more:hover{
  color:#1a73e8;
  gap:8px;
}
.section-desc{
  font-size:13.5px;
  color:rgba(15,23,42,.55);
  line-height:1.8;
  margin-bottom:18px;
  max-width:880px;
}
.section-desc strong{
  color:#0f172a;
  font-weight:600;
}
.section-desc code{
  background:#eef2f7;
  padding:2px 7px;
  border-radius:5px;
  font-size:12.5px;
  color:#334155;
}

/* ═══════════════════════════════════════════════════════════
   8. 网格系统
   ═══════════════════════════════════════════════════════════ */
.grid-4{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

/* ═══════════════════════════════════════════════════════════
   9. 时区卡片
   ═══════════════════════════════════════════════════════════ */
.tz-card{
  display:block;
  background:#fff;
  border-radius:16px;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 1px 2px rgba(15,23,42,.03),0 4px 12px rgba(15,23,42,.03);
  padding:18px 20px 14px;
  transition:all .3s cubic-bezier(.2,.7,.3,1);
  position:relative;
  overflow:hidden;
  color:inherit;
  text-decoration:none;
}
.tz-card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg,rgb(var(--tint,26,115,232)),rgba(var(--tint,26,115,232),.6));
  opacity:0;
  transition:opacity .32s;
}
.tz-card:hover::before{opacity:1}
.tz-card:hover{
  transform:translateY(-5px);
  border-color:rgba(var(--tint,26,115,232),.20);
  box-shadow:0 16px 32px -8px rgba(var(--tint,26,115,232),.15);
}
.tz-card-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}
.tz-card-name{
  font-size:15.5px;
  font-weight:700;
  color:#0f172a;
  line-height:1.25;
  display:block;
  letter-spacing:-.02em;
}
.tz-card-sub{
  font-size:11.5px;
  color:rgba(15,23,42,.38);
  margin-top:3px;
  display:block;
}
.tz-badge{
  flex-shrink:0;
  font-size:10.5px;
  font-weight:600;
  padding:3px 9px;
  border-radius:30px;
  background:rgba(var(--tint,26,115,232),.08);
  color:rgb(var(--tint,26,115,232));
  white-space:nowrap;
}
.tz-badge.warm{background:#fef3c7;color:#92400e}
.tz-badge.cool{background:#dbeafe;color:#1e40af}
.tz-badge.violet{background:#ede9fe;color:#6d28d9}
.tz-badge.rose{background:#ffe4e6;color:#be123c}
.tz-time{
  font-size:28px;
  font-weight:600;
  color:#0f172a;
  line-height:1;
  letter-spacing:-1.2px;
}
.tz-time .s{
  font-size:14px;
  color:rgba(15,23,42,.28);
  margin-left:2px;
}
.tz-meta{
  margin-top:10px;
  display:flex;
  align-items:center;
  gap:7px;
  font-size:11.5px;
  color:rgba(15,23,42,.45);
  flex-wrap:wrap;
}
.tz-meta .dot{
  width:3px;
  height:3px;
  border-radius:50%;
  background:currentColor;
  opacity:.5;
}
.tz-meta .dn{
  margin-left:auto;
  font-size:13px;
}
.tz-diff{
  margin-top:10px;
  padding-top:9px;
  border-top:1px dashed rgba(15,23,42,.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size:11.5px;
}
.tz-diff .lbl{
  color:rgba(15,23,42,.38);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  max-width:62%;
}
.tz-diff .val{
  font-weight:600;
  font-size:12px;
  color:#0f172a;
  flex-shrink:0;
}
.tz-diff .val.up{color:#059669}
.tz-diff .val.down{color:#dc2626}
.tz-diff .val.eq{color:rgba(15,23,42,.45)}

/* ═══════════════════════════════════════════════════════════
   10. 信息表格
   ═══════════════════════════════════════════════════════════ */
.info-table{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 1px 2px rgba(15,23,42,.03);
  overflow:hidden;
}
.info-row{
  display:grid;
  grid-template-columns:180px 1fr;
  border-bottom:1px solid rgba(15,23,42,.05);
}
.info-row:last-child{border-bottom:none}
.info-row dt{
  padding:13px 20px;
  background:#f8fafc;
  font-size:12.5px;
  color:rgba(15,23,42,.5);
  font-weight:500;
  border-right:1px solid rgba(15,23,42,.05);
}
.info-row dd{
  padding:13px 20px;
  font-size:13.5px;
  color:#0f172a;
  font-weight:500;
}
.info-row dd code{
  background:#eef2f7;
  padding:2px 7px;
  border-radius:5px;
  font-size:12.5px;
  color:#334155;
  font-weight:500;
}
.info-row dd a{
  color:#1a73e8;
}
.info-row dd a:hover{
  text-decoration:underline;
}

/* ═══════════════════════════════════════════════════════════
   11. 双时钟（时差页）
   ═══════════════════════════════════════════════════════════ */
.dual-clocks{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin:18px 0 26px;
}
.clock-box{
  background:linear-gradient(135deg,#0f0c29,#1a1a4e);
  border-radius:18px;
  padding:24px 26px;
  color:#fff;
  position:relative;
  overflow:hidden;
  box-shadow:0 8px 28px rgba(15,12,41,.20);
}
.clock-box::before{
  content:'';
  position:absolute;
  top:-40%;
  right:-15%;
  width:60%;
  height:180%;
  background:radial-gradient(circle,rgba(108,92,231,.18),transparent 65%);
}
.clock-box h3{
  font-size:13.5px;
  font-weight:600;
  color:rgba(255,255,255,.72);
  margin-bottom:12px;
  position:relative;
  z-index:1;
  letter-spacing:.02em;
}
.clock-box .big-clock{
  font-size:44px;
  font-weight:700;
  letter-spacing:-2px;
  color:#fff;
  line-height:1;
  text-shadow:0 0 50px rgba(124,58,237,.5);
  position:relative;
  z-index:1;
  display:block;
  margin-bottom:10px;
}
.clock-box .sub{
  font-size:12px;
  color:rgba(255,255,255,.55);
  position:relative;
  z-index:1;
}
.clock-box .tz-label{
  display:inline-block;
  font-size:11px;
  padding:3px 10px;
  background:rgba(167,139,250,.12);
  border-radius:60px;
  border:1px solid rgba(167,139,250,.20);
  color:#c4b5fd;
  margin-top:10px;
  position:relative;
  z-index:1;
}

/* ═══════════════════════════════════════════════════════════
   12. 24 小时时间对照表
   ═══════════════════════════════════════════════════════════ */
.hour-table{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 1px 2px rgba(15,23,42,.03);
  overflow:hidden;
}
.hour-table table{
  width:100%;
  border-collapse:collapse;
  font-size:13.5px;
}
.hour-table th{
  background:#f8fafc;
  padding:12px 18px;
  font-size:12px;
  font-weight:600;
  color:rgba(15,23,42,.5);
  text-align:left;
  border-bottom:1px solid rgba(15,23,42,.05);
  letter-spacing:.03em;
}
.hour-table td{
  padding:10px 18px;
  border-bottom:1px solid #f1f5f9;
  color:#0f172a;
}
.hour-table tbody tr:last-child td{border-bottom:none}
.hour-table tr.good{background:rgba(5,150,105,.04)}
.hour-table tr.good td{
  color:#059669;
  font-weight:600;
}
.hour-table tr.good td:last-child{
  color:#059669;
  font-weight:500;
}

/* ═══════════════════════════════════════════════════════════
   13. 链接网格
   ═══════════════════════════════════════════════════════════ */
.link-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.link-grid-lg{
  grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
}
.link-chip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 15px;
  background:#fff;
  border:1px solid rgba(15,23,42,.06);
  border-radius:10px;
  font-size:13px;
  font-weight:500;
  color:#0f172a;
  transition:.2s;
}
.link-chip:hover{
  border-color:rgba(26,115,232,.25);
  background:rgba(26,115,232,.03);
  color:#1a73e8;
  transform:translateY(-1px);
}
.link-chip .chip-sub{
  font-size:11px;
  color:rgba(15,23,42,.35);
}

/* ═══════════════════════════════════════════════════════════
   14. 数据来源
   ═══════════════════════════════════════════════════════════ */
.datasource{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 1px 2px rgba(15,23,42,.03);
  padding:22px 24px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.ds-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.ds-ico{
  width:34px;
  height:34px;
  border-radius:9px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(26,115,232,.08);
  flex-shrink:0;
  font-size:15px;
}
.ds-title{
  font-size:13px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:3px;
}
.ds-desc{
  font-size:12px;
  color:rgba(15,23,42,.55);
  line-height:1.65;
}

/* ═══════════════════════════════════════════════════════════
   15. FAQ 折叠面板
   ═══════════════════════════════════════════════════════════ */
.faq-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.faq-item{
  background:#fff;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 1px 2px rgba(15,23,42,.03);
  overflow:hidden;
}
.faq-item summary{
  padding:18px 22px;
  font-size:14.5px;
  font-weight:600;
  color:#0f172a;
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  letter-spacing:-.02em;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:'';
  width:22px;
  height:22px;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a73e8' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size:13px 13px;
  background-repeat:no-repeat;
  background-position:center;
  background-color:rgba(26,115,232,.08);
  border-radius:50%;
  transition:transform .3s ease;
  flex-shrink:0;
}
.faq-item[open] summary::after{
  transform:rotate(45deg);
  background-color:rgba(26,115,232,.15);
}
.faq-body{
  padding:0 22px 20px;
  font-size:13px;
  color:rgba(15,23,42,.62);
  line-height:1.9;
  border-top:1px solid rgba(15,23,42,.05);
  padding-top:16px;
}
.faq-body p{margin-bottom:10px}
.faq-body p:last-child{margin-bottom:0}
.faq-body strong{
  color:#0f172a;
  font-weight:600;
}
.faq-body code{
  font-family:"SF Mono", "JetBrains Mono", Menlo, monospace;
  background:#f1f5f9;
  padding:2px 7px;
  border-radius:4px;
  font-size:12.5px;
  color:#334155;
}
.faq-body ul{
  margin:8px 0 12px;
  padding-left:0;
  list-style:none;
}
.faq-body li{
  margin-bottom:8px;
  padding-left:22px;
  position:relative;
}
.faq-body li::before{
  content:'';
  position:absolute;
  left:8px;
  top:9px;
  width:5px;
  height:5px;
  border-radius:50%;
  background:#1a73e8;
  opacity:.55;
}

/* ═══════════════════════════════════════════════════════════
   16. 知识文章正文
   ═══════════════════════════════════════════════════════════ */
.article-body{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 1px 2px rgba(15,23,42,.03);
  padding:28px 32px;
}
.article-body h2{
  font-size:19px;
  font-weight:700;
  color:#0f172a;
  margin-top:24px;
  margin-bottom:12px;
  letter-spacing:-.3px;
  padding-left:14px;
  border-left:4px solid #1a73e8;
}
.article-body h2:first-child{margin-top:0}
.article-body p{
  font-size:14px;
  color:#475569;
  line-height:1.9;
  margin-bottom:14px;
}
.article-body p:last-child{margin-bottom:0}

/* ═══════════════════════════════════════════════════════════
   17. 工具页面样式
   ═══════════════════════════════════════════════════════════ */
.tool-workspace{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 1px 2px rgba(15,23,42,.03),0 4px 12px rgba(15,23,42,.03);
  padding:28px 30px 30px;
}
.tool-form{max-width:640px}
.tool-field{margin-bottom:14px}
.tool-field label{
  display:block;
  font-size:12.5px;
  font-weight:600;
  color:rgba(15,23,42,.6);
  margin-bottom:6px;
  letter-spacing:.02em;
}
.tool-field input,
.tool-field select{
  width:100%;
  padding:11px 14px;
  border:1px solid rgba(15,23,42,.1);
  border-radius:10px;
  font-size:14px;
  font-family:inherit;
  outline:none;
  transition:.2s;
  background:#fff;
  color:#0f172a;
}
.tool-field input:focus,
.tool-field select:focus{
  border-color:#1a73e8;
  box-shadow:0 0 0 3px rgba(26,115,232,.1);
}
.tool-btn{
  padding:11px 22px;
  background:#1a73e8;
  color:#fff;
  border-radius:10px;
  font-weight:600;
  font-size:13.5px;
  transition:.2s;
  letter-spacing:-.01em;
  cursor:pointer;
}
.tool-btn:hover{background:#1557b0}
.tool-btn.secondary{
  background:#f1f5f9;
  color:#0f172a;
}
.tool-btn.secondary:hover{background:#e2e8f0}
.tool-result{
  margin-top:16px;
  padding:16px 18px;
  background:#f8fafc;
  border-radius:12px;
  font-size:13px;
  line-height:1.9;
}
.tool-result .row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:5px 0;
  border-bottom:1px dashed rgba(15,23,42,.06);
  flex-wrap:wrap;
}
.tool-result .row:last-child{border-bottom:none}
.tool-result .label{
  color:rgba(15,23,42,.5);
  font-size:12.5px;
}
.tool-result .val{
  font-weight:600;
  color:#0f172a;
  font-size:12.5px;
}
.tool-divider{
  margin:22px 0;
  border-top:1px dashed rgba(15,23,42,.1);
}
.diff-table{
  width:100%;
  border-collapse:collapse;
  margin-top:12px;
  font-size:12px;
}
.diff-table th,
.diff-table td{
  padding:6px 8px;
  text-align:center;
  border-bottom:1px solid rgba(15,23,42,.06);
}
.diff-table th{
  color:rgba(15,23,42,.5);
  font-weight:600;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.diff-table td.golden{
  background:rgba(5,150,105,.08);
  color:#059669;
  font-weight:600;
}

/* ═══════════════════════════════════════════════════════════
   18. 首页统计条
   ═══════════════════════════════════════════════════════════ */
.stats-bar{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-bottom:36px;
}
.stat-box{
  background:#fff;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.06);
  padding:20px 22px;
  box-shadow:0 1px 2px rgba(15,23,42,.03);
  position:relative;
  overflow:hidden;
  transition:all .3s cubic-bezier(.2,.7,.3,1);
}
.stat-box::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg,var(--sb1,#1a73e8),var(--sb2,#7c3aed));
}
.stat-box:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 28px -12px rgba(26,115,232,.20);
}
.stat-num{
  font-size:28px;
  font-weight:700;
  color:#0f172a;
  letter-spacing:-1px;
  line-height:1.1;
  display:block;
  margin-bottom:6px;
}
.stat-num em{
  font-style:normal;
  font-size:14px;
  color:#1a73e8;
  font-weight:600;
  margin-left:3px;
}
.stat-lb{
  font-size:12.5px;
  color:rgba(15,23,42,.5);
  letter-spacing:.02em;
}
.stat-sub{
  font-size:11px;
  color:rgba(15,23,42,.32);
  margin-top:3px;
}

/* ═══════════════════════════════════════════════════════════
   19. 行业同步列表
   ═══════════════════════════════════════════════════════════ */
.industry-list{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 1px 2px rgba(15,23,42,.03);
  overflow:hidden;
}
.industry-row{
  display:grid;
  grid-template-columns:52px 1.4fr 1fr 1.6fr;
  gap:22px;
  align-items:center;
  padding:20px 26px;
  border-bottom:1px solid rgba(15,23,42,.05);
}
.industry-row:last-child{border-bottom:none}
.industry-ico{
  width:42px;
  height:42px;
  border-radius:11px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.industry-name{
  font-size:14.5px;
  font-weight:700;
  color:#0f172a;
}
.industry-name em{
  font-style:normal;
  font-size:11.5px;
  color:rgba(15,23,42,.38);
  display:block;
  margin-top:3px;
  font-weight:400;
}
.industry-prec{
  font-size:14px;
  font-weight:700;
  color:#1a73e8;
}
.industry-note{
  font-size:12.5px;
  color:rgba(15,23,42,.58);
  line-height:1.7;
}

/* ═══════════════════════════════════════════════════════════
   20. 精度等级表
   ═══════════════════════════════════════════════════════════ */
.precision-table{
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(15,23,42,.06);
  box-shadow:0 1px 2px rgba(15,23,42,.03);
  overflow:hidden;
}
.precision-table .pt-head{
  display:grid;
  grid-template-columns:1.1fr 1.9fr 1.1fr 1.6fr;
  gap:18px;
  padding:16px 26px;
  background:#f8fafc;
  border-bottom:1px solid rgba(15,23,42,.05);
  font-size:11.5px;
  font-weight:700;
  color:rgba(15,23,42,.45);
  letter-spacing:.08em;
  text-transform:uppercase;
}
.precision-table .pt-row{
  display:grid;
  grid-template-columns:1.1fr 1.9fr 1.1fr 1.6fr;
  gap:18px;
  align-items:center;
  padding:20px 26px;
  border-bottom:1px solid rgba(15,23,42,.05);
}
.precision-table .pt-row:last-child{border-bottom:none}
.pt-level{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:13.5px;
  font-weight:700;
  color:#0f172a;
}
.pt-level .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#1a73e8;
  box-shadow:0 0 0 3px rgba(26,115,232,.15);
}
.pt-level.l0 .dot{background:#e74c3c}
.pt-level.l1 .dot{background:#f39c12}
.pt-level.l2 .dot{background:#059669}
.pt-desc{font-size:12.5px;color:rgba(15,23,42,.62);line-height:1.65}
.pt-prec{font-size:13.5px;font-weight:700;color:#1a73e8}
.pt-use{font-size:12.5px;color:rgba(15,23,42,.55);line-height:1.6}

/* ═══════════════════════════════════════════════════════════
   21. 页脚
   ═══════════════════════════════════════════════════════════ */
.footer{
  background:#fff;
  border-top:1px solid rgba(15,23,42,.05);
  margin-top:44px;
  padding:32px 16px 24px;
  text-align:center;
  font-size:12.5px;
  color:rgba(15,23,42,.35);
  line-height:2;
}
.footer a{
  color:rgba(15,23,42,.5);
  margin:0 8px;
  transition:.2s;
}
.footer a:hover{color:#1a73e8}

/* ═══════════════════════════════════════════════════════════
   22. 浮动按钮
   ═══════════════════════════════════════════════════════════ */
.float-group{
  position:fixed;
  bottom:30px;
  right:30px;
  z-index:99;
}
.float-btn{
  width:46px;
  height:46px;
  border-radius:50%;
  background:#1a73e8;
  color:#fff;
  box-shadow:0 6px 20px rgba(26,115,232,.28);
  transition:all .3s ease;
  display:flex;
  align-items:center;
  justify-content:center;
}
.float-btn:hover{transform:scale(1.06);background:#1557b0}
.float-btn img{width:18px;height:18px}
.float-btn.back-top{
  opacity:0;
  visibility:hidden;
  transform:translateY(16px);
}
.float-btn.back-top.visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   23. 响应式：1024px（平板）
   ═══════════════════════════════════════════════════════════ */
@media (max-width:1024px){
  .grid-4{grid-template-columns:repeat(3,1fr)}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .datasource{grid-template-columns:1fr}
  .link-grid{grid-template-columns:repeat(3,1fr)}
  .stats-bar{grid-template-columns:repeat(2,1fr)}
  .industry-row{grid-template-columns:52px 1fr;gap:14px}
  .industry-row .industry-prec,
  .industry-row .industry-note{grid-column:2}
  .precision-table .pt-head,
  .precision-table .pt-row{grid-template-columns:1fr 1.8fr;gap:12px;padding:14px 20px}
  .precision-table .pt-prec,
  .precision-table .pt-use{grid-column:2}
}

/* ═══════════════════════════════════════════════════════════
   24. 响应式：768px（手机）
   ═══════════════════════════════════════════════════════════ */
@media (max-width:768px){
  .app{padding:0 12px}
  .header{
    padding:10px 16px;
    border-radius:14px;
    margin-top:12px;
    top:8px;
  }
  .nav-links{display:none}
  .logo{font-size:16px}
  .logo-ico{width:34px;height:34px;border-radius:10px}

  .breadcrumb{font-size:12px;margin-top:12px}
  .page-hero h1{font-size:22px}
  .page-hero .sub{font-size:12.5px}

  .def-para{padding:0 12px}
  .def-para p{font-size:13.5px;padding:14px 16px}
  .home-def{padding:18px 20px;margin-top:16px}
  .home-def p{font-size:13.5px;line-height:1.85}

  .hero{padding:26px 18px 22px;margin:14px 0 16px;border-radius:18px}
  .hero-time{font-size:42px;letter-spacing:-1.6px}
  .hero-time .am-pm{font-size:14px}
  .hero-date-row{font-size:12.5px;gap:9px}
  .hero-zone-row{font-size:11px}

  .section{margin-bottom:28px}
  .section-head h2{font-size:18px;gap:9px}
  .section-head h2 .sec-ico{width:28px;height:28px;font-size:13px;border-radius:8px}
  .section-head h2 .badge{font-size:10.5px;padding:2px 8px}
  .section-head .more{font-size:12px}
  .section-desc{font-size:12.5px;margin-bottom:14px}

  .grid-4,
  .grid-3{grid-template-columns:repeat(2,1fr);gap:10px}

  .tz-card{padding:14px 15px 12px;border-radius:13px}
  .tz-card-name{font-size:14px}
  .tz-card-sub{font-size:11px}
  .tz-badge{font-size:9.5px;padding:2px 7px}
  .tz-time{font-size:22px;letter-spacing:-.8px}
  .tz-time .s{font-size:12px}
  .tz-meta{font-size:10.5px;gap:5px;margin-top:8px}
  .tz-meta .dn{font-size:12px}
  .tz-diff{font-size:10.5px;padding-top:8px;margin-top:8px}
  .tz-diff .val{font-size:11px}

  .dual-clocks{grid-template-columns:1fr;gap:12px;margin:14px 0 20px}
  .clock-box{padding:20px 22px}
  .clock-box .big-clock{font-size:36px}

  .hour-table th,
  .hour-table td{padding:9px 14px;font-size:12.5px}

  .link-grid{grid-template-columns:repeat(2,1fr);gap:8px}
  .link-chip{padding:11px 13px;font-size:12.5px}

  .info-row{grid-template-columns:1fr}
  .info-row dt{
    border-right:none;
    border-bottom:1px solid rgba(15,23,42,.05);
    padding:10px 16px;
    font-size:12px;
  }
  .info-row dd{padding:10px 16px;font-size:13px}

  .datasource{padding:16px;gap:12px}
  .ds-item{gap:10px}
  .ds-ico{width:32px;height:32px;font-size:14px}
  .ds-title{font-size:12.5px}
  .ds-desc{font-size:11.5px}

  .stats-bar{grid-template-columns:repeat(2,1fr);gap:10px;margin-bottom:24px}
  .stat-box{padding:16px}
  .stat-num{font-size:22px}
  .stat-lb{font-size:11px}
  .stat-sub{font-size:10px}

  .industry-list{border-radius:14px}
  .industry-row{padding:14px 16px;grid-template-columns:42px 1fr;gap:12px}
  .industry-ico{width:36px;height:36px}
  .industry-name{font-size:13px}
  .industry-prec{font-size:12.5px}
  .industry-note{font-size:12px}

  .precision-table{border-radius:14px}
  .precision-table .pt-head{display:none}
  .precision-table .pt-row{grid-template-columns:1fr;gap:5px;padding:14px 18px}
  .precision-table .pt-prec,
  .precision-table .pt-use{grid-column:auto}
  .pt-level{font-size:12.5px}
  .pt-desc,.pt-use{font-size:12px}
  .pt-prec{font-size:12.5px}

  .article-body{padding:20px 22px}
  .article-body h2{font-size:16px;padding-left:10px}
  .article-body p{font-size:13px}

  .faq-item summary{padding:15px 18px;font-size:13.5px}
  .faq-body{padding:0 18px 16px;font-size:12.5px;padding-top:12px}

  .tool-workspace{padding:20px 18px 24px}
  .tool-form{max-width:100%}

  .footer{font-size:12px;padding:24px 16px 20px}

  .float-btn{width:42px;height:42px}
  .float-btn img{width:16px;height:16px}
}

/* ═══════════════════════════════════════════════════════════
   25. 响应式：480px（小屏手机）
   ═══════════════════════════════════════════════════════════ */
@media (max-width:480px){
  .hero-time{font-size:34px;letter-spacing:-1.2px}
  .hero-time .am-pm{font-size:12px}

  .grid-4,
  .grid-3{grid-template-columns:1fr 1fr;gap:9px}

  .tz-card{padding:12px 12px 10px}
  .tz-card-name{font-size:13px}
  .tz-time{font-size:19px}
  .tz-time .s{font-size:11px}

  .link-grid{grid-template-columns:1fr}

  .stats-bar{grid-template-columns:1fr 1fr}
  .stat-num{font-size:20px}

  .hour-table th,
  .hour-table td{padding:8px 10px;font-size:12px}

  .float-btn{width:38px;height:38px}
  .float-btn img{width:14px;height:14px}
}

/* ═══════════════════════════════════════════════════════════
   26. 打印样式
   ═══════════════════════════════════════════════════════════ */
@media print{
  .header,
  .footer,
  .faq-item summary::after,
  .float-group{display:none !important}
  body{background:#fff;color:#000}
  .hero{background:#f0f0f0;color:#000;box-shadow:none}
  .hero-time,
  .big-clock{color:#000;text-shadow:none}
  .tz-card,
  .info-table,
  .datasource,
  .hour-table{box-shadow:none;border-color:#ddd}
  a{text-decoration:underline}
}