/* 仅新增区块样式，不覆写任何原有CSS */

/* 右侧面板 */
.br-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.br-section {
  background: #f7f8fa;
  border-radius: 6px;
  padding: 10px 12px;
  flex: 1;
}

.br-section-title {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  padding-left: 8px;
  position: relative;
}
.br-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  background: linear-gradient(135deg, #eb6100, #ff8533);
  border-radius: 2px;
}

/* 企业列表 */
.br-company-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.br-company-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 4px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 11px;
  color: #555;
  transition: background 0.2s;
}
.br-company-item:hover {
  background: #fff0e6;
  color: #eb6100;
}
.br-c-img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #eee;
  flex-shrink: 0;
  background: #fff;
}
.br-c-name {
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 热门产品标签 */
.br-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.br-tag {
  display: inline-block;
  padding: 2px 7px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  font-size: 10px;
  color: #666;
  text-decoration: none;
  transition: all 0.15s;
}
.br-tag:hover {
  background: #fff0e6;
  color: #eb6100;
  border-color: #ffd5b8;
}

/* ===== 导航卡片缩小适配 ===== */
.bannerBottomListdiv {
  padding: 6px !important;
  height: 120px !important;
}
.bannerBottomListImg {
  width: 55px !important;
  height: 55px !important;
}
.bannerBottomListImg img {
  width: 50px !important;
  height: 50px !important;
}
.bannerBottomListTitle {
  font-size: 13px !important;
  margin: 2px 0 0 0 !important;
}
.bannerBottomListDetail {
  font-size: 10px !important;
  min-height: 20px !important;
  width: auto !important;
}

/* ===== 热门产品 - 推荐产品列表 ===== */
.br-hot-products {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.br-hot-product-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 4px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.br-hot-product-item:hover {
  background: #fff0e6;
}
.br-hot-product-img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  object-fit: cover;
  border: 1px solid #eee;
  flex-shrink: 0;
  background: #fff;
}
.br-hot-product-info {
  flex: 1;
  min-width: 0;
  line-height: 1.2;
}
.br-hot-product-name {
  font-size: 11px;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 28px;
}
