    .sol-card[id],
    .product-panel[id],
    article.partner-block[id],
    .news-block[id] {
      scroll-margin-top: calc(var(--header-h) + 16px);
    }

    /* —— Hero 轮播 —— */
    #hero {
      scroll-margin-top: calc(var(--header-h) + 12px);
      padding-top: var(--header-h);
      /* min-height: 78vh; */
      position: relative;
      overflow: hidden;
    }
    .hero-slides {
      position: relative;
      /* min-height: calc(78vh - var(--header-h)); */
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.55s ease, visibility 0.55s;
      display: flex;
      align-items: center;
      padding: 48px 20px 80px;
    }
    .hero-slide.is-active {
      opacity: 1;
      visibility: visible;
      position: relative;
    }
    .hero-slide-inner {
      max-width: var(--maxw);
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    @media (max-width: 900px) {
      .hero-slide-inner { grid-template-columns: 1fr; }
    }
    .hero-visual {
      aspect-ratio: 4/3;
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, #c5d9f5 0%, #d4cef5 50%, #b8d4f0 100%);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .hero-visual img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .hero-slide:nth-child(2) .hero-visual {
      background: linear-gradient(145deg, #dbeafe, #e9e3ff);
    }
    .hero-slide:nth-child(3) .hero-visual {
      background: linear-gradient(145deg, #cfe2fc, #ddd6fe);
    }
    .hero-slide:nth-child(4) .hero-visual {
      background: linear-gradient(145deg, #bfdbfe, #c4b5fd);
    }
    .hero-copy h1 {
      font-size: clamp(1.75rem, 4vw, 2.75rem);
      line-height: 1.2;
      margin: 0 0 16px;
      font-weight: 800;
      color: var(--text);
    }
    .hero-copy h1 em {
      font-style: normal;
      color: var(--blue);
    }
    .hero-copy p {
      font-size: 1rem;
      color: var(--text-2);
      max-width: 520px;
      margin: 0 0 28px;
      line-height: 1.75;
    }
    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }
    .hero-btns .btn { border-radius: var(--radius-sm); padding: 12px 22px; }
    .hero-dots {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 5;
    }
    .hero-dot {
      width: 28px;
      height: 4px;
      border-radius: 2px;
      border: none;
      background: rgba(30, 91, 184, 0.2);
      cursor: pointer;
      padding: 0;
      transition: background 0.3s, width 0.3s;
    }
    .hero-dot.is-active {
      background: linear-gradient(90deg, var(--blue), var(--purple));
      width: 36px;
    }

    /* —— 信任条 —— */
    .trust-strip {
      background: var(--blue-soft);
      border-top: 1px solid rgba(30, 91, 184, 0.08);
      border-bottom: 1px solid rgba(30, 91, 184, 0.08);
    }
    .trust-inner {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 18px 20px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      text-align: center;
      font-size: 0.875rem;
      color: var(--text-2);
    }
    .trust-item {
      padding: 8px 12px;
      border-right: 1px solid rgba(30, 91, 184, 0.12);
    }
    .trust-item:last-child { border-right: none; }
    .trust-item strong { color: var(--blue); font-size: 1.05rem; }
    @media (max-width: 768px) {
      .trust-inner {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
      }
      .trust-item:nth-child(2) { border-right: none; }
      .trust-item:nth-child(1), .trust-item:nth-child(2) {
        border-bottom: 1px solid rgba(30, 91, 184, 0.12);
      }
    }
    /* —— 方案卡片 —— */
    .solutions-grid {
      max-width: var(--maxw);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    @media (max-width: 1024px) {
      .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .solutions-grid { grid-template-columns: 1fr; }
    }
    .sol-card {
      background: #e1e1e1;
      border-radius: var(--radius-lg);
      padding: 0;
      box-shadow: var(--shadow);
      border: 1px solid rgba(0, 0, 0, 0.04);
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .sol-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }
    .sol-card-thumb {
      height: 140px;
      overflow: hidden;
      position: relative;
      background: linear-gradient(120deg, var(--blue-soft), var(--purple-soft));
    }
    .sol-card-thumb-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .sol-card:nth-child(2n) .sol-card-thumb {
      background: linear-gradient(120deg, #dbeafe, #e0e7ff);
    }
    .sol-card:nth-child(3n) .sol-card-thumb {
      background: linear-gradient(120deg, #e0f2fe, #ede9fe);
    }
    .sol-card-body {
      padding: 20px 20px 22px;
      background: #fff;
    
    }
    .sol-card h3 {
      margin: 0 0 10px;
      font-size: 1.0625rem;
      font-weight: 700;
    }
    .sol-card .summary {
      font-size: 0.875rem;
      color: var(--text-2);
      margin: 0 0 14px;
      line-height: 1.65;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .sol-points {
      list-style: none;
      margin: 0 0 16px;
      padding: 0;
      font-size: 0.8125rem;
      color: var(--text-3);
    }
    .sol-points li {
      padding: 4px 0 4px 14px;
      position: relative;
    }
    .sol-points li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 11px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--blue);
      opacity: 0.6;
    }
    .sol-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .sol-actions button,
    .sol-actions a {
      font-size: 0.8125rem;
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      cursor: pointer;
      border: 1px solid #e5e7eb;
      background: var(--white);
      color: var(--text-2);
      text-decoration: none;
    }
    .sol-actions button:hover,
    .sol-actions a:hover {
      border-color: var(--blue);
      color: var(--blue);
    }
    .sol-accordion {
      display: none;
      padding: 0 20px 20px;
      font-size: 0.8125rem;
      color: var(--text-2);
      border-top: 1px solid #f0f0f0;
    }
    .sol-accordion.is-open { display: block; }
    .sol-accordion dl { margin: 16px 0 0; }
    .sol-accordion dt {
      font-weight: 700;
      color: var(--text);
      margin-top: 12px;
    }
    .sol-accordion dt:first-child { margin-top: 0; }
    .sol-accordion dd { margin: 6px 0 0; }
    /* —— 产品 Tab —— */
    .products-wrap { max-width: var(--maxw); margin: 0 auto; }
    .product-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-bottom: 28px;
    }
    .product-tab {
      padding: 10px 16px;
      border: none;
      background: var(--white);
      border-radius: 999px;
      font-size: 0.8125rem;
      color: var(--text-2);
      cursor: pointer;
      border: 1px solid #e8e8e8;
      transition: all 0.2s;
    }
    .product-tab.is-active {
      background: var(--blue);
      color: var(--white);
      border-color: var(--blue);
    }
    .product-panels { position: relative; min-height: 320px; }
    .product-panel {
      display: none;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .product-panel.is-active { display: grid; }
    @media (max-width: 1100px) {
      .product-panel.is-active { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 520px) {
      .product-panel.is-active { grid-template-columns: 1fr; }
    }
    .prod-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid #eee;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .prod-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }
    .prod-card-img {
      height: 200px;
      overflow: hidden;
      position: relative;
      background: linear-gradient(160deg, #93c5fd, #a5b4fc);
    }
    .prod-card-link {
      display: block;
      text-decoration: none;
      color: inherit;
    }
    .prod-card-link:focus-visible {
      outline: 2px solid var(--blue);
      outline-offset: 2px;
    }
    .prod-card-img-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .prod-card:nth-child(2) .prod-card-img { background: linear-gradient(160deg, #7dd3fc, #818cf8); }
    .prod-card:nth-child(3) .prod-card-img { background: linear-gradient(160deg, #67e8f9, #a78bfa); }
    .prod-card:nth-child(4) .prod-card-img { background: linear-gradient(160deg, #38bdf8, #c084fc); }
    .prod-card-body { padding: 14px 16px 0; }
    .prod-card-cta { padding: 0 16px 16px; }
    .prod-card h4 { margin: 0 0 8px; font-size: 0.9375rem; }
    .prod-card .one-line {
      font-size: 0.8125rem;
      color: var(--text-2);
      margin: 0 0 10px;
      line-height: 1.5;
      min-height: 40px;
    }
    .prod-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
    .prod-tags span {
      font-size: 0.6875rem;
      padding: 3px 8px;
      background: var(--blue-soft);
      color: var(--blue-dark);
      border-radius: 4px;
    }
    .prod-card .btn-mini {
      width: 100%;
      padding: 8px;
      font-size: 0.8125rem;
      border-radius: var(--radius-sm);
      border: 1px solid var(--blue);
      background: transparent;
      color: var(--blue);
      cursor: pointer;
      font-weight: 600;
    }
    .prod-card .btn-mini:hover { background: var(--blue-soft); }
    /* —— 荣誉资质 —— */
    #credentials .honor-grid {
      max-width: var(--maxw);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 18px;
    }
    #credentials .honor-item {
      background: var(--white);
      border-radius: var(--radius-md);
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 2px 12px rgba(30, 91, 184, 0.04);
      overflow: hidden;
      transition: box-shadow 0.2s;
    }
    #credentials .honor-item:hover {
      box-shadow: 0 6px 20px rgba(30, 91, 184, 0.08);
    }
    #credentials .honor-thumb {
      position: relative;
      aspect-ratio: 4 / 3;
      width: 100%;
      min-height: 300px;
    }
    #credentials .honor-thumb-img {
      display: block;
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      cursor: zoom-in;
    }
    #credentials .honor-thumb-img:focus {
      outline: 2px solid var(--blue);
      outline-offset: 2px;
    }
    #credentials .honor-lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 4000;
      align-items: center;
      justify-content: center;
      padding: 16px;
      box-sizing: border-box;
    }
    #credentials .honor-lightbox.is-open {
      display: flex;
    }
    #credentials .honor-lightbox-scrim {
      position: absolute;
      inset: 0;
      margin: 0;
      padding: 0;
      border: 0;
      background: rgba(15, 23, 42, 0.82);
      cursor: pointer;
    }
    #credentials .honor-lightbox-panel {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 8px;
      max-width: min(1200px, 100%);
      width: 100%;
      pointer-events: none;
    }
    #credentials .honor-lightbox-panel .honor-lightbox-nav {
      pointer-events: auto;
    }
    #credentials .honor-lightbox-stage {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      pointer-events: auto;
    }
    #credentials .honor-lightbox-img {
      display: block;
      max-width: 100%;
      max-height: min(78vh, 900px);
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: var(--radius-md, 8px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
      background: #fff;
    }
    #credentials .honor-lightbox-caption {
      margin: 0;
      max-width: 100%;
      text-align: center;
      font-size: 0.875rem;
      font-weight: 500;
      line-height: 1.45;
      color: #f1f5f9;
    }
    #credentials .honor-lightbox-nav {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      margin: 0;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      font-size: 1.75rem;
      line-height: 1;
      cursor: pointer;
      transition: background 0.15s, border-color 0.15s;
    }
    #credentials .honor-lightbox-nav:hover {
      background: rgba(255, 255, 255, 0.22);
      border-color: rgba(255, 255, 255, 0.45);
    }
    #credentials .honor-lightbox-close {
      position: fixed;
      top: max(16px, env(safe-area-inset-top, 0px));
      right: max(16px, env(safe-area-inset-right, 0px));
      z-index: 4001;
      width: 40px;
      height: 40px;
      margin: 0;
      padding: 0;
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.35);
      color: #fff;
      font-size: 1.5rem;
      line-height: 1;
      cursor: pointer;
      pointer-events: auto;
    }
    #credentials .honor-lightbox-close:hover {
      background: rgba(0, 0, 0, 0.5);
    }
    @media (max-width: 640px) {
      #credentials .honor-lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
      }
      #credentials .honor-lightbox-panel {
        gap: 4px;
      }
    }
    #credentials .honor-thumb.hp-t1 { background: linear-gradient(145deg, #e2e8f0, #cbd5e1); }
    #credentials .honor-thumb.hp-t2 { background: linear-gradient(145deg, #dbeafe, #bfdbfe); }
    #credentials .honor-thumb.hp-t3 { background: linear-gradient(145deg, #e0e7ff, #c7d2fe); }
    #credentials .honor-thumb.hp-t4 { background: linear-gradient(145deg, #ede9fe, #ddd6fe); }
    #credentials .honor-thumb.hp-t5 { background: linear-gradient(145deg, #f1f5f9, #e2e8f0); }
    #credentials .honor-thumb.hp-t6 { background: linear-gradient(145deg, #cffafe, #a5f3fc); }
    #credentials .honor-label {
      margin: 0;
      padding: 12px 14px 14px;
      font-size: 0.8125rem;
      font-weight: 500;
      line-height: 1.45;
      color: var(--text);
    }
    #credentials .credentials-cta {
      max-width: var(--maxw);
      margin: 24px auto 0;
      text-align: center;
    }
    #credentials .credentials-cta .linkish {
      color: var(--blue);
      font-weight: 600;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      font: inherit;
      text-decoration: underline;
    }
    /* —— 合作伙伴 —— */
    .partners-wrap {
      max-width: var(--maxw);
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .partners-disclaimer {
      max-width: var(--maxw);
      margin: 0 auto 28px;
      padding: 12px 16px;
      font-size: 0.8125rem;
      color: var(--text-3);
      background: rgba(30, 91, 184, 0.06);
      border-radius: var(--radius-md);
      border-left: 3px solid var(--blue);
      line-height: 1.55;
    }
    .partner-block {
      background: var(--white);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: 0 4px 24px rgba(30, 91, 184, 0.06);
      padding: 22px 22px 20px;
      transition: box-shadow 0.25s;
    }
    .partner-block:hover {
      box-shadow: 0 8px 32px rgba(30, 91, 184, 0.1);
    }
    .partner-block-top {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px 18px;
      margin-bottom: 18px;
      align-items: start;
    }
    .partner-head-main {
      min-width: 0;
    }
    @media (min-width: 768px) {
      .partner-block-top {
        grid-template-columns: auto 1fr auto;
        align-items: center;
      }
    }
    .partner-badge {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, var(--blue), #4f8fd9);
      color: var(--white);
      font-size: 0.8125rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .partner-block h4 {
      margin: 0 0 6px;
      font-size: 1.0625rem;
      color: var(--text);
      font-weight: 700;
    }
    .partner-lead {
      margin: 0;
      font-size: 0.875rem;
      color: var(--text-2);
      line-height: 1.55;
    }
    .partner-keywords {
      grid-column: 1 / -1;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    @media (min-width: 768px) {
      .partner-keywords {
        grid-column: auto;
        max-width: 248px;
        justify-content: flex-end;
      }
    }
    .partner-keywords li {
      font-size: 0.6875rem;
      padding: 5px 10px;
      border-radius: 999px;
      background: var(--blue-soft);
      color: var(--blue-dark);
      font-weight: 600;
    }
    .partner-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 24px;
      margin: 0 0 14px;
      padding: 12px 14px;
      background: #f8fafc;
      border-radius: var(--radius-md);
      font-size: 0.8125rem;
      color: var(--text-2);
    }
    .partner-meta span strong {
      color: var(--blue);
      font-weight: 700;
    }
    .partner-block p.note {
      margin: 14px 0 0;
      padding-top: 14px;
      border-top: 1px solid #f0f2f5;
      font-size: 0.8125rem;
      color: var(--text-3);
      line-height: 1.65;
    }
    .logo-wall {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
      gap: 12px;
    }
    #partners .logo-placeholder {
      width: auto;
      min-height: 48px;
      background: #e8ecf0;
      border-radius: var(--radius-sm);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.6875rem;
      color: var(--text-2);
      text-align: center;
      line-height: 1.35;
      font-weight: 600;
      border: 1px solid rgba(0, 0, 0, 0.04);
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
    }
    #partners .logo-placeholder img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    #partners .logo-placeholder small {
      display: block;
      font-size: 0.5625rem;
      font-weight: 500;
      color: var(--text-3);
      margin-top: 4px;
    }
    #partners .logo-placeholder:hover {
      background: linear-gradient(180deg, #fff, #e8f2fb);
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(30, 91, 184, 0.12);
      color: var(--blue);
    }
    #partners .logo-placeholder.lp-t1 { background: linear-gradient(145deg, #e2e8f0, #cbd5e1); }
    #partners .logo-placeholder.lp-t2 { background: linear-gradient(145deg, #dbeafe, #bfdbfe); }
    #partners .logo-placeholder.lp-t3 { background: linear-gradient(145deg, #e0e7ff, #c7d2fe); }
    #partners .logo-placeholder.lp-t4 { background: linear-gradient(145deg, #ede9fe, #ddd6fe); }
    #partners .logo-placeholder.lp-t5 { background: linear-gradient(145deg, #f1f5f9, #e2e8f0); }
    #partners .logo-placeholder.lp-t6 { background: linear-gradient(145deg, #cffafe, #a5f3fc); }

    .cases-logos .logo-placeholder {
      width: 88px;
      height: 40px;
      background: #e5e7eb;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.6875rem;
      color: var(--text-3);
      transition: transform 0.2s, background 0.2s;
    }
    .cases-logos .logo-placeholder:hover {
      background: #dbeafe;
      transform: scale(1.03);
    }

    /* —— 案例 —— */
    .cases-logos {
      max-width: var(--maxw);
      margin: 0 auto 36px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
    .cases-slider {
      max-width: var(--maxw);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    @media (max-width: 900px) {
      .cases-slider { grid-template-columns: 1fr; }
    }
    .case-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 22px;
      border: 1px solid #eee;
      box-shadow: var(--shadow);
    }
    .case-card .tag {
      display: inline-block;
      font-size: 0.6875rem;
      padding: 4px 10px;
      background: var(--purple-soft);
      color: var(--purple);
      border-radius: 999px;
      margin-bottom: 10px;
    }
    .case-card h4 { margin: 0 0 10px; font-size: 1rem; }
    .case-card .pain { font-size: 0.875rem; color: var(--text-2); margin: 0 0 12px; }
    .case-card ul {
      margin: 0 0 14px;
      padding-left: 18px;
      font-size: 0.8125rem;
      color: var(--text-2);
    }
    .case-card .effect {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--blue);
      margin: 0 0 14px;
    }
    .testimonial {
      max-width: var(--maxw);
      margin: 40px auto 0;
      padding: 24px;
      background: linear-gradient(135deg, var(--blue-soft), var(--purple-soft));
      border-radius: var(--radius-lg);
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .testimonial-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #94a3b8;
      flex-shrink: 0;
    }
    .testimonial blockquote {
      margin: 0;
      font-size: 0.9375rem;
      color: var(--text-2);
    }
    .testimonial .stars { color: #f59e0b; font-size: 0.875rem; margin-top: 8px; }
    /* —— 资讯（公司新闻 / 行业资讯） —— */
    #news .news-wrap {
      max-width: var(--maxw);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: stretch;
    }
    @media (max-width: 900px) {
      #news .news-wrap { grid-template-columns: 1fr; }
    }
    .news-block {
      background: var(--white);
      border-radius: var(--radius-lg);
      border: 1px solid #eee;
      box-shadow: var(--shadow);
      padding: 22px 22px 16px;
    }
    .news-block h3 {
      margin: 0 0 6px;
      font-size: 1.125rem;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .news-block .news-sub {
      margin: 0 0 18px;
      font-size: 0.8125rem;
      color: var(--text-3);
    }
    .news-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .news-list li {
      border-top: 1px solid #f0f0f0;
      padding: 12px 0;
    }
    .news-list li:first-of-type { border-top: none; padding-top: 0; }
    .news-list a {
      display: block;
      text-decoration: none;
      color: var(--text-2);
      font-size: 0.875rem;
      line-height: 1.45;
      transition: color 0.15s;
    }
    .news-list a:hover { color: var(--blue); }
    .news-list time {
      display: block;
      font-size: 0.75rem;
      color: var(--text-3);
      margin-bottom: 4px;
      font-weight: 600;
    }
    .news-more {
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid #f0f0f0;
      text-align: right;
    }
    .news-more a {
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--blue);
      text-decoration: none;
    }
    .news-more a:hover { text-decoration: underline; }

    /* —— 流程 —— */
    .process-steps {
      max-width: var(--maxw);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    @media (max-width: 900px) {
      .process-steps { grid-template-columns: 1fr; }
    }
    .process-step {
      text-align: center;
      padding: 24px 16px;
      background: var(--white);
      border-radius: var(--radius-lg);
      border: 1px solid #eee;
      position: relative;
    }
    .process-step .icon-box {
      width: 48px;
      height: 48px;
      margin: 0 auto 14px;
      background: var(--blue-soft);
      border-radius: var(--radius-md);
      border: 2px dashed rgba(30, 91, 184, 0.35);
      overflow: hidden;
    }
    .process-step .icon-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .process-step h4 { margin: 0 0 8px; font-size: 1rem; }
    .process-step p { margin: 0; font-size: 0.8125rem; color: var(--text-2); }
    .process-cta { text-align: center; margin-top: 32px; }

    .value-note {
      max-width: var(--maxw);
      margin: 24px auto 0;
      text-align: center;
      font-size: 0.8125rem;
      color: var(--text-3);
    }
    .value-note a { color: var(--blue); }
    /* —— 关于粤收付 —— */
    #about .section-head {
      margin-bottom: 36px;
    }
    #about .section-head p {
      max-width: 720px;
    }
    .about-layout {
      max-width: var(--maxw);
      margin: 0 auto;
      display: grid;
      gap: 36px;
      align-items: start;
    }
    @media (min-width: 960px) {
      .about-layout {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        gap: 48px;
      }
    }
    .about-copy {
      text-align: left;
    }
    .about-copy p {
      margin: 0 0 1rem;
      font-size: 0.9375rem;
      color: var(--text-2);
      line-height: 1.8;
    }
    .about-copy p:last-child {
      margin-bottom: 0;
    }
    .about-aside {
      display: flex;
      flex-direction: column;
      gap: 20px;
      justify-content: space-around;
      height: 100%;
    }
    .about-block {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 24px 20px 26px;
      border: 1px solid rgba(0, 0, 0, 0.06);
      box-shadow: var(--shadow);
    }
    .about-block h3 {
      margin: 0 0 18px;
      font-size: 1.0625rem;
      font-weight: 800;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .about-block h3::before {
      content: "";
      width: 4px;
      height: 1.1em;
      border-radius: 2px;
      background: linear-gradient(180deg, var(--blue), var(--purple));
      flex-shrink: 0;
    }
    .about-values {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    @media (min-width: 520px) {
      .about-values { grid-template-columns: repeat(4, 1fr); gap: 10px; }
    }
    .about-value-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 8px;
      padding: 12px 6px;
      border-radius: var(--radius-md);
      background: linear-gradient(160deg, var(--blue-soft), #fff);
      border: 1px solid rgba(30, 91, 184, 0.08);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .about-value-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(30, 91, 184, 0.1);
    }
    .about-aside .about-block:nth-child(2) .about-value-card {
      background: linear-gradient(160deg, var(--purple-soft), #fff);
      border-color: rgba(124, 111, 214, 0.12);
    }
    .about-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(30, 91, 184, 0.12), rgba(124, 111, 214, 0.1));
      color: var(--blue);
    }
    .about-aside .about-block:nth-child(2) .about-icon {
      background: linear-gradient(135deg, rgba(124, 111, 214, 0.18), rgba(30, 91, 184, 0.08));
      color: var(--purple);
    }
    .about-icon svg {
      width: 22px;
      height: 22px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.75;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .about-value-card span {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.35;
    }
