main.wxss 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. /*每个页面公共css */
  28. .u-line-1 {
  29. display: -webkit-box !important;
  30. overflow: hidden;
  31. text-overflow: ellipsis;
  32. word-break: break-all;
  33. -webkit-line-clamp: 1;
  34. -webkit-box-orient: vertical !important;
  35. }
  36. .u-line-2 {
  37. display: -webkit-box !important;
  38. overflow: hidden;
  39. text-overflow: ellipsis;
  40. word-break: break-all;
  41. -webkit-line-clamp: 2;
  42. -webkit-box-orient: vertical !important;
  43. }
  44. .u-line-3 {
  45. display: -webkit-box !important;
  46. overflow: hidden;
  47. text-overflow: ellipsis;
  48. word-break: break-all;
  49. -webkit-line-clamp: 3;
  50. -webkit-box-orient: vertical !important;
  51. }
  52. .u-line-4 {
  53. display: -webkit-box !important;
  54. overflow: hidden;
  55. text-overflow: ellipsis;
  56. word-break: break-all;
  57. -webkit-line-clamp: 4;
  58. -webkit-box-orient: vertical !important;
  59. }
  60. .u-line-5 {
  61. display: -webkit-box !important;
  62. overflow: hidden;
  63. text-overflow: ellipsis;
  64. word-break: break-all;
  65. -webkit-line-clamp: 5;
  66. -webkit-box-orient: vertical !important;
  67. }
  68. .u-border {
  69. border-width: 0.5px !important;
  70. border-color: #dadbde !important;
  71. border-style: solid;
  72. }
  73. .u-border-top {
  74. border-top-width: 0.5px !important;
  75. border-color: #dadbde !important;
  76. border-top-style: solid;
  77. }
  78. .u-border-left {
  79. border-left-width: 0.5px !important;
  80. border-color: #dadbde !important;
  81. border-left-style: solid;
  82. }
  83. .u-border-right {
  84. border-right-width: 0.5px !important;
  85. border-color: #dadbde !important;
  86. border-right-style: solid;
  87. }
  88. .u-border-bottom {
  89. border-bottom-width: 0.5px !important;
  90. border-color: #dadbde !important;
  91. border-bottom-style: solid;
  92. }
  93. .u-border-top-bottom {
  94. border-top-width: 0.5px !important;
  95. border-bottom-width: 0.5px !important;
  96. border-color: #dadbde !important;
  97. border-top-style: solid;
  98. border-bottom-style: solid;
  99. }
  100. .u-reset-button {
  101. padding: 0;
  102. background-color: transparent;
  103. font-size: inherit;
  104. line-height: inherit;
  105. color: inherit;
  106. }
  107. .u-reset-button::after {
  108. border: none;
  109. }
  110. .u-hover-class {
  111. opacity: 0.7;
  112. }
  113. .u-flex {
  114. display: flex;
  115. flex-direction: row;
  116. align-items: center;
  117. }
  118. .u-flex-wrap {
  119. flex-wrap: wrap;
  120. }
  121. .u-flex-nowrap {
  122. flex-wrap: nowrap;
  123. }
  124. .u-col-center {
  125. align-items: center;
  126. }
  127. .u-col-top {
  128. align-items: flex-start;
  129. }
  130. .u-col-bottom {
  131. align-items: flex-end;
  132. }
  133. .u-row-center {
  134. justify-content: center;
  135. }
  136. .u-row-left {
  137. justify-content: flex-start;
  138. }
  139. .u-row-right {
  140. justify-content: flex-end;
  141. }
  142. .u-row-between {
  143. justify-content: space-between;
  144. }
  145. .u-row-around {
  146. justify-content: space-around;
  147. }
  148. .u-primary-light {
  149. color: #ecf5ff;
  150. }
  151. .u-warning-light {
  152. color: #fdf6ec;
  153. }
  154. .u-success-light {
  155. color: #f5fff0;
  156. }
  157. .u-error-light {
  158. color: #fef0f0;
  159. }
  160. .u-info-light {
  161. color: #f4f4f5;
  162. }
  163. .u-primary-light-bg {
  164. background-color: #ecf5ff;
  165. }
  166. .u-warning-light-bg {
  167. background-color: #fdf6ec;
  168. }
  169. .u-success-light-bg {
  170. background-color: #f5fff0;
  171. }
  172. .u-error-light-bg {
  173. background-color: #fef0f0;
  174. }
  175. .u-info-light-bg {
  176. background-color: #f4f4f5;
  177. }
  178. .u-primary-dark {
  179. color: #398ade;
  180. }
  181. .u-warning-dark {
  182. color: #f1a532;
  183. }
  184. .u-success-dark {
  185. color: #53c21d;
  186. }
  187. .u-error-dark {
  188. color: #e45656;
  189. }
  190. .u-info-dark {
  191. color: #767a82;
  192. }
  193. .u-primary-dark-bg {
  194. background-color: #398ade;
  195. }
  196. .u-warning-dark-bg {
  197. background-color: #f1a532;
  198. }
  199. .u-success-dark-bg {
  200. background-color: #53c21d;
  201. }
  202. .u-error-dark-bg {
  203. background-color: #e45656;
  204. }
  205. .u-info-dark-bg {
  206. background-color: #767a82;
  207. }
  208. .u-primary-disabled {
  209. color: #9acafc;
  210. }
  211. .u-warning-disabled {
  212. color: #f9d39b;
  213. }
  214. .u-success-disabled {
  215. color: #a9e08f;
  216. }
  217. .u-error-disabled {
  218. color: #f7b2b2;
  219. }
  220. .u-info-disabled {
  221. color: #c4c6c9;
  222. }
  223. .u-primary {
  224. color: #3c9cff;
  225. }
  226. .u-warning {
  227. color: #f9ae3d;
  228. }
  229. .u-success {
  230. color: #5ac725;
  231. }
  232. .u-error {
  233. color: #f56c6c;
  234. }
  235. .u-info {
  236. color: #909399;
  237. }
  238. .u-primary-bg {
  239. background-color: #3c9cff;
  240. }
  241. .u-warning-bg {
  242. background-color: #f9ae3d;
  243. }
  244. .u-success-bg {
  245. background-color: #5ac725;
  246. }
  247. .u-error-bg {
  248. background-color: #f56c6c;
  249. }
  250. .u-info-bg {
  251. background-color: #909399;
  252. }
  253. .u-main-color {
  254. color: #303133;
  255. }
  256. .u-content-color {
  257. color: #606266;
  258. }
  259. .u-tips-color {
  260. color: #909193;
  261. }
  262. .u-light-color {
  263. color: #c0c4cc;
  264. }
  265. .u-safe-area-inset-top {
  266. padding-top: 0;
  267. padding-top: constant(safe-area-inset-top);
  268. padding-top: env(safe-area-inset-top);
  269. }
  270. .u-safe-area-inset-right {
  271. padding-right: 0;
  272. padding-right: constant(safe-area-inset-right);
  273. padding-right: env(safe-area-inset-right);
  274. }
  275. .u-safe-area-inset-bottom {
  276. padding-bottom: 0;
  277. padding-bottom: constant(safe-area-inset-bottom);
  278. padding-bottom: env(safe-area-inset-bottom);
  279. }
  280. .u-safe-area-inset-left {
  281. padding-left: 0;
  282. padding-left: constant(safe-area-inset-left);
  283. padding-left: env(safe-area-inset-left);
  284. }
  285. ::-webkit-scrollbar {
  286. display: none;
  287. width: 0 !important;
  288. height: 0 !important;
  289. -webkit-appearance: none;
  290. background: transparent;
  291. }