
/* 资质荣誉容器 */
.honors-container {
    padding-top: 80px;
    background-color: #fff;
}

/* 基础样式 */
.honors-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 12px 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.honors-carousel-view {
  width: 100%;
  overflow: hidden;
}

.honors-carousel-track {
  display: flex;
  transition: transform 0.5s ease; /* 平滑过渡 */
  will-change: transform; /* 性能优化 */
}

.honors-carousel-item {
  position: relative;
  display: flex;
  align-content: flex-end;
  flex-wrap: wrap;
  width: 330px; /* 固定单图宽度 330px */
  flex-shrink: 0; /* 禁止收缩 */
  text-align: center;
  padding: 0px 60px;
  box-sizing: border-box;
}
.honors-carousel-item .img-container {
  height: 200px;
  width: 100%;
}
.honors-carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom;
}
.honors-carousel-item .maisui-img {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 100px;
}

.honors-carousel-item p {
  font-size: 14px;
  width: 100%;
  margin: 60px 0 0;
  color: #333;
  text-align: center;
}