/* Bomao Hot Goods - 样式隔离 */
.bomao-hot-goods2 {
  /* margin-top: -4.6875rem; */
  margin-top: -0.1rem;
  --card-radius: 0.5625rem;
  --badge-radius: 0.5rem;
  --shadow: 0 6px 0.75rem #e4e4e4;
  background-color: #e4e4e4;
  /* margin-bottom: 4.6875rem; */
}

.bomao-hot-goods2 .bomao-header {
  padding: 0 0 1.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bomao-hot-goods2 .bomao-header-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bomao-hot-goods2 .bomao-title {
  margin-bottom: 0.625rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}
.bomao-hot-goods2 .bomao-tabs {
  list-style: none;
  padding: 7px;
  display: flex;
  border-radius: 2.5rem;
  border: 1px solid #000;
}
.bomao-hot-goods2 .bomao-tab-link {
  display: inline-block;
  padding: 10px 0.9375rem;
  border-radius: 2.5rem;
  color: #000;
  text-decoration: none;
  font-size: 0.5625rem;
  font-weight: 400;
  line-height: 1.22;
}
.bomao-hot-goods2 .bomao-tab-link.active {
  font-weight: 700;
  background: #FFF100;
}

/* 通栏轮播容器：出栏至视口宽度 */
.bomao-hot-goods2 .bomao-carousel-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  padding: 0 0 1.5rem;
}

.bomao-hot-goods2 .swiper-slide { height: auto; }

.bomao-hot-goods2 .bomao-card {
  height: 100%;
  border-radius: 1.125rem;
  overflow: hidden;
}
.bomao-hot-goods2 .bomao-card[data-tag="Popular"] {
  background: linear-gradient(164deg, #B2A0F0 5.58%, #6852BB 127.73%);
}
.bomao-hot-goods2 .bomao-card[data-tag="New"] {
  background: linear-gradient(163deg, #1EA9FF -25.22%, #3295FF 106.21%);
}
.bomao-hot-goods2 .bomao-card[data-tag="Hot"] {
  background: linear-gradient(157deg, #FFE432 -13.48%, #E5BE11 103.21%);
}
.bomao-hot-goods2 .bomao-card-inner {
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 8px 8px 8px 0.6875rem;
  height: 100%;
  position: relative;
  transition: transform .25s ease;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.bomao-hot-goods2 .bomao-card-inner  img{
  transition: transform .25s ease;
}
/* 卡片悬停效果图片缩放 鼠标移出后恢复也要有缓慢效果*/
.bomao-hot-goods2 .bomao-card-inner:hover img {
  transform: scale(1.2);
}

.bomao-hot-goods2 .bomao-card-badge {
  position: absolute;
  top: 8px;
  left: 0.6875rem;
  background: linear-gradient(168deg, #FFF -95.3%, rgba(255, 255, 255, 0.00) 113.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.46875rem;
  font-weight: 700;
}
.bomao-hot-goods2 .bomao-card-info{
  width: calc(40% - 10px);
  padding-bottom: 2.0625rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
}
.bomao-hot-goods2 .bomao-card-desc{
  font-size: 0.625rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  /* 超出两行显示省略号 */
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.bomao-hot-goods2 .bomao-card-image {
  display: block;
  width: 60%;
  height: 100%;
  border-radius: 0.9375rem;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio:362/384;
  padding: 1rem;
}
.bomao-hot-goods2 .bomao-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  /* aspect-ratio: 290/261; */
}

.bomao-hot-goods2 .bomao-card-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

/* 自定义分页与箭头（简洁） */
.bomao-hot-goods2 .bomao-hot-pagination { display: none; }
.bomao-hot-goods2 .bomao-head-actions { display: flex; gap: 0.375rem; }
.bomao-hot-goods2 .bomao-hot-nav {
  /* width: 1.5625rem; */
  /* height: 1.5625rem; */
  cursor: pointer;
  position: relative;
  background: transparent;
}
.bomao-hot-goods2 .bomao-hot-nav i{
  font-size: 1rem;
}

@media (max-width: 991px) {
  .bomao-hot-goods2 .bomao-title { font-size: 1rem; }
}

/* 自 1500 → 768 逐步递减（不改PC原样式，仅向下覆盖） */
@media (max-width: 1500px) {
  .bomao-hot-goods2 .bomao-title {font-size: 1.5rem;}
  .bomao-hot-goods2 .bomao-tab-link {/* font-size: 0.5rem; */padding: 8px 0.75rem;}
  .bomao-hot-goods2 .bomao-card-badge {/* font-size: 1.3125rem; */}
  .bomao-hot-goods2 .bomao-card-title {font-size: 0.825rem;}
  .bomao-hot-goods2 .bomao-card-desc {font-size: 0.7rem;}
}

@media (max-width: 1200px) {
    .bomao-hot-goods2 .bomao-tab-link {
    font-size: 0.75rem;
}
  .bomao-hot-goods2 .bomao-title {font-size: 1.75rem;}
  .bomao-hot-goods2 .bomao-header {padding: 0 0 1.5rem;}
  .bomao-hot-goods2 .bomao-card-badge {/* font-size: 1.125rem; */top: 6px;}
  .bomao-hot-goods2 .bomao-card-title {/* font-size: 0.5625rem; */}
  .bomao-hot-goods2 .bomao-card-desc {/* font-size: 0.5rem; */}
  .bomao-hot-goods2 .bomao-hot-nav {/* width: 1.375rem; *//* height: 1.375rem; */}
  .bomao-hot-goods2 .bomao-hot-nav i {font-size: 1.25rem;}
}

@media (max-width: 991px) {
  .bomao-hot-goods2 .bomao-header {padding: 0 0 1.125rem;}
  .bomao-hot-goods2 .bomao-tabs {/* border-radius: 1.5625rem; */}
  .bomao-hot-goods2 .bomao-tab-link {font-size: 0.875rem;padding: 8px 0.5625rem;}
  .bomao-hot-goods2 .bomao-hot-nav {/* width: 1.25rem; *//* height: 1.25rem; */}
  .bomao-hot-goods2 .bomao-hot-nav i {font-size: 1.25rem;}
  .bomao-hot-goods2 .bomao-card-badge {font-size: 1.25rem;}
  .bomao-hot-goods2 .bomao-card-title { font-size: 0.5rem; }
  .bomao-hot-goods2 .bomao-card-desc {
    font-size: 0.4375rem;
    -webkit-line-clamp: 3;
    height: 52px;
  }
  .bomao-hot-goods2 .bomao-card-inner {
    padding: 2.5625rem 0.5rem 0.5rem 0.5rem;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.625rem;
  }
  .bomao-hot-goods2 .bomao-card{
    /* border-radius: 0.6875rem; */
  }
  .bomao-hot-goods2 .bomao-card-image{
    width: 100%;
  }
  .bomao-hot-goods2 .bomao-card-info{
    width: 100%;
    padding-bottom: 0;
  }
  .bomao-hot-goods2 .bomao-card-title{
    font-size: 1.25rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
  .bomao-hot-goods2 .bomao-card-desc{
    font-size: 0.875rem;
  }
  .bomao-hot-goods2 .bomao-header-bottom{
    flex-direction: column;
    gap: 0.625rem;
  }
  .bomao-hot-goods2 .bomao-carousel-bleed{
    padding-bottom: 1.875rem;
  }
}

@media (max-width: 768px) {
  .bomao-hot-goods2 .bomao-title {font-size: 1.5rem;}
  .bomao-hot-goods2 .bomao-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 4px 0.625rem; flex-wrap: wrap; }
  .bomao-hot-goods2 .bomao-tab-link {white-space: nowrap;font-size: 0.875rem;padding: 8px 0.4375rem;}
  .bomao-hot-goods2 .bomao-card-badge {/* font-size: 0.75rem; */left: 0.5rem;}
  .bomao-hot-goods2 .bomao-card-title {font-size: 1rem;}
  .bomao-hot-goods2 .bomao-card-inner { gap: 8px; }
  .bomao-hot-goods2 .bomao-hot-nav {/* width: 1.125rem; *//* height: 1.125rem; */}
  .bomao-hot-goods2 .bomao-hot-nav i {font-size: 1.25rem;}
  .bomao-hot-goods2 .bomao-carousel-bleed{
    padding-bottom: 1.25rem;
  }
  .bomao-hot-goods2 .bomao-header{
    /* padding-top: 1.5625rem; */
  }
}

