@import '../style/var.less';

.zt-card-item {
  display: flex;
  align-items: center;
  justify-content: center;
  &:active {
    background-color: rgba(66, 133, 244, 0.06);
  }
  &:last-child {
    &::after {
      border-bottom-width: 0;
    }
  }
  .zt-card-item--left-title {
    width: 48px;
    padding: 14px 12px;
    font-size: @g2-font-size;
    color: @weight-1;
    font-weight: bold;
    background-color: @bg-1;
    border-radius: @radius;
    text-align: center;
    margin-right: @margin-base;
  }
  .zt-card-item--right {
    flex: 1;
    padding: @padding-base @padding-base;
    .zt-card-item--right-title {
      font-size: @g2-font-size;
      font-weight: 600;
      color: @weight-1;
      margin-bottom: 6px;
      word-break: break-all;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      line-height: 20px;
      // min-height: 40px;
      .zt-card-item--right-title-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        position: relative;
        .zt-card-item--right-title-content-left {
          width: 60%;
          word-break: break-all;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          line-height: 20px;
        }
        .zt-card-item--right-title-content-right {
          width: 40%;
          color: #969799;
          font-size: @g4-font-size;
          text-align: right;
          font-weight: normal;
          word-break: break-all;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          line-height: 20px;
        }
        .zt-card-item--right-title-content-tag {
          // width: 60%;
          word-break: break-all;
          overflow: hidden;
          text-overflow: ellipsis;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          line-height: 20px;
          padding-right: 30px;
          .zt-card-item--right-tag-label {
            display: inline-block;
          }
        }
      }
    }
    .zt-card-item--right-minheight {
      min-height: 40px;
    }
    .zt-card-item--right-content {
      font-size: @g2-font-size;
      color: @weight-2;
      margin-bottom: 6px;
      word-break: break-all;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      line-height: 20px;
    }
    .zt-card-item--right-label {
      display: flex;
      align-items: center;
      justify-content: space-between;
      > div {
        font-size: @g4-font-size;
        color: @font-color-2;
        &:first-child {
          margin-right: 4px;
        }
      }
    }
  }
}
