/* 新闻列表 */

.news {
}

.new-top {
  display: flex;
  justify-content: space-between;
  margin: 0 0 0.2rem 0;
}

.new-li-img {
  width: 3.6rem;
}
.new-li-img img {
  width: 100%;
  border-radius: 0.1rem;
}

.new-li-font {
  width: 3.2rem;
  padding: 0.3rem 0 0;
}
.new-li-time {
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
.new-li-title {
  margin: 0.1rem 0;
  font-size: 0.3rem;
  line-height: 0.36rem;
  color: #333;
}
.new-top .new-li-title {
  height: 0.72rem;
  overflow: hidden;
}

.new-top .new-li-p {
  display: none;
}

.new-li-more {
  display: flex;
  margin: 0.6rem 0 0;
}
.new-li-more span {
  padding-right: 0.24rem;
  font-size: 14px;
  line-height: 24px;
  color: #ae0827;
  background: url(../images/arrow-r.png) no-repeat right center/0.16rem;
}
.new-list {
  position: relative;
  margin: 0.2rem 0 0;
}
.new-list ul {
  display: block;
}
.new-list li {
  border-bottom: 1px solid #ede0c2;
}

.new-list a {
  display: block;
  padding: 0.2rem 0;
}
.new-list a .new-li-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.new-li-p {
  height: 60px;
  overflow: hidden;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}
.new-list .new-li-more {
  margin-top: 0.2rem;
}

@media (min-width: 1200px) {
  .news {
  }

  .new-top {
    display: flex;
    margin: 0 0.5vw 2vw;
    transition: 0.3s;
  }

  .new-li-img {
    width: 19vw;
  }
  .new-li-img img {
    width: 100%;
    border-radius: 0.5vw;
  }

  .new-li-font {
    width: 40vw;
    margin-left: 3vw;
    padding: 0.5vw 0 0;
  }
  .new-li-time {
    font-size: 0.9vw;
    line-height: 1.2vw;
    color: #333;
  }
  .new-li-title {
    margin: 1.2vw 0;
    font-size: 1.2vw;
    line-height: 1.6vw;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .new-top .new-li-title {
    height: auto;
  }
  .new-li-p {
    display: block;
    height: 6.4vw;
    overflow: hidden;
    font-size: 0.8vw;
    line-height: 1.6vw;
    color: #999999;
  }
  .new-top .new-li-p {
    display: block;
  }
  .new-li-more {
    display: flex;
    margin: 0;
  }
  .new-li-more span {
    padding-right: 1vw;
    font-size: 0.8vw;
    line-height: 1.6vw;
    color: #ae0827;
    background: url(../images/arrow-r.png) no-repeat right center;
  }
  .new-top:hover {
    transform: translate3d(-1vw, 0, 0);
  }

  .new-list ul {
    display: flex;
    flex-wrap: wrap;
  }
  .new-list li {
    width: 33.3%;
    margin: 0 0 1vw;
    padding: 0 2vw;
    border-left: 1px solid #ede0c2;
    border-bottom: 0;
  }
  .new-list li:nth-child(3n + 1) {
    border: 0;
  }

  .new-list a {
    display: block;
    padding: 0;
    transition: 0.3s;
  }
  .new-list a:hover {
    transform: translate3d(0, -1vw, 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: 0 2vw 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;
  }
}
