main.scss 956 B

123456789101112131415161718192021222324252627282930313233
  1. @import "./base/fonts";
  2. @import "./base/colors";
  3. // 全局样式管理
  4. @import './reset.scss';
  5. @import './cus-client/cus-elementui.scss';
  6. @import './cus-client/cus-client-page.scss';
  7. @import "../../node_modules/swiper/swiper.min.css";
  8. @font-face {
  9. font-family: 'Din'; //重命名字体名
  10. src: url('./font/Din.TTF'); //引入字体
  11. font-weight: normal;font-style: normal;
  12. }
  13. @font-face {
  14. font-family: 'MiSans-Regular'; //重命名字体名
  15. src: url('./font/MiSans-Regular.ttf');//引入字体
  16. font-weight: normal;font-style: normal;
  17. }
  18. @font-face {
  19. font-family: 'MiSans-Semibold'; //重命名字体名
  20. src: url('./font/MiSans-Semibold.ttf'); //引入字体
  21. font-weight: normal;font-style: normal;
  22. }
  23. body {
  24. font-family: "Helvetica Neue", Helvetica, Arial, "微软雅黑", sans-serif;
  25. -webkit-font-smoothing: antialiased;
  26. -moz-osx-font-smoothing: grayscale;
  27. color: #2C3E50;
  28. }
  29. @include setClientPage();//网站页面样式