.news_list {
  padding: 55px 150px 0 137px;
}
.news_item {
  height: 240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(51,51,51, .1);
}
.news_item:last-child {
  border-bottom: none;
}
.news_item_l {
  display: flex;
  align-items: center;
}
.news_date {
  width: 85px;
  margin-right: 115px;
  position: relative;
}
.news_date::after {
  content: ' ';
  display: block;
  width: 48px;
  height: 1px;
  background: #000;
  position: absolute;
  right: -70px;
  top: 50%;
}
.news_date_d {
  font-size: 60px;
  font-weight: 700;
  text-align: center;
  color: rgba(51, 51, 51, 1);
}
.news_date_ym {
  font-size: 20px;
  text-align: center;
  color: rgba(51, 51, 51, 1);
}
.news_item_r {
  width: 300px;
  text-align: right;
}
.news_item_r img {
  max-width: 300px;
}
.news_main {
  width: 600px;
}
.news_title {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: rgba(51, 51, 51, 1);
  margin: 0;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_content {
  font-size: 14px;
  line-height: 20px;
  color: rgba(153, 153, 153, 1);
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_go a{
  font-weight: 500;
  color: rgba(0, 87, 255, 1);
  font-size: 14px;
}

.news_detail_body {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: rgba(246, 248, 251, 1);
}
.news_detail_body_m {
  width: 1150px;
}
.breadcrumb {
  margin-left: 20px;
  height: 70px;
  line-height: 70px;
  font-size: 14px;
}
.breadcrumb a {
  padding: 0 5px;
  color: rgba(153, 153, 153, 1);
  position: relative;
}
.breadcrumb a.breadcrumb_nav::before {
  content: '';
  position: absolute;
  left: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAADUSURBVDiN3VLBDYQwDHPM7QVdplWngE5RhWWAwdreh0qIo8D7/IqS2IqtCBqIMQ4kFwDBOTe19vhEBoB5npeWgJwbqjoBGHPOxnu/1p6I9NZacytwRX6a8bggIv0VGQD2HALJJcY4/Jx95/O8q6plvwhy56+FGnLO2RDAePD4Cl3XjSKykhzonBMAEJH+rUApZUgpBefc9Nkb21Gg2joQtvMz1aAvHwkAUkrBWmustUZE+p/kdzQF3uIPBD4AkHNeSY6qWurAez/VupSykVxUtbZCLb5xyn5nWgoAvQAAAABJRU5ErkJggg==') no-repeat center center;
  background-size: 100% 100%;
}
.breadcrumb span {
  color: rgba(153, 153, 153, 1);
}
.breadcrumb span.breadcrumb_title {
  color: rgba(51, 51, 51, 1);
  padding: 0 5px;
}
.news_article {
  width: 100%;
  background: #fff;
  border-radius: 8px;
  min-height: 500px;
  padding: 40px 64px;
  box-sizing: border-box;
}
.news_article_t {
  margin: 0 0 20px;
  font-weight: 500;
  line-height: 40px;
  color: rgba(51, 51, 51, 1);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_article_d {
  font-size: 12px;
  line-height: 22px;
  color: rgba(153, 153, 153, 1);
  margin-bottom: 24px;
}
.news_article_c img {
  max-width: 100%;
}
.news_article_c p {
  line-height: 1.5;
}