index.scss 4.9 KB

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