/* 新闻列表 */
.news ul {
  padding: 0;
}
.news ul li {
  padding: 5px 0;
}
.news li a {
  display: flex;
  justify-content: space-between;
}
.new-li-img {
  width: 2.8rem;
}
.new-li-img img {
  width: 100%;
}
.new-li-font {
  width: 4rem;
  position: relative;
}
.new-li-title {
  font-size: 16px;
  line-height: 20px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.new-li-p {
  height: 40px;
  margin: 0.1rem 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 20px;
  color: #999999;
  text-align: justify;
}
.new-li-more {
  position: absolute;
  right: 0;
  bottom: 0;
}
.new-li-more span {
  display: block;
  width: 1.4rem;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  text-align: center;
  background: #fff;
  border: 1px solid #b5b5b5;
}

@media (min-width: 1200px) {
  .news ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5vw;
  }
  .news ul li {
    width: 50%;
    padding: 0.5vw;
  }
  .news li a {
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
  }
  .new-li-img {
    width: 11.2vw;
  }
  .new-li-img img {
    width: 100%;
  }
  .new-li-font {
    width: 18.2vw;
  }
  .new-li-title {
    font-size: 0.8vw;
    line-height: 1.2vw;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .new-li-p {
    height: 4.2vw;
    margin: 0;
    overflow: hidden;
    font-size: 0.8vw;
    line-height: 1.4vw;
    color: #999999;
  }

  .new-li-more span {
    display: block;
    width: 5vw;
    font-size: 0.8vw;
    line-height: 1.6vw;
    color: #333;
    text-align: center;
    background: #fff;
    border: 1px solid #b5b5b5;
  }
  .news li a:hover {
    transform: translate3d(-0.8vw, 0, 0);
  }

  .pages {
    padding: 4vw 0;
  }
}
