
/* ========== 核心：全屏背景突破系统容器，彻底消除左右留白 ========== */
.tv-trust-section {
  /* 强制拉满整个浏览器宽度，无视父容器限制 */
  position: relative !important;
  width: 100vw !important;
  left: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  /* 背景和上下间距，仅上下有padding，左右为0 */
  padding: 40px 0 !important;
  background-color: #f6f3f2 !important;
  border-top: 1px solid rgba(193, 198, 215, 0.1) !important;
  border-bottom: 1px solid rgba(193, 198, 215, 0.1) !important;
  /* 基础样式 */
  box-sizing: border-box !important;
  font-family: 'Inter', sans-serif !important;
  overflow: hidden !important;
}

/* ========== 内容容器：和网站全局宽度对齐，居中显示 ========== */
.tv-trust-inner {
  max-width: 1280px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  box-sizing: border-box !important;
}

/* ========== PC端布局：完全保留原版，零改动 ========== */
.tv-trust-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 32px !important;
  text-align: center !important;
}

.tv-trust-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.tv-trust-number {
  font-family: 'Manrope', 'Inter', sans-serif !important;
  font-size: 2rem !important;
  font-weight: 800 !important;
  color: #102754 !important;
  margin-bottom: 4px !important;
  line-height: 1 !important;
}

.tv-trust-label {
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #414754 !important;
  line-height: 1.4 !important;
}

/* ========== 手机端专属适配 ========== */
@media (max-width: 767px) {
  .tv-trust-section {
    padding: 20px 0 !important;
  }

  .tv-trust-inner {
    padding: 0 8px !important;
  }

  /* 手机端强制一行显示，不折行 */
  .tv-trust-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    gap: 4px !important;
    grid-template-columns: unset !important;
  }

  /* 每个item均分宽度，防止挤压 */
  .tv-trust-item {
    flex: 1 !important;
    min-width: 0 !important;
    padding: 0 2px !important;
  }

  /* 自适应字体，小屏幕不溢出 */
  .tv-trust-number {
    font-size: clamp(1.2rem, 4vw, 1.6rem) !important;
  }

  /* 文字自动换行，不折叠乱码 */
  .tv-trust-label {
    font-size: clamp(0.55rem, 1.8vw, 0.7rem) !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }
}
