/* 寻迹 静态内容页共用样式（SEO 落地页） */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  color: #20231f;
  background: #f3f0e8;
  line-height: 1.75;
}
.page { max-width: 720px; margin: 0 auto; padding: 40px 24px 64px; }
.site-header { display: flex; align-items: center; gap: 12px; margin-bottom: 36px; }
.site-logo {
  width: 38px; height: 38px; border-radius: 12px;
  background: #20231f; color: #f3f0e8;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.site-name { font-weight: 600; font-size: 17px; line-height: 1.2; }
.site-tagline { font-size: 10px; letter-spacing: .22em; color: #8a8f86; text-transform: uppercase; }
h1 { font-size: 30px; line-height: 1.2; margin: 0 0 8px; }
h2 { font-size: 20px; margin: 36px 0 10px; }
p { font-size: 15px; color: #4a4e46; margin: 0 0 14px; }
ul { font-size: 15px; color: #4a4e46; padding-left: 22px; margin: 0 0 14px; }
li { margin: 4px 0; }
a { color: #b34b3e; text-decoration: none; }
a:hover { text-decoration: underline; }
.meta { font-size: 13px; color: #8a8f86; margin-bottom: 28px; }
.back-home { display: inline-block; margin-top: 28px; font-size: 14px; }
.site-footer {
  margin-top: 48px; padding-top: 20px;
  border-top: 1px solid #dcd8cb;
  font-size: 13px; color: #8a8f86;
  display: flex; flex-wrap: wrap; gap: 6px 18px;
}
.site-footer a { color: #8a8f86; }
code {
  background: #e6e1d4; border-radius: 4px;
  padding: 1px 6px; font-size: 13px;
}
@media (max-width: 600px) {
  h1 { font-size: 24px; }
  .page { padding: 28px 18px 48px; }
}