.novel-right-list {
  width: 100%;
  margin-top: 12px;
}

.novel-right-list__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.novel-right-list__title {
  font-size: 24px;
  color: #ffffff;
  margin: 0;
}

.novel-right-list__tag {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  padding: 2px 5px;
  gap: 10px;
  border-radius: 4px 4px 0 9px;
  background: linear-gradient(180deg, #FFE8A0 0%, #E37101 100%);

  /* 10 */
  font-family: "PingFang SC";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  color: #7E3F00;
}

.novel-right-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.novel-right-list__item {
  background: #232323;
  border-radius: 4px;
  padding: 16px;
  height: 96px;
  margin-bottom: 12px;
  position: relative;
}

.novel-right-list__link {
  display: block;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.novel-right-list__item-title {
  font-size: 18px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.novel-right-list__meta {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #9e9e9e;
  gap: 13px;
}

.novel-right-list__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}




.novel-right-list__icon {
  flex-shrink: 0;
}

.novel-right-list__meta-text {
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}