.pro-tooltip {
  cursor: pointer;

  .singleLine {
    height: 16px;
    overflow: hidden;
    line-height: 16px;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all 0.1s ease-in-out;
    > .single-content-box {
      display: 'inline-block';
      max-width: '100%';
      height: '100%';
    }

    & > * {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
  }

  .multiLine {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    > .multi-content-box {
      max-width: '100%';
      height: '100%';
    }
  }
}
