30 lines
701 B
CSS
30 lines
701 B
CSS
/**
|
|
* 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);
|
|
}
|