.image_list_item {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  /* height: 135px; */
  width: 100%;
  margin-bottom: 18px;
  padding: 24px;
  background: linear-gradient(11deg, #FFFFFF 0%, #F3EBE0 100%);
  box-shadow: 0px 4px 8px 1px rgba(187, 94, 78, 0.2);
  border-radius: 20px 0px 0px 0px;
  position: relative;
}
.image_list_item .image-item-icon {
  max-width: 176px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.image_list_item > img {
  position: absolute;
  height: 100%;
  width: 305px;
  right: 0;
  top: 0;
}
.image_list_item img {
  transition: all 0.3s linear;
}
.image_list_item .img {
  width: 118px;
  height: 83px;
  overflow: hidden;
}
.image_list_item .main {
  padding: 0 30px 0 0;
  width: 70%;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  transition: all 0.3s;
}
.image_list_item .main > p:nth-of-type(1) {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
}
.image_list_item .main > p:nth-of-type(2) {
  font-size: 14px;
  color: #666666;
  height: 49px;
  line-height: 26px;
}
.image_list_item .main > p:nth-of-type(2) img {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.image_list_item .main > p:nth-of-type(2) img:nth-of-type(2) {
  display: none;
}
.image_list_item .main > p:nth-of-type(3) {
  display: flex;
  align-items: center;
}
.image_list_item .main > p:nth-of-type(3) img {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.image_list_item .main > p:nth-of-type(3) img:nth-of-type(2) {
  display: none;
}
.image_list_item .main > div {
  display: flex;
  align-items: center;
  margin: 5px 0;
}
.image_list_item .main > div img {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.image_list_item .main > div img:nth-of-type(2) {
  display: none;
}
.image_list_item .data {
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #99999987;
  padding-right: 10px;
}
.image_list_item .data p:nth-of-type(1) {
  font-size: 28px;
  font-weight: bold;
  color: #CC9D6D;
  height: 45px;
  line-height: 45px;
}
.image_list_item .data p:nth-of-type(2) {
  font-size: 16px;
  width: 100%;
  height: 27px;
  color: #CC9D6D;
  line-height: 27px;
  text-align: center;
}
@media (any-hover: hover) {
  .image_list_item:hover .img img {
    transform: scale(1.2);
  }
  .image_list_item:hover {
    background: #D64C3B;
  }
  .image_list_item:hover p {
    color: #fff !important;
  }
  .image_list_item:hover .main p {
    color: #fff !important;
  }
  .image_list_item:hover .main span {
    color: #fff !important;
  }
  .image_list_item:hover .main > p img:nth-of-type(1) {
    display: none;
  }
  .image_list_item:hover .main > p img:nth-of-type(2) {
    display: block;
  }
  .image_list_item:hover .main > div img:nth-of-type(1) {
    display: none;
  }
  .image_list_item:hover .main > div img:nth-of-type(2) {
    display: block;
  }
}
