$font-family: microsoft YaHei, Simsun;
//字体
$font-size-max:24px;
$font-size-large:18px;
$font-size-base:14px; //基础字号
$font-size-mini:12px;
$font-size-h1:30px;
$font-size-h2:24px;
$font-size-h3:18px;
//主盒
$z-index:999; //默认

//提示状态颜色
$success: #00cc00;
$error: red;
$info: #409eff;
$before: #409eff;



//bug
$bug-type-1:red;
$bug-type-2:orange;
$bug-type-3:#3399ff;
$bug-type-4:#00cc00;

//文本溢出
@mixin overflow-text($line) {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: $line;
    -webkit-box-orient: vertical;
    white-space: nowrap;
}

@mixin light-font {
    font-size: $font-size-mini;
    color: $font-color-light;
}

@mixin hover-pointer {
    cursor: pointer;
}


