/*
Theme Name: WoolPress 情报社
Theme URI: https://ai.xiaoyouxihu.com
Author: xiaoyouxihu
Description: 简洁专业的资讯型主题：焦点轮播、分类标签、文章流、活跃侧边栏、深色页脚，桌面/移动自适应。原创实现，仅参考内容型网站的通用布局范式。
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: woolpress
Tags: blog, news, two-columns, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ========== 变量与基础 ========== */
:root {
  --wool-bg: #f4f6f8;
  --wool-card: #ffffff;
  --wool-text: #24292f;
  --wool-sub: #6b7280;
  --wool-line: #e6eaf0;
  --wool-accent: #00b96b;
  --wool-accent-dark: #009e5c;
  --wool-accent-soft: #e9f9f2;
  --wool-footer: #24272b;
  --wool-radius: 12px;
  --wool-shadow: 0 8px 24px rgba(20, 40, 60, .08);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--wool-bg);
  color: var(--wool-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "WenQuanYi Micro Hei", sans-serif;
  font-size: 15px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; transition: color .15s ease; }
img { max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.4; }
button { font-family: inherit; cursor: pointer; }

.wool-container { max-width: 1120px; margin: 0 auto; padding: 0 16px; }
.wool-main { min-height: 60vh; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link:focus {
  position: fixed; left: 12px; top: 12px; z-index: 999;
  background: var(--wool-accent); color: #fff; padding: 8px 14px; border-radius: 6px;
  clip: auto; width: auto; height: auto;
}

/* ========== 顶部导航 ========== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: #fff; border-bottom: 1px solid var(--wool-line);
}
.header-inner { display: flex; align-items: center; gap: 8px; height: 64px; }
.logo { flex: 0 0 auto; display: flex; align-items: center; }
.logo a { display: flex; align-items: center; gap: 8px; font-size: 21px; font-weight: 800; letter-spacing: .5px; }
.logo .logo-mark {
  width: 12px; height: 12px; border-radius: 3px; background: var(--wool-accent);
  box-shadow: 0 0 0 3px var(--wool-accent-soft);
}
.logo img.custom-logo { max-height: 40px; width: auto; }
.main-nav { flex: 1 1 auto; min-width: 0; }
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-menu li { position: relative; }
.nav-menu li a {
  display: block; padding: 8px 14px; border-radius: 8px;
  font-size: 15px; color: #3d444c; white-space: nowrap;
}
.nav-menu li a:hover { color: var(--wool-accent); background: var(--wool-accent-soft); }
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a { color: var(--wool-accent); font-weight: 600; }
.nav-menu .sub-menu {
  position: absolute; top: 100%; left: 0; z-index: 20; min-width: 150px;
  background: #fff; border: 1px solid var(--wool-line); border-radius: 8px;
  padding: 6px; list-style: none; display: none; box-shadow: var(--wool-shadow);
}
.nav-menu li:hover > .sub-menu { display: block; }

.wool-search { display: flex; align-items: center; }
.wool-search input {
  width: 190px; height: 36px; padding: 0 14px;
  border: 1px solid var(--wool-line); border-right: none;
  border-radius: 18px 0 0 18px; outline: none; font-size: 14px;
  transition: width .25s ease, border-color .2s;
  background: #f7f9fa;
}
.wool-search input:focus { width: 240px; border-color: var(--wool-accent); background: #fff; }
.wool-search button {
  height: 36px; padding: 0 14px; border: none; border-radius: 0 18px 18px 0;
  background: var(--wool-accent); color: #fff; font-size: 13px;
}
.wool-search button:hover { background: var(--wool-accent-dark); }
.header-search { flex: 0 0 auto; }
.header-user { flex: 0 0 auto; }
.header-user a {
  display: inline-block; padding: 7px 16px; border: 1px solid var(--wool-accent);
  color: var(--wool-accent); border-radius: 18px; font-size: 14px;
}
.header-user a:hover { background: var(--wool-accent); color: #fff; }
.drawer-search { display: none; padding-bottom: 12px; }

.nav-toggle { display: none; background: none; border: none; padding: 10px; margin-left: auto; }
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: #333;
  margin: 4px 0; border-radius: 2px; transition: transform .2s, opacity .2s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ========== 焦点轮播 ========== */
.hero {
  position: relative; height: var(--hero-h, 380px); margin: 20px auto 24px;
  border-radius: var(--wool-radius); overflow: hidden; background: #24272b;
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease; }
.hero-slide.is-active { opacity: 1; z-index: 2; }
.hero-slide > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 28px;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 30%, rgba(0,0,0,.74));
}
.hero-badge {
  align-self: flex-start; background: var(--wool-accent); color: #fff;
  font-size: 13px; padding: 3px 12px; border-radius: 20px; margin-bottom: 4px;
}
.hero-title { color: #fff; font-size: 26px; font-weight: 700; margin: 8px 0; }
.hero-title a:hover { text-decoration: underline; text-underline-offset: 4px; }
.hero-meta { color: #ccd4db; font-size: 13px; }
.hero-dots { position: absolute; right: 20px; bottom: 16px; z-index: 5; display: flex; gap: 7px; }
.hero-dots button {
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 4px;
  background: rgba(255,255,255,.45); transition: width .25s, background .25s;
}
.hero-dots button.is-active { width: 22px; background: #fff; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 38px; height: 38px; border: none; border-radius: 50%;
  background: rgba(0,0,0,.35); color: #fff; font-size: 20px; line-height: 1;
  opacity: 0; transition: opacity .2s, background .2s;
}
.hero:hover .hero-arrow { opacity: 1; }
.hero-arrow:hover { background: rgba(0,0,0,.6); }
.hero-prev { left: 14px; }
.hero-next { right: 14px; }

/* ========== 主体两栏布局 ========== */
.layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px; align-items: start; margin-bottom: 36px;
}
.wool-content { min-width: 0; }

/* 分类 Tabs */
.cat-tabs {
  display: flex; gap: 4px; overflow-x: auto; margin-bottom: 14px;
  background: var(--wool-card); border-radius: 10px; padding: 6px;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tabs a {
  padding: 9px 16px; border-radius: 8px; font-size: 15px; color: #4a525a;
  white-space: nowrap;
}
.cat-tabs a:hover { color: var(--wool-accent); background: var(--wool-accent-soft); }
.cat-tabs a.is-active { color: var(--wool-accent); background: var(--wool-accent-soft); font-weight: 600; }

/* ========== 文章卡片 ========== */
.feed { display: flex; flex-direction: column; gap: 14px; }
.wool-card {
  display: flex; gap: 16px; padding: 16px;
  background: var(--wool-card); border-radius: var(--wool-radius);
  transition: box-shadow .2s ease;
}
.wool-card:hover { box-shadow: var(--wool-shadow); }
.wool-card-thumb {
  flex: 0 0 218px; height: 150px; border-radius: 8px; overflow: hidden;
  background: #eceff2; display: block;
}
.wool-card-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .3s ease;
}
.wool-card:hover .wool-card-thumb img { transform: scale(1.045); }
.wool-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.wool-card-cat {
  align-self: flex-start; font-size: 12px; color: var(--wool-accent);
  background: var(--wool-accent-soft); padding: 2px 10px; border-radius: 4px;
}
.wool-card-title { font-size: 18px; font-weight: 600; margin: 9px 0 7px; }
.wool-card-title a:hover { color: var(--wool-accent); }
.wool-card-excerpt {
  color: var(--wool-sub); font-size: 14px; line-height: 1.75;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wool-card-meta {
  margin-top: auto; padding-top: 10px; display: flex; align-items: center;
  gap: 14px; color: #98a1ab; font-size: 13px; flex-wrap: wrap;
}
.wool-card-meta .wool-author { display: inline-flex; align-items: center; gap: 6px; }
.wool-card-meta img, .entry-meta img { border-radius: 50%; }
.wool-empty { justify-content: center; color: var(--wool-sub); }

/* 归档页头 */
.archive-head {
  background: var(--wool-card); border-radius: var(--wool-radius);
  padding: 20px 22px; margin-bottom: 14px;
}
.archive-head h1 { font-size: 22px; }
.archive-head p { color: var(--wool-sub); margin: 6px 0 0; font-size: 14px; }

/* ========== 分页 ========== */
.nav-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin: 26px 0 6px; }
.nav-links .page-numbers {
  min-width: 38px; height: 38px; padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--wool-card); border-radius: 8px; color: #4a525a; font-size: 14px;
}
.nav-links .page-numbers:hover { color: var(--wool-accent); }
.nav-links .page-numbers.current { background: var(--wool-accent); color: #fff; }
.nav-links .dots { border: none; background: none; }

/* ========== 侧边栏 ========== */
.wool-sidebar { display: flex; flex-direction: column; gap: 16px; }
.widget {
  background: var(--wool-card); border-radius: var(--wool-radius); padding: 18px;
}
.widget-title {
  font-size: 16px; font-weight: 700; margin-bottom: 12px;
  padding-left: 10px; border-left: 4px solid var(--wool-accent); line-height: 1.3;
}
.wool-hot { list-style: none; }
.wool-hot li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; border-bottom: 1px dashed var(--wool-line);
}
.wool-hot li:last-child { border-bottom: none; }
.wool-hot .no {
  font-style: normal; font-weight: 800; font-size: 16px;
  color: #c3cad2; width: 22px; flex: 0 0 auto; line-height: 1.5; text-align: center;
}
.wool-hot li:nth-child(-n+3) .no { color: var(--wool-accent); }
.wool-hot a {
  flex: 1; font-size: 14px; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wool-hot a:hover { color: var(--wool-accent); }
.wool-hot .views { flex: 0 0 auto; color: #aab2bb; font-size: 12px; margin-top: 3px; }
.wool-cats { list-style: none; }
.wool-cats li { padding: 7px 0; border-bottom: 1px dashed var(--wool-line); font-size: 14px; display: flex; justify-content: space-between; }
.wool-cats li:last-child { border-bottom: none; }
.wool-cats a:hover { color: var(--wool-accent); }
.wool-cats .count { color: #aab2bb; font-size: 12px; }
.wool-tags a {
  display: inline-block; background: #f0f2f5; color: #4a525a;
  padding: 3px 11px; border-radius: 20px; font-size: 13px; margin: 0 6px 8px 0;
}
.wool-tags a:hover { background: var(--wool-accent-soft); color: var(--wool-accent); }
.qr-placeholder {
  height: 150px; border: 2px dashed var(--wool-line); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #aab2bb; font-size: 13px; text-align: center; line-height: 1.8;
}

/* ========== 文章页 ========== */
.wool-single {
  background: var(--wool-card); border-radius: var(--wool-radius); padding: 30px 32px;
}
.breadcrumb { font-size: 13px; color: #98a1ab; margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--wool-accent); }
.entry-title { font-size: 27px; font-weight: 700; line-height: 1.4; }
.entry-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  margin-top: 14px; padding-bottom: 16px;
  border-bottom: 1px solid var(--wool-line); color: #8a929b; font-size: 13px;
}
.entry-meta .wool-author { display: inline-flex; align-items: center; gap: 7px; }
.entry-thumb { margin-top: 18px; border-radius: 8px; overflow: hidden; }
.entry-content { margin-top: 20px; font-size: 16px; line-height: 1.95; color: #2a2f36; word-break: break-word; }
.entry-content p { margin: 1em 0; }
.entry-content h2 { font-size: 21px; margin: 1.7em 0 .8em; padding-left: 12px; border-left: 4px solid var(--wool-accent); }
.entry-content h3 { font-size: 18px; margin: 1.5em 0 .7em; }
.entry-content ul, .entry-content ol { padding-left: 26px; margin: 1em 0; }
.entry-content li { margin: .4em 0; }
.entry-content blockquote {
  margin: 1.2em 0; padding: 12px 18px; border-radius: 0 8px 8px 0;
  background: #f0faf5; border-left: 4px solid var(--wool-accent); color: #35634b;
}
.entry-content blockquote p { margin: .4em 0; }
.entry-content code {
  background: #f0f2f5; padding: 2px 7px; border-radius: 4px; font-size: 90%;
  font-family: "SF Mono", Consolas, Menlo, monospace;
}
.entry-content pre {
  background: #24272b; color: #e6e9ec; padding: 16px 18px; border-radius: 8px;
  overflow: auto; line-height: 1.6;
}
.entry-content pre code { background: none; padding: 0; color: inherit; }
.entry-content img { border-radius: 8px; }
.entry-content a { color: var(--wool-accent); }
.entry-content a:hover { text-decoration: underline; text-underline-offset: 3px; }
.entry-content table { border-collapse: collapse; width: 100%; margin: 1em 0; font-size: 14px; }
.entry-content th, .entry-content td { border: 1px solid var(--wool-line); padding: 9px 12px; text-align: left; }
.entry-content th { background: #f7f9fa; }

.entry-tags { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--wool-line); display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.entry-tags .tag-t { color: #98a1ab; font-size: 13px; }
.entry-tags a {
  background: #f0f2f5; color: #4a525a; padding: 4px 13px;
  border-radius: 20px; font-size: 13px;
}
.entry-tags a:hover { background: var(--wool-accent-soft); color: var(--wool-accent); }

.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
.post-nav a {
  background: var(--wool-card); padding: 14px 16px; border-radius: 10px;
  font-size: 14px; color: #4a525a;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.post-nav a:hover { color: var(--wool-accent); }
.post-nav .nav-next { text-align: right; }

.related { padding: 18px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.rel-card {
  display: block; border-radius: 8px; overflow: hidden; background: #f7f9fa;
}
.rel-card img { width: 100%; height: 110px; object-fit: cover; display: block; }
.rel-card span {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  padding: 9px 11px; font-size: 13px; line-height: 1.5; color: #3d444c;
}
.rel-card:hover span { color: var(--wool-accent); }

/* 评论 */
.comments-area { background: var(--wool-card); border-radius: var(--wool-radius); padding: 24px; margin-top: 18px; }
.comments-area .comment-list { list-style: none; }
.comments-area .comment-list li, .comments-area .comment-list .children li { list-style: none; }
.comments-area .children { padding-left: 34px; }
.comment-body { padding: 12px 0; border-bottom: 1px dashed var(--wool-line); font-size: 14px; }
.comment-meta { color: #98a1ab; font-size: 13px; margin-bottom: 4px; }
.comment-form p { margin: 10px 0; }
.comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"] {
  width: 100%; padding: 10px 12px; border: 1px solid var(--wool-line); border-radius: 8px; font-family: inherit;
}
.comment-form .submit {
  background: var(--wool-accent); color: #fff; border: none;
  padding: 10px 26px; border-radius: 8px; font-size: 14px;
}

/* ========== 页脚 ========== */
.site-footer { background: var(--wool-footer); color: #9aa3ad; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; padding: 42px 0 30px; }
.footer-grid h4 { color: #fff; font-size: 15px; margin-bottom: 14px; }
.footer-desc { font-size: 13px; line-height: 1.8; margin: 0 0 10px; }
.footer-links { list-style: none; }
.footer-links li { margin: 8px 0; font-size: 14px; }
.footer-links a:hover, .site-footer a:hover { color: #fff; }
.footer-links .count { color: #6d757e; font-size: 12px; margin-left: 6px; }
.footer-qr {
  width: 130px; height: 130px; border: 2px dashed #43484e; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; text-align: center; line-height: 1.8; color: #6d757e;
}
.footer-bottom {
  border-top: 1px solid #33373c; padding: 16px 0; font-size: 13px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* 返回顶部 */
.back-top {
  position: fixed; right: 26px; bottom: 60px; z-index: 90;
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: #fff; color: var(--wool-accent); font-size: 20px;
  box-shadow: 0 6px 18px rgba(20,40,60,.16); opacity: 0;
  visibility: hidden; transition: opacity .2s, visibility .2s;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--wool-accent); color: #fff; }

/* 404 */
.wool-404 { text-align: center; padding: 70px 32px; }
.wool-404 h1 { font-size: 64px; color: var(--wool-accent); }
.wool-404 .wool-search { justify-content: center; margin: 18px 0; }
.wool-404 .wool-search input { width: 280px; }
.btn-primary {
  display: inline-block; background: var(--wool-accent); color: #fff;
  padding: 10px 28px; border-radius: 22px; margin-top: 8px;
}
.btn-primary:hover { background: var(--wool-accent-dark); color: #fff; }

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .layout { grid-template-columns: 1fr; }
  .hero { height: 320px; }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .header-search, .header-user { display: none; }
  .nav-toggle { display: block; }
  .nav-open .main-nav {
    display: block; position: absolute; left: 0; right: 0; top: 64px;
    background: #fff; border-bottom: 1px solid var(--wool-line);
    box-shadow: var(--wool-shadow);
  }
  .nav-open .nav-menu { flex-direction: column; align-items: stretch; padding: 10px 16px 16px; }
  .nav-menu li a { padding: 11px 10px; font-size: 16px; }
  .drawer-search { display: flex; }
  .nav-open .drawer-search { display: flex; }
  .hero { height: 250px; margin-top: 14px; }
  .hero-inner { padding: 18px; }
  .hero-title { font-size: 19px; }
  .hero-arrow { display: none; }
  .wool-single { padding: 22px 18px; }
  .entry-title { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; padding: 30px 0 22px; }
}
@media (max-width: 680px) {
  .wool-card { flex-direction: column; gap: 12px; padding: 14px; }
  .wool-card-thumb { flex: none; width: 100%; height: 172px; }
  .wool-card-title { font-size: 17px; }
  .post-nav { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .back-top { right: 16px; bottom: 24px; }
}

/* ========== 主题选项组件 ========== */
/* 公告条 */
.wool-notice { background: var(--wool-accent-soft); border-bottom: 1px solid #d8f3e6; }
.wool-notice .wool-container {
  display: flex; align-items: center; gap: 10px;
  min-height: 42px; padding-top: 7px; padding-bottom: 7px; font-size: 14px;
}
.wool-notice-tag {
  background: var(--wool-accent); color: #fff; font-size: 12px;
  padding: 1px 9px; border-radius: 4px; flex: 0 0 auto;
}
.wool-notice-text {
  color: #23593f; flex: 1; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.wool-notice-link { color: var(--wool-accent); flex: 0 0 auto; font-size: 13px; }

/* 信息流广告卡片 */
.wool-ad-card { padding: 0; background: transparent; }
.wool-ad-card > * { border-radius: var(--wool-radius); overflow: hidden; }

/* 文章底部声明与广告 */
.entry-copyright {
  margin-top: 18px; padding: 12px 16px;
  background: #f7f9fa; border-left: 3px solid var(--wool-accent);
  border-radius: 0 8px 8px 0; color: #7a828b; font-size: 13px; line-height: 1.8;
}
.wool-single-ad { margin-top: 18px; }

/* 侧栏广告位 */
.wool-widget-ad { padding: 0; overflow: hidden; border-radius: var(--wool-radius); }
.wool-widget-ad > * { max-width: 100%; }

/* 页脚二维码图片 */
.footer-qr-img { width: 130px; border-radius: 10px; display: block; }

/* 导航不吸顶 */
.wool-not-sticky .site-header { position: relative; }

/* 文章页无侧栏（通栏） */
.layout.no-sidebar { grid-template-columns: 1fr; }

@media (max-width: 860px) {
  .wool-notice .wool-container { font-size: 13px; }
}

/* ========== 编辑推荐（仿资讯站「编辑推荐」横排模块） ========== */
.wool-picks {
  background: var(--wool-card); border-radius: var(--wool-radius);
  padding: 18px; margin: 0 auto 24px;
}
.picks-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.picks-head h2 { font-size: 17px; padding-left: 10px; border-left: 4px solid var(--wool-accent); line-height: 1.3; }
.picks-head a { color: var(--wool-sub); font-size: 13px; }
.picks-head a:hover { color: var(--wool-accent); }
.picks-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.pick-card { display: block; min-width: 0; }
.pick-card img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: 8px; display: block;
}
.pick-title {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: 14px; line-height: 1.5; margin-top: 8px; color: var(--wool-text); font-weight: 500;
}
.pick-card:hover .pick-title { color: var(--wool-accent); }
.pick-meta { display: block; margin-top: 5px; color: #98a1ab; font-size: 12px; }

/* ========== 文章页互动条 ========== */
.entry-actions {
  display: flex; align-items: center; gap: 12px;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--wool-line);
}
.entry-actions button {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--wool-line); background: #fff; color: #4a525a;
  padding: 8px 18px; border-radius: 22px; font-size: 14px;
  transition: color .15s, background .15s, border-color .15s;
}
.entry-actions button:hover { color: var(--wool-accent); border-color: var(--wool-accent); }
.entry-actions .wool-like-btn.liked {
  color: #fff; background: var(--wool-accent); border-color: var(--wool-accent);
}
.entry-actions .wool-like-btn svg { fill: currentColor; }
.entry-actions .wool-like-count { font-style: normal; font-weight: 600; }
.entry-actions .entry-views-inline { margin-left: auto; color: #98a1ab; font-size: 13px; }

/* ========== 作者卡片 ========== */
.wool-author-card {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px; padding: 16px 18px;
  background: #f7f9fa; border-radius: var(--wool-radius);
}
.wool-author-card .ac-avatar img { width: 56px; height: 56px; border-radius: 50%; display: block; }
.wool-author-card .ac-body { flex: 1; min-width: 0; }
.wool-author-card .ac-name { font-weight: 700; font-size: 15px; }
.wool-author-card .ac-name:hover { color: var(--wool-accent); }
.wool-author-card .ac-desc {
  margin: 4px 0 0; color: var(--wool-sub); font-size: 13px; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wool-author-card .ac-btn {
  flex: 0 0 auto; border: 1px solid var(--wool-accent); color: var(--wool-accent);
  padding: 6px 14px; border-radius: 18px; font-size: 13px;
}
.wool-author-card .ac-btn:hover { background: var(--wool-accent); color: #fff; }

/* 作者归档页头 */
.wool-author-head .ah-top { display: flex; align-items: center; gap: 16px; }
.wool-author-head .ah-top img { width: 64px; height: 64px; border-radius: 50%; flex: 0 0 auto; }

/* ========== 热文榜 ========== */
.ranking-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; align-items: start; margin-bottom: 30px;
}
@media (min-width: 681px) and (max-width: 1024px) {
  .picks-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .ranking-grid { grid-template-columns: 1fr; }
  .picks-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== 额度总表 ========== */
.deal-panel { margin-bottom: 18px; }
.table-scroll { overflow-x: auto; }
.deal-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 640px; }
.deal-table th, .deal-table td {
  border-bottom: 1px solid var(--wool-line); padding: 10px 12px;
  text-align: left; vertical-align: top;
}
.deal-table th { color: #7a828b; font-weight: 600; white-space: nowrap; }
.deal-table td a { font-weight: 500; }
.deal-table td a:hover { color: var(--wool-accent); }
.deal-plat { white-space: nowrap; color: #4a525a; }
.deal-value { color: var(--wool-sub); min-width: 180px; }
.deal-badge {
  display: inline-block; font-size: 12px; padding: 2px 10px;
  border-radius: 12px; white-space: nowrap;
}
.badge-long { background: var(--wool-accent-soft); color: var(--wool-accent); }
.badge-soon { background: #fff4e5; color: #c96f1e; }
.badge-ended { background: #f0f2f5; color: #98a1ab; }
.deal-dl { color: #98a1ab; font-size: 12px; }
.deal-go {
  display: inline-block; border: 1px solid var(--wool-accent); color: var(--wool-accent);
  padding: 3px 12px; border-radius: 14px; font-size: 13px; white-space: nowrap;
}
.deal-go:hover { background: var(--wool-accent); color: #fff; }
.deal-note { color: #98a1ab; font-size: 13px; margin: 14px 0 30px; }

/* 额度详情信息卡 */
.deal-info-card {
  margin-top: 16px; padding: 16px 18px;
  background: #f7f9fa; border-radius: var(--wool-radius);
}
.deal-info-card p { margin: 8px 0 0; font-size: 14px; color: #4a525a; }
.deal-plat-tag {
  display: inline-block; background: #eceff3; color: #4a525a;
  font-size: 12px; padding: 2px 10px; border-radius: 12px; margin-left: 6px;
}

/* ========== 投稿表单 ========== */
.wool-submit-form {
  margin-top: 18px; display: flex; flex-direction: column; gap: 14px; max-width: 640px;
}
.wool-submit-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 14px; color: #3d444c;
}
.wool-submit-form input, .wool-submit-form textarea {
  padding: 10px 12px; border: 1px solid var(--wool-line); border-radius: 8px;
  font-family: inherit; font-size: 14px;
}
.wool-submit-form input:focus, .wool-submit-form textarea:focus {
  outline: none; border-color: var(--wool-accent);
}
.wool-submit-form .wool-hp {
  position: absolute; left: -9999px; width: 0; height: 0; opacity: 0;
}
.wool-submit-form button[type="submit"] {
  align-self: flex-start; background: var(--wool-accent); color: #fff;
  border: none; padding: 11px 32px; border-radius: 22px; font-size: 15px; cursor: pointer;
}
.wool-submit-form button[type="submit"]:disabled { opacity: .6; cursor: default; }
.wool-msg.ok { color: var(--wool-accent); }
.wool-msg.err { color: #b32d2e; }

/* ========== UI 精修 v1.4 ========== */
html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
::selection { background: var(--wool-accent); color: #fff; }
:focus-visible { outline: 2px solid var(--wool-accent); outline-offset: 2px; border-radius: 4px; }
h1, h2, h3, h4 { letter-spacing: .01em; }
.logo .logo-mark { background: linear-gradient(135deg, var(--wool-accent), #2fd18b); }
.site-header { transition: box-shadow .2s ease, background .2s ease; }
.site-header.is-scrolled { box-shadow: 0 4px 16px rgba(20, 40, 60, .10); }
.wool-card:hover { border-color: color-mix(in srgb, var(--wool-accent) 28%, transparent); }
.wool-sidebar { position: sticky; top: 80px; }
.layout.no-sidebar .wool-content { max-width: 860px; }

/* hero 文案入场动画 */
.hero-slide.is-active .hero-inner > * { animation: woolUp .55s ease both; }
.hero-slide.is-active .hero-inner > :nth-child(2) { animation-delay: .08s; }
.hero-slide.is-active .hero-inner > :nth-child(3) { animation-delay: .16s; }
@keyframes woolUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* 今日更新徽标 + 分类彩点 */
.wool-today {
  display: inline-block; background: var(--wool-accent); color: #fff;
  font-size: 11px; padding: 0 7px; border-radius: 10px;
  margin-left: 5px; line-height: 17px; vertical-align: 1px; font-weight: 600;
}
.cat-tabs a .dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 2px; margin-right: 6px; vertical-align: 0;
}

/* 阅读进度条 */
.wool-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--wool-accent), #2fd18b);
  z-index: 300; opacity: 0; transition: width .1s linear, opacity .3s;
}

/* 过期提醒 */
.wool-stale {
  margin: 18px 0; padding: 12px 16px;
  background: #fff8ec; border: 1px solid #f5e2bd; border-radius: 8px;
  color: #8a6d3b; font-size: 14px; line-height: 1.7;
}

/* 文章目录 */
.wool-toc {
  margin: 18px 0; padding: 14px 18px;
  background: #f7f9fa; border-radius: var(--wool-radius); font-size: 14px;
}
.wool-toc summary { cursor: pointer; font-weight: 700; color: var(--wool-text); }
.wool-toc ul { list-style: none; padding: 0; margin: 10px 0 0; }
.wool-toc li { padding: 4px 0; }
.wool-toc li.lv3 { padding-left: 18px; }
.wool-toc a { color: #4a525a; }
.wool-toc a:hover { color: var(--wool-accent); }
.wool-h-anchor { opacity: 0; margin-left: 6px; color: var(--wool-accent); text-decoration: none; font-weight: 400; font-size: .8em; }
.entry-content h2:hover .wool-h-anchor, .entry-content h3:hover .wool-h-anchor { opacity: .6; }

/* 暗色切换按钮 */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border: 1px solid var(--wool-line);
  border-radius: 50%; background: transparent; color: #4a525a;
  cursor: pointer; transition: color .15s, border-color .15s;
}
.theme-toggle:hover { color: var(--wool-accent); border-color: var(--wool-accent); }
html[data-theme="dark"] .theme-toggle .i-moon { display: none; }
html:not([data-theme="dark"]) .theme-toggle .i-sun { display: none; }

/* ========== 暗色模式 ========== */
html[data-theme="dark"] {
  --wool-bg: #14171a;
  --wool-card: #1d2126;
  --wool-text: #e8eaed;
  --wool-sub: #9aa3ad;
  --wool-line: #2c3136;
  --wool-accent-soft: rgba(0, 185, 107, .14);
  --wool-footer: #101214;
  --wool-shadow: 0 8px 24px rgba(0, 0, 0, .45);
}
html[data-theme="dark"] body { background: var(--wool-bg); color: var(--wool-text); }
html[data-theme="dark"] .site-header { background: var(--wool-card); border-bottom-color: var(--wool-line); }
html[data-theme="dark"] .site-header.is-scrolled { box-shadow: 0 4px 16px rgba(0, 0, 0, .5); }
html[data-theme="dark"] .nav-menu li a { color: #c6ccd2; }
html[data-theme="dark"] .nav-toggle span { background: #c6ccd2; }
html[data-theme="dark"] .theme-toggle { color: #c6ccd2; }
html[data-theme="dark"] .wool-search input { background: #181b1f; color: var(--wool-text); }
html[data-theme="dark"] .wool-search input:focus { background: #181b1f; }
html[data-theme="dark"] .cat-tabs, html[data-theme="dark"] .wool-card, html[data-theme="dark"] .widget,
html[data-theme="dark"] .wool-single, html[data-theme="dark"] .archive-head, html[data-theme="dark"] .post-nav a,
html[data-theme="dark"] .wool-toc, html[data-theme="dark"] .comments-area, html[data-theme="dark"] .nav-menu .sub-menu,
html[data-theme="dark"] .wool-picks { background: var(--wool-card); }
html[data-theme="dark"] .wool-card-thumb { background: #262b30; }
html[data-theme="dark"] .wool-card:hover { box-shadow: var(--wool-shadow); }
html[data-theme="dark"] .entry-actions button { background: var(--wool-card); color: #c6ccd2; }
html[data-theme="dark"] .entry-actions .wool-like-btn.liked { color: #fff; background: var(--wool-accent); border-color: var(--wool-accent); }
html[data-theme="dark"] .entry-content { color: #cfd4d9; }
html[data-theme="dark"] .entry-content code { background: #262b30; }
html[data-theme="dark"] .entry-content th { background: #262b30; }
html[data-theme="dark"] .entry-content blockquote { background: rgba(0, 185, 107, .08); color: #9fd8bd; }
html[data-theme="dark"] .wool-tags a, html[data-theme="dark"] .entry-tags a { background: #262b30; color: #b6bec6; }
html[data-theme="dark"] .entry-tags a:hover, html[data-theme="dark"] .wool-tags a:hover { background: var(--wool-accent-soft); color: var(--wool-accent); }
html[data-theme="dark"] .entry-copyright, html[data-theme="dark"] .wool-author-card, html[data-theme="dark"] .deal-info-card,
html[data-theme="dark"] .rel-card { background: #181b1f; }
html[data-theme="dark"] .rel-card span { color: #c6ccd2; }
html[data-theme="dark"] .wool-hot li, html[data-theme="dark"] .wool-cats li, html[data-theme="dark"] .entry-meta,
html[data-theme="dark"] .entry-tags, html[data-theme="dark"] .entry-actions, html[data-theme="dark"] .comment-body,
html[data-theme="dark"] .deal-table th, html[data-theme="dark"] .deal-table td, html[data-theme="dark"] .wool-toc a { border-color: var(--wool-line); }
html[data-theme="dark"] .wool-toc a { color: #c6ccd2; }
html[data-theme="dark"] .wool-card-meta, html[data-theme="dark"] .wool-hot .views, html[data-theme="dark"] .breadcrumb,
html[data-theme="dark"] .wool-card-excerpt, html[data-theme="dark"] .wool-cats .count, html[data-theme="dark"] .pick-meta,
html[data-theme="dark"] .deal-note { color: #8a929b; }
html[data-theme="dark"] .deal-plat, html[data-theme="dark"] .deal-table td a, html[data-theme="dark"] .wool-toc summary,
html[data-theme="dark"] .ac-name, html[data-theme="dark"] .ac-desc, html[data-theme="dark"] .wool-author-card .ac-name,
html[data-theme="dark"] .pick-title { color: var(--wool-text); }
html[data-theme="dark"] .deal-info-card { color: #c6ccd2; }
html[data-theme="dark"] .deal-info-card p { color: #c6ccd2; }
html[data-theme="dark"] .wool-notice { background: rgba(0, 185, 107, .10); border-bottom-color: #1f3d2e; }
html[data-theme="dark"] .wool-notice-text { color: #9fd8bd; }
html[data-theme="dark"] .wool-stale { background: rgba(242, 153, 74, .10); border-color: #4a3b22; color: #e0c48a; }
html[data-theme="dark"] .back-top { background: #262b30; }
html[data-theme="dark"] .site-footer { background: #101214; }
html[data-theme="dark"] .qr-placeholder { border-color: #2c3136; }
html[data-theme="dark"] .wool-submit-form input, html[data-theme="dark"] .wool-submit-form textarea {
  background: #181b1f; border-color: var(--wool-line); color: var(--wool-text);
}
html[data-theme="dark"] img { opacity: .92; }

/* ========== 移动端深度适配 v1.4.1 ========== */
/* 登录态管理栏偏移 */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

/* 内容溢出保护 */
.entry-content { overflow-wrap: anywhere; }
.entry-content pre { font-size: 13px; }

/* 触屏反馈 */
@media (hover: none) {
  .wool-card:active { transform: scale(.995); }
  .wool-bottombar a:active, .wool-bottombar button:active,
  .theme-toggle:active, .back-top:active { opacity: .7; }
}

/* 底部快捷导航（≤860px 显示） */
.wool-bottombar { display: none; }
@media (max-width: 860px) {
  .wool-bottombar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
    display: flex; background: var(--wool-card);
    border-top: 1px solid var(--wool-line);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 16px rgba(20, 40, 60, .08);
  }
  .wool-bottombar a, .wool-bottombar button {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
    background: none; border: none; color: #8a929b;
    font-size: 11px; padding: 4px 0; cursor: pointer; text-decoration: none;
  }
  .wool-bottombar a.is-active,
  .wool-bottombar a:hover, .wool-bottombar button:hover { color: var(--wool-accent); }
  .wool-bottombar svg {
    width: 20px; height: 20px; fill: none; stroke: currentColor;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  }
  body { padding-bottom: 58px; }
  .back-top { bottom: 76px; }
}
.wool-nav-lock { overflow: hidden; }

/* iOS 防输入缩放（聚焦时字号<16px 会自动放大页面） */
@media (max-width: 860px) {
  .wool-search input,
  .wool-submit-form input, .wool-submit-form textarea,
  .comment-form input, .comment-form textarea { font-size: 16px; }
}

/* 作者卡小屏换行 */
@media (max-width: 680px) {
  .wool-author-card { flex-wrap: wrap; }
  .wool-author-card .ac-btn { margin-left: 70px; }
}

/* 超小屏（≤400px）再压缩 */
@media (max-width: 400px) {
  .wool-container { padding: 0 12px; }
  .hero { height: 210px; margin-top: 10px; }
  .hero-title { font-size: 17px; }
  .hero-inner { padding: 14px; }
  .wool-card-title { font-size: 16px; }
  .entry-title { font-size: 20px; }
  .wool-single { padding: 18px 14px; }
  .wool-card-thumb { height: 150px; }
}
html[data-theme="dark"] .wool-bottombar {
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .4);
}

/* ========== v1.5 实用页面与功能 ========== */
/* 过期徽章与 NEW 角标 */
.wool-card-thumb { position: relative; }
.wool-expire { position: absolute; top: 8px; left: 8px; font-size: 12px; padding: 2px 9px; border-radius: 4px; color: #fff; font-weight: 600; }
.wool-expire.so { background: #f2994a; }
.wool-expire.ex { background: #6b7280; }
.wool-newflag { position: absolute; top: 8px; right: 8px; background: var(--wool-accent); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 4px; }

/* 活动进度条与过期横幅 */
.wool-expire-progress { margin: 18px 0; padding: 14px 16px; background: #fff8ec; border: 1px solid #f5e2bd; border-radius: 8px; }
.wep-head { display: flex; justify-content: space-between; font-size: 14px; color: #8a6d3b; margin-bottom: 8px; flex-wrap: wrap; gap: 6px; }
.wep-bar { height: 8px; background: #f0e6d2; border-radius: 4px; overflow: hidden; }
.wep-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--wool-accent), #f2994a); border-radius: 4px; transition: width .4s; }
.wool-expired-banner { border-color: #f3c1c1; background: #fdf0f0; color: #a33e3e; }

/* 公众号引导条 */
.wool-follow-bar {
  display: flex; align-items: center; gap: 10px; margin-top: 20px;
  padding: 13px 18px; border-radius: var(--wool-radius);
  background: linear-gradient(135deg, var(--wool-accent-soft), #fff);
  border: 1px dashed var(--wool-accent);
}
.fb-ico { font-size: 20px; }
.fb-text { flex: 1; color: #2a5c44; font-size: 14px; }
.fb-go { color: var(--wool-accent); font-size: 13px; }

/* AI 模型导航 */
.model-toolbar { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.model-toolbar input[type="search"] {
  max-width: 420px; width: 100%; padding: 11px 14px;
  border: 1px solid var(--wool-line); border-radius: 10px; font-size: 15px; background: #fff;
}
.model-toolbar input[type="search"]:focus { outline: none; border-color: var(--wool-accent); }
.model-type-nav { display: flex; gap: 6px; flex-wrap: wrap; }
.model-type-nav a { padding: 7px 14px; background: var(--wool-card); border-radius: 8px; font-size: 14px; color: #4a525a; }
.model-type-nav a.is-active, .model-type-nav a:hover { color: var(--wool-accent); background: var(--wool-accent-soft); }
.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 10px; }
.model-card { background: var(--wool-card); border-radius: var(--wool-radius); padding: 16px; }
.mc-head { display: flex; align-items: center; gap: 10px; }
.mc-logo {
  width: 40px; height: 40px; border-radius: 10px; flex: 0 0 auto;
  background: linear-gradient(135deg, var(--wool-accent), #2fd18b);
  color: #fff; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.mc-title { flex: 1; min-width: 0; }
.mc-title strong { font-size: 15px; display: block; }
.mc-type { font-size: 12px; color: #98a1ab; }
.mc-star { color: #f2b01e; font-size: 12px; letter-spacing: 1px; white-space: nowrap; }
.mc-free { margin: 10px 0 0; font-size: 13px; color: #35634b; background: var(--wool-accent-soft); padding: 7px 10px; border-radius: 6px; line-height: 1.6; }
.mc-links { margin-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; }
.mc-links a { border: 1px solid var(--wool-line); padding: 5px 12px; border-radius: 16px; font-size: 13px; color: #4a525a; }
.mc-links a:hover { color: var(--wool-accent); border-color: var(--wool-accent); }
.mc-none { color: #98a1ab; font-size: 13px; }
.model-count { color: #98a1ab; font-size: 13px; margin: 6px 0 30px; }
@media (max-width: 1024px) { .model-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .model-grid { grid-template-columns: 1fr; } }

/* 每日速递 */
.daily-day { margin-bottom: 22px; }
.daily-date { display: flex; align-items: center; gap: 8px; font-size: 17px; padding-left: 10px; border-left: 4px solid var(--wool-accent); }
.daily-week { color: #98a1ab; font-size: 13px; font-weight: 400; }
.daily-count { margin-left: auto; color: #98a1ab; font-size: 12px; font-style: normal; }
.daily-list { list-style: none; background: var(--wool-card); border-radius: var(--wool-radius); padding: 6px 16px; margin-top: 10px; }
.daily-list li { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px dashed var(--wool-line); }
.daily-list li:last-child { border-bottom: none; }
.daily-list a { flex: 1; min-width: 0; font-size: 14px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.daily-list a:hover { color: var(--wool-accent); }
.daily-meta { flex: 0 0 auto; color: #98a1ab; font-size: 12px; }

/* 工具箱 */
.tool-panel { border: 1px solid var(--wool-line); border-radius: var(--wool-radius); padding: 18px; margin-top: 16px; }
.tool-title { font-size: 17px; margin-bottom: 6px; }
.tool-desc { color: var(--wool-sub); font-size: 13px; margin: 0 0 12px; }
.tool-panel textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--wool-line); border-radius: 8px; font-family: inherit; font-size: 14px; }
.tool-panel textarea:focus { outline: none; border-color: var(--wool-accent); }
.tool-result { margin-top: 10px; font-size: 14px; color: var(--wool-text); min-height: 20px; }
.tool-result b { color: var(--wool-accent); font-size: 16px; }
.tool-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
.tool-grid label { display: flex; flex-direction: column; gap: 5px; font-size: 13px; color: #4a525a; }
.tool-grid input, .tool-grid select { padding: 9px 10px; border: 1px solid var(--wool-line); border-radius: 8px; font-size: 14px; }

/* 标签墙 */
.tagwall { display: flex; flex-wrap: wrap; gap: 10px; }
.tagchip { display: inline-flex; align-items: center; gap: 5px; padding: 6px 14px; border-radius: 20px; background: #f0f2f5; color: #4a525a; font-size: 13px; }
.tagchip i { font-style: normal; color: #98a1ab; font-size: 11px; }
.tagchip:hover { background: var(--wool-accent-soft); color: var(--wool-accent); }
.tagchip.sz2 { font-size: 14px; padding: 8px 16px; }
.tagchip.sz3 { font-size: 15px; padding: 9px 18px; background: var(--wool-accent-soft); color: var(--wool-accent); font-weight: 600; }

/* 关于页 */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 18px 0; }
.about-stat { background: #f7f9fa; border-radius: 10px; padding: 16px; text-align: center; }
.about-stat strong { display: block; font-size: 24px; color: var(--wool-accent); }
.about-stat span { color: var(--wool-sub); font-size: 13px; }
.about-h { font-size: 18px; margin: 1.6em 0 .8em; padding-left: 12px; border-left: 4px solid var(--wool-accent); }
.about-list { padding-left: 0; list-style: none; }
.about-list li { padding: 5px 0; font-size: 14px; line-height: 1.8; }
.about-list a { color: var(--wool-accent); }
@media (max-width: 680px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }

/* 页脚四列与免责声明 */
.footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
.footer-disclaimer { color: #6d757e; font-size: 12px; line-height: 1.7; border-top: 1px solid #33373c; padding: 14px 0 0; margin: 0 0 14px; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }
