.image_list_item {
  cursor: pointer;
  display: flex;
  height: 220px;
  width: 100%;
  margin-top: 32px;
}
.image_list_item img {
  transition: all 0.3s linear;
}
.image_list_item .img {
  width: 294px;
  height: 100%;
  overflow: hidden;
}
.image_list_item .main {
  width: calc(100% - 294px);
  display: flex;
  background-color: #f5f5f5;
  transition: all 0.3s;
}
.image_list_item .main p {
  transition: all 0.3s;
}
.image_list_item .main .left {
  width: 600px;
  padding: 44px 36px;
}
.image_list_item .main .left P:nth-of-type(1) {
  font-size: 22px;
  font-weight: bold;
  color: #333333;
  height: 54px;
  line-height: 26px;
  margin-bottom: 24px;
}
.image_list_item .main .left P:nth-of-type(2) {
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
  color: #999999;
}
.image_list_item .main .right {
  width: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.image_list_item .main .right P:nth-of-type(1) {
  font-size: 48px;
  font-weight: bold;
  color: #A33326;
}
@media (any-hover: hover) {
  .image_list_item:hover img {
    transform: scale(1.2);
  }
  .image_list_item:hover .main {
    background-color: #A33326 !important;
  }
  .image_list_item:hover .main p {
    color: #fff !important;
  }
}
