// Sizing shortcuts
.size(@width; @height) {
  width: @width;
  height: @height;
}

.square(@size) {
  .size(@size; @size);
}
//----宽高填充-----
.auto-full(){
  width: 100%;
  height:100%;
}
//----文本过长省略...-----
.text-break(){
  text-overflow: ellipsis;
  overflow:hidden;
  white-space:nowrap;
}