/* Topics List Tabs */
.topics-list-tabs {
  margin-bottom: 12px;
}

.tabs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  background-color: #1c1c1c;
  width: fit-content;
}

.tab-item {
  display: flex;
  width: 160px;
  height: 45px;
  padding: 14.5px 0 15px 0;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: #1c1c1c;
  color: #fff;
  text-align: center;
  font-family: "PingFang SC", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.tab-item:hover {
  color: #fff;
  background-color: #1c1c1c;
}

.tab-item.active {
  color: #3E7DFF;
  background-color: #232323;
  font-weight: 600;
  position: relative;
}

.tab-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #3E7DFF;
}

/* Responsive Styles */
@media screen and (max-width: 824px) {
  .tabs-container {
    width: 100%;
    gap: 0;
  }

  .tab-item {
    flex: 1;
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .topics-list-tabs {
    margin-bottom: 16px;
  }

  .tabs-container {
    gap: 16px;
  }

  .tab-item {
    width: 160px;
    height: 45px;
    padding: 14.5px 0 15px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    font-family: "PingFang SC", sans-serif;
  }
}

/* TopicsListTabsIcon 移动端和桌面端版本控制 */
@media screen and (max-width: 824px) {
  .topics-list-tabs-mobile {
    display: block;
    width: 100%;
    margin: 12px 0 20px 0;
  }

  .topics-list-header .topics-list-tabs {
    display: none !important;
  }

  .tabs-container-mobile {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background-color: transparent;
    width: 100%;
    justify-content: space-around;
  }

  .tab-item-mobile {
    display: flex;
    flex: 1;
    min-width: 0;
    height: 45px;
    padding: 12px 8px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: #1c1c1c;
    color: #fff;
    text-align: center;
    font-family: "PingFang SC", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
  }

  .tab-item-mobile:hover {
    color: #fff;
    background-color: #1c1c1c;
  }

  .tab-item-mobile.active {
    color: #3E7DFF;
    background-color: #232323;
    font-weight: 600;
    position: relative;
  }

  .tab-item-mobile.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #3E7DFF;
  }
}

@media screen and (min-width: 825px) {
  .topics-list-tabs-mobile {
    display: none;
  }

  .topics-list-tabs--desktop {
    display: block;
  }
}
