/* 公共样式 */

/* 子页面根高度铺满 iframe, 保证 layui 表格 height:'full-*' 计算准确,
   避免 iframe 因高度基准缺失而生成多余滚动条 */
html, body {
    height: 100%;
}
/* 单卡片页占满内容区 */
.pear-card {
    height: 100%;
    box-sizing: border-box;
}

/* 表格内状态徽章微调 */
.layui-table-view .layui-badge {
    height: 20px;
    line-height: 20px;
    padding: 0 8px;
    border-radius: 10px;
}

/* layui.tree 容器外观: 边框 + 滚动, 呈纯树观感 */
.lay-tree-box {
    max-height: 360px;
    overflow: auto;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    padding: 8px 10px;
}
.lay-tree-box .layui-tree {
    margin: 0;
}

