.image_list_item {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  height: 180px;
  width: 100%;
  padding: 30px;
  position: relative;
  border-bottom: 2px dashed #E8E8E8;
  margin-bottom: 20px;
  align-items: center;
}



.image_list_item>img {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 0;
  display: none;
}

.image_list_item img {
  transition: all 0.3s linear;
}

.image_list_item .img {
  width: 168px;
  height: 100%;
  overflow: hidden;
}

.image_list_item>div {
  position: relative;
  z-index: 10;
}

.image_list_item .main {
  padding: 0 0px;
  width: calc(100% - 340px);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.image_list_item .main p:nth-of-type(1) {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  line-height: 28px;
}

.image_list_item .main p:nth-of-type(2) {
  align-items: center;
  font-size: 14px;
  color: #999999;
  height: 84px;
  line-height: 28px;
}

.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 {
  height: 89px;
  color: #A52325;
  font-family: FZCHSJW--GB1, FZCHSJW--GB1;
  font-weight: bold;
  padding: 0 20px;
  border-left: 1px solid #A52325;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.image_list_item .data p:nth-of-type(1) {
  font-size: 34px;
  text-align: center;
  line-height: 50px;
  height: 50px;
}

.image_list_item .data p:nth-of-type(2) {
  font-size: 20px;
  text-align: center;
  line-height: 32px;
  height: 32px;
}

.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;
}

.org_list_item:hover .org-data {
  color: #fff !important;
}

.org_list_item:hover .org-data p {
  color: #fff !important;
}

.org_list_item:hover .org-data p:nth-of-type(2) {
  background: #fff;
}

.org_list_item {
  height: 126px;
  background: #F7F7F5;
  margin-bottom: 16px;
  padding: 20px !important;
}

.org_list_item .org-data {
  width: 64px;
  height: 64px;
  padding: 7px;
  color: #7E0D11;
  border: 1px solid #7E0D11;
  font-weight: bold;
  padding-top: 11px;
}

.org_list_item .org-data p:nth-of-type(1) {
  font-size: 14px;
}

.org_list_item .org-data p:nth-of-type(2) {
  width: 13px;
  height: 1px;
  background: #7E0D11;
  margin: 6px 0;
}

.org_list_item .org-data p:nth-of-type(3) {
  font-size: 12px;
}

@media (any-hover: hover) {
  .image_list_item:hover {
    background-size: 256px 175px;
    background-position: left bottom;
    background-repeat: no-repeat;
    background: #FAEDED;
  }

  .image_list_item:hover>img {
    display: block;
  }

  .image_list_item:hover .img img {
    transform: scale(1.2);
  }

  .image_list_item:hover .main p {
    color: #fff !important;
  }
  .image_list_item:hover p {
    color: #fff !important;
  }
  .image_list_item:hover .data {
    border-left-color: #fff !important;
  }
}

@media screen and (max-width: 700px) {
  .son_page>.inner .right {
    width: 100%;
    padding-top: 20px;
  }


  .son_page {
    padding: 0px 0 20px;
  }


  .image_list_item .main {
    order: 2;
  }

  .image_list_item .image {
    order: 1;
  }

  .image_list_item {
    padding: 10px;
    flex-direction: column;
    height: auto;
  }

  .image_list_item>div {
    width: 100% !important;
    margin-bottom: 20px;
  }

  .image_list_item .data {
    display: none;
  }

  .image_list_item .main {
    width: 60%;
  }
}
.image_list_item {
  /* 原有样式保持不变 */
  transition: all 0.3s ease;
  overflow: hidden; /* 确保内部元素不会溢出 */
}

.image_list_item:hover {
  transform: translateY(-5px); /* 轻微上浮效果 */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* 增加阴影 */
  border-bottom-color: transparent; /* 隐藏底部虚线 */
}

.image_list_item:hover .img img {
  transform: scale(1.05); /* 图片轻微放大 */
  filter: brightness(1.05); /* 图片轻微提亮 */
}



.image_list_item:active {
  transform: translateY(0) scale(0.98); /* 点击时轻微下压 */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 点击时阴影减小 */
}
