/* ===== 后台公共样式 ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif; }

/* 防止模板闪烁 */
[v-cloak] { display: none !important; }

/* 滚动条美化 */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-thumb { background: #c0c4cc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #909399; }
::-webkit-scrollbar-track { background: #f5f7fa; }

/* 卡片间距 */
.el-card { margin-bottom: 16px; }
.el-card:last-child { margin-bottom: 0; }

/* 表格优化 */
.el-table th.el-table__cell { background: #fafafa !important; }

/* 按钮间距 */
.el-button + .el-button { margin-left: 8px; }
