.news-item {
  height: 120px;
  padding: 30px 0;
  width: 1140px;
  margin: 0 auto;
  box-sizing: content-box;
  border-bottom: 1px solid #ededed;
}
.news-item:last-child {
  border-bottom: none;
}
.news-item > a {
  display: flex;
  justify-content: space-between;
}
.news-item .news-img {
  width: 172px;
  height: 120px;
  background: #eee;
  flex-shrink: 0;
}
.news-item .news-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.news-item .news-info {
  width: 935px;
  flex-shrink: 0;
}
.news-item .news-info .news-title {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 20px;
  color: #333333;
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  line-height: 28px;
}
.news-item .news-info .news-title:hover {
  color: #891E23;
}
.news-item .news-info .news-title .news-date {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 14px;
  color: #808080;
}
.news-item .news-info .news-desc {
  font-family: Source Han Sans CN;
  font-weight: 400;
  font-size: 16px;
  color: #666666;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.news-item .news-info .news-desc:hover {
  color: #891E23;
}