﻿.newsBox {
  margin: 0 auto;
  display: flex;
  width: 1065px;
  flex-wrap: wrap;
  padding-bottom: 64px;
  justify-content: space-between;
}
.newsBox a{
  display: block;
  text-decoration: none;
}
.newsBox .item:hover {
    background: #0132BE;
}
.newsBox .item:hover div {
    color: #fff;

}

.newsBox .item {
  width: 520px;
  background: #f9f9f9;
  padding: 32px 0;
  display: flex;
  box-sizing: border-box;
  margin-bottom: 24px;
}
.newsBox .item .left {
  width: 84px;
  height: 84px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.left .date {
  color: #000;
  font-family: "PingFang SC";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px; 
  margin-bottom: 2px;
}
.left .month {
  color: #000;
  font-family: "PingFang SC";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; 
}
.newsBox .item .right {
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.right .neTitle {
  color: #222;
  font-family: "PingFang SC";
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; 
}
.right .neText {
  color: #000;
  font-family: "PingFang SC";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; 
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}