.background_product {
  background: url(../images/productCenter.png) no-repeat center top;
  background-size: cover;
}
.list_container {
  margin-top: 35px;
}
.list_item_box {
  width: 100%;
  height: 395px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all .5s;
  display: flex;
  justify-content: space-between;
  background-color: #E9EDF5;
  border-radius: 5px;
  overflow: hidden;
}
.list_item_box:hover .list_item_box_right img {
  transform: scale(1.05);
}

.list_item_box:hover {
  box-shadow: 0 20px 10px -10px rgba(0, 0, 0,.3);
}
.list_item_box:hover .product_title img {
  transform: rotateX(360deg);
}
.list_item_box:hover .product_title strong {
  text-shadow: 2px 2px 2px #5EA8FC;
}
.list_item_box_left,
.list_item_box_right {
  height: 100%;
}

.list_item_box_left {
  width: 40%;
  padding-left: 2%;
  padding-top: 1%;
  box-sizing: border-box;
}

.list_item_box_right {
  position: relative;
  width: 708px;
  transition: all .5s;
  overflow: hidden;
}

.list_item_box_right::after {
  display: none;
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  top: 0;
  left: 0;
}

.pButton {
  display: none;
  z-index: 99;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product_title {
  width: 100%;
  height: 10%;
  display: flex;
  flex-direction: row;
}

.product_title img {
  margin-right: 10px;
  transition: all 1s;
}

.product_title strong {
  width: 95%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 24px;
  transition: all .5s;
}

.list_item_box_right img {
  height: 100%;
  width: 100%;
  transition: all 1.5s;
}

.product_desc {
  width: 100%;
  margin-top: 20px;
  height: 60%;
}

.product_button {
  margin-top: 30px;
  /* display: flex; */
  /* flex-direction: row; */
}
/* .product_button .productButtonItem {
  width: 100px;
  height: 40px;
  margin-right: 20px;
  text-align: center;
  line-height: 40px;
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
} */

.item_title {
  font-size: 24px;
}

.boox_footer {
  width: 100%;
  height: 295px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.boox_footer_left {
  width: 45%;
  height: 100%;
}

.boox_footer_right {
  width: 45%;
  height: 100%;
}

.boox_footer_right img {
  width: 100%;
  height: 100%;
  transition: all .5s;
}