:root {
  --green: #008a18;
  --green-dark: #00740f;
  --green-soft: #e2f9e8;
  --mint: #d9f9e5;
  --cream: #f5f7df;
  --text: #222;
  --muted: #69756a;
  --line: #e5ebdf;
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page {
  width: 100%; /* 让容器宽度占据浏览器窗口的 100% */
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
}

.site-header {
  padding: 28px 72px 0;
  background: #fff;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 54px;
  height: auto;
}

.header-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: #2d3a30;
  font-size: 13px;
}

.mini-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--green);
  font-weight: 700;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 44px;
  padding: 26px 0 28px;
}

.main-nav a {
  display: grid;
  min-width: 76px;
  justify-items: center;
  gap: 8px;
  color: #24332a;
  font-size: 13px;
  font-weight: 700;
}

.main-nav img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.status-strip {
  background: #e8f6ec;
  border-top: 1px solid #e1efe4;
  border-bottom: 1px solid #dce9df;

}

.status-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 104px;
  padding: 18px 72px;
}

.status-inner strong {
  margin-right: 18px;
  color: #1a3620;
  font-size: 14px;
}

.status-card {
  width: 86px;
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  text-align: center;
}

.status-card span {
  color: #222; /* 将颜色统一设置为深黑色，也可以直接写 black */
  font-weight: 800;
  font-size: 14px; /* 添加这行控制字体大小，你可以把 12px 改成 10px 或 13px 来微调 */
}

.status-card small {
  color: var(--muted);
  font-size: 11px;
}

.status-card small img {
  width: 22px; /* 你可以根据需要修改数字来调整图标大小 */
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
}
.status-card.active span {
  color: #222;
}

.notice-line {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 70px;
  padding: 0 300px;
  color: #3e4a40;
  font-size: 13px;
  border-bottom: 1px solid #eef1ec;
}

.notice-line strong {
  white-space: nowrap;
  font-size: 14px;
}

.chevron {
  margin-left: auto;
  color: var(--green);
  font-size: 20px;
}

.hero-slider {
  padding: 40px 0 30px;
}

.hero-track,
.card-row {
  display: flex;
  gap: 16px;
}

.hero-track {
  width: max-content;
  padding-left: 0;
}

.hero-card {
  width: 322px;
  height: 205px;
  overflow: hidden;
  border-radius: 8px;
  background: #eaf1ea;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.hero-card img,
.card-row img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.slider-dots span {
  width: 18px;
  height: 18px;
  border: 2px solid var(--green);
  border-radius: 50%;
}

.slider-dots span:first-child {
  background: var(--green);
}

.slider-dots.small {
  justify-content: flex-end;
  max-width: 960px;
  margin: 22px auto 0;
}

.slider-dots.small span {
  width: 16px;
  height: 16px;
}

.search-section {
  position: relative; /* 👈 新增：作为背景定位的参考坐标 */
  margin-top: 20px; /* 保持原样 */
  padding: 74px 72px 104px; /* 保持原样 */
  z-index: 1; /* 👈 新增：确保内容（搜索框等）浮在背景上面 */
  
  /* ⚠️ 注意：把原来的 background 和 border-radius 都删掉 */
}
/* 👇 新增这段代码来生成一半的带圆角绿色背景 */
.search-section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 15%; /* 👈 决定绿色从哪里开始。15%是原来的位置，如果你想绝对从正中间开始，可以改成 50% */
  background: var(--mint); /* 纯浅绿色 */
  border-radius: 40px 0 0 40px; /* 只切左边的圆角 */
  z-index: -1; /* 把这个背景方块压到最底层 */
}

.section-title,
.feature-section h2,
.service-panel h2,
.news-section h2 {
  margin: 0;
  text-align: center;
  color: #24332a;
  font-size: 24px;
  font-weight: 800;
}

.search-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.search-title span {
  color: var(--green);
  font-size: 30px;
  line-height: 1;
}

.search-card {
  width: min(100%, 670px);
  margin: 0 auto;
  padding: 32px 38px 34px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(66, 138, 82, .12);
}

.tabs {
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid #e3ece4;
}

.tabs button {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 0 12px;
  color: #68756a;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.tabs button.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.tabs img {
  width: 22px;
  height: 22px;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
  padding-top: 28px;
}

.search-grid label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.search-grid input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  color: #2c342d;
  border: 1px solid #dfe8e0;
  border-radius: 3px;
  background: #fff;
}

.feature-section {
  position: relative;
  padding: 54px 0 70px;
}

.feature-section.cream {
  position: relative; /* 👈 新增：作为背景定位的参考 */
  margin-top: 50px; /* 保持原样 */
  z-index: 1; /* 👈 新增：确保内容浮在背景之上 */
  
  /* ⚠️ 注意：一定要把原来的 background: linear-gradient... 删掉 */
  /* ⚠️ 如果你之前在这里加了 border-radius，也请一起删掉 */
}
/* 👇 新增这段代码来生成从左向右延伸并带有右侧圆角的背景 */
.feature-section.cream::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0; /* 👈 设为 0，让米黄色背景紧贴屏幕最左侧边缘 */
  right: 16%; /* 👈 决定背景在右侧哪里停下。16% 对应原本右边留白的比例 */
  background: var(--cream); /* 纯米黄色 */
  border-radius: 0 40px 40px 0; /* 👈 切出右侧的上下两个圆角 */
  z-index: -1; /* 把背景层压到文字和图片的下面 */
}
.feature-section.mint {
  position: relative; /* 👈 新增：作为背景定位的参考 */
  padding-top: 60px; /* 保持原样 */
  z-index: 1; /* 👈 新增：确保内容浮在背景之上 */
  
  /* ⚠️ 注意：把原来的 background: linear-gradient... 和 border-radius 删掉 */
}
.feature-section.mint::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0; /* 👈 让浅绿色背景紧贴屏幕最左侧边缘 */
  left: 16%; /* 👈 决定背景在右侧哪里停下。建议用 16%，这样能和上面米黄色区块保持整齐的视觉对齐 */
  background: var(--mint); /* 纯浅绿色 */
  border-radius: 40px 0 0 40px; /* 👈 切出右侧的上下两个圆角 */
  z-index: -1; /* 把背景层压到文字和图片的下面 */
}
.feature-section h2 {
  margin-bottom: 34px;
}

.card-row {
  width: max-content;
  align-items: stretch;
}

.feature-section .card-row {
  margin-left: 0;
}

.card-row article {
  position: relative;
  width: 264px;
  height: 168px;
  overflow: hidden;
  border-radius: 7px;
  background: #eef3ee;
  box-shadow: 0 12px 26px rgba(18, 51, 25, .12);
}

.draggable-row {
  width: 100%;
  margin: 0 auto;
  padding: 2px 72px 14px;
  overflow-x: auto;
  /* ❌ 把 scroll-snap-type 删掉 */
  cursor: grab;
  user-select: none;
  scrollbar-width: thin;
  scrollbar-color: var(--green) transparent;
}

.feature-section .draggable-row {
  margin: 0 auto;
}

.feature-section.cream .draggable-row {
  width: min(100%);
}

.draggable-row.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.square-row > article,
.square-row > .hero-card {
  flex: 0 0 264px;
  width: 264px;
  height: 264px;
  border-radius: 16px;
  /* ❌ 把 scroll-snap-align 删掉 */
}

.square-row img {
  pointer-events: none;
}

.draggable-row::-webkit-scrollbar {
  height: 8px;
}

.draggable-row::-webkit-scrollbar-track {
  background: transparent;
}

.draggable-row::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 138, 24, .45);
}

.card-row article span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(transparent, rgba(0, 0, 0, .58));
}

.service-section {
  padding: 58px 72px 52px;
  background: #fff;
}

.service-panel {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 44px 72px 36px;
  border-radius: 28px;
  background: var(--cream);
}

.service-logos {
  display: block;
  width: 100%;
  margin: 30px auto 28px;
  border-radius: 5px;
}

.primary-button,
.outline-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 42px;
  margin: 0 auto;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.primary-button {
  color: #fff;
  background: var(--green);
}

.outline-button {
  color: var(--green);
  border: 1px solid var(--green);
  background: #fff;
}

.service-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 720px);
  margin: 42px auto 22px;
}

.service-tools a {
  display: grid;
  min-height: 92px;
  place-items: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid #e4eae2;
  border-radius: 4px;
  color: #26362b;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.service-tools img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.small-links {
  display: flex;
  justify-content: center;
  gap: 70px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.small-links span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}
/* 1. 先统一设置两个图标的基础大小和间距 */
.header-links .mini-icon {
  font-size: 24px; /* 菜单图标的大小 */
  font-weight: bold;
  padding: 0 4px;
}

/* 2. 然后专门“点名”搜索图标，让它变得更大 */
.header-links .mini-icon[aria-label="搜索"] {
  font-size: 32px; /* 👈 把搜索单独放大到 32px（你可以随便改这个数字） */
  vertical-align: middle; /* 防止它变大之后，和旁边的文字或图标上下对不齐 */
  margin-right: 4px; /* 把它和旁边的菜单图标稍微拉开一点距离 */

  
  /* 👇 加上下面这两行来进行上下微调 👇 */
  position: relative; 
  top: -3px; /* 👈 -3px 代表向上移动 3 像素。你可以调整这个数字，比如 -2px 或 -5px，直到视觉上完全对齐 */
}
.news-section {
  padding: 70px 72px 86px;
  background: var(--mint);
}

.news-section h2 {
  margin-bottom: 36px;
}

.news-panel {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 28px 36px 38px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(57, 145, 79, .12);
}

.news-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #dde8de;
}

.news-tabs button {
  height: 38px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #59645a;
  font-weight: 800;
}

.news-tabs .active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.news-list {
  display: grid;
  gap: 0;
  margin: 20px 0 34px;
  padding: 0;
  list-style: none;
}

.news-list li {
  display: grid;
  grid-template-columns: 92px auto auto 1fr 16px;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 0;
  border-bottom: 1px solid #eef3ee;
  color: #2b362d;
  font-size: 12px;
}

.news-list time {
  color: #677366;
}

.news-list span {
  justify-self: start;
  min-width: 42px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--green);
  background: #eef8e9;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
}

.news-list a {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-list b {
  color: var(--green);
  font-size: 17px;
}

.site-footer {
  padding: 92px 72px 58px;
  color: #fff;
  background: #008000;
}

.footer-inner {
  width: min(100%, 940px);
  margin: 0 auto;
}

.footer-mark {
  display: inline-grid;
  justify-items: center;
  gap: 2px;
  color: #fff;
}
.footer-mark img {
  width: 65px; /* 👈 你可以修改这个数字，控制 Logo 的宽度 */
  height: auto; /* 高度自动按比例缩放 */
  margin-bottom: 8px; /* 给 Logo 和下方文字之间留出一点呼吸空间 */
}
.footer-mark strong {
  font-size: 46px;
  line-height: .82;
  letter-spacing: -2px;
}

.footer-mark span {
  font-size: 11px;
  font-weight: 800;
}

.footer-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px 94px;
  margin-top: 72px;
}

.footer-major {
  display: grid;
  align-content: start;
  gap: 34px;
}

.footer-major-wide {
  grid-column: 1 / -1;
  width: 55%;
}

.footer-major h3 {
  position: relative;
  margin: 0;
  padding-left: 28px;
  font-size: 18px;
  font-weight: 800;
}

.footer-major h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}

.footer-major h3::after {
  content: "›";
  position: absolute;
  left: 4px;
  top: 50%;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  transform: translateY(-55%);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 54px;
}

.footer-columns div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-columns h4 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 7px;
  font-size: 14px;
  font-weight: 800;
}

.footer-columns h4::before {
  content: "";
  width: 12px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
  flex: 0 0 auto;
}

.footer-columns h4::after {
  content: "›";
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.footer-columns a {
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1.35;
}

.footer-columns a::before {
  content: "›";
  margin-right: 6px;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin-top: 110px;
  color: rgba(255, 255, 255, .9);
  font-size: 12px;
}

.copyright {
  margin: 38px 0 0;
  color: rgba(255, 255, 255, .75);
  text-align: center;
  font-size: 11px;
}

@media (max-width: 900px) {
  .site-header,
  .service-section,
  .news-section,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .main-nav,
  .status-inner,
  .hero-track,
  .card-row {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .header-links {
    gap: 12px;
    font-size: 12px;
  }

  .main-nav {
    padding-bottom: 22px;
    gap: 28px;
  }

  .status-inner {
    padding: 18px 24px;
  }

  .notice-line {
    padding: 0 24px;
  }

  .search-section {
    padding: 56px 24px 72px;
    background: var(--mint);
  }

  .search-card {
    padding: 26px 22px 28px;
  }

  .tabs {
    overflow-x: auto;
    gap: 24px;
  }

  .search-grid {
    grid-template-columns: 1fr;
  }

  .feature-section.cream,
  .feature-section.mint {
    background: var(--mint);
  }

  .feature-section.cream {
    background: var(--cream);
  }

  .service-panel {
    padding: 36px 24px 30px;
  }

  .service-tools {
    grid-template-columns: 1fr;
  }

  .small-links {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .news-list li {
    grid-template-columns: 90px auto auto 16px;
  }

  .news-list a {
    grid-column: 1 / -2;
    white-space: normal;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-groups {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .footer-major-wide {
    width: 100%;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 540px) {
  .site-header {
    padding-top: 20px;
  }

  .header-top {
    align-items: flex-start;
  }

  .header-links a:not(.mini-icon) {
    display: none;
  }

  .brand {
    width: 44px;
  }

  .section-title,
  .feature-section h2,
  .service-panel h2,
  .news-section h2 {
    font-size: 21px;
  }

  .hero-card {
    width: 284px;
    height: 180px;
  }

  .card-row article {
    width: 230px;
    height: 150px;
  }

  .square-row > article,
  .square-row > .hero-card {
    flex-basis: 230px;
    width: 230px;
    height: 230px;
  }

  .primary-button,
  .outline-button {
    width: min(100%, 240px);
  }

  .news-panel {
    padding: 22px 18px 30px;
  }

  .footer-mark strong {
    font-size: 38px;
  }
}
.draggable-row > * {
  flex-shrink: 0 !important;
}
/* =========================================
   专门针对手机和平板小屏幕的适配优化补丁
========================================= */

/* 当屏幕宽度小于 900px（比如平板或横屏手机）时生效 */
@media (max-width: 900px) {
  /* 1. 缩小左右过大的留白，把屏幕空间还给图片 */
  .draggable-row {
    padding: 2px 24px 14px !important;
  }

  /* 2. 手机屏幕较窄，把错落的圆角背景恢复为平铺全屏，避免画面显得过于拥挤 */
  .search-section::before,
  .feature-section.cream::before,
  .feature-section.mint::before {
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important; 
  }

  /* 3. 保护顶部的“运行信息”小卡片绝对不被挤压变形 */
  .status-card {
    flex-shrink: 0 !important;
  }
}

/* 当屏幕宽度小于 540px（比如绝大多数竖屏手机）时进一步生效 */
/* =========================================
   手机端专属优化 (屏幕小于540px)
========================================= */
@media (max-width: 540px) {

  /* 1. 顶部固定导航与折叠菜单 */
/* 1. 顶部固定导航修改 */
  .site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-bottom: 1px solid #f0f5f1;
    
    /* 👇 新增这两行：压缩导航栏高度，让 Logo 看起来更靠上 👇 */
    padding-top: 5px !important; 
    padding-bottom: 5px !important;
  }

  /* 2. 调整 Logo 的位置 */
  .header-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .brand {
    /* 👇 新增这一行：强行把 Logo 往上微调 3 像素，不影响右侧菜单 👇 */
    position: relative;
    top: -3px; 
    height: 35px !important; /* 如果 Logo 觉得太大了，可以把这个数字调小一点，比如 30px */
  }

  /* 3. 相应地调整网页顶部预留的空白，让它更紧凑 */
  body { padding-top: 55px !important; }  
  .main-nav {
    display: none !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 0 !important;
    padding: 24px 0 !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 24px 30px rgba(0,0,0,0.1);
    border-radius: 0 0 24px 24px;
    z-index: 9998;
  }
  .main-nav.show { display: grid !important; }

  /* 2. 运行信息：标题在上，卡片在下横向平铺 */
  .status-inner {
    display: block !important;
    padding: 14px 16px !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    scrollbar-width: none !important;
  }
  .status-inner::-webkit-scrollbar { display: none; }
  
  .status-inner strong {
    display: block !important;
    font-size: 14px !important;
    margin-bottom: 12px !important;
    position: sticky;
    left: 0;
  }

.status-card {
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    vertical-align: top;
    margin-right: 8px !important;
    width: 64px !important;   /* 👈 调整为 64px (折中大小) */
    height: 64px !important;  /* 👈 调整为 64px */
    padding: 3px !important;  
    white-space: normal !important;
  }

  .status-card span {
    font-size: 11px !important;    /* 👈 字体从 12px 降回 11px，保证一行显示 */
    margin-bottom: 3px !important; /* 👈 缩减文字与图标的间距 */
  }

  .status-card small img {
    width: auto !important;
    height: 20px !important;       /* 👈 图标高度从 24px 降回 20px */
    max-width: 100% !important; 
    object-fit: contain !important; 
    display: block !important;  
  }
  /* 3. 基础边距调整 */
  .draggable-row { padding: 2px 16px 14px !important; }
  .footer-mark img { width: 50px !important; }
  
  /* 4. 图标大小调整 */
  .header-links .mini-icon { font-size: 24px; }
  .header-links .mini-icon[aria-label="搜索"] {
    font-size: 32px;
    position: relative;
    top: -3px;
  }
  .search-grid {
    display: grid !important;          /* 启用网格布局 */
    grid-template-columns: 1fr 1fr;    /* 强制分成两列 */
    gap: 12px 10px !important;         /* 上下间距 12px，左右间距 10px */
  }

  .search-grid label {
    width: 100% !important;            /* 确保输入框填满格子 */
    margin: 0 !important;              /* 清除默认外边距 */
  }

  .search-grid label input {
    width: 100% !important;            /* 确保输入框本身宽度填满 */
    box-sizing: border-box !important; /* 确保 padding 不会把框撑出格子的范围 */
  }
  /* --- 手机端“按目的查找”按钮栏：恢复单行平铺，图标在上文字在下 --- */
  .search-card .tabs {
    display: flex !important;          /* 改回弹性布局，保持单行 */
    flex-direction: row !important;    /* 强制横向排列 */
    justify-content: space-between !important; 
    gap: 4px !important;               /* 按钮间距 */
    flex-wrap: nowrap !important;      /* 绝对不换行 */
  }

  .search-card .tabs button {
    flex: 1 !important;                /* 每个按钮平分宽度 */
    flex-direction: column !important; /* 图标在上，文字在下 */
    justify-content: center !important;
    align-items: center !important;
    padding: 8px 2px !important;       /* 缩小内边距 */
    font-size: 10px !important;        /* 缩小字体，防止换行 */
    line-height: 1.2 !important;
  }

  .search-card .tabs button img {
    margin-right: 0 !important;        /* 清除图标右侧的旧间距 */
    margin-bottom: 4px !important;     /* 增加图标与文字的垂直间距 */
    width: 20px !important;            /* 图标尺寸 */
    height: 20px !important;
  }
}