registerVip.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. .u-line-1 {
  15. display: -webkit-box !important;
  16. overflow: hidden;
  17. text-overflow: ellipsis;
  18. word-break: break-all;
  19. -webkit-line-clamp: 1;
  20. -webkit-box-orient: vertical !important;
  21. }
  22. .u-line-2 {
  23. display: -webkit-box !important;
  24. overflow: hidden;
  25. text-overflow: ellipsis;
  26. word-break: break-all;
  27. -webkit-line-clamp: 2;
  28. -webkit-box-orient: vertical !important;
  29. }
  30. .u-line-3 {
  31. display: -webkit-box !important;
  32. overflow: hidden;
  33. text-overflow: ellipsis;
  34. word-break: break-all;
  35. -webkit-line-clamp: 3;
  36. -webkit-box-orient: vertical !important;
  37. }
  38. .u-line-4 {
  39. display: -webkit-box !important;
  40. overflow: hidden;
  41. text-overflow: ellipsis;
  42. word-break: break-all;
  43. -webkit-line-clamp: 4;
  44. -webkit-box-orient: vertical !important;
  45. }
  46. .u-line-5 {
  47. display: -webkit-box !important;
  48. overflow: hidden;
  49. text-overflow: ellipsis;
  50. word-break: break-all;
  51. -webkit-line-clamp: 5;
  52. -webkit-box-orient: vertical !important;
  53. }
  54. .u-border {
  55. border-width: 0.5px !important;
  56. border-color: #dadbde !important;
  57. border-style: solid;
  58. }
  59. .u-border-top {
  60. border-top-width: 0.5px !important;
  61. border-color: #dadbde !important;
  62. border-top-style: solid;
  63. }
  64. .u-border-left {
  65. border-left-width: 0.5px !important;
  66. border-color: #dadbde !important;
  67. border-left-style: solid;
  68. }
  69. .u-border-right {
  70. border-right-width: 0.5px !important;
  71. border-color: #dadbde !important;
  72. border-right-style: solid;
  73. }
  74. .u-border-bottom {
  75. border-bottom-width: 0.5px !important;
  76. border-color: #dadbde !important;
  77. border-bottom-style: solid;
  78. }
  79. .u-border-top-bottom {
  80. border-top-width: 0.5px !important;
  81. border-bottom-width: 0.5px !important;
  82. border-color: #dadbde !important;
  83. border-top-style: solid;
  84. border-bottom-style: solid;
  85. }
  86. .u-reset-button {
  87. padding: 0;
  88. background-color: transparent;
  89. font-size: inherit;
  90. line-height: inherit;
  91. color: inherit;
  92. }
  93. .u-reset-button::after {
  94. border: none;
  95. }
  96. .u-hover-class {
  97. opacity: 0.7;
  98. }
  99. .u-primary-light {
  100. color: #ecf5ff;
  101. }
  102. .u-warning-light {
  103. color: #fdf6ec;
  104. }
  105. .u-success-light {
  106. color: #f5fff0;
  107. }
  108. .u-error-light {
  109. color: #fef0f0;
  110. }
  111. .u-info-light {
  112. color: #f4f4f5;
  113. }
  114. .u-primary-light-bg {
  115. background-color: #ecf5ff;
  116. }
  117. .u-warning-light-bg {
  118. background-color: #fdf6ec;
  119. }
  120. .u-success-light-bg {
  121. background-color: #f5fff0;
  122. }
  123. .u-error-light-bg {
  124. background-color: #fef0f0;
  125. }
  126. .u-info-light-bg {
  127. background-color: #f4f4f5;
  128. }
  129. .u-primary-dark {
  130. color: #398ade;
  131. }
  132. .u-warning-dark {
  133. color: #f1a532;
  134. }
  135. .u-success-dark {
  136. color: #53c21d;
  137. }
  138. .u-error-dark {
  139. color: #e45656;
  140. }
  141. .u-info-dark {
  142. color: #767a82;
  143. }
  144. .u-primary-dark-bg {
  145. background-color: #398ade;
  146. }
  147. .u-warning-dark-bg {
  148. background-color: #f1a532;
  149. }
  150. .u-success-dark-bg {
  151. background-color: #53c21d;
  152. }
  153. .u-error-dark-bg {
  154. background-color: #e45656;
  155. }
  156. .u-info-dark-bg {
  157. background-color: #767a82;
  158. }
  159. .u-primary-disabled {
  160. color: #9acafc;
  161. }
  162. .u-warning-disabled {
  163. color: #f9d39b;
  164. }
  165. .u-success-disabled {
  166. color: #a9e08f;
  167. }
  168. .u-error-disabled {
  169. color: #f7b2b2;
  170. }
  171. .u-info-disabled {
  172. color: #c4c6c9;
  173. }
  174. .u-primary {
  175. color: #3c9cff;
  176. }
  177. .u-warning {
  178. color: #f9ae3d;
  179. }
  180. .u-success {
  181. color: #5ac725;
  182. }
  183. .u-error {
  184. color: #f56c6c;
  185. }
  186. .u-info {
  187. color: #909399;
  188. }
  189. .u-primary-bg {
  190. background-color: #3c9cff;
  191. }
  192. .u-warning-bg {
  193. background-color: #f9ae3d;
  194. }
  195. .u-success-bg {
  196. background-color: #5ac725;
  197. }
  198. .u-error-bg {
  199. background-color: #f56c6c;
  200. }
  201. .u-info-bg {
  202. background-color: #909399;
  203. }
  204. .u-main-color {
  205. color: #303133;
  206. }
  207. .u-content-color {
  208. color: #606266;
  209. }
  210. .u-tips-color {
  211. color: #909193;
  212. }
  213. .u-light-color {
  214. color: #c0c4cc;
  215. }
  216. .u-safe-area-inset-top {
  217. padding-top: 0;
  218. padding-top: constant(safe-area-inset-top);
  219. padding-top: env(safe-area-inset-top);
  220. }
  221. .u-safe-area-inset-right {
  222. padding-right: 0;
  223. padding-right: constant(safe-area-inset-right);
  224. padding-right: env(safe-area-inset-right);
  225. }
  226. .u-safe-area-inset-bottom {
  227. padding-bottom: 0;
  228. padding-bottom: constant(safe-area-inset-bottom);
  229. padding-bottom: env(safe-area-inset-bottom);
  230. }
  231. .u-safe-area-inset-left {
  232. padding-left: 0;
  233. padding-left: constant(safe-area-inset-left);
  234. padding-left: env(safe-area-inset-left);
  235. }
  236. ::-webkit-scrollbar {
  237. display: none;
  238. width: 0 !important;
  239. height: 0 !important;
  240. -webkit-appearance: none;
  241. background: transparent;
  242. }
  243. /* 颜色变量 */
  244. /* 行为相关颜色 */
  245. /* 文字基本颜色 */
  246. /* 背景颜色 */
  247. /* 边框颜色 */
  248. /* 尺寸变量 */
  249. /* 文字尺寸 */
  250. /* 图片尺寸 */
  251. /* Border Radius */
  252. /* 水平间距 */
  253. /* 垂直间距 */
  254. /* 透明度 */
  255. /* 文章场景相关 */
  256. .item {
  257. width: 220rpx;
  258. height: 72rpx;
  259. line-height: 72rpx;
  260. text-align: center;
  261. background: #F0F0F0;
  262. border-radius: 8rpx;
  263. font-size: 28rpx;
  264. color: #777777;
  265. margin-bottom: 20rpx;
  266. }
  267. .item:nth-child(3n-1) {
  268. margin: 0 15rpx 20rpx;
  269. }
  270. .item1 {
  271. width: 220rpx;
  272. height: 72rpx;
  273. line-height: 72rpx;
  274. text-align: center;
  275. background: #F0F0F0;
  276. border-radius: 8rpx;
  277. font-size: 28rpx;
  278. color: #777777;
  279. margin-bottom: 20rpx;
  280. }
  281. .item1:nth-child(3n-1) {
  282. margin: 0 15rpx 20rpx;
  283. }
  284. .select {
  285. background: #F6F3FD;
  286. color: #CEACEA;
  287. }
  288. page {
  289. padding: 100rpx 0;
  290. background-color: #F6F2FD;
  291. }