石墨仪设备 前端仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
678 B

6 months ago
6 months ago
6 months ago
6 months ago
  1. *,
  2. *::before,
  3. *::after {
  4. box-sizing: border-box;
  5. margin: 0;
  6. padding: 0;
  7. font-weight: normal;
  8. }
  9. body {
  10. min-height: 100vh;
  11. font-family:
  12. Inter,
  13. -apple-system,
  14. BlinkMacSystemFont,
  15. 'Segoe UI',
  16. Roboto,
  17. Oxygen,
  18. Ubuntu,
  19. Cantarell,
  20. 'Fira Sans',
  21. 'Droid Sans',
  22. 'Helvetica Neue',
  23. sans-serif;
  24. text-rendering: optimizeLegibility;
  25. -webkit-font-smoothing: antialiased;
  26. -moz-osx-font-smoothing: grayscale;
  27. user-select: none;
  28. }
  29. :root {
  30. font-size: 32px; /* 设计稿是双倍设计的 */
  31. --primaryColor: #1989FA;
  32. --headerHeight: 4.375rem;
  33. --footerHeight: 4.375rem;
  34. --menuAreaWidth: 11.875rem;
  35. --bgColor: #e9e9e9;
  36. }