/* 新闻列表 */

.news {
}

.news ul a {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 24px;
  color: #333;
  padding: 5px 0;
  border-bottom: 1px dashed #666;
  transition: 0.3s;
}

.new-li-title {
  width: 5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 1200px) {
  .news {
  }
  .news ul {
    padding: 2vw 0 0;
  }

  .news ul a {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    line-height: 30px;
    color: #333;
    padding: 5px 0;
    border-bottom: 1px dashed #666;
    transition: 0.3s;
  }

  .new-li-title {
    width: 54vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .news ul a:hover {
    color: #01883d;
    transform: translate3d(-0.5vw, 0, 0);
  }
  .pages {
    padding-top: 0.7vw;
  }
}

/* 新闻详情 */

.new-er {
  padding: 0.4rem 0 0;
}

.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: 2vw;
  }

  .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;
  }
}
