.new_box {
  width: 100%;
  max-width: 1920px;
  margin: auto;
  background: #f9f9f9;
}
.new_box .new_img {
  text-align: center;
  height: 100px;
  line-height: 100px;
}
/*新闻列表*/
.news_list {
  width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.news_list li {
  width: 33.3%;
  margin: 15px 0;
}
.news_list li a {
  border-radius: 8px;
  overflow: hidden;
  display: block;
  width: 90%;
  background: white;
  margin: auto;
  line-height: 1.5;
}
.news_list li a img {
  width: 100%;
  height: 250px;
  display: block;
  padding: 10px;
  transition: all 1s;
}
.news_list li a:hover {
  color: var(--mainBgColor);
  /* background: #f5a42b; */
}
.news_list li a:hover span {
  color: var(--mainBgColor);
}
.news_list li a:hover img {
  transform: scale(1.1);
}
.news_list li p {
  padding: 10px 15px;
  margin: 0 20px;
  font-size: 20px;
  min-height: 120px;
  word-break: break-all;
}
.news_list li span {
  padding: 10px 15px;
  line-height: 3;
  margin: 0 20px;
  color: #a8a7a7;
}
/*新闻详情*/
.news_info {
  width: 1200px;
  margin: auto;
}
.container {
  text-align: center;
}
.container .n_img {
  margin: 20px 0;
}
.container .n_img img {
  max-width: 100%;
}
.new_tab {
  font-size: 17px;
  padding: 0 5px;
  line-height: 3;
  border-bottom: 3px solid var(--mainBgColor);
}
.new_tab a {
  margin: 0 10px;
}
.new_tab a:hover {
  color: var(--mainBgColor);
}
.text-tlt {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid #ccc;
  position: relative;
}
.text-tlt h2 {
  line-height: 50px;
  overflow: hidden;
}
.text-tlt p {
  color: #9e9d9d;
  margin: 20px 0 0 0;
  font-size: 15px;
}
.text-tlt p span {
  padding: 0 20px;
}
.text-tlt::before {
  content: "";
  width: 8px;
  height: 8px;
  left: 50%;
  margin-left: -4px;
  bottom: -9px;
  background: #e40717;
  position: absolute;
  border-radius: 50%;
  border: solid 4px #fff;
}
.text-box {
  padding: 20px 50px 100px;
  text-indent: 2em;
  font-size: 17px;
  letter-spacing: 2px;
  line-height: 2;
  text-align: left;
}
.text-box div {
  margin: 20px 0;
}
.text-box div img,
.text-box div video {
  max-width: 90%;
  display: block;
  margin: 20px auto;
  max-height: 500px;
}
.text-box div,
.text-box p {
  word-break: break-all;
  text-indent: 2em !important;
  font-size: 16px !important;
  line-height: 2 !important;
}
