123456789101112131415161718192021222324252627282930313233 |
- @import "./base/fonts";
- @import "./base/colors";
- // 全局样式管理
- @import './reset.scss';
- @import './cus-client/cus-elementui.scss';
- @import './cus-client/cus-client-page.scss';
- @import "../../node_modules/swiper/swiper.min.css";
- @font-face {
- font-family: 'Din'; //重命名字体名
- src: url('./font/Din.TTF'); //引入字体
- font-weight: normal;font-style: normal;
- }
- @font-face {
- font-family: 'MiSans-Regular'; //重命名字体名
- src: url('./font/MiSans-Regular.ttf');//引入字体
- font-weight: normal;font-style: normal;
- }
- @font-face {
- font-family: 'MiSans-Semibold'; //重命名字体名
- src: url('./font/MiSans-Semibold.ttf'); //引入字体
- font-weight: normal;font-style: normal;
- }
- body {
- font-family: "Helvetica Neue", Helvetica, Arial, "微软雅黑", sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- color: #2C3E50;
- }
- @include setClientPage();//网站页面样式
|