/* 新闻列表 */

.news {
}
.new-top {
  display: block;
  padding: 0.2rem;
  background: #f7f7f7;
}

.new-top-img img {
  width: 100%;
}
.new-top-font {
  padding: 0.2rem 0 0;
}
.new-top-title {
  font-size: 0.36rem;
  line-height: 0.42rem;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.new-top-p {
  height: 60px;
  margin: 5px 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
.new-top-more {
  display: flex;
  font-size: 0.3rem;
  line-height: 0.42rem;
  color: #000;
}
.new-top-more span {
  display: block;
  padding-right: 0.3rem;
  background: url(../images/arrow_b.png) no-repeat right center/0.2rem;
}

.news ul {
  padding: 0.2rem 0 0;
}
.news ul li {
  padding: 0 0 5px;
}

.news ul a {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem;
  color: #000;
  background: #f8f8f8;
}
.new-li-title {
  width: 4rem;
  padding-left: 0.3rem;
  font-size: 0.3rem;
  line-height: 0.42rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(../images/line_r.png) no-repeat 0 center/0.2rem;
}
.new-li-more {
  display: block;
  padding-right: 0.3rem;
  font-size: 14px;
  line-height: 20px;
  background: url(../images/arrow_b.png) no-repeat right center/0.2rem;
}
@media (min-width: 1200px) {
  .news {
    padding: 3vw 0;
  }
  .new-top {
    display: flex;
    justify-content: space-between;
    padding: 2vw;
    background: #f7f7f7;
    transition: 0.3s;
  }
  .new-top-img {
    width: 20vw;
  }
  .new-top-img img {
    width: 100%;
  }
  .new-top-font {
    width: 35vw;
    padding: 1vw 0 0;
  }
  .new-top-title {
    font-size: 1.2vw;
    line-height: 1.5vw;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .new-top-p {
    height: 7vw;
    margin: 1.8vw 0;
    overflow: hidden;
    font-size: 0.9vw;
    line-height: 1.4vw;
    color: #000;
  }
  .new-top-more {
    display: flex;
    font-size: 0.8vw;
    line-height: 1.2vw;
    color: #000;
  }
  .new-top-more span {
    display: block;
    padding-right: 1.2vw;
    background: url(../images/arrow_b.png) no-repeat right center/0.9vw;
  }
  .new-top:hover {
    padding: 2vw 2.5vw;
  }

  .news ul {
    display: flex;
    flex-wrap: wrap;
    padding: 3vw 0 0;
  }
  .news ul li {
    width: 50%;
    padding: 0 0 1.4vw;
  }
  .news ul li:nth-child(2n + 1) {
    padding-right: 0.7vw;
  }
  .news ul li:nth-child(2n) {
    padding-left: 0.7vw;
  }
  .news ul a {
    display: flex;
    justify-content: space-between;
    padding: 2vw;
    color: #000;
    background: #f8f8f8;
  }
  .new-li-title {
    width: 18vw;
    padding-left: 1.8vw;
    font-size: 0.9vw;
    line-height: 1.2vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: url(../images/line_r.png) no-repeat 0 center/1vw;
  }
  .new-li-more {
    display: block;
    padding-right: 1.2vw;
    font-size: 0.8vw;
    line-height: 1.2vw;
    background: url(../images/arrow_b.png) no-repeat right center/0.9vw;
  }

  .news ul a:hover {
    color: #fff;
    background: #c63731;
  }
  .news ul a:hover .new-li-title {
    background-image: url(../images/line_w.png);
  }
  .news ul a:hover .new-li-more {
    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%;
}

@media (min-width: 1200px) {
  .new-er {
    padding: 50px;
  }

  .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;
  }
}
