﻿@charset "UTF-8";

/* :root 变量已迁移到 BkErp.Shared/wwwroot/css/theme.css */

*,
::after,
::before {
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
    /* 关键：定义 1rem = 14px */
    font-family: var(--bkerp-font-family);
}

body {
    height: 100%;
    width: 100%;
    color: var(--bkerp-text-color);
    background-color: var(--bkerp-bg-gradient);
    font-size: 0;
}

 
 

/*隐藏元素*/
.hide_div {
    display: none;
}

/* 设置DIV的禁用*/
.disable_div {
    pointer-events: none;
    opacity: 0.6;
}

/*溢出隐藏*/
.overflow-hiding {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    line-height: 1.5;
}

