/* 新闻列表 */

.news {
}
.news ul {
  padding: 0 10px 10px;
}
.news ul li {
  padding: 5px 0;
  border-bottom: 1px dashed #b9b9b9;
}
.news ul a {
  display: flex;
  justify-content: space-between;
  padding: 0 0 0 0.3rem;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  color: #000;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: url(../images/new_icon.png) no-repeat 0 center/6px;
}
.news ul a p {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news ul a span {
  display: block;
  flex-shrink: 0;
  width: 100px;
  text-align: right;
}
@media (min-width: 1200px) {
  .news {
  }
  .news ul {
    padding: 20px 20px 30px;
  }
  .news ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #b9b9b9;
  }
  .news ul a {
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 1.6vw;
    font-size: 0.9vw;
    line-height: 2vw;
    color: #000;
    background: url(../images/new_icon.png) no-repeat 0 center;
  }
  .news ul a p {
    width: 650px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .news ul a span {
    display: block;
  }
  .news ul a:hover {
    color: #1274cf;
  }
}

/* 新闻详情 */

.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: 20px;
  }

  .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;
  }
}
