/* 新闻列表 */
img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a {
  color: #999;
}
.core {
  padding-bottom: 2px;
}
.list_Box {
  margin-top: 40px;
}
.list_Box li {
  height: 220px;
  border-bottom: 1px solid #eeeeee;
  font-size: 14px;
  color: #999999;
  display: flex;
  align-items: center;
}
/* left */
.list_left {
  width: 230px;
  height: 160px;
  border-radius: 4px;
  margin-right: 20px;
}
/* center */
.list_center {
  width: 756px;
}
.list_center .center_top {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333333;
}
.list_center .center_middle {
  height: 52px;
  line-height: 26px;
  /* 溢出隐藏 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.list_center .center_below {
  margin-top: 22px;
  width: 80px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #999;
  border-radius: 4px;
}
/* right */
.list_right {
  margin-left: 118px;
}
/* hover */
.list_Box li:hover {
  border-bottom: 1px solid #014d6f;
  color: #014d6f;
}
.list_Box li:hover .list_center .center_top {
  color: #014d6f;
}
.list_Box li:hover .list_center .center_below {
  background: #014d6f;
  border: 1px solid #014d6f;
}
.list_Box li:hover .list_center .center_below > a {
  color: #fff;
}
