.innerContent{padding-bottom: .92rem;}
.topBarBox .topBarItemAct::after {
  width: 1.4rem;
}

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

.productsItemBox {
  margin-top: .6rem;
  display: flex;
  flex-wrap: wrap;

}

.productsItemBox .productsItem {
  width: 5.12rem;
  margin-left: .32rem;
  height: 6.82rem;
  background: white;
  margin-top: .32rem;
  padding: .48rem .32rem  .4rem;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.productsItemBox .productsItem:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
  animation: productsItemUp .5s ease-in-out forwards;
}

@keyframes productsItemUp {
  from {
      transform: translateY(0);
  }
  to {
      transform: translateY(-.2rem);
  }
}


.productsItemBox .productsItem:nth-child(3n+1) {
  margin-left: 0;
}

.productsItem .productPic {
  width: 4rem;
  margin-top: .33rem;
  height: 4rem;
  object-fit: cover;
  display: flex;
}

.productsItem .productTitle {
  font-size: .2rem;
  width: 100%;
  color: #2A314F;
  line-height: .3rem;
  margin-top: .16rem;
  font-weight: bold;
}

.productsItem .productDes {
  font-size: .18rem;
  color: #2A314F;
  width: 100%;
  line-height: .31rem;
}


.productMore {
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  margin-top: .33rem;
  font-size: .16rem;
  border: .01rem solid #2A314F;
  color: #777777;
  flex-direction: row;
  scale: 1;
  width: 4rem;
  transition: .3s linear;
  height: .55rem;
}

.productsItem:hover .productMore {
  border: 1px solid #002CAA;
  background: #002CAA;
}

.productsItem:hover .productMore>div {
  /* scale: 1.1; */
  color: white;
}

.productsItem:hover .productMore>span {
  /* scale: 1.1; */
  color: white;
}

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



@keyframes productCenterItemUp {
  from {
      transform: translateY(0);
  }
  to {
      transform: translateY(-.12rem);
  }
}