/* ============================================================
   WIPESTAR — Cleanroom Wiper Selection Guide
   ============================================================ */

.ws-tpcw {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a2e;
  line-height: 1.8;
  font-size: 17px;
}

.ws-tpcw a {
  color: #0a58ca;
  text-decoration: underline;
  text-decoration-color: #0a58ca;
  text-underline-offset: 2px;
  transition: text-decoration-color .2s;
}
.ws-tpcw a:hover { text-decoration-color: #084298; }

/* ── 目录 ── */
.ws-tpcw .toc {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 20px 0 6px;
}
.ws-tpcw .toc .toc-title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #212529;
  margin: 0 0 12px;
  padding: 0;
  border: none;
  line-height: 1.3;
}
.ws-tpcw .toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
}
.ws-tpcw .toc li {
  counter-increment: toc;
  margin: 6px 0;
}
.ws-tpcw .toc li::before {
  content: counter(toc) ".";
  font-weight: 700;
  color: #0a58ca;
  margin-right: 8px;
  font-size: 14px;
}
.ws-tpcw .toc a {
  color: #1a1a2e;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.ws-tpcw .toc a:hover { color: #084298; }

/* ── 标题 ── */
.ws-tpcw h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 18px 0 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid #e5e7eb;
  letter-spacing: -.01em;
  color: #1a1a2e;
  line-height: 1.3;
}
.ws-tpcw h3 {
  font-size: 21px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: #1a1a2e;
  line-height: 1.35;
}
.ws-tpcw h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0 8px;
  color: #1a1a2e;
  line-height: 1.4;
}

/* ── 段落 & 列表 ── */
.ws-tpcw p { margin: 0 0 14px; }
.ws-tpcw ul, .ws-tpcw ol { margin: 0 0 16px 24px; }
.ws-tpcw li { margin: 4px 0; }

/* ── 图片 ── */
.ws-tpcw .blog-img { margin: 20px 0; }
.ws-tpcw .blog-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  display: block;
}
.ws-tpcw .blog-img figcaption {
  font-size: 13px;
  color: #4a6572;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* ── 数据高亮 ── */
.ws-tpcw .stat-callout {
  background: linear-gradient(135deg, #eff6ff, #f0fdf4);
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 18px 24px;
  margin: 20px 0;
  text-align: center;
}
.ws-tpcw .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #0a58ca;
  line-height: 1.2;
}
.ws-tpcw .stat-label {
  font-size: 15px;
  color: #212529;
  margin-top: 4px;
}

/* ── CTA 横幅 ── */
.ws-tpcw .cta-box {
  background: linear-gradient(135deg, #0a58ca, #084298);
  color: #fff;
  border-radius: 8px;
  padding: 24px 28px;
  margin: 28px 0;
  text-align: center;
}
.ws-tpcw .cta-box h3 { color: #fff; margin: 0 0 8px; font-size: 20px; }
.ws-tpcw .cta-box p { color: rgba(255,255,255,.9); margin: 0 0 16px; font-size: 15px; }
.ws-tpcw .cta-box .btn {
  display: inline-block;
  background: #fff;
  color: #0a58ca;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s, box-shadow .2s;
}
.ws-tpcw .cta-box .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

/* ── 步骤列表 ── */
.ws-tpcw .step-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.ws-tpcw .step-list li {
  counter-increment: step;
  padding: 16px 16px 16px 60px;
  position: relative;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 10px 0;
  border: 1px solid #e5e7eb;
}
.ws-tpcw .step-list li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  background: #0a58ca;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* ── 行业卡片【对比度核心优化】 ── */
.ws-tpcw .industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 16px 0 24px;
}
.ws-tpcw .industry-card {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
}
.ws-tpcw .industry-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #084298;
}
.ws-tpcw .industry-card p {
  font-size: 15px;
  color: #212529;
  margin: 0;
  line-height: 1.6;
}

/* ── 作者卡片【作者角色对比度优化】 ── */
.ws-tpcw .author-box {
  display: flex;
  gap: 20px;
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  margin: 28px 0 24px;
}
.ws-tpcw .author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.ws-tpcw .author-info h4 { font-size: 17px; font-weight: 700; margin: 0 0 2px; }
.ws-tpcw .author-info .author-role { font-size: 14px; color: #084298; font-weight: 500; margin: 0 0 10px; }
.ws-tpcw .author-info p { font-size: 14px; color: #212529; margin: 0; line-height: 1.6; }

/* ── FAQ ── */
.ws-tpcw .faq-section { margin: 32px 0; }
.ws-tpcw .faq-section h2 { border-bottom: none; margin-bottom: 16px; }
.ws-tpcw .faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin: 10px 0;
  overflow: hidden;
}
.ws-tpcw .faq-q {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 16px;
  background: #f8f9fa;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1a1a2e;
}
.ws-tpcw .faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: #0a58ca;
  transition: transform .3s;
}
.ws-tpcw .faq-item.open .faq-q::after { transform: rotate(45deg); }
.ws-tpcw .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 20px;
  font-size: 15px;
  color: #212529;
  line-height: 1.7;
}
.ws-tpcw .faq-item.open .faq-a { max-height: 300px; padding: 0 20px 16px; }

/* ── 相关文章 ── */
.ws-tpcw .related-posts {
  margin: 32px 0;
  padding-top: 24px;
  border-top: 2px solid #e5e7eb;
}
.ws-tpcw .related-posts h3 { font-size: 20px; margin: 0 0 14px; }
.ws-tpcw .related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.ws-tpcw .related-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px;
  transition: box-shadow .2s;
}
.ws-tpcw .related-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.ws-tpcw .related-card a { text-decoration: none; color: #1a1a2e; font-weight: 600; font-size: 15px; line-height: 1.4; }
.ws-tpcw .related-card a:hover { color: #084298; }
.ws-tpcw .related-date { font-size: 13px; color: #212529; margin-top: 8px; }

/* ── 底部 CTA ── */
.ws-tpcw .bottom-cta {
  background: linear-gradient(135deg, #0a58ca, #084298);
  color: #fff;
  border-radius: 8px;
  padding: 28px 28px;
  margin: 32px 0;
  text-align: center;
}
.ws-tpcw .bottom-cta h3 { color: #fff; margin: 0 0 10px; font-size: 22px; }
.ws-tpcw .bottom-cta p { color: rgba(255,255,255,.9); margin: 0 0 20px; font-size: 16px; }
.ws-tpcw .bottom-cta .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ws-tpcw .bottom-cta .btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s, box-shadow .2s;
}
.ws-tpcw .bottom-cta .btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.ws-tpcw .bottom-cta .btn-primary { background: #fff; color: #0a58ca; }
.ws-tpcw .bottom-cta .btn-secondary { background: rgba(255,255,255,.2); color: #fff; border: 1px solid rgba(255,255,255,.4); }

/* ── 更新日期 ── */
.ws-tpcw .last-updated {
  font-size: 13px;
  color: #212529;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

/* ── 文章元信息（作者/日期/分类） ── */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4a5568;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.meta-item svg {
  flex-shrink: 0;
  stroke: #4a6572;
}
.meta-item a {
  color: #2d6a4f;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.meta-item a:hover {
  color: #1b4332;
  text-decoration: underline;
}
.meta-updated {
  color: #4a6572;
  font-size: 12px;
}
.date-published {
  color: #2d3748;
  font-weight: 500;
}
@media (max-width: 600px) {
  .article-meta {
    gap: 12px;
    padding: 10px 0;
  }
}

/* 🔥 专治后台注释生成空p、<p><!-- xx --><br></p> 留白隔行 */
.ws-tpcw p {
  min-height: 0;
}
/* 清空只有注释、br 无实际内容的p间距高度 */
.ws-tpcw p:empty,
.ws-tpcw p br:only-child {
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
  display: none !important;
}
/* 清除 WordPress 自动生成的 &nbsp; 空段落 */
.ws-tpcw p:has(br:only-child),
.ws-tpcw p:only-whitespace {
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
  display: none !important;
}

/* ── 响应式 ── */
@media (max-width: 640px) {
  .ws-tpcw .author-box { flex-direction: column; align-items: center; text-align: center; }
  .ws-tpcw .industry-grid { grid-template-columns: 1fr; }
}

/* 响应式显隐（SEO：避免隐藏内容被判定为 cloaking） */
.desktop-only { display: none !important; }
.mobile-only  { display: none !important; }
@media (min-width: 768px) {
  .desktop-only { display: block !important; }
}
@media (max-width: 767px) {
  .mobile-only  { display: block !important; }
  .hero-title { font-size: clamp(16px, 5vw, 32px) !important; }
  .hero-banner-container { aspect-ratio: 750 / 400 !important; }
}

/* SEO：图片懒加载 + CLS 防抖 */
.ws-tpcw img {
  max-width: 100%;
  height: auto;
}
.ws-tpcw img[loading="lazy"] {
  content-visibility: auto;
  contain-intrinsic-size: 300px 200px;
}

/* ============================================================
   以下为全局通用样式（评论、导航、列表、表格、相关文章）
   已去重、不冲突、优先保留上面ws-tpcw样式
   ============================================================ */

/* Resources Page & Comments Style - SEO Optimized */
.comments-area {
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-top: 40px;
}

.comment-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.comment-form-row .comment-form-author,
.comment-form-row .comment-form-email {
    flex: 1;
}

.comment-form-wrap p {
    margin: 0 0 20px 0;
}
.comment-form-wrap label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}
.comment-form-wrap input,
.comment-form-wrap textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    background: #f8fafc;
}
.comment-form-wrap textarea {
    min-height: 160px;
    resize: vertical;
}

.comment-submit-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}
.comment-submit-btn:hover {
    background: #005a87;
}

.required {
    color: #dc2626;
}

.comment-form-cookies-consent {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 20px 0 !important;
    padding: 0 !important;
}
.comment-form-cookies-consent input {
    width: auto !important;
    margin: 0 !important;
}
.comment-form-cookies-consent label {
    margin: 0 !important;
    font-weight: 400 !important;
}

.comment-msg {
    padding: 18px 22px;
    border-radius: 10px;
    margin-top: 20px;
    background: #fffbeb;
    color: #ca8a04;
    border-left: 4px solid #f59e0b;
    display: none;
}

.comment-list {
    margin-top: 40px;
}
.comment-items {
    list-style: none;
    padding: 0;
}
.comment-items li {
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 16px;
    border-left: 4px solid #0073aa;
}

.jjnmkxrtywe {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333;
}

.sdfsdtrcety a {
    padding: 8px 16px;
    margin-right: 8px;
    font-size: 16px;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
}
.sdfsdtrcety a.act {
    color: #0073aa;
    font-weight: 600;
    background: #f0f7fc;
}

/* 统一文章正文列表样式 */
ul,
ul.wp-block-list {
    list-style-type: disc !important;
    list-style-position: outside !important;
    padding-left: 1.5em !important;
    margin: 1em 0 !important;
}
ul li,
ul.wp-block-list li {
    text-align: left !important;
    line-height: 1.8 !important;
    padding: 0 !important;
    margin: 0.8em 0 !important;
    list-style: inherit !important;
}
ul li::before,
ul.wp-block-list li::before {
    display: none !important;
}

/* 图片样式 */
.jkjdsfstrerr img {
    display: block !important;
    margin: 20px auto !important;
    border-radius: 12px !important;
    clip-path: inset(0 round 12px) !important;
    max-width: 100% !important;
    height: auto !important;
}
.jkjdsfstrerr .wp-block-image {
    overflow: visible !important;
    border: none !important;
}

/* 评论标题 - 强制不换行 */
.comment-title {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    flex-shrink: 0 !important;
    line-height: 1.2 !important;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #111;
}

/* 手机端自动适配字体 */
@media (max-width: 768px) {
    .comment-title {
        font-size: 23px !important;
        letter-spacing: -0.3px !important;
    }
}
@media (max-width: 390px) {
    .comment-title {
        font-size: 17px !important;
        letter-spacing: -0.5px !important;
    }
}
@media (max-width: 340px) {
    .comment-title {
        font-size: 15px !important;
        letter-spacing: -0.6px !important;
    }
}

/* 文章上下页导航 - SEO 最优 */
.post-navigation {
    display: flex;
    width: 100%;
    margin: 3rem 0;
    gap: 0;
    min-height: 120px;
}
.nav-link {
    display: flex;
    align-items: center;
    width: 50%;
    padding: 0 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    overflow: hidden;
}
.nav-prev {
    justify-content: flex-start;
    background-color: #0052D9;
    color: #ffffff;
    border-right: 1px solid rgba(255,255,255,0.2);
}
.nav-next {
    justify-content: flex-end;
    background-color: #B0B0B0;
    color: #000000;
}
.nav-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
}
.nav-prev .nav-icon {
    margin-right: 1.5rem;
}
.nav-next .nav-icon {
    margin-left: 1.5rem;
}
.nav-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    overflow: hidden;
    max-width: calc(100% - 3.5rem);
}
.nav-label {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    white-space: nowrap;
    margin-bottom: 0.5rem;
}
.nav-title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 4.68rem;
}
.nav-link.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
.nav-prev:hover {
    background-color: #0040A8;
}
.nav-next:hover {
    background-color: #999999;
}

@media screen and (max-width: 1024px) {
    .nav-title {
        font-size: 1.5rem;
    }
    .nav-label {
        font-size: 1rem;
    }
}
@media screen and (max-width: 768px) {
    .post-navigation {
        flex-direction: column;
        min-height: auto;
    }
    .nav-link {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #ffffff;
        padding: 1.5rem 2rem;
        min-height: 100px;
    }
    .nav-title {
        font-size: 1.3rem;
    }
    .nav-label {
        font-size: 0.9rem;
    }
}

/* 右侧相关文章卡片 */
.related-card {
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 20px;
}
.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.related-img {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.related-card:hover .related-img img {
    transform: scale(1.05);
}
.related-body {
    padding: 18px 20px;
}
.related-body h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 10px;
    color: #111;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.related-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.read-more {
    font-size: 14px;
    color: #0066cc;
    font-weight: 500;
}

/* 表格样式修复 - 统一最优版 */
.wp-block-table {
    margin: 1.5rem 0;
    width: 100%;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.wp-block-table table {
    width: 100% !important;
    border-collapse: collapse !important;
    table-layout: fixed !important;
}
.wp-block-table th,
.wp-block-table td {
    border: 1px solid #e2e8f0 !important;
    padding: 16px 20px !important;
    text-align: left !important;
    vertical-align: middle !important;
    line-height: 1.6 !important;
}
.wp-block-table thead th {
    background-color: #f8fafc !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    border-bottom: 2px solid #cbd5e1 !important;
}
.wp-block-table tbody tr:nth-child(even) {
    background-color: #fafafa !important;
}
.wp-block-table tbody tr:hover {
    background-color: #f1f5f9 !important;
    transition: background 0.2s ease;
}

/* 移动端表格横向滚动 */
@media screen and (max-width: 768px) {
    .wp-block-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .wp-block-table table {
        min-width: 600px;
    }
}

/* ========== 修复菜单被全局ul样式污染 ========== */
.mobile-menu ul,
.mobile-menu li,
div[class*="menu"] ul,
div[class*="nav"] ul,
ul.menu,
.nav ul,
.mobile-menu ul,
.post-navigation ul,
.comment-items,
.related-card ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}
.mobile-menu li,
div[class*="menu"] li,
div[class*="nav"] li,
ul.menu li,
.nav li {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    list-style: none !important;
    text-align: inherit !important;
}
.mobile-menu li::before,
div[class*="menu"] li::before,
div[class*="nav"] li::before {
    display: none !important;
}

/* 只让文章正文列表显示小圆点，不污染菜单 */
.jkjdsfstrerr ul,
.entry-content ul,
.post-content ul,
.content-area ul {
    list-style-type: disc !important;
    padding-left: 1.5em !important;
    margin: 1em 0 !important;
}

/* 适配 comparison-table 表格样式 */
.table-responsive {
  margin: 1.5rem 0;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.comparison-table {
  width: 100% !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  table-layout: fixed !important;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid #e2e8f0 !important;
  padding: 16px 20px !important;
  text-align: left !important;
  vertical-align: middle !important;
  line-height: 1.6 !important;
}

.comparison-table thead th {
  background-color: #1a4a7a !important;
  font-weight: 700 !important;
  color: #fff !important;
  border-bottom: 2px solid #cbd5e1 !important;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: #fafafa !important;
}

.comparison-table tbody tr:hover {
  background-color: #f1f5f9 !important;
  transition: background 0.2s ease;
}

/* 移动端横向滚动适配 */
@media screen and (max-width: 768px) {
  .table-responsive {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .comparison-table {
    min-width: 600px;
  }
}