/* 新闻列表 */
.new {
  padding: 0;
}
.new ul {
  padding: 0;
}
.new ul li {
  padding: 0 0 0.4rem;
}
.new ul a {
  display: flex;
  justify-content: space-between;
}
.new-li-img {
  flex-shrink: 0;
  width: 2.6rem;
  overflow: hidden;
  border-radius: 0.2rem;
}
.new-li-img img {
  width: 100%;
}
.new-li-font {
  margin-left: 0.2rem;
  width: 4.2rem;
  color: #333;
  border-bottom: 1px dashed #333;
}
.new-li-title {
  font-size: 16px;
  line-height: 18px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.new-li-p {
  height: 40px;
  margin: 2px 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 20px;
}
.new-li-time {
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1200px) {
  .new ul {
    padding: 0;
  }
  .new ul li {
    padding: 0 0 1vw;
  }
  .new ul a {
    display: flex;
    justify-content: space-between;
  }
  .new-li-img {
    width: 12vw;
    background: #2cb694;
    border-radius: 1vw;
    transition: 0.3s;
  }
  .new-li-img img {
    width: 100%;
    border-radius: 1vw;
    transition: 0.3s;
  }
  .new-li-font {
    width: 48.6vw;
    padding: 0.2vw 0 0;
    color: #333;
    border-bottom: 1px dashed #333;
  }
  .new-li-title {
    font-size: 1.2vw;
    line-height: 1.5vw;
    color: #333;
  }
  .new-li-p {
    height: 2.8vw;
    margin: 0.8vw 0;
    overflow: hidden;
    font-size: 0.8vw;
    line-height: 1.4vw;
  }
  .new-li-time {
    font-size: 0.8vw;
    line-height: 1.4vw;
  }

  .new ul a:hover .new-li-img {
    border-radius: 1vw 0;
  }
  .new ul a:hover .new-li-img img {
    border-radius: 1vw 0;
    transform: translate3d(-0.2vw, -0.2vw, 0);
  }
  .new ul a:hover .new-li-title {
    color: #48cbab;
  }

  .pages {
    margin-top: 0;
    padding: 1vw 0 0;
  }
}

/* 新闻详情 */

.new-er {
}

.new-er-title {
  text-align: center;
}

.new-er-name {
  font: bold 16px/24px "微软雅黑";
  color: #333;
}

.new-er-time {
  font: 400 14px/24px "微软雅黑";
  color: #999;
}

.new-er-p p {
  margin-bottom: 10px;
  font: 400 14px/24px "微软雅黑";
  color: #333;
  text-align: justify;
}

.new-er-p p img {
  max-width: 100%;
}

@media (min-width: 1200px) {
  .new-er {
    padding: 3vw;
    background: #f6f6f6;
  }

  .new-er-title {
    position: relative;
    margin: 0 0 10px;
    padding: 0 0 10px;
    color: #fff;
    text-align: left;
    border-bottom: 1px solid #333;
  }

  .new-er-name {
    color: #333;
  }

  .new-er-time {
    position: absolute;
    right: 0;
    top: 0;
    color: #333;
  }

  .new-er-p p {
    font: 400 16px/30px "微软雅黑";
    color: #333;
  }
}
