
.home-section__icon-recommend .icon-recommend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-section__icon-recommend .icon-recommend-item {
  list-style: none;
}

.home-section__icon-recommend .icon-recommend-item a {
  display: flex;
  align-items: center;
  flex: 0 0 146px;
  width: 146px;
  height: 38px;
  padding: 0 8px;
  background: #202020;
  border-radius: 4px;
  text-decoration: none;
  color: #FFF;
  box-sizing: border-box;
  transition: background-color 0.2s ease;
}

.home-section__icon-recommend .icon-recommend-item a:hover {
  background: #2a2a2a;
}

.home-section__icon-recommend .icon-recommend-img {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-right: 8px;
  object-fit: cover;
  border-radius: 50%;
}

.home-section__icon-recommend .icon-recommend-text {
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.home-section__icon-recommend .icon-recommend-right {
  margin-left: 8px;
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  object-fit: contain;
}

/* 响应式设计 - 移动端 */
@media screen and (max-width: 824px) {
  .home-section__icon-recommend .icon-recommend-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 8px !important;
  }
  .home-section__icon-recommend .icon-recommend-item a {
    width: 100%;
    height: 32px;
    padding: 0 6px;
    border-radius: 3px;
    box-sizing: border-box;
  }

  .home-section__icon-recommend .icon-recommend-img {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-right: 6px;
  }

  .home-section__icon-recommend .icon-recommend-text {
    font-size: 12px;
    line-height: 18px;
  }

  .home-section__icon-recommend .icon-recommend-right {
    margin-left: 6px;
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
  }
}

/* 超小屏幕优化 */
@media screen and (max-width: 480px) {
  .home-section__icon-recommend .icon-recommend-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 8px;
  }

  .home-section__icon-recommend .icon-recommend-item a {
    width: 100%;
    height: 30px;
    padding: 0 5px;
    box-sizing: border-box;
  }

  .home-section__icon-recommend .icon-recommend-img {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-right: 5px;
  }

  .home-section__icon-recommend .icon-recommend-text {
    font-size: 11px;
    line-height: 16px;
  }

  .home-section__icon-recommend .icon-recommend-right {
    margin-left: 5px;
    flex: 0 0 8px;
    width: 8px;
    height: 8px;
  }
}
