.news_content .news_list {
  margin-top: 8rem;
}
.news_content .news_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news_content .news_list ul::after {
  content: "";
  width: 32.4%;
}
.news_content .news_list ul li {
  width: 32.4%;
  height: 30.4rem;
  padding: 4.2rem 3.5rem 4.4rem 2.7rem;
  box-sizing: border-box;
  background: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 1rem;
  margin-bottom: 1.9rem;
  transition: all 0.3s;
}
.news_content .news_list ul li:hover {
  background-color: #0056B8;
}
.news_content .news_list ul li:hover a i,
.news_content .news_list ul li:hover a span,
.news_content .news_list ul li:hover a .content {
  color: #fff;
}
.news_content .news_list ul li a {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.news_content .news_list ul li a i {
  font-size: 1.4rem;
  color: #A3A3A4;
}
.news_content .news_list ul li a span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  cursor: pointer;
  font-weight: normal;
  margin-top: 2rem;
  line-height: 2.8rem;
  font-size: 2rem;
  color: #303030;
}
.news_content .news_list ul li a .content {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  cursor: pointer;
  font-weight: normal;
  font-size: 1.6rem;
  color: #A3A3A4;
  line-height: 2.6rem;
}
@media only screen and (max-width: 1024px) {
  .news_content .news_list ul li {
    width: 49%;
  }
}
@media only screen and (max-width: 768px) {
  .news_content .news_list {
    margin-top: 4rem;
  }
  .news_content .news_list ul li {
    width: 100%;
  }
}
.news_content .no-data {
  text-align: center;
  width: 100%;
  font-size: 1.4rem;
  min-height: 20rem;
}
.news_content .Pagination {
  margin: 8.5rem 0 8.7rem;
}
.news_content .article_title {
  margin: 13.7rem auto 4rem;
  text-align: center;
}
.news_content .article_title h1 {
  font-size: 3rem;
  color: #303030;
}
.news_content .article_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #A3A3A4;
}
.news_content .article_info span {
  font-size: 1.4rem;
  color: #7E7D7D;
}
.news_content .article_content {
  margin-top: 6rem;
}
.news_content .article_content p {
  font-size: 2rem;
  color: #303030;
  line-height: 3.3rem;
  margin-bottom: 8rem;
}
.news_content .article_content video,
.news_content .article_content img {
  display: block;
  margin: 0 auto 8rem;
}
.news_content .article_content video {
  width: 100%;

}
.news_content .article_content img {
  width: 80%;
}
.news_content .article_pian {
  margin: 8.6rem auto 7.5rem;
}
@media only screen and (max-width: 1024px) {
  .news_content {
    padding: 0 6.6rem;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 768px) {
  .news_content {
    padding: 0 3.3rem;
    box-sizing: border-box;
  }
  .news_content .article_title {
    margin: 6rem auto 2rem;
  }
  .news_content .article_content p {
    margin-bottom: 4rem;
  }
}