base1.wxss 9.2 KB

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