app.scss 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  1. @import '~@/uni.scss';
  2. uni-toast {
  3. z-index: 10002;
  4. }
  5. .uni-mask {
  6. z-index: 10000;
  7. }
  8. uni-modal, uni-modal .uni-modal {
  9. z-index: 10001;
  10. }
  11. .uni-picker-container .uni-picker {
  12. z-index: 10002;
  13. }
  14. .bg-base {
  15. background-color: $bg-color;
  16. }
  17. .bg-white {
  18. background-color: #ffffff;
  19. }
  20. .bg-transparent {
  21. background-color: transparent !important;
  22. }
  23. .bg-primary {
  24. background-color: $color-primary;
  25. }
  26. .bg-warning {
  27. background-color: $color-warning;
  28. }
  29. .d-flex {
  30. display: flex;
  31. }
  32. .d-none {
  33. display: none !important;
  34. }
  35. .invisible {
  36. visibility: hidden !important;
  37. }
  38. .d-inline {
  39. display: inline !important;
  40. }
  41. .d-inline-block {
  42. display: inline-block !important;
  43. }
  44. .d-block {
  45. display: block !important;
  46. }
  47. .flex-column {
  48. -ms-flex-direction: column !important;
  49. flex-direction: column !important;
  50. }
  51. .justify-content-start {
  52. justify-content: flex-start;
  53. }
  54. .justify-content-end {
  55. justify-content: flex-end;
  56. }
  57. .justify-content-between {
  58. justify-content: space-between;
  59. }
  60. .just-content-center {
  61. justify-content: center;
  62. }
  63. .justify-content-evenly {
  64. justify-content: space-evenly !important;
  65. }
  66. .just-content-around {
  67. justify-content: space-around;
  68. }
  69. .align-items-start {
  70. align-items: flex-start;
  71. }
  72. .align-items-end {
  73. align-items: flex-end;
  74. }
  75. .align-items-center {
  76. align-items: center;
  77. }
  78. .align-items-between {
  79. align-items: space-between;
  80. }
  81. .align-items-around {
  82. align-items: space-around;
  83. }
  84. .align-items-stretch {
  85. align-items: stretch;
  86. }
  87. .align-items-baseline {
  88. -ms-flex-align: baseline !important;
  89. align-items: baseline !important;
  90. }
  91. .flex-fill {
  92. -ms-flex: 1 1 auto !important;
  93. flex: 1 1 auto !important;
  94. }
  95. .flex-wrap {
  96. -ms-flex-wrap: wrap !important;
  97. flex-wrap: wrap !important;
  98. }
  99. .flex-nowrap {
  100. -ms-flex-wrap: nowrap !important;
  101. flex-wrap: nowrap !important;
  102. }
  103. .flex-shrink-0 {
  104. -ms-flex-negative: 0 !important;
  105. flex-shrink: 0 !important;
  106. }
  107. .font-size-base {
  108. font-size: 28rpx;
  109. }
  110. .font-size-sm {
  111. font-size: 24rpx;
  112. }
  113. .font-size-medium {
  114. font-size: 26rpx;
  115. }
  116. .font-size-lg {
  117. font-size: 32rpx;
  118. }
  119. .font-size-extra-lg {
  120. font-size: 40rpx;
  121. }
  122. .text-color-base {
  123. color: $text-color-base;
  124. }
  125. .text-color-assist {
  126. color: $text-color-assist;
  127. }
  128. .text-color-primary {
  129. color: $color-primary;
  130. }
  131. .text-color-danger {
  132. color: $color-error;
  133. }
  134. .text-color-white {
  135. color: #ffffff;
  136. }
  137. .text-color-warning {
  138. color: $color-warning;
  139. }
  140. .text-truncate {
  141. overflow: hidden;
  142. text-overflow: ellipsis;
  143. white-space: nowrap;
  144. }
  145. .font-weight-bold {
  146. font-weight: 700 !important;
  147. }
  148. .font-weight-light {
  149. font-weight: 300 !important;
  150. }
  151. .font-weight-lighter {
  152. font-weight: lighter !important;
  153. }
  154. .font-weight-normal {
  155. font-weight: 400 !important;
  156. }
  157. .overflow-auto {
  158. overflow: auto !important;
  159. }
  160. .overflow-hidden {
  161. overflow: hidden !important;
  162. }
  163. .position-relative {
  164. position: relative !important;
  165. }
  166. .position-absolute {
  167. position: absolute !important;
  168. }
  169. .position-fixed {
  170. position: fixed !important;
  171. }
  172. .fixed-top {
  173. position: fixed;
  174. top: 0;
  175. right: 0;
  176. left: 0;
  177. z-index: 1030;
  178. }
  179. .fixed-bottom {
  180. position: fixed;
  181. right: 0;
  182. bottom: 0;
  183. left: 0;
  184. z-index: 1030;
  185. }
  186. .line-height-100 {
  187. line-height: 100%;
  188. }
  189. .line-height-2 {
  190. line-height: 2rem !important;
  191. }
  192. .line-height-50 {
  193. line-height: 50rem !important;
  194. }
  195. .w-25 {
  196. width: 25% !important;
  197. }
  198. .w-50 {
  199. width: 50% !important;
  200. }
  201. .w-75 {
  202. width: 75% !important;
  203. }
  204. .w-80 {
  205. width: 80% !important;
  206. }
  207. .w-90 {
  208. width: 90% !important;
  209. }
  210. .w-100 {
  211. width: 100% !important;
  212. }
  213. .h-100 {
  214. height: 100% !important;
  215. }
  216. .h-auto {
  217. height: auto !important;
  218. }
  219. .text-left {
  220. text-align: left !important;
  221. }
  222. .text-right {
  223. text-align: right !important;
  224. }
  225. .text-center {
  226. text-align: center !important;
  227. }
  228. .border-box {
  229. box-sizing: border-box;
  230. }
  231. .rounded-circle {
  232. border-radius: 50% !important;
  233. }
  234. .rounded-pill {
  235. border-radius: 50rem !important;
  236. }
  237. .border-radius-base {
  238. border-radius: $border-radius-base;
  239. }
  240. .pre-line {
  241. white-space: pre-line;
  242. }
  243. .align-top {
  244. vertical-align: top !important;
  245. }
  246. .align-middle {
  247. vertical-align: middle !important;
  248. }
  249. .align-bottom {
  250. vertical-align: bottom !important;
  251. }
  252. .align-text-bottom {
  253. vertical-align: text-bottom !important;
  254. }
  255. .align-text-top {
  256. vertical-align: text-top !important;
  257. }
  258. .w-60 {
  259. width: 60%;
  260. }
  261. .w-40 {
  262. width: 40%;
  263. }
  264. .mb-10 {
  265. margin-bottom: 10rpx;
  266. }
  267. .mb-20 {
  268. margin-bottom: 20rpx;
  269. }
  270. .mb-30 {
  271. margin-bottom: 30rpx;
  272. }
  273. .mb-40 {
  274. margin-bottom: 40rpx;
  275. }
  276. .mb-50 {
  277. margin-bottom: 50rpx;
  278. }
  279. .mt-30 {
  280. margin-top: 30rpx;
  281. }
  282. .mt-40 {
  283. margin-top: 40rpx;
  284. }
  285. .ml-10 {
  286. margin-left: 10rpx;
  287. }
  288. .ml-20 {
  289. margin-left: 20rpx;
  290. }
  291. .ml-30 {
  292. margin-left: 30rpx;
  293. }
  294. .mr-10 {
  295. margin-right: 10rpx;
  296. }
  297. .mr-20 {
  298. margin-right: 20rpx;
  299. }
  300. .mr-30 {
  301. margin-right: 30rpx;
  302. }
  303. .mr-40 {
  304. margin-right: 40rpx;
  305. }
  306. .pl-20 {
  307. padding-left: 20rpx;
  308. }
  309. .pl-30 {
  310. padding-left: 30rpx;
  311. }
  312. .pr-20 {
  313. padding-right: 20rpx;
  314. }
  315. .p-30 {
  316. padding: 30rpx;
  317. }
  318. .p-10 {
  319. padding: 10rpx;
  320. }