.news-card .card-content {
  padding: 24px 16px 12px;
}
.news-card .list.color-1 .item:nth-child(1)::before {
  background: linear-gradient(180deg, #FFD18C 0%, #FF6C3E 100%);
  background: #AA2200;
}
.news-card .list.color-2 .item:nth-child(1)::before {
  background: linear-gradient(180deg, #24D8FF 0%, #007AF0 100%);
  background: #AA2200;
}
.news-card .list .item {
  line-height: 18px;
  font-size: 14px;
  color: #323647;
  padding: 12px 0 12px 14px;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
.news-card .list .item:hover {
  color: #0038B0;
}
.news-card .list .item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C5D1EC;
  position: absolute;
  top: 18px;
  left: 0;
}
.news-card .list .item.item-special {
  padding: 0 0 12px;
  display: flex;
  justify-content: space-between;
}
.news-card .list .item.item-special::before {
  content: attr(data-sort);
  width: 34px;
  height: 17px;
  line-height: 17px;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 1;
}
.news-card .list .item.item-special:hover img {
  transform: scale(1.05);
}
.news-card .list .item.item-special:hover .info .name {
  color: #0038B0;
}
.news-card .list .item.item-special .item-img {
  width: 140px;
  height: 78px;
  background: no-repeat center center;
  background-size: cover;
  border-radius: 4px;
  overflow: hidden;
}
.news-card .list .item.item-special .item-img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.news-card .list .item.item-special .info {
  width: 154px;
  overflow: hidden;
}
.news-card .list .item.item-special .info .name {
  height: 48px;
  line-height: 24px;
  font-size: 14px;
  color: #323647;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 14px;
}
.news-card .list .item.item-special .info .time {
  line-height: 16px;
  font-size: 12px;
  color: #BBBFC9;
}
