
  /* 全宽度适配容器 */
  .trust-badges-section {
    width: 100%;
    margin: 0;
    padding: 24px 16px;
    background-color: #fcfbf9;
    border-radius: 12px;
    border: 1px solid #f0ede6;
    box-sizing: border-box;
  }

  /* PC端默认显示大标题 */
  .trust-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    letter-spacing: -0.2px;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
  }

  .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .trust-item-link:hover {
    background-color: #f2efe9;
    transform: translateY(-2px);
  }

  .trust-icon-wrap {
    width: 54px;
    height: 54px;
    background-color: #eaf2eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .trust-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 4px 0;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 3px;
  }

  .link-arrow {
    font-size: 11px;
    color: #3a5c4f;
    opacity: 0.7;
  }

  .trust-item-desc {
    font-size: 12px;
    color: #666666;
    margin: 0;
    line-height: 1.4;
  }

  /* 移动端 (<= 768px) 适配规则 */
  @media (max-width: 768px) {
    /* 手机端隐藏大标题，节省顶部空间 */
    .trust-title {
      display: none;
    }

    .trust-badges-section {
      padding: 16px 12px;
      border-radius: 8px;
    }

    .trust-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .trust-item {
      padding: 8px 4px;
    }

    .trust-icon-wrap {
      width: 42px;
      height: 42px;
      margin-bottom: 6px;
    }

    .trust-icon-wrap svg {
      width: 22px;
      height: 22px;
    }

    .trust-item-title {
      font-size: 13px;
    }

    .trust-item-desc {
      font-size: 11px;
    }
  }
