index.scss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. @use "./reset";
  2. @use "./transition";
  3. .app-container {
  4. padding: 10px;
  5. }
  6. .el-button-big {
  7. height: 80px !important;
  8. border-radius: 40px !important;
  9. font-size: $f24 !important;
  10. }
  11. .el-button-update {
  12. height: 80px !important;
  13. border-radius: 16px !important;
  14. font-size: $f24 !important;
  15. }
  16. .search-container {
  17. padding: 18px 0 0 10px;
  18. margin-bottom: 10px;
  19. background-color: var(--el-bg-color-overlay);
  20. border: 1px solid var(--el-border-color-light);
  21. border-radius: 4px;
  22. box-shadow: var(--el-box-shadow-light);
  23. }
  24. .table-container > .el-card__header {
  25. padding: calc(var(--el-card-padding) - 8px) var(--el-card-padding);
  26. }
  27. .link-type,
  28. .link-type:focus {
  29. color: #337ab7;
  30. cursor: pointer;
  31. &:hover {
  32. color: rgb(32 160 255);
  33. }
  34. }
  35. .mainContentBox {
  36. width: 100%;
  37. height: calc(100vh - 80px);
  38. padding: 0 24px 24px 24px;
  39. overflow: hidden;
  40. }
  41. .commonTitle {
  42. font-weight: 500;
  43. font-size: 38px;
  44. color: rgba(0, 0, 0, 0.9);
  45. line-height: 40px;
  46. text-align: left;
  47. margin-bottom: 20px;
  48. }
  49. .elColClasss {
  50. height: calc(100vh - 130px);
  51. }
  52. .drawerTitle {
  53. width: 100%;
  54. height: 38px;
  55. font-weight: 500;
  56. font-size: 38px;
  57. color: rgba(0, 0, 0, 0.9);
  58. text-align: center;
  59. }
  60. //steps 二级路由页面Scroll样式
  61. .stepsViewScroll {
  62. width: calc((100vw / 6 * 5) - 50px);
  63. margin-top: $p20;
  64. display: grid;
  65. gap: 20px;
  66. grid-template-columns: 1fr 1fr;
  67. }
  68. .stepsViewScrollH {
  69. width: calc((100vw / 6 * 5) - 50px);
  70. height: calc(100vh - 254px);
  71. }
  72. //search框样式
  73. .searchInput {
  74. height: 50px;
  75. border-radius: 76px;
  76. overflow: hidden;
  77. border: 1px solid #00000025;
  78. font-size: $f24;
  79. color: #00000080;
  80. .el-input {
  81. --el-input-focus-border: none;
  82. --el-input-hover-border: none;
  83. }
  84. .el-input__wrapper {
  85. box-shadow: none;
  86. box-sizing: border-box;
  87. }
  88. }
  89. //字体样式
  90. .titleText {
  91. font-size: 24px;
  92. font-weight: 500;
  93. font-weight: bold;
  94. }
  95. .describeText {
  96. font-size: 20px;
  97. color: #00000060;
  98. line-height: 25px;
  99. }
  100. //公共弹框样式
  101. .midPopUp {
  102. position: fixed;
  103. width: 100vw;
  104. height: 100vh;
  105. z-index: 2;
  106. background-color: #00000030;
  107. top: 0;
  108. left: 0;
  109. backdrop-filter: blur(5px);
  110. display: flex;
  111. justify-content: center;
  112. align-items: center;
  113. .container {
  114. width: 50vw;
  115. height: 80vh;
  116. background-color: #f1f3f5;
  117. border-radius: 16px;
  118. padding: 10px;
  119. display: flex;
  120. flex-direction: column;
  121. .headerTittle {
  122. width: 100%;
  123. height: 55px;
  124. text-align: center;
  125. line-height: 55px;
  126. font-size: 38px;
  127. font-weight: 500;
  128. }
  129. .describeText {
  130. width: 100%;
  131. height: 40px;
  132. text-align: center;
  133. line-height: 40px;
  134. font-size: 20px;
  135. color: #00000060;
  136. }
  137. .info {
  138. flex: 1;
  139. }
  140. }
  141. }
  142. // 弹框html模板
  143. // <div class="midPopUp">
  144. // <div class="container">
  145. // <div class="headerTittle">本次存入</div>
  146. // <div class="describeText">LX22112233221122</div>
  147. // <el-scrollbar>
  148. // </el-scrollbar>
  149. // </div>
  150. // </div>
  151. .rightFullPopUp {
  152. position: fixed;
  153. width: 100vw;
  154. height: 100vh;
  155. z-index: 2;
  156. background-color: #00000030;
  157. top: 0;
  158. left: 0;
  159. backdrop-filter: blur(5px);
  160. .container {
  161. width: 50vw;
  162. height: 100vh;
  163. background-color: #f1f3f5;
  164. border-radius: 16px;
  165. padding: 10px;
  166. display: flex;
  167. flex-direction: column;
  168. float: right;
  169. .headerTittle {
  170. width: 100%;
  171. height: 55px;
  172. text-align: center;
  173. line-height: 55px;
  174. font-size: 38px;
  175. font-weight: 500;
  176. }
  177. .describeText {
  178. width: 100%;
  179. height: 40px;
  180. text-align: center;
  181. line-height: 40px;
  182. font-size: 20px;
  183. color: #00000060;
  184. }
  185. .info {
  186. flex: 1;
  187. }
  188. }
  189. }
  190. // <div class="rightFullPopUp" >
  191. // <div class="container">
  192. // <div class="headerTittle">本次存入</div>
  193. // <div class="describeText">LX22112233221122</div>
  194. // <el-scrollbar />
  195. // </div>
  196. // </div>
  197. //drawer样式
  198. .container {
  199. width: 50vw;
  200. height: 100vh;
  201. background-color: #f1f3f5;
  202. border-radius: 16px;
  203. display: flex;
  204. flex-direction: column;
  205. padding-top: 20px;
  206. padding-left: 30px;
  207. padding-right: 20px;
  208. .headerTittle {
  209. width: 100%;
  210. height: 55px;
  211. text-align: center;
  212. line-height: 55px;
  213. font-size: 38px;
  214. font-weight: 500;
  215. }
  216. .describeText {
  217. width: 100%;
  218. height: 40px;
  219. text-align: center;
  220. line-height: 40px;
  221. font-size: 20px;
  222. color: #00000060;
  223. }
  224. .info {
  225. flex: 1;
  226. }
  227. }
  228. //全局表格样式
  229. //控制字体
  230. .el-table__cell {
  231. font-size: $p20;
  232. color: black;
  233. }