
  .sb-trust-strip,
  .sb-trust-strip * {
    box-sizing: border-box;
  }

  .sb-trust-strip {
    width: 100% !important;
    margin: 0 !important;
    padding: 19px 30px !important;
    overflow: hidden;
    border-top: 1px solid rgba(41, 113, 218, 0.08);
    border-bottom: 1px solid rgba(41, 113, 218, 0.08);
    background:
      radial-gradient(
        circle at 50% 0%,
        rgba(220, 235, 255, 0.5),
        transparent 50%
      ),
      linear-gradient(
        90deg,
        #ffffff 0%,
        #f7faff 50%,
        #ffffff 100%
      );
  }

  .sb-trust-list {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    width: 100% !important;
    max-width: 1440px;
    margin: 0 auto !important;
    gap: 34px;
  }

  .sb-trust-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    gap: 15px;
  }

  .sb-trust-icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
  }

  .sb-trust-icon svg {
    display: block;
    width: 38px;
    height: 38px;
    fill: none;
    stroke: #3278db;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .sb-trust-copy {
    min-width: 0;
    text-align: left;
  }

  .sb-trust-copy h3 {
    margin: 0 0 5px !important;
    padding: 0 !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px !important;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0;
    color: #151515;
  }

  .sb-trust-copy p {
    max-width: 215px;
    margin: 0 !important;
    padding: 0 !important;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px !important;
    line-height: 1.45;
    font-weight: 400;
    color: #25344b;
  }

  /* 平板：每行两项 */
  @media screen and (max-width: 960px) {
    .sb-trust-strip {
      padding: 22px 24px !important;
    }

    .sb-trust-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px 30px;
      max-width: 760px;
    }
  }

  /* 手机：每行两项 */
  @media screen and (max-width: 560px) {
    .sb-trust-strip {
      padding: 20px 12px !important;
    }

    .sb-trust-list {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px 12px;
    }

    .sb-trust-item {
      flex-direction: column;
      justify-content: flex-start;
      gap: 8px;
      text-align: center;
    }

    .sb-trust-icon {
      width: 38px;
      height: 38px;
      flex-basis: 38px;
    }

    .sb-trust-icon svg {
      width: 34px;
      height: 34px;
    }

    .sb-trust-copy {
      text-align: center;
    }

    .sb-trust-copy h3 {
      font-size: 12px !important;
      line-height: 1.25;
    }

    .sb-trust-copy p {
      max-width: 160px;
      margin: 0 auto !important;
      font-size: 10px !important;
      line-height: 1.4;
    }
  }
