Initial project files: BESCMS full source

This commit is contained in:
bes
2026-08-13 23:37:46 +08:00
parent fa6cddb540
commit 2e26f85723
2166 changed files with 396625 additions and 0 deletions
File diff suppressed because one or more lines are too long
@@ -0,0 +1,29 @@
/**
* Element Plus 风格基础层:本地引入官方样式(element-plus@2.8.8 dist/index.css)并做 CMS 模板微调
*/
@import url("element-plus-index.css");
:root {
--ep-header-height: 60px;
--ep-container-max: 1200px;
}
html, body {
margin: 0;
min-height: 100%;
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
background-color: var(--el-bg-color-page, #f5f7fa);
color: var(--el-text-color-primary, #303133);
}
*, *::before, *::after {
box-sizing: border-box;
}
a {
color: var(--el-color-primary);
text-decoration: none;
}
a:hover {
color: var(--el-color-primary-light-3);
}
@@ -0,0 +1,2 @@
/* Element Plus 主题:不依赖 Metronic 插件脚本,保留占位以兼容模板引用 */
;
File diff suppressed because one or more lines are too long