@mixin moreline-ellipsis($line: 2) {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: $line;
    overflow: hidden;
    word-break: break-all;
    word-wrap: break-word;
}
@mixin padding($top,$right,$bottom,$left){
    padding: $top $right $bottom $left;
}
@mixin margin($top,$right,$bottom,$left){
    margin: $top $right $bottom $left;
}
@mixin width($width){
    width: $width;
}
@mixin height($height){
    height: $height;
}
@mixin position($position){
    position: $position;
}
@mixin overflow($overflow){
    overflow: $overflow;
}
@mixin fontWeight($fontWeight){
    font-weight: $fontWeight;
}
