/* 新闻列表 */
.news {
  padding: 0;
}
.news ul li {
  border-bottom: 1px solid #dbdbdb;
}
.news ul a {
  display: block;
  padding: 0.3rem 0;
  transition: 0.3s;
}
.new-li-title {
  font-size: 16px;
  line-height: 24px;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.new-li-digest {
  height: 72px;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  color: #666666;
}

.new-li-time {
  width: 100px;
  margin-top: 5px;
  font-size: 14px;
  line-height: 24px;
  color: #333;
  text-align: center;
  border: 1px solid #333;
}
@media (min-width: 1200px) {
  .news {
    padding-top: 3vw;
  }
  .news ul li {
    border-bottom: 1px solid #dbdbdb;
  }
  .news ul a {
    display: block;
    padding: 1.5vw 0;
    transition: 0.3s;
  }
  .new-li-title {
    font-size: 1.2vw;
    line-height: 1.4vw;
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .new-li-digest {
    height: 2.8vw;
    margin: 1vw 0;
    overflow: hidden;
    font-size: 0.9vw;
    line-height: 1.4vw;
    color: #666666;
  }

  .new-li-time {
    width: 100px;
    font-size: 14px;
    line-height: 30px;
    color: #333;
    text-align: center;
    border: 1px solid #333;
  }

  .news ul a:hover {
    padding: 1.5vw 1vw;
    background: url(../images/new_li_bg.png) no-repeat center center/cover;
  }
  .news ul a:hover .new-li-time {
    color: #fff;
    background: #025023;
  }
}
