/* 新闻列表 */
.news {
  padding: 0;
}

.news ul li {
  padding: 0.1rem 0;
}

.news ul a {
  display: block;
}

.new-li-img {
  position: relative;
}

.new-li-img i {
  display: block;
  overflow: hidden;
}

.new-li-img i img {
  width: 100%;
}

.new-li-time {
  position: absolute;
  left: 0.2rem;
  bottom: 0.2rem;
  padding-left: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  background: url(/assets/images/date_icona.png) no-repeat 0 center/12px;
}

.new-li-title {
  margin: 0.2rem 0;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}

.new-li-digest {
  font-size: 14px;
  line-height: 20px;
  color: #999999;
}

@media (min-width: 1200px) {
  .news {
    padding: 0;
  }

  .news ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.8vw;
  }

  .news ul li {
    width: 33.3%;
    padding: 0.8vw;
  }

  .news ul a {
    display: block;
  }

  .new-li-img {
    position: relative;
  }

  .new-li-img i {
    display: block;
    overflow: hidden;
  }

  .new-li-img i img {
    width: 100%;
    transition: 0.3s;
  }

  .new-li-time {
    position: absolute;
    left: 1vw;
    bottom: 1vw;
    padding: 0 0.8vw 0 2.4vw;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    background: #021fbb url(/assets/images/date_icon.png) no-repeat 0.8vw center;
    border-radius: 0.5vw;
  }

  .new-li-title {
    margin: 1vw 0;
    font-weight: bold;
    font-size: 0.9vw;
    line-height: 1.2vw;
    color: #000;
  }

  .new-li-digest {
    font-size: 14px;
    line-height: 20px;
    color: #999999;
  }

  .news ul a:hover .new-li-img img {
    transform: scale(1.1);
  }

  .news ul a:hover .new-li-title {
    color: #021fbb;
  }

  .news ul a:hover .new-li-digest {
    color: #021fbb;
  }
}
