/* 首页 */
.banner-wrap {
  margin: 6px var(--page-pad) 10px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eee;
  box-shadow: 0 4px 14px rgba(193, 13, 23, 0.08);
}

.banner-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.35));
  pointer-events: none;
  z-index: 1;
}

.banner-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-slide {
  display: block;
  width: 100%;
  height: 100%;
}

.banner-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #999;
  font-size: 13px;
}

.banner-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.banner-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.banner-dots span.active {
  background: #fff;
  width: 14px;
  border-radius: 3px;
}

