.product-item-card {
  cursor: pointer;
  padding: 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;

  &::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 40px);
    height: 1px;
    background: #F1F1F1;
  }

  &:last-child {
    &::before {
      display: none;
    }
  }

  .product-item-card-cover {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
  }

  .product-item-card-content {
    flex: 1;

    .product-item-card-title {
      color: var(--text-text-1, #1B1B1B);


      font-size: 14px;
      font-style: normal;
      font-weight: 600;
      line-height: 20px;
    }

    .product-item-card-time {
      overflow: hidden;
      color: var(--text-text-2, #777);
      text-overflow: ellipsis;


      font-size: 12px;
      font-style: normal;
      font-weight: 400;
      line-height: 18px;
    }

    .product-item-card-price {
      color: var(--text-text-1, #1B1B1B);


      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 20px;
    }
  }

}