common.scss 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. .qzy-card {
  2. padding: 0upx 0upx;
  3. min-height: 88upx;
  4. border-radius: 16upx;
  5. background-color: rgba(255, 255, 255, 1);
  6. }
  7. .text-theme {
  8. color: #405eff;
  9. }
  10. .text-22 {
  11. font-size: 44upx;
  12. }
  13. .text-20 {
  14. font-size: 40upx;
  15. }
  16. .text-18 {
  17. font-size: 36upx;
  18. }
  19. .text-17 {
  20. font-size: 34upx;
  21. }
  22. .text-16 {
  23. font-size: 32upx;
  24. }
  25. .text-15 {
  26. font-size: 30upx;
  27. }
  28. .text-14 {
  29. font-size: 28upx;
  30. }
  31. .text-13 {
  32. font-size: 26upx;
  33. }
  34. .text-12 {
  35. font-size: 24upx;
  36. }
  37. .text-10 {
  38. font-size: 20upx;
  39. }
  40. .color-red {
  41. color: #ff6062;
  42. }
  43. .color-green {
  44. color: #00cda3;
  45. }
  46. .color-blue {
  47. color: #1eaeff;
  48. }
  49. .btn-blue {
  50. background: #407bfe;
  51. color: #fff;
  52. }
  53. .bg-white {
  54. background: #fff;
  55. }
  56. .text-500 {
  57. font-weight: 500;
  58. }
  59. .text-600 {
  60. font-weight: 600;
  61. }
  62. .text-bold {
  63. font-weight: bold;
  64. }
  65. .cursor-pointer {
  66. cursor: pointer;
  67. }
  68. .cursor-not-allow {
  69. cursor: not-allowed;
  70. }
  71. .qzy-flex {
  72. display: flex;
  73. }
  74. .qzy-row {
  75. flex-direction: row;
  76. }
  77. .qzy-column {
  78. flex-direction: column;
  79. }
  80. .qzy-flex-wrap {
  81. flex-wrap: wrap;
  82. }
  83. .qzy-space-between {
  84. display: flex;
  85. flex-direction: row;
  86. justify-content: space-between;
  87. }
  88. .qzy-space-between-center {
  89. display: flex;
  90. flex-direction: row;
  91. justify-content: space-between;
  92. align-items: center;
  93. }
  94. .qzy-space-between-center-column {
  95. display: flex;
  96. flex-direction: column;
  97. justify-content: center;
  98. align-items: center;
  99. }
  100. .qzy-flex-start {
  101. display: flex;
  102. flex-direction: row;
  103. justify-content: flex-start;
  104. }
  105. .qzy-flex-end {
  106. justify-content: flex-end;
  107. }
  108. .qzy-space-around {
  109. justify-content: space-around;
  110. }
  111. .qzy-flex-center {
  112. justify-content: center;
  113. }
  114. .qzy-align-items-center {
  115. align-items: center;
  116. }
  117. .qzy-center {
  118. display: flex;
  119. flex-direction: row;
  120. align-items: center;
  121. }
  122. .qzy-align-items-flex-start {
  123. align-items: flex-start;
  124. }
  125. .margin-bottom-10 {
  126. margin-bottom: 10px;
  127. }
  128. .margin-top-10 {
  129. margin-top: 10px;
  130. }
  131. .margin-bottom-15 {
  132. margin-bottom: 15px;
  133. }
  134. .margin-left-10 {
  135. margin-left: 10px;
  136. }
  137. .margin-left-16 {
  138. margin-left: 16px;
  139. }
  140. .margin-left-20 {
  141. margin-left: 20px;
  142. }
  143. .margin-right-10 {
  144. margin-right: 10px;
  145. }
  146. .margin-right-20 {
  147. margin-right: 20px;
  148. }
  149. .color-666 {
  150. color: #666;
  151. }
  152. .color-999 {
  153. color: #999 !important;
  154. }
  155. .color-333 {
  156. color: #333 !important;
  157. }
  158. .tag-999 {
  159. background-color: rgba(202, 202, 202, 0.2) !important;
  160. color: #999 !important;
  161. }
  162. .color-red {
  163. color: #ff2f2f;
  164. }
  165. .color-blue {
  166. color: #1989fa;
  167. }
  168. .color-yellow {
  169. color: #fdaf27;
  170. }
  171. .tag-red {
  172. background-color: rgba(234, 76, 55, 0.2) !important;
  173. color: #ea4c37 !important;
  174. }
  175. .ellipsis-nowrap {
  176. overflow: hidden;
  177. text-overflow: ellipsis;
  178. white-space: nowrap;
  179. }
  180. .ellipsis_2 {
  181. display: -webkit-box;
  182. overflow: hidden;
  183. text-overflow: ellipsis;
  184. word-break: break-all;
  185. -webkit-box-orient: vertical;
  186. -webkit-line-clamp: 2;
  187. }
  188. .ellipsis_3 {
  189. display: -webkit-box;
  190. overflow: hidden;
  191. text-overflow: ellipsis;
  192. word-break: break-all;
  193. -webkit-box-orient: vertical;
  194. -webkit-line-clamp: 3;
  195. }