@charset "UTF-8";
/*单行溢出*/
.one-row-cut {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

/* 两行溢出 */
.two-row-cut {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /*行数*/
  -webkit-box-orient: vertical;
}

/* 三行溢出 */
.three-row-cut {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /*行数*/
  -webkit-box-orient: vertical;
}

.show-pointer {
  cursor: pointer;
}