.hottopic-timeline-wrap {
  width: 32%;
}

.hottopic-timeline-wrap .tab-bar {
  height: 28px;
  margin-bottom: 11px;
}

.tab-bar .tab-name {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  color: #969696;
  margin-right: 21px;
  cursor: pointer;
}
.tab-bar .tab-name.active {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--main-text-color);
}
.tab-bar .tab-name.active:before {
  position: absolute;
  bottom: -4px;
  left: 10px;
  content: "";
  width: 41px;
  height: 4px;
  border-radius: 13px;
  background: linear-gradient(0deg, rgba(2, 93, 163, 1), rgba(2, 93, 163, 1)), rgba(204, 204, 204, 1);
}

.tab-content.active {
  display: flex;
}

.tab-content {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 39px);
  border-radius: 6px;
  border: 1px solid #e6e6e6;
  padding: 12px 14px 24px 20px;
  box-shadow: 0px 0px 4px  rgba(0, 0, 0, 0.1);
}

.tab-content .rank-item {
  display: flex;
  column-gap: 15px;
}
.tab-content .rank-item .rank {
  flex: none;
  width: 20px;
  height: 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  color: rgba(159, 161, 159, 1);
  margin-top: 1px;
}

.tab-content .rank-item .rank.hot {
  color: rgba(226, 4, 19, 1);
}

.tab-content .rank-item a {
  min-height: unset;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: rgba(51, 51, 51, 1);
}

.tab-content .rank-item:hover a {
  color: var(--select-color);
}

.tab-content .rank-item .publishtime{
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  color: rgba(168, 168, 168, 1);
}

@media(max-width: 1200px) {
  .tab-content .rank-item a,
  .tab-content .rank-item .rank {
    font-size: 12px;
    line-height: 14px;
    font-weight: 400;
  }

  .tab-content .rank-item {
    column-gap: 5px;
  }

  .tab-bar .tab-name {
    font-size: 14px;
    line-height: 20px;
    margin-right: 15px;
  }

  .tab-bar .tab-name.active {
    font-size: 14px;
    font-weight: 700;
  }

  .tab-bar .tab-name.active:before {
    left: 8px;
    width: 26px;
  }
}

@media(max-width: 768px) {
  .hottopic-timeline-wrap {
    display: none;
  }
}

@media(max-width: 576px) {
  .tab-content .rank-item a, .tab-content .rank-item .rank {
    font-size: 16px;
    line-height: 22px;
}
}