index.css 830 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. * {
  2. box-sizing: border-box;
  3. user-select: none;
  4. }
  5. :root {
  6. font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  7. line-height: 1.5;
  8. font-weight: 400;
  9. color-scheme: light dark;
  10. font-synthesis: none;
  11. text-rendering: optimizeLegibility;
  12. -webkit-font-smoothing: antialiased;
  13. -moz-osx-font-smoothing: grayscale;
  14. -webkit-text-size-adjust: 100%;
  15. }
  16. body {
  17. margin: 0;
  18. display: flex;
  19. place-items: center;
  20. min-width: 100%;
  21. min-height: 100vh;
  22. /* 禁止触发默认的手势操作,微信浏览器下拉动作 */
  23. touch-action: none;
  24. overflow: hidden;
  25. }
  26. .loadingPop {
  27. position: fixed;
  28. top: 0;
  29. left: 0;
  30. right: 0;
  31. bottom: 0;
  32. width: 100%;
  33. height: 100%;
  34. z-index: 5000;
  35. display: flex;
  36. justify-content: center;
  37. align-items: center;
  38. background-color: rgba(0, 0, 0, .4);
  39. }