article {
  background-image: url(../images/new-bg.jpg);
}
/* 新闻列表 */

.news {
}

.news ul li {
  padding: 2px;
}
.news ul a {
  display: block;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.9);
}
.new-li-img {
  overflow: hidden;
}
.new-li-img img {
  width: 100%;
}
.new-li-time {
  position: absolute;
  left: -10px;
  top: 0.2rem;
  width: 84px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  text-align: center;
  background: #012b7c;
}
.new-li-time::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 8px;
  height: 4px;
  background: url(../images/new-icon.png) no-repeat 0 0/8px;
}
.new-li-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 0.2vw;
  font-size: 14px;
  line-height: 30px;
  color: #333;
}
@media (min-width: 1200px) {
  .news {
  }
  .news ul {
    display: flex;
    flex-wrap: wrap;
  }

  .news ul li {
    width: 33.3%;
    padding: 1.2vw;
  }
  .news ul a {
    display: block;
    position: relative;
    border: 4px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.9);
    transition: 0.3s;
  }
  .new-li-img {
    overflow: hidden;
  }
  .new-li-img img {
    width: 100%;
  }
  .new-li-time {
    position: absolute;
    left: -19px;
    top: 1vw;
    width: 6vw;
    font-size: 0.9vw;
    line-height: 2vw;
    color: #fff;
    text-align: center;
    background: #012b7c;
  }
  .new-li-time::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 15px;
    height: 7px;
    background: url(../images/new-icon.png) no-repeat 0 0;
  }
  .new-li-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 0.2vw;
    font-size: 0.8vw;
    line-height: 2.4vw;
    color: #333;
  }
  .news ul a:hover {
    transform: translate3d(0, -0.5vw, 0);
  }
}
