/* 新闻列表 */
.news {
  padding: 0;
}
.news ul {
  padding: 10px;
}

.news ul li {
  padding: 0 0 10px;
}

.news ul a {
  display: block;
}
.news ul i {
  display: block;
}
.news ul i img {
  width: 100%;
}

.new-li-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 36px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.new-li-time {
  font-size: 14px;
  line-height: 24px;
  color: #999;
}
.new-li-digest {
  height: 48px;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  color: #666;
}

@media (min-width: 1200px) {
  .news {
    width: 84vw;
    margin: 0 auto;
  }
  .news ul {
    display: flex;
    flex-wrap: wrap;
    padding: 1.2vw 0;
  }
  .news ul li {
    width: 33.3%;
    padding: 1.2vw;
  }

  .new-li-title {
    font-size: 1vw;
    line-height: 2vw;
  }
}
