/* 新闻列表 */
article {
  background-image: url(../images/new-bg.jpg);
}

.news ul li {
  padding: 2px;
}
.news ul li a {
  display: block;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
}

.news ul a {
  display: block;
  padding: 10px;
  color: #333;
}
.new-li-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.new-li-title {
  width: 4.2rem;
  font-size: 16px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.new-li-time {
  font-size: 12px;
  line-height: 18px;
}
.new-li-p {
  height: 72px;
  margin: 10px 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
}
.new-li-more {
  display: flex;
  font-size: 14px;
  line-height: 24px;
}
.new-li-more span {
  padding-right: 12px;
  background: url(../images/arrow-b.png) no-repeat right center/8px;
}

@media (min-width: 1200px) {
  .news {
  }
  .news ul {
    display: flex;
    flex-wrap: wrap;
  }
  .news ul li {
    width: 50%;
    padding: 0;
  }
  .news ul li a {
    display: block;
    background: rgba(221, 221, 221, 0.8);
    border-radius: 2px;
  }
  .news ul li:nth-child(2) a,
  .news ul li:nth-child(3) a,
  .news ul li:nth-child(6) a {
    background: rgb(255, 255, 255, 0.8);
  }

  .news ul a {
    display: block;
    padding: 3vw;
    color: #333;
  }
  .new-li-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .new-li-title {
    width: 18vw;
    font-size: 1.2vw;
    line-height: 1.4vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .new-li-time {
    font-size: 14px;
    line-height: 18px;
  }
  .new-li-p {
    height: 120px;
    margin: 2vw 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 24px;
  }
  .new-li-more {
    display: flex;
    font-size: 14px;
    line-height: 24px;
  }
  .new-li-more span {
    padding-right: 2.4vw;
    background: url(../images/arrow-b.png) no-repeat right center;
  }
  .news ul li a:hover {
    color: #fff;
    background: rgba(2, 133, 53, 0.8);
  }
  .news ul li a:hover .new-li-more span {
    background-image: url(../images/arrow-w.png);
  }
}

/* 新闻详情 */

.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%;
}

.new-er-page {
  display: flex;
  justify-content: space-between;
  margin: 2vw 0 0;
}
.new-er-page a {
  max-width: 45%;
  padding: 0 10px;
  font-size: 14px;
  line-height: 24px;
  color: #333;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: 1px solid #333;
  border-radius: 5px;
}

@media (min-width: 1200px) {
  .new-er {
    padding: 2vw;
    background: rgba(255, 255, 255, 0.8);
  }

  .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 {
    min-height: 240px;
  }
  .new-er-p p {
    font: 400 16px/30px "微软雅黑";
    color: #333;
  }

  .new-er-page {
    display: flex;
    justify-content: space-between;
    margin: 1vw 0 0;
  }
  .new-er-page a {
    max-width: 45%;
    padding: 0 10px;
    font-size: 14px;
    line-height: 36px;
    color: #333;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border: 1px solid #333;
    border-radius: 5px;
  }
  .new-er-page a:hover {
    color: #fff;
    background: rgba(2, 133, 53, 0.8);
  }
}
