.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 {
  height: 273px;
  width: 332px;
  background: #fff;
  cursor: pointer;
}

.item_card:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 8px #ccc;
}

.item_card img{
  height: 175px;
  width: 100%;
  object-fit: cover;
}

.item_card .item_card_bottom {
  height: 98px;
  padding: 12px 20px 0 20px;
}

.item_card_title {
  font-size: 16px;
  font-weight: 400;
  height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 限制为两行 */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(0, 0, 0, 1);
}

.item_card_info {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-left: 20px;
  background: url('../images/icon_index_card_title.png') no-repeat left center;
  background-size: 16px 16px;
}