.tag-page {
  background-color: #f8f8f9;
}
.tag-page .news-banner .news-search .news-title {
  color: #1b2c50;
}
.tag-page .tag-list {
  display: flex;
  gap: 48px;
  padding-bottom: 40px;
  align-items: flex-start;
}
.tag-page .tag-list .anchor-box {
  position: sticky;
  top: 140px;
  max-height: 450px;
}
.tag-page .tag-list .anchor {
  font-weight: 400;
  font-size: 16px;
  color: #8892af;
  line-height: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  flex-shrink: 0;
  max-height: 430px;
  flex-wrap: wrap;
}
.tag-page .tag-list .anchor a {
  color: #8892af;
  text-decoration: none;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.tag-page .tag-list .anchor a:hover {
  color: #2d5aff;
}
.tag-page .tag-list .anchor .active {
  font-weight: bold;
  color: #2d5aff;
  position: relative;
}
.tag-page .tag-list .anchor .active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: -3px;
  width: 28px;
  height: 28px;
  background: rgba(45, 90, 255, 0.05);
  border-radius: 6px 6px 6px 6px;
}
.tag-page .tag-list .list {
  flex: 1;
}
.tag-page .tag-list .list .tag-item {
  margin-bottom: 40px;
}
.tag-page .tag-list .list .title {
  font-weight: bold;
  font-size: 32px;
  line-height: 1.5em;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}
.tag-page .tag-list .list .title .line {
  width: 100%;
  height: 1px;
  background-color: #ebebeb;
}
.tag-page .tag-list .list .tag-item-list {
  display: flex;
  gap: 15px 25px;
  flex-wrap: wrap;
}
.tag-page .tag-list .list .tag-item-list .item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #1b2c50;
  line-height: 22px;
  min-width: 255px;
  max-width: calc(25% - 19px);
  flex: 1;
}
.tag-page .tag-list .list .tag-item-list .item:hover {
  color: #2d5aff;
}
.tag-page .tag-list .list .tag-item-list .item .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.tag-page .tag-list .list .tag-item-list .item .count {
  width: auto;
  flex-shrink: 0;
}
.tag-page .tag-item:target {
  scroll-margin-top: 140px;
}
