.baishu .content {
  padding-top: 4.5rem;
}

/* 博客页导航与全站 header 结构对齐 */
.baishu .header .navbar .container .navbar-header .navbar-brand {
  height: 4.5rem;
  padding: 1.25rem 0;
  margin-left: 0;
}
.baishu .header .navbar .container .navbar-header .navbar-brand img {
  height: 100%;
  width: auto;
  max-width: 10rem;
}
.baishu .header .navbar .container .navbar-collapse .navbar-nav li a.link,
.baishu .header .navbar .container .navbar-collapse .navbar-nav li a {
  padding: 0 0.375rem;
  margin: 0 0.875rem;
  font-size: 1rem;
  height: 4.5rem;
  line-height: 4.5rem;
  color: #006F47;
  display: block;
}
.baishu .header .navbar .container .navbar-collapse .navbar-nav li.active a {
  color: #006F47;
  font-weight: 600;
}

.baishu .content .blog-main {
  padding: 3rem 0 5rem;
  background: #f8fafc;
}

.baishu .content .blog-hero {
  background: linear-gradient(135deg, #047857 0%, #006F47 55%, #005a3a 100%);
  padding: 2.75rem 0 2.25rem;
  color: #fff;
  text-align: center;
}

.baishu .content .blog-hero h1 {
  font-size: 1.75rem;
  font-weight: 600;
  margin: 0 0 0.625rem;
  letter-spacing: -0.01em;
}

.baishu .content .blog-hero p {
  font-size: 0.9375rem;
  opacity: 0.9;
  margin: 0 auto;
  max-width: 36rem;
  line-height: 1.65;
}

/* ========== 筛选工具栏 ========== */
.baishu .content .blog-toolbar {
  margin-bottom: 1.5rem;
}

.baishu .content .blog-search-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.baishu .content .blog-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 1rem;
  pointer-events: none;
}

.baishu .content .blog-search-input {
  width: 100%;
  height: 2.75rem;
  padding: 0 1rem 0 2.75rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  color: #333;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.baishu .content .blog-search-input:focus {
  outline: none;
  border-color: #006F47;
  box-shadow: 0 0 0 2px rgba(0, 111, 71, 0.12);
}

.baishu .content .blog-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  justify-content: space-between;
}

.baishu .content .blog-extra-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.baishu .content .blog-select {
  height: 2.25rem;
  padding: 0 2rem 0 0.75rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  color: #333;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 0.625rem center;
  appearance: none;
  min-width: 8rem;
}

.baishu .content .blog-reset-btn {
  height: 2.25rem;
  padding: 0 1rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.375rem;
  background: #fff;
  color: #666;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.baishu .content .blog-reset-btn:hover {
  border-color: #006F47;
  color: #006F47;
}

.baishu .content .blog-result-count {
  font-size: 0.875rem;
  color: #999;
  margin: 0 0 1.25rem;
}

.baishu .content .blog-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #999;
  font-size: 0.9375rem;
}

.baishu .content .blog-empty.none {
  display: none;
}

.baishu .content .blog-empty a {
  color: #006F47;
}

.baishu .content .blog-noscript-list {
  columns: 2;
  column-gap: 2rem;
  font-size: 0.8125rem;
  line-height: 1.8;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.baishu .content .blog-noscript-list a {
  color: #006F47;
}

.baishu .content .blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.baishu .content .blog-filters .filter-tag {
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  border: 1px solid #d9d9d9;
  color: #666;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.baishu .content .blog-filters .filter-tag.active,
.baishu .content .blog-filters .filter-tag:hover {
  border-color: #006F47;
  color: #006F47;
  background: #f0faf6;
}

.baishu .content .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.baishu .content .blog-card {
  border-radius: 0.5rem;
  border: 1px solid #eee;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.baishu .content .blog-card:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 111, 71, 0.12);
  transform: translateY(-2px);
}

.baishu .content .blog-card .card-cover {
  height: 10rem;
  background: linear-gradient(135deg, #e8f5ef 0%, #d4ede3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.baishu .content .blog-card .card-cover .cover-icon {
  font-size: 2.5rem;
  color: #006F47;
}

.baishu .content .blog-card .card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.baishu .content .blog-card .card-meta {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 0.5rem;
}

.baishu .content .blog-card .card-meta .tag {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  background: #f0faf6;
  color: #006F47;
  border-radius: 0.25rem;
  margin-right: 0.5rem;
}

.baishu .content .blog-card h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.baishu .content .blog-card h2 a {
  color: inherit;
  text-decoration: none;
  word-break: break-word;
}

.baishu .content .blog-card h2 a:hover {
  color: #006F47;
}

.baishu .content .blog-card .card-desc {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
  word-break: break-word;
}

.baishu .content .blog-card .read-more {
  font-size: 0.875rem;
  color: #006F47;
  font-weight: 500;
  padding: 0.25rem 0;
}

/* ========== 文章详情页（对齐 micount 清爽排版） ========== */
.baishu .content .blog-article {
  padding: 0 0 3.5rem;
  background: #f8fafc;
}

.baishu .content .blog-article .blog-article-shell {
  max-width: 75rem;
  padding-top: 1rem;
  padding-bottom: 0;
}

.baishu .content .blog-article .article-shell-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding: 0 0.25rem;
}

.baishu .content .blog-article .breadcrumb-nav {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}

.baishu .content .blog-article .breadcrumb-nav a {
  color: #006F47;
  text-decoration: none;
}

.baishu .content .blog-article .breadcrumb-nav a:hover {
  color: #005a3a;
  text-decoration: underline;
}

.baishu .content .blog-article .breadcrumb-nav .sep {
  margin: 0 0.375rem;
  color: #cbd5e1;
}

.baishu .content .blog-article .breadcrumb-current {
  color: #94a3b8;
}

.baishu .content .blog-article .article-back-link {
  font-size: 0.8125rem;
  color: #006F47;
  text-decoration: none;
  padding: 0.375rem 0.875rem;
  border: 1px solid #cfe8dc;
  border-radius: 2rem;
  background: #fff;
  white-space: nowrap;
  transition: all 0.2s;
}

.baishu .content .blog-article .article-back-link:hover {
  background: #f0faf6;
  border-color: #006F47;
  color: #005a3a;
}

/* 主布局：正文左 + 侧栏右 */
.baishu .content .blog-article .article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: 2.25rem;
  align-items: start;
}

.baishu .content .blog-article .article-main {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 2.5rem;
  min-width: 0;
}

.baishu .content .blog-article .article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.baishu .content .blog-article .article-meta .meta-item {
  line-height: 1.5;
}

.baishu .content .blog-article .article-meta .tag {
  display: inline-block;
  padding: 0.125rem 0.625rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 500;
  background: rgba(0, 111, 71, 0.08);
  color: #005a3a;
  text-decoration: none;
  line-height: 1.5;
}

.baishu .content .blog-article .article-meta a.tag:hover {
  background: rgba(0, 111, 71, 0.14);
  color: #004d32;
}

.baishu .content .blog-article .article-meta .tag-accent {
  background: #fff8e6;
  color: #92400e;
}

.baishu .content .blog-article .article-main > h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0 0 1.25rem;
  word-break: break-word;
  letter-spacing: -0.01em;
}

.baishu .content .blog-article .ai-tldr {
  background: linear-gradient(135deg, #f0faf6 0%, #ecfdf5 100%);
  border: 1px solid #a7f3d0;
  border-radius: 0.625rem;
  padding: 1.125rem 1.25rem;
  margin-bottom: 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #374151;
}

.baishu .content .blog-article .ai-tldr strong {
  display: block;
  color: #005a3a;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.baishu .content .blog-article .ai-tldr ul {
  margin: 0 0 0.625rem;
  padding-left: 1.125rem;
}

.baishu .content .blog-article .ai-tldr li {
  margin-bottom: 0.25rem;
}

.baishu .content .blog-article .ai-tldr .ai-cite {
  margin: 0;
  font-size: 0.75rem;
  color: #6b7280;
}

.baishu .content .blog-article .ai-tldr .ai-cite a {
  color: #006F47;
  text-decoration: none;
}

.baishu .content .blog-article .ai-tldr .ai-cite a:hover {
  text-decoration: underline;
}

/* 侧栏 */
.baishu .content .blog-article .article-sidebar {
  min-width: 0;
}

.baishu .content .blog-article .sidebar-sticky-stack {
  position: sticky;
  top: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.baishu .content .blog-article .sidebar-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.25rem 1.375rem;
  margin-bottom: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.baishu .content .blog-article .sidebar-card.sidebar-contact {
  border-color: #cfe8dc;
}

.baishu .content .blog-article .sidebar-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #005a3a;
  margin: 0 0 1rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid #006F47;
}

.baishu .content .blog-article .sidebar-card p {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 0.875rem;
}

.baishu .content .blog-article .sidebar-card p strong {
  color: #1a1a1a;
  font-weight: 600;
}

.baishu .content .blog-article .sidebar-features {
  list-style: none;
  margin: 0 0 0.875rem;
  padding: 0;
}

.baishu .content .blog-article .sidebar-features li {
  font-size: 0.8125rem;
  color: #444;
  padding: 0.5rem 0;
  border-bottom: 1px dashed #eef2f0;
  line-height: 1.5;
}

.baishu .content .blog-article .sidebar-features li:last-child {
  border-bottom: none;
}

.baishu .content .blog-article .sidebar-more-link {
  font-size: 0.8125rem;
  color: #006F47;
  font-weight: 600;
  text-decoration: none;
}

.baishu .content .blog-article .sidebar-more-link:hover {
  text-decoration: underline;
}

.baishu .content .blog-article .sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.baishu .content .blog-article .sidebar-links li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.875rem;
}

.baishu .content .blog-article .sidebar-links li:last-child {
  border-bottom: none;
}

.baishu .content .blog-article .sidebar-links a {
  color: #374151;
  text-decoration: none;
  display: block;
  line-height: 1.45;
}

.baishu .content .blog-article .sidebar-links a:hover {
  color: #006F47;
}

.baishu .content .blog-article .sidebar-contact .contact-phone-box {
  display: block;
  background: linear-gradient(135deg, #006F47 0%, #005a3a 100%);
  border-radius: 0.5rem;
  padding: 0.875rem 1rem;
  text-decoration: none;
  margin-bottom: 0.625rem;
  transition: opacity 0.2s;
}

.baishu .content .blog-article .sidebar-contact .contact-phone-box:hover {
  opacity: 0.92;
}

.baishu .content .blog-article .sidebar-contact .contact-phone-label {
  display: block;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  margin-bottom: 0.125rem;
}

.baishu .content .blog-article .sidebar-contact .contact-phone-number {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.baishu .content .blog-article .sidebar-contact .contact-detail-list {
  border: 1px solid #eef2f0;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 0.625rem;
}

.baishu .content .blog-article .sidebar-contact .contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  text-decoration: none;
  background: #fafcfb;
  border-bottom: 1px solid #eef2f0;
  transition: background 0.15s;
}

.baishu .content .blog-article .sidebar-contact .contact-detail-item:last-child {
  border-bottom: none;
}

.baishu .content .blog-article .sidebar-contact .contact-detail-item:hover {
  background: #f0faf6;
}

.baishu .content .blog-article .sidebar-contact .contact-detail-label {
  flex-shrink: 0;
  width: 2.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
}

.baishu .content .blog-article .sidebar-contact .contact-detail-value {
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #006F47;
  word-break: break-all;
  line-height: 1.4;
}

.baishu .content .blog-article .sidebar-contact .contact-wecom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 0.75rem;
  background: #f5faf8;
  border: 1px solid #e0ebe6;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.baishu .content .blog-article .sidebar-contact .contact-wecom img {
  width: 10rem;
  height: 10rem;
  border-radius: 0.375rem;
  display: block;
}

.baishu .content .blog-article .sidebar-contact .contact-wecom-info strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.25rem;
}

.baishu .content .blog-article .sidebar-contact .contact-wecom-info span {
  display: block;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.45;
}

.baishu .content .blog-article .sidebar-cta-btn {
  display: block;
  text-align: center;
  padding: 0.6875rem 1rem;
  background: #006F47;
  color: #fff;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  transition: background 0.2s;
}

.baishu .content .blog-article .sidebar-cta-btn:hover {
  background: #005a3a;
  color: #fff;
}

/* 目录 */
.baishu .content .blog-article .article-toc,
.baishu .content .blog-article .toc-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  padding: 1.25rem 1.375rem;
  margin-bottom: 2rem;
}

.baishu .content .blog-article .article-toc .toc-title,
.baishu .content .blog-article .toc-box .toc-title,
.baishu .content .blog-article .article-toc > strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #005a3a;
  margin-bottom: 0.75rem;
}

.baishu .content .blog-article .article-toc ol,
.baishu .content .blog-article .article-toc ul,
.baishu .content .blog-article .toc-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 18rem;
  overflow-y: auto;
}

.baishu .content .blog-article .article-toc li,
.baishu .content .blog-article .toc-box li {
  padding: 0.25rem 0;
}

.baishu .content .blog-article .article-toc a,
.baishu .content .blog-article .toc-box a {
  font-size: 0.9375rem;
  color: #374151;
  text-decoration: none;
  line-height: 1.55;
}

.baishu .content .blog-article .article-toc a:hover,
.baishu .content .blog-article .toc-box a:hover {
  color: #006F47;
}

/* 正文排版 */
.baishu .content .blog-article .article-body {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.85;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.baishu .content .blog-article .article-body h2 {
  font-size: 1.375rem;
  color: #005a3a;
  margin: 2.25rem 0 1rem;
  font-weight: 700;
  line-height: 1.45;
  padding-left: 0.75rem;
  border-left: 4px solid #006F47;
}

.baishu .content .blog-article .article-body h3 {
  font-size: 1.125rem;
  color: #1a1a1a;
  margin: 1.5rem 0 0.75rem;
  font-weight: 600;
}

.baishu .content .blog-article .article-body p {
  margin-bottom: 1rem;
  max-width: 50rem;
}

.baishu .content .blog-article .article-body strong {
  color: #1a1a1a;
  font-weight: 600;
}

.baishu .content .blog-article .article-body blockquote {
  border-left: 4px solid #006F47;
  background: #ecfdf5;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
  color: #374151;
  font-size: 0.9375rem;
}

.baishu .content .blog-article .article-body blockquote p:last-child {
  margin-bottom: 0;
}

.baishu .content .blog-article .article-body a {
  color: #006F47;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.baishu .content .blog-article .article-body a:hover {
  color: #005a3a;
}

.baishu .content .blog-article .article-body ul,
.baishu .content .blog-article .article-body ol {
  margin: 0 0 1rem 1.5rem;
  padding-left: 0.25rem;
  max-width: 50rem;
}

.baishu .content .blog-article .article-body li {
  margin-bottom: 0.5rem;
}

.baishu .content .blog-article .article-body .article-table {
  width: 100%;
  max-width: 50rem;
  border-collapse: collapse;
  margin: 1.25rem 0 1.5rem;
  font-size: 0.9375rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.baishu .content .blog-article .article-body .article-table th {
  background: #006F47;
  color: #fff;
  padding: 0.75rem 0.875rem;
  text-align: left;
  font-weight: 600;
  border: none;
}

.baishu .content .blog-article .article-body .article-table td {
  border-bottom: 1px solid #e5e7eb;
  padding: 0.625rem 0.875rem;
  vertical-align: top;
}

.baishu .content .blog-article .article-body .article-table tr:nth-child(even) td {
  background: #f8fafc;
}

.baishu .content .blog-article .article-body .article-table tr:hover td {
  background: #f0faf6;
}

/* 底部 CTA */
.baishu .content .blog-article .article-cta {
  margin: 2.5rem 0 0;
  padding: 2rem 1.75rem;
  background: linear-gradient(135deg, #006F47 0%, #005a3a 100%);
  border-radius: 0.75rem;
  text-align: center;
  color: #fff;
  max-width: none;
}

.baishu .content .blog-article .article-cta h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  border: none;
  padding: 0;
}

.baishu .content .blog-article .article-cta .cta-sub {
  margin: 0 0 0.375rem;
  font-size: 0.9375rem;
  opacity: 0.92;
  color: #fff;
}

.baishu .content .blog-article .article-cta .cta-info {
  margin: 0;
  font-size: 0.875rem;
  opacity: 0.85;
  color: #fff;
}

.baishu .content .blog-article .article-cta .cta-btn {
  display: inline-block;
  margin-top: 1.125rem;
  padding: 0.75rem 2.25rem;
  background: #fff;
  color: #005a3a;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s;
}

.baishu .content .blog-article .article-cta .cta-btn:hover {
  background: #ecfdf5;
  color: #004d32;
}

/* 上一篇 / 下一篇 */
.baishu .content .blog-article .article-pager {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.baishu .content .blog-article .pager-link {
  flex: 1;
  display: block;
  padding: 1rem 1.125rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.625rem;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  min-width: 0;
  background: #f8fafc;
}

.baishu .content .blog-article .pager-link:hover {
  border-color: #006F47;
  box-shadow: 0 2px 8px rgba(0, 111, 71, 0.08);
  background: #fff;
}

.baishu .content .blog-article .pager-link.pager-disabled {
  opacity: 0.45;
  cursor: default;
}

.baishu .content .blog-article .pager-prev .pager-label::before {
  content: "← ";
}

.baishu .content .blog-article .pager-next {
  text-align: right;
}

.baishu .content .blog-article .pager-next .pager-label::after {
  content: " →";
}

.baishu .content .blog-article .pager-label {
  display: block;
  font-size: 0.8125rem;
  color: #006F47;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.baishu .content .blog-article .pager-title {
  display: block;
  font-size: 0.9375rem;
  color: #222;
  font-weight: 500;
  line-height: 1.45;
  word-break: break-word;
}

.baishu .content .blog-article .pager-link:hover .pager-title {
  color: #006F47;
}

.baishu .content .blog-article .pager-disabled .pager-title {
  color: #999;
}

.baishu .content .blog-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-bottom: 1rem;
}

.baishu .content .blog-pagination .page-num {
  display: inline-block;
  min-width: 2.25rem;
  height: 2.25rem;
  line-height: 2.25rem;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  color: #666;
  text-decoration: none;
  font-size: 0.875rem;
}

.baishu .content .blog-pagination .page-num.active {
  background: #006F47;
  border-color: #006F47;
  color: #fff;
}

.baishu .content .blog-pagination .page-num:hover:not(.active) {
  border-color: #006F47;
  color: #006F47;
}

.baishu .footer .footer-tip {
  text-align: center;
  padding: 1.5rem 1rem;
  color: #999;
  font-size: 0.875rem;
}

.baishu .footer .footer-tip a {
  color: #006F47;
}

.baishu .blog-footer-extra {
  background: #f5f5f5;
  border-top: 1px solid #e8e8e8;
  padding: 0.75rem 0;
  text-align: center;
  font-size: 0.875rem;
}

.baishu .blog-footer-extra a {
  color: #006F47;
}

.baishu .blog-footer-extra a:hover {
  text-decoration: underline;
}

/* ========== 平板 ========== */
@media (max-width: 992px) {
  .baishu .content .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .baishu .content .blog-main {
    padding: 2rem 0 3.5rem;
  }

  .baishu .content .blog-article .article-layout {
    grid-template-columns: 1fr;
  }

  .baishu .content .blog-article .sidebar-sticky-stack {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  .baishu .content .blog-article .sidebar-contact {
    grid-column: 1 / -1;
  }
}

/* ========== 手机 ========== */
@media (max-width: 768px) {
  .baishu .content {
    padding-top: 4.5rem;
  }

  /* 折叠菜单内链接：取消 PC 固定行高 */
  html .baishu .header .navbar .container .navbar-collapse .navbar-nav li a.link,
  html .baishu .header .navbar .container .navbar-collapse .navbar-nav li a {
    height: auto;
    line-height: 1.5;
    padding: 0.875rem 1rem;
    margin: 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid #f5f5f5;
  }

  html .baishu .header .navbar .container .navbar-collapse .navbar-nav li.active a {
    background: #f0faf6;
  }

  .baishu .header .navbar .container .navbar-header .navbar-brand {
    height: 3.5rem;
    padding: 0.625rem 0;
  }

  .baishu .header .navbar .container .navbar-header .navbar-brand img {
    max-width: 7rem;
    height: auto;
    max-height: 2.25rem;
  }

  html .baishu .header .navbar .container .navbar-header .navbar-toggle {
    margin-top: 0.875rem;
    padding: 0.5rem 0.625rem;
  }

  html .baishu .header .navbar .container .navbar-header .loginUse {
    top: 0.5rem;
    right: 3.5rem;
  }

  html .baishu .header .navbar .container .navbar-header .loginUse li a {
    font-size: 0.8125rem;
    padding: 0.375rem 0.625rem;
    white-space: nowrap;
  }

  .baishu .content .blog-hero {
    padding: 2rem 0 1.5rem;
  }

  .baishu .content .blog-hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .baishu .content .blog-hero p {
    font-size: 0.875rem;
    line-height: 1.65;
  }

  .baishu .content .blog-main {
    padding: 1rem 0 2.5rem;
  }

  .baishu .content .blog-main .container,
  .baishu .content .blog-article .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* 分类标签：横向滑动 */
  .baishu .content .blog-filter-row {
    flex-direction: column;
    gap: 0.75rem;
  }

  .baishu .content .blog-extra-filters {
    width: 100%;
  }

  .baishu .content .blog-select {
    flex: 1;
    min-width: 0;
  }

  .baishu .content .blog-noscript-list {
    columns: 1;
  }

  .baishu .content .blog-search-input {
    font-size: 16px;
  }

  .baishu .content .blog-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin: 0 -1rem 1.25rem;
    padding: 0.25rem 1rem 0.75rem;
    gap: 0.5rem;
    scrollbar-width: none;
  }

  .baishu .content .blog-filters::-webkit-scrollbar {
    display: none;
  }

  .baishu .content .blog-filters .filter-tag {
    flex-shrink: 0;
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }

  .baishu .content .blog-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .baishu .content .blog-card:hover {
    transform: none;
  }

  .baishu .content .blog-card .card-cover {
    height: 6.5rem;
  }

  .baishu .content .blog-card .card-cover .cover-icon {
    font-size: 2rem;
  }

  .baishu .content .blog-card .card-body {
    padding: 1rem;
  }

  .baishu .content .blog-card h2 {
    font-size: 1rem;
  }

  .baishu .content .blog-card .card-desc {
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
  }

  .baishu .content .blog-card .read-more {
    display: inline-block;
    min-height: 2.75rem;
    line-height: 2.75rem;
  }

  /* 文章详情：侧栏移到正文下方 */
  .baishu .content .blog-article .article-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .baishu .content .blog-article .article-sidebar {
    order: 2;
  }

  .baishu .content .blog-article .article-main {
    order: 1;
    padding: 1.25rem 1rem;
  }

  .baishu .content .blog-article .sidebar-sticky-stack {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .baishu .content .blog-article .article-shell-top {
    margin-bottom: 0.875rem;
  }

  .baishu .content .blog-article .article-main > h1 {
    font-size: 1.3125rem;
  }

  .baishu .content .blog-article .article-meta {
    font-size: 0.8125rem;
    gap: 0.5rem 0.75rem;
  }

  .baishu .content .blog-article .ai-tldr {
    padding: 1rem;
    font-size: 0.875rem;
  }

  .baishu .content .blog-article .sidebar-card {
    padding: 1rem;
  }

  .baishu .content .blog-article .article-toc ol,
  .baishu .content .blog-article .article-toc ul,
  .baishu .content .blog-article .toc-box ul {
    max-height: 10rem;
  }

  .baishu .content .blog-article .article-body .article-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 0.8125rem;
  }

  .baishu .content .blog-article .article-pager {
    flex-direction: column;
    gap: 0.75rem;
  }

  .baishu .content .blog-article .sidebar-contact .contact-wecom img {
    width: 8.75rem;
    height: 8.75rem;
  }

  .baishu .content .blog-article .pager-next {
    text-align: left;
  }

  .baishu .content .blog-article .pager-next .pager-label::after {
    content: "";
  }

  .baishu .content .blog-article .pager-link {
    padding: 0.875rem 1rem;
  }

  .baishu .content .blog-article {
    padding: 0 0 2rem;
  }

  .baishu .content .blog-article .article-body {
    font-size: 0.9375rem;
    line-height: 1.85;
  }

  .baishu .content .blog-article .article-body h2 {
    font-size: 1.0625rem;
    margin: 1.75rem 0 0.625rem;
  }

  .baishu .content .blog-article .article-body h3 {
    font-size: 1rem;
  }

  .baishu .content .blog-article .article-body ul,
  .baishu .content .blog-article .article-body ol {
    margin-left: 1.125rem;
  }

  .baishu .content .blog-article .article-body blockquote {
    padding: 0.75rem 0.875rem;
    margin: 1.25rem 0;
    font-size: 0.875rem;
  }

  .baishu .content .blog-article .article-cta {
    margin-top: 2rem;
    padding: 1.25rem 1rem;
  }

  .baishu .content .blog-article .article-cta h3 {
    font-size: 1.125rem;
  }

  .baishu .content .blog-article .article-cta .cta-btn {
    display: block;
    width: 100%;
    max-width: 18rem;
    margin: 1rem auto 0;
    padding: 0.75rem 1rem;
    text-align: center;
    box-sizing: border-box;
  }

  /* 分页：紧凑可换行 */
  .baishu .content .blog-pagination {
    gap: 0.375rem;
    margin-top: 1.5rem;
    padding: 0 0.25rem 0.5rem;
  }

  .baishu .content .blog-pagination .page-num {
    min-width: 2rem;
    height: 2rem;
    line-height: 2rem;
    font-size: 0.8125rem;
  }

  .baishu .footer .footer-tip {
    font-size: 0.8125rem;
    padding: 1.25rem 1rem 1.75rem;
  }
}

.baishu .content .blog-article .article-body .article-table tr:hover td {
  background: #f0fdf4;
}

/* ========== 结构图 / 决策树 / 清单 ========== */
.baishu .content .blog-article .article-body .blog-diagram {
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  text-align: center;
}

.baishu .content .blog-article .article-body .blog-svg {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.baishu .content .blog-article .article-body .blog-diagram figcaption {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: #64748b;
  text-align: center;
}

.baishu .content .blog-article .article-body .decision-tree {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid #d1fae5;
  border-left: 4px solid #006F47;
  border-radius: 0.375rem;
}

.baishu .content .blog-article .article-body .decision-tree h4 {
  margin: 0 0 0.875rem;
  font-size: 0.9375rem;
  color: #065f46;
}

.baishu .content .blog-article .article-body .decision-step {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed #e2e8f0;
}

.baishu .content .blog-article .article-body .decision-step:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.baishu .content .blog-article .article-body .decision-step .question {
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.baishu .content .blog-article .article-body .decision-step .answer {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

.baishu .content .blog-article .article-body .checklist-box {
  margin: 1rem 0;
  padding: 1rem 1.25rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 0.375rem;
}

.baishu .content .blog-article .article-body .checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.baishu .content .blog-article .article-body .checklist li {
  padding: 0.375rem 0;
  font-size: 0.875rem;
  color: #334155;
  border-bottom: 1px solid #dcfce7;
}

.baishu .content .blog-article .article-body .checklist li:last-child {
  border-bottom: none;
}

/* ========== 小屏手机 ========== */
@media (max-width: 480px) {
  html .baishu .header .navbar .container .navbar-header .loginUse {
    right: 3rem;
  }

  html .baishu .header .navbar .container .navbar-header .loginUse li a {
    font-size: 0.75rem;
    padding: 0.25rem 0.375rem;
  }

  .baishu .content .blog-hero h1 {
    font-size: 1.3125rem;
  }

  .baishu .content .blog-article .article-main > h1 {
    font-size: 1.1875rem;
  }

  .baishu .content .blog-pagination .page-num {
    min-width: 1.875rem;
    height: 1.875rem;
    line-height: 1.875rem;
    font-size: 0.75rem;
  }
}

/* 触摸设备：取消 hover 位移 */
@media (hover: none) {
  .baishu .content .blog-card:hover {
    box-shadow: none;
    transform: none;
  }
}
