/**
 * Element Plus 风格基础层：本地引入官方样式（element-plus@2.8.8 dist/index.css）并做 CMS 模板微调
 */
@import url("element-plus-index.css");

:root {
    --ep-header-height: 80px;
    --ep-container-max: 1320px;
}

html, body {
    margin: 0;
    min-height: 100%;
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    background-color: #eeeeee;
    color: var(--el-text-color-primary, #303133);
}

*, *::before, *::after {
    box-sizing: border-box;
}

a {
    color: #333;
    text-decoration: none;
}
a:hover {
    color: #E57E18;
}
