common.css 1.19 KiB
.offline {
    color: red;
.reserve {
    color: #03b980;
.special {
    color: #409eff;
.zhuan {
    color: #775198;
.cancel {
    color: #e87b12ed;
.sub_title {
    display: block;
/*滚动条*/
.el-table__body-wrapper::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 18, 236, 0.1);
    background: rgba(83, 83, 83, 0.1);
.el-table__body-wrapper::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(64, 163, 194, 0.13);
    background: #EDEDED;
.el-table__body-wrapper::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 8px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 8px;
.line_bottom {
    position: relative;
/**元素的底部線條*/
.line_bottom:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid #e5e5e5;
    color: #e5e5e5;
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);