.home-hot-section {
  margin-bottom: 24px;
  padding-top: 8px;
}
.home-hot-section .cat-body {
  padding: .25rem .75rem;
}
.home-hot-tabs {
  display: flex;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  justify-content: space-between;
}
.home-hot-tabs > div {
  flex: 1;
  text-align: center;
}
.home-hot-tabs .active {
  color: #ff4f1f;
  position: relative;
}
.home-hot-tabs .active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: #ff4f1f;
}
.home-hot-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-hot-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px #e6e6e6;
  margin-bottom: 16px;
  position: relative;
  padding: 22px 30px 22px 22px;
  min-height: 120px;
  transition: box-shadow .25s, transform .18s;
  gap: 18px;
}
.home-hot-card:hover {
  box-shadow: 0 8px 24px #d0d0d0;
  transform: translateY(-3px) scale(1.015);
}
.home-hot-card-img {
  width: 80px;
  height: 110px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 0;
  flex-shrink: 0;
  background: #f2f2f2;
  box-shadow: 0 2px 8px #e0e0e0;
  transition: box-shadow .2s;
  cursor: pointer;
}
.home-hot-card-img:hover {
  box-shadow: 0 4px 16px #bdbdbd;
}
.home-hot-card-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-hot-card-title {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 7px;
  margin-top: 2px;
  color: #1a1a1a;
  line-height: 1.2;
  transition: color .2s;
  cursor: pointer;
  text-decoration: none;
}
.home-hot-card-title:hover {
  color: #e60000;
  text-decoration: underline;
}
.home-hot-card-meta {
  color: #888;
  font-size: 15px;
  margin-bottom: 8px;
}
.home-hot-card-desc {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.home-hot-card-hot {
  position: absolute;
  right: 30px;
  bottom: 16px;
  color: #e60000;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  background: #fff6f6;
  padding: 2px 10px;
  border-radius: 12px;
  box-shadow: 0 1px 4px #f5caca;
}
.home-hot-card-rank {
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, #e60000 60%, #ff7e00 100%);
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 10px 0 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px #e6e6e6;
  border: 2px solid #fff;
}
@media (max-width: 600px) {
  .home-hot-section {
    padding: 8px 0;
    margin-bottom: 16px;
  }
  .home-hot-card-list {
    margin: 8px 0 0;
  }
  .home-hot-card {
    flex-direction: row;
    padding: 10px;
    margin-bottom: 10px;
    gap: 10px;
    align-items: center;
  }
  .home-hot-card-img {
    width: 60px;
    height: 80px;
    margin: 0;
  }
  .home-hot-card-content {
    flex: 1;
    min-width: 0;
  }
  .home-hot-card-title {
    font-size: 15px;
    margin: 0 0 4px;
    padding-right: 60px;
  }
  .home-hot-card-meta {
    font-size: 12px;
    margin-bottom: 4px;
    color: #666;
  }
  .home-hot-card-desc {
    font-size: 12px;
    margin: 0;
    color: #999;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
  .home-hot-card-hot {
    right: 10px;
    bottom: 10px;
    font-size: 12px;
    padding: 1px 6px;
  }
  .home-hot-card-rank {
    width: 20px;
    height: 20px;
    font-size: 12px;
    border-width: 1px;
  }
}
