﻿body {
    
}

*{
    padding:0px;
    margin:0px;
}

/* layui table 高度每增加1px 多表头总高实际高度就增加2px 
.layui-table-header table .layui-table-cell {
    height: 18px;
    line-height: 18px;
}*/

/*列表的查询行样式，横向居中对其*/
.row-top {
    margin: 5px;
    display: flex;
    align-items: center;
}

/*按钮组的样式*/
.row-bottom {
    margin: 5px;
    display: flex;
    align-items: center;

    position:fixed;
    bottom:0px;
    right:0px;
}

/*如果不使用layui的input text控件，使用系统控件，更方便控制自定义样式*/
input[type=text], input[type=number] {
    height: 25px;
    border: none;
    border-bottom: 1px solid #eeeeee
}

/*layui table 不出现滚动条用此方法解决*/
table{
    table-layout:fixed;
    word-break:break-all;
}
td{
    overflow:auto;
}

