
.manbily-trust-bar {
  width: 100%;
  background: #1f1f1f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.manbily-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 24px;
}

.manbily-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #ffffff;
  white-space: nowrap;
}

.manbily-trust-icon {
  width: 26px;
  height: 26px;
  color: #ffffff;
  opacity: 0.92;
  flex: 0 0 auto;
}

.manbily-trust-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.manbily-trust-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
}

/* 平板适配 */
@media (max-width: 991px) {
  .manbily-trust-inner {
    padding: 20px 24px;
    gap: 18px;
  }

  .manbily-trust-text {
    font-size: 14px;
  }

  .manbily-trust-icon {
    width: 23px;
    height: 23px;
  }
}

/* 手机端适配：两列显示 */
@media (max-width: 575px) {
  .manbily-trust-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 14px 12px;
    gap: 12px 8px;
  }

  .manbily-trust-item {
    justify-content: center;
    gap: 6px;
    white-space: normal;
    text-align: center;
  }

  .manbily-trust-text {
    font-size: 11px;
    line-height: 1.2;
    font-weight: 600;
  }

  .manbily-trust-icon {
    width: 18px;
    height: 18px;
  }
}
