.contentContainer {
  display: flex;
  padding-bottom: .92rem;
  flex-direction: column;
  background: #FBFBFB;
}


.newItemBoxWrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.newsItemBox {
  display: flex;
  flex-wrap: wrap;

}

.newsItemBox .newsItem {
  width: 5.12rem;
  margin-left: .32rem;
  height: 6.62rem;
  background: white;
  margin-top: .64rem;
  align-items: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.newsItemBox .newsItem:hover{
  margin-top: .5rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
}
.newsItemBox .newsItem:nth-child(3n+1){
  margin-left: 0;
}

.newsItem .newPic {
  width: 100%;
  height: 3.12rem;
  object-fit: cover;
  position: relative;
  display: flex;
}

.newsItem .newTitle {
  font-size: .2rem;
  width: 4.32rem;
  color: #2A314F;
  line-height: .3rem;
  margin-top: .32rem;
  font-weight: bold;
}

.newsItem .newDes {
  font-size: .18rem;
  color: #2A314F;
  width: 4.32rem;
  line-height: .31rem;
  margin-top: .14rem;
}

.newsItem .newBottom {
  display: flex;
  /* margin-top: .5rem; */
  flex-direction: row;
  padding: 0 .4rem;
  position: absolute;
  left: 0;
  bottom: .73rem;
  width: 100%;
  justify-content: space-between;
}

.newBottom .newTime {
  font-size: .18rem;
  color: #2A314F;

}

.newMore {
  align-items: center;
  justify-content: center;
  right: 0;
  display: flex;
  cursor: pointer;
  font-size: .16rem;
  color: #2A314F;
  flex-direction: row;
  top: .11rem;
}

.newsItem:hover .newMore>div {
  /* scale: 1.1; */
  color: #002CAA;
}

.newsItem:hover .newMore>span {
  /* scale: 1.3; */
  color: #002CAA;
}

.newMore>span {
  margin-left: .1rem;
}