/* 我们的客户页 */

/* 统计数字：MiSans（若本机已安装小米 MiSans 即生效；亦可自行在项目中添加 @font-face 引用 woff2） */
@font-face {
  font-family: "MiSans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: local("MiSans"), local("MiSans VF"), local("MiSans-Regular"), local("MiSans Demibold");
}

/* Banner */
.banner-wrap {
  position: relative;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: #fff;
  text-align: center;
  padding: 24px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.banner-overlay__en {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}

.banner-overlay__zh {
  font-size: clamp(12px, 2vw, 15px);
  opacity: 0.95;
  margin: 0;
}

.banner-arrow {
  z-index: 3;
}

/* 主内容区 */
.customer-main {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px 56px;
  box-sizing: border-box;
}

/* 数据区 */
.customer-stats {
  padding: 40px 0 36px;
  text-align: center;
}

.customer-stats__title {
  margin: 0 0 32px;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  line-height: 1.45;
}

.customer-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
  max-width: 960px;
  margin: 0 auto;
}

.customer-stats__item {
  padding: 8px 12px;
}

.customer-stats__label {
  margin: 0 0 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.customer-stats__num {
  margin: 0;
  font-family: "MiSans", "Microsoft YaHei", "微软雅黑", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* 品牌分类块 */
.customer-category {
  padding: 36px 0 32px;
  border-top: 1px solid #e8e8e8;
  text-align: center;
}

.customer-category:first-of-type {
  border-top: none;
  padding-top: 8px;
}

.customer-category__title {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  text-align: center;
}

/* 标题下方居中短红线下划线 */
.customer-category__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 12px auto 0;
  background: #c00;
  border-radius: 1px;
}

.customer-logos {
  margin: 0 auto 20px;
  max-width: 1250px;
  width: 100%;
  text-align: center;
}

.customer-logos__img {
  display: block;
  width: 100%;
  max-width: 1250px;
  height: auto;
  margin: 0 auto;
}

.customer-category__names {
  margin: 0 auto;
  max-width: 1250px;
  font-size: 12px;
  line-height: 1.85;
  color: #666;
  text-align: center;
}

@media (max-width: 800px) {
  .customer-main {
    padding: 0 16px 40px;
  }

  .customer-stats {
    padding: 28px 0 24px;
  }

  .customer-stats__title {
    font-size: 17px;
    margin-bottom: 24px;
  }

  .customer-stats__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .customer-stats__num {
    font-size: 30px;
  }

  .customer-category {
    padding: 28px 0 24px;
  }

  .customer-category__title {
    font-size: 16px;
  }

  .banner-arrow {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .banner-arrow--prev {
    left: 6px;
  }

  .banner-arrow--next {
    right: 6px;
  }
}
