/* 淘宝闪购本地活动预览：统一 16:9 素材窗口 */
.tb-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 16px 24px;
}
.tb-section-title {
  margin: 14px 0 0;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #1e1e2d;
  font-size: 15px;
  font-weight: 700;
}
.tb-section-title__bar {
  width: 4px;
  height: 15px;
  border-radius: 2px;
  background: #ff6a00;
}
.tb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 8px;
  padding-top: 12px;
}
.tb-card {
  min-width: 0;
  height: 181.22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
  transition: transform .12s ease;
}
.tb-card:active { transform: scale(.98); }
.tb-card__cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  flex: 0 0 auto;
  overflow: hidden;
  background: #fff;
}
.tb-card__cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.tb-card__body {
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.tb-card__title {
  overflow: hidden;
  color: #1e1e2d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tb-card__desc {
  min-height: 27px;
  margin-top: 3px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #64647d;
  font-size: 10px;
  line-height: 1.35;
}
.tb-card__meta {
  min-height: 15px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
}
.tb-card__tag {
  min-width: 0;
  overflow: hidden;
  border-radius: 3px;
  padding: 1px 5px;
  background: #ff6a00;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 12.6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tb-card__tag--sub {
  background: #fff0e4;
  color: #b94700;
}
