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.

279 lines
4.5 KiB

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__input {
  72. border: 1px solid #ccc;
  73. }
  74. .el-checkbox__inner {
  75. border: none;
  76. width: 50px;
  77. height: 50px;
  78. &:after {
  79. left: 8px;
  80. top: 2px;
  81. width: 5px;
  82. height: 12px;
  83. }
  84. }
  85. .el-icon, .el-icon svg {
  86. width: 50px;
  87. height: 50px;
  88. }
  89. .el-dialog {
  90. margin: 0 auto !important;
  91. top: 50%;
  92. transform: translateY(-50%);
  93. }
  94. .el-dialog__header {
  95. padding-bottom: 20px;
  96. border-bottom: 1px solid #ddd;
  97. }
  98. .el-dialog__footer {
  99. border-top: 1px solid #ddd;
  100. }
  101. .el-dialog__title {
  102. font-size: 45px;
  103. }
  104. .el-dialog__body {
  105. max-height: 60vh;
  106. min-height: 20vh;
  107. overflow: auto;
  108. padding: 20px;
  109. }
  110. .el-table {
  111. width: 100%;
  112. }
  113. .el-table th.el-table__cell {
  114. background: #ECF0F7;
  115. .cell {
  116. font-size: 30px;
  117. color: rgba(0, 0, 0, 0.85);
  118. font-weight: 400;
  119. }
  120. }
  121. .el-table .el-table__header .cell {
  122. height: 100px !important;
  123. line-height: 100px;
  124. font-size: 40px;
  125. }
  126. .el-table__row .cell{
  127. height: 100px !important;
  128. line-height: 100px;
  129. font-size: 30px;
  130. color: rgba(0, 0, 0, 0.65);
  131. font-weight: 400;
  132. }
  133. .el-table__row .el-table__cell {
  134. background: #ffffff;
  135. }
  136. .scope-box {
  137. width: 100%;
  138. height: 100%;
  139. display: flex;
  140. align-items: center;
  141. }
  142. .cell {
  143. .el-checkbox__input {
  144. border: 1px solid #ccc;
  145. }
  146. .el-checkbox__inner {
  147. border: none;
  148. width: 30px;
  149. height: 30px;
  150. &:after {
  151. left: 5px;
  152. top: 0;
  153. width: 3px;
  154. height: 10px;
  155. }
  156. }
  157. }
  158. .el-pagination {
  159. .el-pager {
  160. li {
  161. width: 50px;
  162. height: 50px;
  163. line-height: 50px;
  164. font-size: 25px;
  165. margin: 0 10px;
  166. }
  167. }
  168. .el-pagination__total {
  169. font-size: 30px;
  170. }
  171. }
  172. .el-switch {
  173. height: 40px;
  174. .el-switch__core {
  175. height: 40px;
  176. min-width: 80px;
  177. border-radius:20px;
  178. .el-switch__action {
  179. width: 30px;
  180. height: 30px;
  181. }
  182. }
  183. }
  184. .el-switch.is-checked .el-switch__core .el-switch__action {
  185. left: calc(100% - 30px);
  186. }
  187. .el-tabs {
  188. margin-bottom: 40px;
  189. }
  190. .el-tabs__header {
  191. height: 50px !important;
  192. }
  193. .el-tabs__item {
  194. height: 80px !important;
  195. font-size: 35px;
  196. }
  197. .el-drawer__header {
  198. border-bottom: 1px solid #ddd;
  199. padding: 20px;
  200. .el-drawer__title {
  201. font-size: 30px;
  202. }
  203. }
  204. .el-drawer__body {
  205. overflow: auto;
  206. }
  207. .el-message__content {
  208. font-size: 30px;
  209. }
  210. .el-message-box {
  211. max-width: 30vw;
  212. padding: 30px;
  213. .el-message-box__title {
  214. font-size: 40px;
  215. }
  216. .el-message-box__container {
  217. height: 300px;
  218. .el-message-box__message p {
  219. font-size: 40px;
  220. line-height: 60px;
  221. color: var(--el-color-primary);
  222. }
  223. }
  224. .el-message-box__btns {
  225. .el-button {
  226. height: 70px;
  227. width: 180px;
  228. font-size: 40px;
  229. border-radius: 10px;
  230. }
  231. }
  232. }
  233. .el-timeline {
  234. font-size: 30px;
  235. padding-left: 10px;
  236. }
  237. .el-timeline-item__content {
  238. color: var(--el-color-primary);
  239. font-weight: 500;
  240. }
  241. .el-timeline-item__timestamp {
  242. font-size: 28px;
  243. white-space: normal;
  244. word-break: break-all;
  245. }
  246. .el-tag {
  247. padding:20px;
  248. font-size: 25px;
  249. }
  250. .el-radio__inner {
  251. width: 30px;
  252. height: 30px;
  253. &:after {
  254. width: 5px;
  255. height: 5px;
  256. }
  257. }