@import '~@cainiaofe/cn-ui-m-theme/token.px.scss';

.#{$hashClassName}.cn-ui-m-readonly {
  font-size: $m-font-size-body-1;
  color: $m-color-text;
  line-height: $m-font-lineheight-2;
  font-weight: $m-font-weight;

  &-ellipsis {
    // 文字最多 8 行，如果超过 8 行则显示省略号
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
  }
}
