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.

283 lines
4.6 KiB

5 months ago
5 months ago
5 months ago
5 months ago
  1. :root {
  2. --el-font-size-base: 50px;
  3. --el-button-size: 80px;
  4. --el-color-primary: #26509C;
  5. //--el-button-active-bg-color: linear-gradient(90deg, #0657C0 24%, #096AE0 101%);
  6. //--text-color-primary: #17213c;
  7. //--el-color-success: rgba(88, 162, 95, 1);
  8. //--text-color-info: #838b99;
  9. //--el-input-border: #dae0f2;
  10. //--el-font-weight-primary: 400;
  11. //--color-red: #f56c6c;
  12. //--color-green: #67c23a;
  13. //--color-yellow: #e6a23c;
  14. //--color-blue: --el-color-primary;
  15. --el-font-family: 'PingFangSC-Regular', 'PingFang SC', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
  16. }
  17. .el-input {
  18. height: 80px;
  19. background: #E8ECF7;
  20. .el-input__wrapper {
  21. background: #E8ECF7;
  22. box-shadow: 0 0 0 1px rgba(0,0,0,0.01) inset;
  23. .el-input__inner {
  24. height: calc(100% - 2px);
  25. }
  26. }
  27. }
  28. .el-select {
  29. width: 400px;
  30. }
  31. .el-select__input {
  32. height: 80px;
  33. }
  34. .el-select__wrapper {
  35. min-height: 80px;
  36. background: #E8ECF7;
  37. box-shadow: 0 0 0 1px rgba(0,0,0,0.01) inset;
  38. font-size: 40px;
  39. line-height:40px;
  40. }
  41. .el-select__placeholder {
  42. color: #0349A8;
  43. font-weight: 500;
  44. }
  45. .el-select-dropdown__item {
  46. height: 80px;
  47. line-height: 40px;
  48. padding: 20px;
  49. font-size: 40px;
  50. }
  51. .el-select-dropdown__empty {
  52. font-size: 40px;
  53. line-height: 40px;
  54. padding: 20px;
  55. }
  56. .el-select__selected-item {
  57. line-height: 60px;
  58. }
  59. .el-form-item {
  60. align-items: center;
  61. margin-bottom: 40px;
  62. .el-form-item__label {
  63. color: #0349A8;
  64. font-size: 40px;
  65. font-weight: 500;
  66. .el-form-item__content {
  67. max-width: 100%;
  68. }
  69. }
  70. }
  71. .el-checkbox {
  72. width: 60px;
  73. height: 60px;
  74. }
  75. .el-checkbox__input {
  76. border: 1px solid #ccc;
  77. }
  78. .el-checkbox__inner {
  79. border: none;
  80. width: 50px;
  81. height: 50px;
  82. &:after {
  83. left: 8px;
  84. top: 2px;
  85. width: 5px;
  86. height: 12px;
  87. }
  88. }
  89. .el-icon, .el-icon svg {
  90. width: 50px;
  91. height: 50px;
  92. }
  93. .el-dialog {
  94. margin: 0 auto !important;
  95. top: 50%;
  96. transform: translateY(-50%);
  97. }
  98. .el-dialog__header {
  99. padding-bottom: 20px;
  100. border-bottom: 1px solid #ddd;
  101. }
  102. .el-dialog__footer {
  103. border-top: 1px solid #ddd;
  104. }
  105. .el-dialog__title {
  106. font-size: 45px;
  107. }
  108. .el-dialog__body {
  109. max-height: 60vh;
  110. min-height: 20vh;
  111. overflow: auto;
  112. padding: 20px;
  113. }
  114. .el-table {
  115. width: 100%;
  116. box-shadow: 0 0 12px rgba(0,0,0,0.1);
  117. }
  118. .el-table th.el-table__cell {
  119. background: #ECF0F7;
  120. .cell {
  121. font-size: 30px;
  122. color: rgba(0, 0, 0, 0.85);
  123. font-weight: 400;
  124. }
  125. }
  126. .el-table .el-table__header .cell {
  127. height: 100px !important;
  128. line-height: 100px;
  129. font-size: 40px;
  130. }
  131. .el-table__row .cell{
  132. height: 100px !important;
  133. line-height: 100px;
  134. font-size: 30px;
  135. color: rgba(0, 0, 0, 0.65);
  136. font-weight: 400;
  137. }
  138. .el-table__row .el-table__cell {
  139. background: #ffffff;
  140. }
  141. .scope-box {
  142. width: 100%;
  143. height: 100%;
  144. display: flex;
  145. align-items: center;
  146. }
  147. .cell {
  148. .el-checkbox__input {
  149. border: 1px solid #ccc;
  150. }
  151. .el-checkbox__inner {
  152. border: none;
  153. width: 30px;
  154. height: 30px;
  155. &:after {
  156. left: 5px;
  157. top: 0;
  158. width: 3px;
  159. height: 10px;
  160. }
  161. }
  162. }
  163. .el-pagination {
  164. .el-pager {
  165. li {
  166. width: 50px;
  167. height: 50px;
  168. line-height: 50px;
  169. font-size: 25px;
  170. margin: 0 10px;
  171. }
  172. }
  173. .el-pagination__total {
  174. font-size: 30px;
  175. }
  176. }
  177. .el-switch {
  178. height: 40px;
  179. .el-switch__core {
  180. height: 40px;
  181. min-width: 80px;
  182. border-radius:20px;
  183. .el-switch__action {
  184. width: 30px;
  185. height: 30px;
  186. }
  187. }
  188. }
  189. .el-switch.is-checked .el-switch__core .el-switch__action {
  190. left: calc(100% - 30px);
  191. }
  192. .el-tabs {
  193. margin-bottom: 40px;
  194. }
  195. .el-tabs__header {
  196. height: 50px !important;
  197. }
  198. .el-tabs__item {
  199. height: 80px !important;
  200. font-size: 35px;
  201. }
  202. .el-drawer__header {
  203. border-bottom: 1px solid #ddd;
  204. padding: 20px;
  205. .el-drawer__title {
  206. font-size: 30px;
  207. }
  208. }
  209. .el-drawer__body {
  210. overflow: auto;
  211. }
  212. .el-message__content {
  213. font-size: 30px;
  214. }
  215. .el-message-box {
  216. max-width: 30vw;
  217. padding: 30px;
  218. .el-message-box__title {
  219. font-size: 40px;
  220. }
  221. .el-message-box__container {
  222. height: 300px;
  223. .el-message-box__message p {
  224. font-size: 40px;
  225. line-height: 60px;
  226. color: var(--el-color-primary);
  227. }
  228. }
  229. .el-message-box__btns {
  230. .el-button {
  231. height: 70px;
  232. width: 180px;
  233. font-size: 40px;
  234. border-radius: 10px;
  235. }
  236. }
  237. }
  238. .el-timeline {
  239. font-size: 30px;
  240. padding-left: 10px;
  241. }
  242. .el-timeline-item__content {
  243. color: var(--el-color-primary);
  244. font-weight: 500;
  245. }
  246. .el-timeline-item__timestamp {
  247. font-size: 28px;
  248. white-space: normal;
  249. word-break: break-all;
  250. }
  251. .el-tag {
  252. padding:20px;
  253. font-size: 25px;
  254. }
  255. .el-radio__inner {
  256. width: 30px;
  257. height: 30px;
  258. &:after {
  259. width: 5px;
  260. height: 5px;
  261. }
  262. }