
  /* 促销热销商品模块 */
.promo-hot-products {
  width: 1160px;
  margin: 20px auto;
  background: #ffffff;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.promo-hot-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00A06D, #ff6b6b);
}

.promo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.promo-title {
  display: flex;
  align-items: center;
}

.main-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-right: 15px;
}

.sub-title {
  font-size: 14px;
  color: #333;
}

.promo-more {
  color: #666;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s;
}

.promo-more:hover {
  color: #ff4822;
  transform: translateX(3px);
}

.promo-products-container {
  width: 100%;

  white-space: nowrap; /* 禁止换行 */
}

.promo-products-wrapper {
  display: inline-flex; /* 关键：使用inline-flex而非flex */
  gap: 13px;
  padding: 5px;
}

.promo-product-card {
  flex: 0 0 180px; /* 固定宽度，不伸缩 */
  border: 1px solid #eee;
  overflow: hidden;
  transition: all 0.3s;
  background: #fff;
  display: inline-block; /* 兼容性备用方案 */
}

.promo-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-color:#00A06D;
}

.promo-product-image {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px 5px 10px;
  background: #f9f9f9;
  position: relative;
}

.promo-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.promo-product-info {
  padding: 12px;
}

.promo-product-model {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-product-brand {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-product-spec {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promo-product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.promo-product-price {
  color: #FF6F00;
  font-weight: bold;
  font-size: 16px;
}

.promo-product-shipping {
  font-size: 12px;
  color: #fff;
  background:#00A06D;
  padding: 3px 8px;
}

/* 响应式设计 */
@media (max-width: 1240px) {
  .promo-hot-products {
    width: 95%;
  }
}

@media (max-width: 992px) {
  .promo-product-card {
    flex: 0 0 calc(33.333% - 11px); /* 3个商品一行 */
  }
}

@media (max-width: 768px) {
  .promo-product-card {
    flex: 0 0 calc(50% - 11px); /* 2个商品一行 */
  }
  
  .promo-product-image {
    height: 120px;
  }
}
  
