/* 新闻列表 */
.news {
  padding: 10px 0 0;
}

.news ul li {
  padding: 0 0 10px;
}

.news ul a {
  display: block;
  padding: 0.3rem;
  color: #000;
  border: 1px solid #b5b5b5;
}

.new-li-time {
  padding-left: 0.3rem;
  font-size: 14px;
  line-height: 20px;

  background: url(../images/time.png) no-repeat 0 center/0.2rem;
}

.new-li-name {
  margin: 0.1rem 0;
  font-size: 0.3rem;
  line-height: 0.36rem;
}

.new-li-more {
  width: 1.8rem;
  padding: 0 0.2rem;
  background: #c7000b;
  border-radius: 0.2rem;
}

.new-li-more span {
  display: block;
  font-size: 12px;
  line-height: 0.4rem;
  color: #fff;
  background: url(../images/arrow_w.png) no-repeat right center;
}

.new-li-img {
  overflow: hidden;
  margin: 0.3rem 0 0;
}

.new-li-img img {
  width: 100%;
}

@media (min-width: 1200px) {
  .news {
    padding: 2vw 0 0;
  }

  .news ul {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #b5b5b5;
    border-left: 1px solid #b5b5b5;
  }

  .news ul li {
    width: 33.3%;
    padding: 0;
  }

  .news ul a {
    display: block;
    padding: 1.5vw;
    color: #000;
    border: 1px solid #b5b5b5;
    border-left: 0;
    border-top: 0;
  }

  .new-li-time {
    padding-left: 1vw;
    font-size: 14px;
    line-height: 20px;
    background: url(../images/time.png) no-repeat 0 center/0.8vw;
  }

  .new-li-name {
    height: 3vw;
    overflow: hidden;
    margin: 1.2vw 0;
    font-size: 1.2vw;
    line-height: 1.5vw;
  }

  .new-li-more {
    width: 7vw;
    padding: 0 1vw;
    background: #c7000b;
    border: 1px solid #c7000b;
    border-radius: 1vw;
  }

  .new-li-more span {
    display: block;
    font-size: 14px;
    line-height: 1.8vw;
    color: #fff;
    background: url(../images/arrow_w.png) no-repeat right center;
  }

  .new-li-img {
    overflow: hidden;
    margin: 1.6vw 0 0;
  }

  .new-li-img img {
    width: 100%;
  }

  .news ul a:hover {
    color: #fff;
    background: #c7000b;
  }
  .news ul a:hover .new-li-time {
    background-image: url(../images/time_w.png);
  }
  .news ul a:hover .new-li-more {
    border-color: #f800e0;
  }
}

/* 新闻详情 */

.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: 2vw 0;
  }

  .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;
  }
}
