.neo-home{ padding: 14px 0 10px; }

/* 顶部三栏：分类 / 大Banner / 右侧活动 */
.neo-home-top{ padding-top: 8px; }
.neo-home-grid{
  display:grid;
  grid-template-columns: 190px 1fr 190px;
  gap: 10px;
  align-items: stretch;
}
.neo-cate,
.neo-banner,
.neo-side{
  background: var(--neo-surface);
  border: 1px solid rgba(0,0,0,.06);
}
.neo-cate{ border-radius: 6px; overflow: hidden; }
.neo-cate-title{
  height: 36px;
  line-height: 36px;
  padding: 0 12px;
  font-weight: 700;
  color: rgba(17,24,39,.85);
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: #fff;
}
.neo-cate-list{
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.neo-cate-list li a{
  display:block;
  padding: 7px 12px;
  color: rgba(17,24,39,.82);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.neo-cate-list li a:hover{
  background: rgba(225,37,27,.06);
  color: var(--neo-red);
}

.neo-banner{
  border-radius: 6px;
  overflow:hidden;
}
.neo-banner .wst-slide{ height: 340px; }
.neo-banner .wst-slide-items,
.neo-banner .wst-slide-items li{ height: 340px; }
.neo-banner .wst-slide-items img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.neo-banner .wst-slide-numbox{ bottom: 10px; }
.neo-banner .wst-slide-controls span{
  background: rgba(255,255,255,.85);
  color: rgba(17,24,39,.65);
  border-radius: 999px;
}
.neo-banner .wst-slide-controls span.curr{
  background: var(--neo-red);
  color: #fff;
}

.neo-side{ border-radius: 6px; overflow:hidden; }
.neo-side-block{ padding: 8px; display:flex; flex-direction:column; gap: 8px; }
.neo-side-ad{
  display:block;
  border-radius: 6px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.06);
}
.neo-side-ad img{ width:100%; height:auto; display:block; }

@media (max-width: 1100px){
  .neo-home-grid{ grid-template-columns: 170px 1fr; }
  .neo-side{ display:none; }
}
@media (max-width: 820px){
  .neo-home-grid{ grid-template-columns: 1fr; }
  .neo-cate{ display:none; }
  .neo-banner .wst-slide{ height: 220px; }
  .neo-banner .wst-slide-items,
  .neo-banner .wst-slide-items li{ height: 220px; }
}

.neo-section{ padding: 18px 0 0; }
.neo-section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.neo-section-title{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  display:flex;
  align-items:center;
  gap: 8px;
}
.neo-section-title--recommend::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--neo-red);
  display:inline-block;
}
.neo-section-more{
  height: 34px;
  display:inline-flex;
  align-items:center;
  padding: 0 12px;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  color: rgba(17,24,39,.78);
}
.neo-section-more:hover{ color: var(--neo-text); }

.neo-grid{
  display:grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
@media (max-width: 1100px){
  .neo-grid{ grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 820px){
  .neo-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.neo-card{
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.06);
  background: #fff;
  box-shadow: none;
  overflow:hidden;
  transition: border-color .12s ease;
}
.neo-card:hover{
  border-color: rgba(225,37,27,.35);
}
.neo-card-img{
  display:block;
  aspect-ratio: 1 / 1;
  background: #f6f6f6;
}
.neo-card-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.neo-card-body{ padding: 10px 10px 10px; }
.neo-card-title{
  display:block;
  color: rgba(15,23,42,.92);
  line-height: 1.35;
  height: 36px;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 12px;
}
.neo-card-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top: 8px;
}
.neo-price{ font-weight: 700; color: var(--neo-red); font-size: 16px; }

.neo-floor{ margin-top: 18px; }
.neo-floor-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 12px;
}
.neo-floor-head h2 a{ color: rgba(15,23,42,.92); }

