body {
  background: #f2f2f2;
}
.news-list {
  min-height: calc(100vh - 93px - 264px);
  padding-bottom: 100px;
  background: #fff;
}
.news-list .news_bg {
  width: 100%;
  height: 250px;
  background: url(../images/news/news_bg.png) center 0 / cover no-repeat;
  padding-top: 60px;
  margin-bottom: 20px;
}
.news-list .news_bg p {
  text-align: center;
  color: var(--theme-color);
  font-weight: 700;
  user-select: none;
}
.news-list .news_bg p:nth-child(1) {
  font-size: 50px;
  margin-bottom: 10px;
}
.news-list .news_bg p:nth-child(2) {
  font-size: 30px;
}
.news-list .news-list-ul li {
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
}
.news-list .news-list-ul li a {
  display: flex;
  position: relative;
}
.news-list .news-list-ul li .img {
  width: 336px;
  height: 192px;
  border-radius: 10px;
  margin-right: 20px;
  overflow: hidden;
}
.news-list .news-list-ul li .img img {
  width: 100%;
  height: 100%;
  transition: all ease 0.3s;
}
.news-list .news-list-ul li .img:hover img {
  transform: scale(1.1);
}
.news-list .news-list-ul li .cont {
  flex: 1;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-list .news-list-ul li .cont .tit {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.news-list .news-list-ul li .cont .tit:hover {
  color: var(--theme-color);
}
.news-list .news-list-ul li .cont .time {
  font-size: 18px;
  color: #a5a5a5;
  padding-left: 6px;
}
.news-list .news-list-ul li .look {
  position: absolute;
  bottom: 9px;
  right: 19px;
  width: 158px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  color: #a5a5a5;
}
.news-list .news-list-ul li .look i {
  position: absolute;
  top: 20px;
  right: 19px;
  width: 22px;
  height: 1px;
  background-color: var(--border-color);
}
.news-list .news-list-ul li .look i::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 8px;
  height: 1px;
  background-color: var(--border-color);
  transform: rotate(35deg);
  transform-origin: 100% 0;
}
.news-list .news-list-ul li .look:hover {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: #fff;
}
.news-list .news-list-ul li .look:hover i {
  background-color: #fff;
}
.news-list .news-list-ul li .look:hover i::after {
  background-color: #fff;
}
.news-list .pages {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 0;
}
.news-list .pages .total {
  font-size: 16px;
  color: #a5a5a5;
}
.news-list .pages .m-style {
  width: auto;
}
.news_detail .news_detail_title {
  padding-top: 15px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 2px solid #efefef;
}
.news_detail .news_detail_title p {
  text-align: center;
}
.news_detail .news_detail_title .tit {
  font-size: 23px;
  margin-bottom: 20px;
}
.news_detail .news_detail_title .time {
  font-size: 16px;
}
.news_detail .nd_content {
  font-size: 14px;
  line-height: 2;
}
.news_detail .nd_content img {
  display: block;
  margin: 20px auto;
}
.news_detail .nd_content p {
  text-indent: 28px;
}
