/* 新闻列表 */

.news {
}
.news li {
  padding: 0 0 0.2rem;
}

.news li a {
  display: flex;
  justify-content: space-between;
}

.new-li-title {
  padding: 0.1rem 0;
  font-size: 16px;
  line-height: 30px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-bottom: 1px solid #dcdcdc;
}
.new-li-p {
  height: 40px;
  margin: 0.2rem 0 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 20px;
  color: #333;
}

.new-li-time {
  flex-shrink: 0;
  width: 2rem;
  padding: 2.4vw 0;
  text-align: center;
  color: #333;
  background: #f7f7f7;
}
.new-li-time .day {
  width: 0.6rem;
  margin: 0 auto;
  padding: 0 0 0.2rem;
  font-size: 18px;
  line-height: 24px;
  border-bottom: 1px solid #333;
}
.new-li-time .year {
  padding: 0.2rem 0 0;
  font-size: 14px;
  line-height: 20px;
}
.new-li-font {
  width: 5rem;
  padding-left: 0.2rem;
}

@media (min-width: 1200px) {
  .news {
  }

  .news li {
    padding: 0 0 2vw;
  }

  .news li a {
    display: flex;
    justify-content: space-between;
    transition: 0.3s;
  }

  .new-li-title {
    padding: 0 0 2vw 0;
    font-size: 1.2vw;
    line-height: 1.6vw;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px solid #dcdcdc;
  }
  .new-li-p {
    height: 5.6vw;
    margin: 1.2vw 0 0;
    overflow: hidden;
    font-size: 0.8vw;
    line-height: 1.4vw;
    color: #333;
  }

  .new-li-time {
    width: 7vw;
    padding: 2.4vw 0;
    text-align: center;
    color: #333;
    background: #f7f7f7;
  }
  .new-li-time .day {
    width: 3vw;
    margin: 0 auto;
    padding: 0 0 1vw;
    font-size: 2.4vw;
    line-height: 2.8vw;
    border-bottom: 1px solid #333;
  }
  .new-li-time .year {
    padding: 1vw 0 0;
    font-size: 0.8vw;
    line-height: 1.2vw;
  }
  .new-li-font {
    width: 50.4vw;
    padding: 0;
  }
  .news li a:hover {
    transform: translate3d(-1vw, 0, 0);
  }
  .news li a:hover .new-li-time {
    color: #fff;
    background: #71ba32;
  }
  .news li a:hover .new-li-time .day {
    border-color: #fff;
  }
  .news li a:hover .new-li-title {
    color: #71ba32;
  }
}

/* 新闻详情 */

.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;
  }

  .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;
  }
}
