.background_news {
  background: url(../images/news.png) no-repeat center top;
  background-size: cover;
}

.list_box {
  width: 1200px;
}

.lastest_news {
  width: 100%;
  height: 400px;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  border-radius: 5px;
}

.lastest_news_left {
  width: 570px;
  height: 100%;
  overflow: hidden;
}

.lastest_news:hover img {
  transform: scale(1.05);
}

.lastest_news_left img {
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

.lastest_news_right {
  width: 630px;
  height: 100%;
  padding: 2% 2%;
  box-sizing: border-box;
  background-color: #F7F7F7;
}

.day {
  color: #004B9F;
  font-weight: bold;
  font-size: 40px;
}

.date {
  font-size: 16px;
}

.news_title {
  margin-top: 20px;
  font-size: 22px;
  color: #004B9F;
  height: 60px;
  width: 100%;
  border-bottom: 1px solid #DBE6F1;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
}

.news_desc {
  margin-top: 20px;
  -webkit-line-clamp: 3;
  color: #8A8A8A;
}

.news_but {
  margin-top: 30px;
  transition: all .5s;
}

.lastest_news:hover .news_but {
  margin-top: 20px;
}

.later_three_news {
  margin-top: 30px;
  width: 100%;
  height: 260px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.later_news_item {
  width: 360px;
  height: 100%;
  transition: all .5s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.later_news_item:hover {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.later_news_item:hover img {
  transform: scale(1.05);
}
.later_news_item_bgImg,
.later_news_item_bgImg img {
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.later_news_item_text {
  height: 100px;
  width: 100%;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  padding: 0 3%;
  padding-top: 1%;
  box-sizing: border-box;
}

.later_news_item_title {
  font-size: 20px;
  color: #ffffff;
  /* font-weight: bold; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.later_news_item_desc {
  margin-top: 10px;
  color: #ffffff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news_list {
  width: 100%;
  margin-top: 30px;
}

.news_list_item {
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  cursor: pointer;
}

/* .news_list_item a {
  display: block;
  width: 100%;
  height: 100%;
  list-style: none;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
} */

.news_list_item:hover img {
  transform: scale(1.05);
}
.news_list_item:hover .newsTitle {
  color: #004B9F;
}
.news_list_item_left {
  width: 285px;
  height: 100%;
  overflow: hidden;
}

.news_list_item_left img {
  width: 100%;
  height: 100%;
  transition: all .5s;
}

.news_list_item_right {
  width: 915px;
  height: 100%;
  padding: 2% 3%;
  background-color: #F7F7F7;
  box-sizing: border-box;
}

.newsTitle {
  font-size: 20px;
  height: 28px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newsDate,
.newsDesc {
  font-size: 14px;
  line-height: 22px;
  margin: 10px 0px 1.26vw;
  color: #666666;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}