.dynamic .item {
  width: 100%;
  height: 69px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #efefef;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0 20px;
}
.dynamic .item .data {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.dynamic .item .data p:nth-of-type(1) {
  font-size: 14px;
  font-weight: 400;
  color: #999999;
}
.dynamic .item .data p:nth-of-type(2) {
  font-size: 12px;
  font-weight: 400;
  color: #555555;
}
.dynamic .item .data p:nth-of-type(3) {
  font-size: 12px;
  font-weight: 400;
  color: #555555;
}
.dynamic .item .nowrap {
  width: 80%;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
}
.dynamic .item .nowrap::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin: 0 10px 0 2px;
  border-radius: 50%;
  border: 1px solid #9D0001;
}
.dynamic .item:hover {
  box-shadow: 0px 3px 12px 1px #D3E4EF;
  color: #9D0001;
  background-color: #fff;
}
.page-info-title-sm{
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
margin-bottom: 20px;
color: #939393;
}
.page-info-title-sm img{
  width: 16px;
  height: 16px;
  margin-right: 5px;
}
.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-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: 87%;
  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;
    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;
  }
}
