/* 新闻列表 */

.news {
}
.news ul li {
  padding: 5px 0;
}
.news ul a {
  display: block;
}
.new-li-img img {
  width: 100%;
}
.new-li-box {
  display: block;
  border-bottom: 1px solid #e7e7e7;
}
.new-li-time {
  display: none;
}
.new-li-font {
  overflow: hidden;
  padding: 10px 0 0;
}
.new-li-title {
  font-size: 16px;
  line-height: 20px;
  color: #333;
}
.new-li-p {
  height: 40px;
  overflow: hidden;
  margin: 5px 0;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
}
.new-li-more {
  width: 1.4rem;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background: #025bab;
}
@media (min-width: 1200px) {
  .news {
    padding: 2vw 0;
  }

  .news ul li {
    padding: 1.2vw 0;
  }
  .news ul a {
    position: relative;
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
  }
  .new-li-img {
    width: 20vw;
  }
  .new-li-img img {
    width: 100%;
  }
  .new-li-box {
    display: flex;
    flex-grow: 1;
    margin-left: 2vw;
    border-bottom: 1px solid #e7e7e7;
  }

  .new-li-time {
    display: block;
    position: absolute;
    left: -0.9vw;
    top: 1.2vw;
    width: 6vw;
    font-size: 0.8vw;
    line-height: 2.4vw;
    text-align: center;
    color: #fff;
    background: #025bab;
  }
  .new-li-time::before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: -0.42vw;
    width: 0.9vw;
    height: 0.45vw;
    background: url(/images/new_shape.png) no-repeat 0 0/0.9vw;
  }

  .new-li-font {
    padding: 1vw 0 0 0;
  }
  .new-li-title {
    font-size: 1.2vw;
    line-height: 1.6vw;
    color: #333;
  }
  .new-li-p {
    height: 2.8vw;
    overflow: hidden;
    margin: 0.5vw 0;
    font-size: 0.8vw;
    line-height: 1.4vw;
    color: #999999;
  }
  .new-li-more {
    width: 7vw;
    font-size: 0.8vw;
    line-height: 2vw;
    color: #fff;
    text-align: center;
    background: #025bab;
  }

  .news ul a:hover {
    transform: translate3d(-1vw, 0, 0);
  }
  .news ul a:hover .new-li-day {
    color: #025bab;
  }
  .news ul a:hover .new-li-year {
    color: #025bab;
  }
  .news ul a:hover .new-li-title {
    color: #025bab;
  }
}
