.bg-white{
background: #fff
}
// 圆角
.b-r-4{
border-radius: 4px;
}
.b-r-6{
border-radius: 6px;
}
.b-r-8{
border-radius: 8px;
}
.b-r-10{
border-radius: 10px;
}
// 左边距
.m-l-4{
margin-left: 4px;
}
.m-l-6{
margin-left: 6px;
}
.m-l-8{
margin-left: 8px;
}
.m-l-10{
margin-left: 10px;
}
.m-l-12{
margin-left: 12px;
}
.m-l-16{
margin-left: 16px;
}
.m-l-24{
margin-left: 24px;
}
.m-r-4{
margin-right: 4px;
}
.m-r-6{
margin-right: 6px;
}
.m-r-8{
margin-right: 8px;
}
.m-r-10{
margin-right: 10px;
}
.m-r-12{
margin-right: 12px;
}
.m-r-16{
margin-right: 16px;
}
.m-r-24{
margin-right: 24px;
}
// 字体
.f-s-12{
font-size: 12px;
}
.f-s-16{
font-size: 12px;
}
.f-s-18{
font-size: 18px;
}
.f-s-20{
font-size: 20px;
}
// 文本省略号
.text-line-1{
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.text-line-2{
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.text-line-3{
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
.text-line-4{
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
}
|