main.wxss 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  1. /*每个页面公共css */
  2. /* 引入公共基础类 */
  3. .u-relative,
  4. .u-rela {
  5. position: relative;
  6. }
  7. .u-absolute,
  8. .u-abso {
  9. position: absolute;
  10. }
  11. /* nvue不能用标签命名样式,不能放在微信组件中,否则微信开发工具会报警告,无法使用标签名当做选择器 */
  12. image {
  13. display: inline-block;
  14. }
  15. /* 在weex,也即nvue中,所有元素默认为border-box */
  16. view,
  17. text {
  18. box-sizing: border-box;
  19. }
  20. .u-font-xs {
  21. font-size: 22rpx;
  22. }
  23. .u-font-sm {
  24. font-size: 26rpx;
  25. }
  26. .u-font-md {
  27. font-size: 28rpx;
  28. }
  29. .u-font-lg {
  30. font-size: 30rpx;
  31. }
  32. .u-font-xl {
  33. font-size: 34rpx;
  34. }
  35. .u-flex {
  36. display: flex;
  37. flex-direction: row;
  38. align-items: center;
  39. }
  40. .u-flex-wrap {
  41. flex-wrap: wrap;
  42. }
  43. .u-flex-nowrap {
  44. flex-wrap: nowrap;
  45. }
  46. .u-col-center {
  47. align-items: center;
  48. }
  49. .u-col-top {
  50. align-items: flex-start;
  51. }
  52. .u-col-bottom {
  53. align-items: flex-end;
  54. }
  55. .u-row-center {
  56. justify-content: center;
  57. }
  58. .u-row-left {
  59. justify-content: flex-start;
  60. }
  61. .u-row-right {
  62. justify-content: flex-end;
  63. }
  64. .u-row-between {
  65. justify-content: space-between;
  66. }
  67. .u-row-around {
  68. justify-content: space-around;
  69. }
  70. .u-text-left {
  71. text-align: left;
  72. }
  73. .u-text-center {
  74. text-align: center;
  75. }
  76. .u-text-right {
  77. text-align: right;
  78. }
  79. .u-flex-col {
  80. display: flex;
  81. flex-direction: column;
  82. }
  83. /* 定义flex等分 */
  84. /* @for $i from 0 through 12 { */
  85. /* .u-flex-#{$i} { */
  86. /* flex: $i; */
  87. /* } */
  88. /* } */
  89. /* // 定义字体(px)单位,小于20都为px单位字体 */
  90. /* @for $i from 9 to 20 { */
  91. /* .u-font-#{$i} { */
  92. /* font-size: $i + px; */
  93. /* } */
  94. /* } */
  95. /* 定义字体(rpx)单位,大于或等于20的都为rpx单位字体 */
  96. /* @for $i from 20 through 40 { */
  97. /* .u-font-#{$i} { */
  98. /* font-size: $i + rpx; */
  99. /* } */
  100. /* } */
  101. /* 定义内外边距,历遍1-80 */
  102. /* @for $i from 0 through 80 { */
  103. /* // 只要双数和能被5除尽的数 */
  104. /* @if $i % 2 == 0 or $i % 5 == 0 { */
  105. /* // 得出:u-margin-30或者u-m-30 */
  106. /* .u-margin-#{$i}, .u-m-#{$i} { */
  107. /* margin: $i + rpx!important; */
  108. /* } */
  109. /* // 得出:u-padding-30或者u-p-30 */
  110. /* .u-padding-#{$i}, .u-p-#{$i} { */
  111. /* padding: $i + rpx!important; */
  112. /* } */
  113. /* @each $short, $long in l left, t top, r right, b bottom { */
  114. /* // 缩写版,结果如: u-m-l-30 */
  115. /* // 定义外边距 */
  116. /* .u-m-#{$short}-#{$i} { */
  117. /* margin-#{$long}: $i + rpx!important; */
  118. /* } */
  119. /* // 定义内边距 */
  120. /* .u-p-#{$short}-#{$i} { */
  121. /* padding-#{$long}: $i + rpx!important; */
  122. /* } */
  123. /* // 完整版,结果如:u-margin-left-30 */
  124. /* // 定义外边距 */
  125. /* .u-margin-#{$long}-#{$i} { */
  126. /* margin-#{$long}: $i + rpx!important; */
  127. /* } */
  128. /* // 定义内边距 */
  129. /* .u-padding-#{$long}-#{$i} { */
  130. /* padding-#{$long}: $i + rpx!important; */
  131. /* } */
  132. /* } */
  133. /* } */
  134. /* } */
  135. /* 重置nvue的默认关于flex的样式 */
  136. .u-reset-nvue {
  137. flex-direction: row;
  138. align-items: center;
  139. }
  140. .u-type-primary-light {
  141. color: $u-type-primary-light;
  142. }
  143. .u-type-warning-light {
  144. color: $u-type-warning-light;
  145. }
  146. .u-type-success-light {
  147. color: $u-type-success-light;
  148. }
  149. .u-type-error-light {
  150. color: $u-type-error-light;
  151. }
  152. .u-type-info-light {
  153. color: $u-type-info-light;
  154. }
  155. .u-type-primary-light-bg {
  156. background-color: $u-type-primary-light;
  157. }
  158. .u-type-warning-light-bg {
  159. background-color: $u-type-warning-light;
  160. }
  161. .u-type-success-light-bg {
  162. background-color: $u-type-success-light;
  163. }
  164. .u-type-error-light-bg {
  165. background-color: $u-type-error-light;
  166. }
  167. .u-type-info-light-bg {
  168. background-color: $u-type-info-light;
  169. }
  170. .u-type-primary-dark {
  171. color: $u-type-primary-dark;
  172. }
  173. .u-type-warning-dark {
  174. color: $u-type-warning-dark;
  175. }
  176. .u-type-success-dark {
  177. color: $u-type-success-dark;
  178. }
  179. .u-type-error-dark {
  180. color: $u-type-error-dark;
  181. }
  182. .u-type-info-dark {
  183. color: $u-type-info-dark;
  184. }
  185. .u-type-primary-dark-bg {
  186. background-color: $u-type-primary-dark;
  187. }
  188. .u-type-warning-dark-bg {
  189. background-color: $u-type-warning-dark;
  190. }
  191. .u-type-success-dark-bg {
  192. background-color: $u-type-success-dark;
  193. }
  194. .u-type-error-dark-bg {
  195. background-color: $u-type-error-dark;
  196. }
  197. .u-type-info-dark-bg {
  198. background-color: $u-type-info-dark;
  199. }
  200. .u-type-primary-disabled {
  201. color: $u-type-primary-disabled;
  202. }
  203. .u-type-warning-disabled {
  204. color: $u-type-warning-disabled;
  205. }
  206. .u-type-success-disabled {
  207. color: $u-type-success-disabled;
  208. }
  209. .u-type-error-disabled {
  210. color: $u-type-error-disabled;
  211. }
  212. .u-type-info-disabled {
  213. color: $u-type-info-disabled;
  214. }
  215. .u-type-primary {
  216. color: $u-type-primary;
  217. }
  218. .u-type-warning {
  219. color: $u-type-warning;
  220. }
  221. .u-type-success {
  222. color: $u-type-success;
  223. }
  224. .u-type-error {
  225. color: $u-type-error;
  226. }
  227. .u-type-info {
  228. color: $u-type-info;
  229. }
  230. .u-type-primary-bg {
  231. background-color: $u-type-primary;
  232. }
  233. .u-type-warning-bg {
  234. background-color: $u-type-warning;
  235. }
  236. .u-type-success-bg {
  237. background-color: $u-type-success;
  238. }
  239. .u-type-error-bg {
  240. background-color: $u-type-error;
  241. }
  242. .u-type-info-bg {
  243. background-color: $u-type-info;
  244. }
  245. .u-main-color {
  246. color: $u-main-color;
  247. }
  248. .u-content-color {
  249. color: $u-content-color;
  250. }
  251. .u-tips-color {
  252. color: $u-tips-color;
  253. }
  254. .u-light-color {
  255. color: $u-light-color;
  256. }
  257. /* 非nvue的样式 */
  258. page {
  259. color: $u-main-color;
  260. font-size: 28rpx;
  261. }
  262. /* start--去除webkit的默认样式--start */
  263. .u-fix-ios-appearance {
  264. -webkit-appearance:none;
  265. }
  266. /* end--去除webkit的默认样式--end */
  267. /* start--icon图标外层套一个view,让其达到更好的垂直居中的效果--start */
  268. .u-icon-wrap {
  269. display: flex;
  270. align-items: center;
  271. }
  272. /* end-icon图标外层套一个view,让其达到更好的垂直居中的效果--end */
  273. /* start--iPhoneX底部安全区定义--start */
  274. .safe-area-inset-bottom {
  275. padding-bottom: 0;
  276. padding-bottom: constant(safe-area-inset-bottom);
  277. padding-bottom: env(safe-area-inset-bottom);
  278. }
  279. /* end-iPhoneX底部安全区定义--end */
  280. /* start--各种hover点击反馈相关的类名-start */
  281. .u-hover-class {
  282. /* background-color: #f7f8f9!important; */
  283. opacity: 0.6;
  284. }
  285. .u-cell-hover {
  286. background-color: #f7f8f9!important;
  287. }
  288. /* end--各种hover点击反馈相关的类名--end */
  289. /* start--文本行数限制--start */
  290. .u-line-1 {
  291. overflow: hidden;
  292. white-space: nowrap;
  293. text-overflow: ellipsis;
  294. }
  295. .u-line-2 {
  296. -webkit-line-clamp: 2;
  297. }
  298. .u-line-3 {
  299. -webkit-line-clamp: 3;
  300. }
  301. .u-line-4 {
  302. -webkit-line-clamp: 4;
  303. }
  304. .u-line-5 {
  305. -webkit-line-clamp: 5;
  306. }
  307. .u-line-2, .u-line-3, .u-line-4, .u-line-5 {
  308. overflow: hidden;
  309. word-break: break-all;
  310. text-overflow: ellipsis;
  311. display: -webkit-box; /* 弹性伸缩盒 */
  312. -webkit-box-orient: vertical; /* 设置伸缩盒子元素排列方式 */
  313. }
  314. /* end--文本行数限制--end */
  315. /* start--Retina 屏幕下的 1px 边框--start */
  316. .u-border,
  317. .u-border-bottom,
  318. .u-border-left,
  319. .u-border-right,
  320. .u-border-top,
  321. .u-border-top-bottom {
  322. position: relative
  323. }
  324. .u-border-bottom:after,
  325. .u-border-left:after,
  326. .u-border-right:after,
  327. .u-border-top-bottom:after,
  328. .u-border-top:after,
  329. .u-border:after {
  330. content: ' ';
  331. position: absolute;
  332. left: 0;
  333. top: 0;
  334. pointer-events: none;
  335. box-sizing: border-box;
  336. -webkit-transform-origin: 0 0;
  337. transform-origin: 0 0;
  338. /* 多加0.1%,能解决有时候边框缺失的问题 */
  339. width: 199.8%;
  340. height: 199.7%;
  341. -webkit-transform: scale(0.5, 0.5);
  342. transform: scale(0.5, 0.5);
  343. border: 0 solid $u-border-color;
  344. z-index: 2;
  345. }
  346. .u-border-top:after {
  347. border-top-width: 1px
  348. }
  349. .u-border-left:after {
  350. border-left-width: 1px
  351. }
  352. .u-border-right:after {
  353. border-right-width: 1px
  354. }
  355. .u-border-bottom:after {
  356. border-bottom-width: 1px
  357. }
  358. .u-border-top-bottom:after {
  359. border-width: 1px 0
  360. }
  361. .u-border:after {
  362. border-width: 1px
  363. }
  364. /* end--Retina 屏幕下的 1px 边框--end */
  365. /* start--clearfix--start */
  366. .u-clearfix:after,
  367. .clearfix:after {
  368. content: '';
  369. display: table;
  370. clear: both
  371. }
  372. /* end--clearfix--end */
  373. /* start--高斯模糊tabbar底部处理--start */
  374. .u-blur-effect-inset {
  375. width: 750rpx;
  376. height: 0px;
  377. background-color: #FFFFFF;
  378. }
  379. /* end--高斯模糊tabbar底部处理--end */
  380. /* start--提升H5端uni.toast()的层级,避免被uView的modal等遮盖--start */
  381. /* end--提升H5端uni.toast()的层级,避免被uView的modal等遮盖--end */
  382. /* start--去除button的所有默认样式--start */
  383. .u-reset-button {
  384. padding: 0;
  385. font-size: inherit;
  386. line-height: inherit;
  387. background-color: transparent;
  388. color: inherit;
  389. }
  390. .u-reset-button::after {
  391. border: none;
  392. }
  393. /* end--去除button的所有默认样式--end */
  394. /* nvue的特有样式 */
  395. /* 小程序特有的样式 */
  396. /* start--微信小程序编译后页面有组件名的元素,特别处理--start */
  397. u-td, u-th {
  398. flex: 1;
  399. align-self: stretch;
  400. }
  401. .u-td {
  402. height: 100%;
  403. }
  404. u-icon {
  405. display: inline-flex;
  406. align-items: center;
  407. }
  408. /* 各家小程序宫格组件外层设置为100%,避免受到父元素display: flex;的影响 */
  409. u-grid {
  410. width: 100%;
  411. flex: 0 0 100%;
  412. }
  413. /* 避免小程序线条组件因为父组件display: flex;而失效 */
  414. u-line {
  415. flex: 1;
  416. }
  417. u-switch {
  418. display: inline-flex;
  419. align-items: center;
  420. }
  421. u-dropdown {
  422. flex: 1;
  423. }
  424. /* end-微信小程序编译后页面有组件名的元素,特别处理--end */
  425. /* start--头条小程序编译后页面有组件名的元素,特别处理--start */
  426. /* 由于头条小程序不支持直接组件名形式写样式,目前只能在写组件的时候给组件加上对应的类名 */
  427. /* end-头条小程序编译后页面有组件名的元素,特别处理--end */
  428. /* H5特有的样式 */