.image_list_item {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  height: 160px;
  width: 100%;
  padding: 20px 16px;
  border-bottom: 1px solid #D8D8D8;
  position: relative;
}
.image_list_item > img {
  position: absolute;
  height: 100%;
  width: 305px;
  right: 0;
  top: 0;
  display: none;
}
.image_list_item img {
  transition: all 0.3s linear;
}
.image_list_item .img {
  width: 200px;
  height: 100%;
  overflow: hidden;
}
.image_list_item .main {
  padding: 0 0px;
  width: calc(100% - 380px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s;
}
.image_list_item .main p:nth-of-type(1) {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
    line-height: 24px;
}
.image_list_item .main p:nth-of-type(2) {
  align-items: center;
  font-size: 16px;
  color: #666666;
  height: 46px;
  line-height: 23px;
}
.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 .data {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400 !important;
}
.image_list_item .data p:nth-of-type(1) {
  font-size: 38px;
  margin-bottom: 5px;
}
.image_list_item .data p:nth-of-type(1) span {
  display: inline-block;
  margin: 0 5px 0 0;
}
.image_list_item .data > span {
  display: inline-block;
  width: 1px;
  height: 34px;
  background-color: #333;
  transform: skew(-5deg);
  margin: 0 10px;
}
.image_list_item .data p:nth-of-type(2) {
  font-size: 14px;
  display: flex;
  flex-direction: column;
}
.image_list_item .data p:nth-of-type(2) span:nth-of-type(1) {
  margin-bottom: 5px;
}
@media (any-hover: hover) {
  .image_list_item:hover {
    background-image: url(../images/imageList-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
  .image_list_item:hover .img img {
    transform: scale(1.2);
  }
  .image_list_item:hover p {
    color: #AB170D !important;
  }
  .image_list_item:hover .data p {
    color: #AB170D !important;
  }
  .image_list_item:hover .data > span {
    background-color: #AB170D !important;
  }
}
