.index-main {
  padding: 50px 0 120px 0;
}

.data_list {
  display: flex;
  gap: 24px;
  box-sizing: border-box;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.item_card {
  width: 332px;
  height: 240px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 0 20px #eee;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 40px 24px 0 24px;
  position: relative;
}

.item_card::after {
  position: absolute;
  content: attr(data-state);
  display: block;
  top: 0;
  right: 0;
  width: 76px;
  height: 28px;
  opacity: 1;
  border-radius: 0px 5px 0px 14px;
  font-size: 12px;
  font-weight: 400;
  color: #FFFFFF;
  text-align: center;
  line-height: 28px;
  background: linear-gradient(90deg, #6FC37A 0%, #0C82BD 100%);
}

.item_card:hover {
  transform: scale(1.01);
}

.item_card > .item_card_title{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 32px;
  height: 64px;
  margin-bottom: 12px;
  color: #000;
}

.item_card_labels {
  height: 52px;
  margin-bottom: 24px;
}

.item_card_labels > .item_card_label {
  height: 22px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.45);
}

.item_card_label:nth-of-type(1) > span:nth-last-of-type(1){
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.15);;
  font-size: 12px;
  font-weight: 400;
  height: 22px;
  box-sizing: border-box;
  padding: 0 8px;
  line-height: 20px;
}

.item_card_label:nth-of-type(1) {
  margin-bottom: 8px;
}

.item_card_label:nth-last-of-type(1) > span:nth-last-of-type(1) {
  color: #000000;
}

.item_card > .item_card_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card_bottom_person{
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  width: calc(100% - 110px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card_bottom_person > img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}

.card_bottom_date {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
  width: 100px;
}
