| 123456789101112131415161718192021222324252627282930313233 |
-
- // 基础样式重置
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
-
- // 基础排版
- body {
- font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
- line-height: 1.6;
- }
-
- // 工具类
- .flex-center {
- display: flex;
- justify-content: center;
- align-items: center;
- }
-
- .text-ellipsis {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
-
- // global
- @import "./global.scss";
- // color-ui
- @import "@/static/scss/colorui.css";
- // iconfont
- @import "@/static/font/iconfont.css";
|