
    /* 网格核心样式 */
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .trust-item {
      background: #f9f9f9;
      padding: 30px 20px;
      border-radius: 12px;
      text-align: center;
    }

    .trust-icon {
      width: 50px;
      height: 50px;
      margin-bottom: 10px;
      opacity: 0.8;
    }

    .trust-item h3 {
      margin: 0 0 8px;
      font-size: 15px;
      font-weight: bold;
      color: #222;
    }

    .trust-item p {
      margin: 0;
      font-size: 10px;
      color: #666;
      line-height: 1.2;
    }

    /* 手机端精简显示 */
    .mobile-hide {
      display: inline;
    }

    @media (max-width: 768px) {
      .trust-grid {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 8px;
        padding: 0 10px 15px;
        scroll-snap-type: x mandatory;
      }

      .trust-grid::-webkit-scrollbar {
        display: none;
      }

      .trust-item {
        flex: 0 0 38%;
        scroll-snap-align: start;
        padding: 10px 6px;
        min-height: 110px;
        background: #f9f9f9;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }

      .trust-icon {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 6px;
        opacity: 0.9;
      }

      .trust-item h3 {
        font-size: 11px;
        margin: 0 0 2px 0;
        line-height: 1.2;
        font-weight: bold;
        color: #111;
        white-space: nowrap;
      }

      .trust-item p {
        font-size: 9.5px;
        line-height: 1.1;
        color: #666;
        margin: 0;
        width: 100%;
        text-align: center;
      }

      .mobile-hide {
        display: none !important;
      }
    }

    /* 支付与物流标识 */
    .badge-container {
      margin-top: 20px;
      display: flex;
      justify-content: center;
      gap: 80px;
      flex-wrap: nowrap;
      opacity: 0.6;
    }

    .badge-group {
      text-align: center;
      flex: 0 1 auto;
    }

    .badge-group span {
      font-size: 11px;
      color: #999;
      display: block;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
      white-space: nowrap;
    }

    .badge-img {
      height: 30px;
      width: auto;
      filter: grayscale(1);
      display: block;
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .badge-container {
        margin-top: 10px;
        gap: 20px;
        padding: 0 10px;
      }

      .badge-group span {
        font-size: 9px;
        margin-bottom: 6px;
      }

      .badge-img {
        height: 14px;
      }
    }
  