style.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. :root {
  2. font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  3. color-scheme: light dark;
  4. font-synthesis: none;
  5. text-rendering: optimizeLegibility;
  6. -webkit-font-smoothing: antialiased;
  7. -moz-osx-font-smoothing: grayscale;
  8. -webkit-text-size-adjust: 100%;
  9. }
  10. * {
  11. margin: 0;
  12. padding: 0;
  13. box-sizing: border-box;
  14. }
  15. html,
  16. body,
  17. #app {
  18. height: 100%;
  19. width: 100%;
  20. }
  21. html {
  22. font-size: 16px; /*设置html字体大小为16px*/
  23. }
  24. body {
  25. line-height: 1.5em;
  26. font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif !important;
  27. line-height: 25px;
  28. letter-spacing: 1px;
  29. font-size: 14px;
  30. // font-size: 1rem;
  31. color: #4e4e4e;
  32. }
  33. .m-0 {
  34. margin: 0 !important;
  35. }
  36. .m-b-6 {
  37. margin-bottom: 24px !important;
  38. }
  39. .margin-left-0 {
  40. margin-left: 0 !important;
  41. }
  42. .margin-left-3 {
  43. margin-left: 0.75rem;
  44. }
  45. .margin-right-0 {
  46. margin-right: 0 !important;
  47. }
  48. .margin-top-0 {
  49. margin-top: 0;
  50. }
  51. .margin-bottom-0 {
  52. margin-bottom: 0;
  53. }
  54. .p-0 {
  55. margin: 0 !important;
  56. }
  57. .padding-left-0 {
  58. padding-left: 0 !important;
  59. }
  60. .padding-left-3 {
  61. padding-left: 12px !important;
  62. }
  63. .padding-right-0 {
  64. padding-right: 0 !important;
  65. }
  66. .padding-top-0 {
  67. padding-top: 0 !important;
  68. }
  69. .padding-bottom-0 {
  70. padding-bottom: 0 !important;
  71. }
  72. .w-100 {
  73. width: 100%;
  74. }
  75. .h-100 {
  76. height: 100%;
  77. }
  78. .m-b-3 {
  79. margin-bottom: 0.75rem;
  80. }
  81. .m-b-5 {
  82. margin-bottom: 1.25rem;
  83. }
  84. .f-1 {
  85. flex: 1;
  86. }
  87. .d-flex {
  88. display: flex !important;
  89. }
  90. ::-webkit-scrollbar {
  91. width: 3px;
  92. height: 3px;
  93. }
  94. ::-webkit-scrollbar-track {
  95. width: 3px;
  96. background-color: #f9f9f9;
  97. }
  98. ::-webkit-scrollbar-thumb {
  99. background-color: #999;
  100. }
  101. .picker-date {
  102. .el-date-picker__header {
  103. display: none;
  104. span:nth-child(2) {
  105. display: none;
  106. }
  107. button:nth-child(1) {
  108. display: none;
  109. }
  110. button:nth-child(5) {
  111. display: none;
  112. }
  113. }
  114. }
  115. .my-date-picker {
  116. // width: 100% !important;
  117. .el-input__wrapper {
  118. width: 100%;
  119. }
  120. }
  121. @media only screen and (max-width: 600px) {
  122. body {
  123. font-size: 14px;
  124. }
  125. }
  126. @media only screen and (min-width: 600px) and (max-width: 1200px) {
  127. body {
  128. font-size: 16px;
  129. }
  130. }
  131. @import '@/assets/iconfont.css';