auth.wxss 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  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. .success {
  257. box-sizing: border-box;
  258. padding: 0 40rpx;
  259. height: auto;
  260. }
  261. .info {
  262. padding: 40rpx 40rpx 0;
  263. width: 100%;
  264. margin-top: 80rpx;
  265. border-top: 2rpx solid #F3F3F3;
  266. }
  267. .info .infoitem {
  268. line-height: 100rpx;
  269. width: 100%;
  270. font-size: 30rpx;
  271. color: #222222;
  272. }
  273. .btnlist {
  274. width: 100%;
  275. }
  276. .btn1 {
  277. font-weight: 500;
  278. color: #FFFFFF;
  279. line-height: 50px;
  280. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  281. -webkit-background-clip: text;
  282. -webkit-text-fill-color: transparent;
  283. width: 270rpx;
  284. height: 88rpx;
  285. line-height: 88rpx;
  286. text-align: center;
  287. font-size: 36rpx;
  288. border-radius: 48rpx;
  289. border: 4rpx solid #E6CDE6;
  290. }
  291. .btn {
  292. width: 270rpx;
  293. height: 88rpx;
  294. line-height: 88rpx;
  295. text-align: center;
  296. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  297. border-radius: 48rpx;
  298. font-size: 36rpx;
  299. }
  300. .error {
  301. padding-top: 96rpx;
  302. padding-bottom: 94rpx;
  303. margin: 56rpx auto 0;
  304. width: 690rpx;
  305. background: #FFFFFF;
  306. border-radius: 40rpx;
  307. font-size: 24rpx;
  308. color: #222222;
  309. }
  310. .error image {
  311. width: 140rpx;
  312. height: 140rpx;
  313. }
  314. .error .reason {
  315. padding: 24rpx 20rpx;
  316. margin: 52rpx auto 64rpx;
  317. width: 610rpx;
  318. height: 200rpx;
  319. background: #F4F4F4;
  320. border-radius: 20rpx;
  321. }
  322. .lookvip {
  323. font-weight: 500;
  324. margin-top: 24rpx;
  325. font-size: 24rpx;
  326. color: #555555;
  327. text-align: center;
  328. }
  329. .lookvip text {
  330. margin: 0 8rpx;
  331. }
  332. .uploadContent {
  333. position: relative;
  334. margin-top: 32rpx;
  335. width: 650rpx;
  336. height: 472rpx;
  337. font-size: 28rpx;
  338. color: #fff;
  339. font-weight: 600;
  340. background: #F3F4F6;
  341. border-radius: 20rpx;
  342. }
  343. .uploadContent .contentTop {
  344. height: 400rpx;
  345. background-color: #F3F4F6;
  346. position: relative;
  347. }
  348. .uploadContent .contentTop .bigImg {
  349. position: absolute;
  350. top: 50%;
  351. left: 50%;
  352. -webkit-transform: translate(-50%, -50%);
  353. transform: translate(-50%, -50%);
  354. width: 510rpx;
  355. height: 320rpx;
  356. }
  357. .uploadContent .contentTop .smallImg {
  358. position: absolute;
  359. top: 50%;
  360. left: 50%;
  361. -webkit-transform: translate(-50%, -50%);
  362. transform: translate(-50%, -50%);
  363. width: 116rpx;
  364. height: 116rpx;
  365. z-index: 1;
  366. }
  367. .uploadContent .contentBottom {
  368. width: 650rpx;
  369. height: 72rpx;
  370. line-height: 72rpx;
  371. text-align: center;
  372. background: linear-gradient(270deg, #A890FE 0%, #FFAEAE 100%);
  373. border-radius: 0px 0px 20rpx 20rpx;
  374. }
  375. .upload {
  376. margin: 20rpx auto;
  377. width: 690rpx;
  378. padding: 24rpx 20rpx;
  379. background: #FDFCFE;
  380. box-shadow: 0px 0px 16rpx 0px rgba(0, 0, 0, 0.04);
  381. border-radius: 24rpx;
  382. box-sizing: border-box;
  383. }
  384. .upload .title {
  385. font-weight: 500;
  386. font-size: 30rpx;
  387. color: #222222;
  388. }
  389. .upload .title text {
  390. color: #FF5B5B;
  391. }
  392. .form {
  393. padding: 0 30rpx;
  394. margin-top: 36rpx;
  395. background-color: #fff;
  396. border-radius: 40rpx 40rpx 0px 0px;
  397. background: linear-gradient(180deg, #FFFFFF 0%, #F6F2FD 100%);
  398. }
  399. .form .item {
  400. height: 94rpx;
  401. line-height: 94rpx;
  402. border-bottom: 2rpx solid #F5F5F5;
  403. }
  404. .form .item text {
  405. font-size: 30rpx;
  406. color: #222222;
  407. }
  408. .form .item input {
  409. text-align: right;
  410. }
  411. .top {
  412. padding-top: 44rpx;
  413. padding-left: 30rpx;
  414. }
  415. .top image {
  416. width: 102rpx;
  417. height: 60rpx;
  418. }