user-info.css 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. uni-view[data-v-ac70166d], uni-scroll-view[data-v-ac70166d], uni-swiper-item[data-v-ac70166d] {
  27. display: flex;
  28. flex-direction: column;
  29. flex-shrink: 0;
  30. flex-grow: 0;
  31. flex-basis: auto;
  32. align-items: stretch;
  33. align-content: flex-start;
  34. }
  35. @font-face {
  36. font-family: "uicon-iconfont";
  37. src: url("https://at.alicdn.com/t/font_2225171_8kdcwk4po24.ttf") format("truetype");
  38. }
  39. .u-icon[data-v-ac70166d] {
  40. display: flex;
  41. align-items: center;
  42. }
  43. .u-icon--left[data-v-ac70166d] {
  44. flex-direction: row-reverse;
  45. align-items: center;
  46. }
  47. .u-icon--right[data-v-ac70166d] {
  48. flex-direction: row;
  49. align-items: center;
  50. }
  51. .u-icon--top[data-v-ac70166d] {
  52. flex-direction: column-reverse;
  53. justify-content: center;
  54. }
  55. .u-icon--bottom[data-v-ac70166d] {
  56. flex-direction: column;
  57. justify-content: center;
  58. }
  59. .u-icon__icon[data-v-ac70166d] {
  60. font-family: uicon-iconfont;
  61. position: relative;
  62. display: flex;
  63. flex-direction: row;
  64. align-items: center;
  65. }
  66. .u-icon__icon--primary[data-v-ac70166d] {
  67. color: #22ac38;
  68. }
  69. .u-icon__icon--success[data-v-ac70166d] {
  70. color: #22ac38;
  71. }
  72. .u-icon__icon--error[data-v-ac70166d] {
  73. color: #f56c6c;
  74. }
  75. .u-icon__icon--warning[data-v-ac70166d] {
  76. color: #f9ae3d;
  77. }
  78. .u-icon__icon--info[data-v-ac70166d] {
  79. color: #909399;
  80. }
  81. .u-icon__img[data-v-ac70166d] {
  82. height: auto;
  83. will-change: transform;
  84. }
  85. .u-icon__label[data-v-ac70166d] {
  86. line-height: 1;
  87. }
  88. /**
  89. * 这里是uni-app内置的常用样式变量
  90. *
  91. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  92. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  93. *
  94. */
  95. /**
  96. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  97. *
  98. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  99. */
  100. /* 颜色变量 */
  101. /* 行为相关颜色 */
  102. /* 文字基本颜色 */
  103. /* 背景颜色 */
  104. /* 边框颜色 */
  105. /* 尺寸变量 */
  106. /* 文字尺寸 */
  107. /* 图片尺寸 */
  108. /* Border Radius */
  109. /* 水平间距 */
  110. /* 垂直间距 */
  111. /* 透明度 */
  112. /* 文章场景相关 */
  113. uni-view[data-v-12f6646d], uni-scroll-view[data-v-12f6646d], uni-swiper-item[data-v-12f6646d] {
  114. display: flex;
  115. flex-direction: column;
  116. flex-shrink: 0;
  117. flex-grow: 0;
  118. flex-basis: auto;
  119. align-items: stretch;
  120. align-content: flex-start;
  121. }
  122. .u-link[data-v-12f6646d] {
  123. line-height: 1;
  124. display: flex;
  125. flex-direction: row;
  126. flex-wrap: wrap;
  127. flex: 1;
  128. }
  129. /**
  130. * 这里是uni-app内置的常用样式变量
  131. *
  132. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  133. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  134. *
  135. */
  136. /**
  137. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  138. *
  139. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  140. */
  141. /* 颜色变量 */
  142. /* 行为相关颜色 */
  143. /* 文字基本颜色 */
  144. /* 背景颜色 */
  145. /* 边框颜色 */
  146. /* 尺寸变量 */
  147. /* 文字尺寸 */
  148. /* 图片尺寸 */
  149. /* Border Radius */
  150. /* 水平间距 */
  151. /* 垂直间距 */
  152. /* 透明度 */
  153. /* 文章场景相关 */
  154. uni-view[data-v-0a574502], uni-scroll-view[data-v-0a574502], uni-swiper-item[data-v-0a574502] {
  155. display: flex;
  156. flex-direction: column;
  157. flex-shrink: 0;
  158. flex-grow: 0;
  159. flex-basis: auto;
  160. align-items: stretch;
  161. align-content: flex-start;
  162. }
  163. .u-text[data-v-0a574502] {
  164. display: flex;
  165. flex-direction: row;
  166. align-items: center;
  167. flex-wrap: nowrap;
  168. flex: 1;
  169. width: 100%;
  170. }
  171. .u-text__price[data-v-0a574502] {
  172. font-size: 14px;
  173. color: #606266;
  174. }
  175. .u-text__value[data-v-0a574502] {
  176. font-size: 14px;
  177. display: flex;
  178. flex-direction: row;
  179. color: #606266;
  180. flex-wrap: wrap;
  181. text-overflow: ellipsis;
  182. align-items: center;
  183. }
  184. .u-text__value--primary[data-v-0a574502] {
  185. color: #22ac38;
  186. }
  187. .u-text__value--warning[data-v-0a574502] {
  188. color: #f9ae3d;
  189. }
  190. .u-text__value--success[data-v-0a574502] {
  191. color: #22ac38;
  192. }
  193. .u-text__value--info[data-v-0a574502] {
  194. color: #909399;
  195. }
  196. .u-text__value--error[data-v-0a574502] {
  197. color: #f56c6c;
  198. }
  199. .u-text__value--main[data-v-0a574502] {
  200. color: #303133;
  201. }
  202. .u-text__value--content[data-v-0a574502] {
  203. color: #606266;
  204. }
  205. .u-text__value--tips[data-v-0a574502] {
  206. color: #909193;
  207. }
  208. .u-text__value--light[data-v-0a574502] {
  209. color: #c0c4cc;
  210. }
  211. /**
  212. * 这里是uni-app内置的常用样式变量
  213. *
  214. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  215. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  216. *
  217. */
  218. /**
  219. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  220. *
  221. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  222. */
  223. /* 颜色变量 */
  224. /* 行为相关颜色 */
  225. /* 文字基本颜色 */
  226. /* 背景颜色 */
  227. /* 边框颜色 */
  228. /* 尺寸变量 */
  229. /* 文字尺寸 */
  230. /* 图片尺寸 */
  231. /* Border Radius */
  232. /* 水平间距 */
  233. /* 垂直间距 */
  234. /* 透明度 */
  235. /* 文章场景相关 */
  236. uni-view[data-v-34d954f9], uni-scroll-view[data-v-34d954f9], uni-swiper-item[data-v-34d954f9] {
  237. display: flex;
  238. flex-direction: column;
  239. flex-shrink: 0;
  240. flex-grow: 0;
  241. flex-basis: auto;
  242. align-items: stretch;
  243. align-content: flex-start;
  244. }
  245. .u-avatar[data-v-34d954f9] {
  246. display: flex;
  247. flex-direction: row;
  248. align-items: center;
  249. justify-content: center;
  250. }
  251. .u-avatar--circle[data-v-34d954f9] {
  252. border-radius: 100px;
  253. }
  254. .u-avatar--square[data-v-34d954f9] {
  255. border-radius: 4px;
  256. }
  257. .u-avatar__image--circle[data-v-34d954f9] {
  258. border-radius: 100px;
  259. }
  260. .u-avatar__image--square[data-v-34d954f9] {
  261. border-radius: 4px;
  262. }
  263. /**
  264. * 这里是uni-app内置的常用样式变量
  265. *
  266. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  267. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  268. *
  269. */
  270. /**
  271. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  272. *
  273. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  274. */
  275. /* 颜色变量 */
  276. /* 行为相关颜色 */
  277. /* 文字基本颜色 */
  278. /* 背景颜色 */
  279. /* 边框颜色 */
  280. /* 尺寸变量 */
  281. /* 文字尺寸 */
  282. /* 图片尺寸 */
  283. /* Border Radius */
  284. /* 水平间距 */
  285. /* 垂直间距 */
  286. /* 透明度 */
  287. /* 文章场景相关 */
  288. uni-view[data-v-2af81691], uni-scroll-view[data-v-2af81691], uni-swiper-item[data-v-2af81691] {
  289. display: flex;
  290. flex-direction: column;
  291. flex-shrink: 0;
  292. flex-grow: 0;
  293. flex-basis: auto;
  294. align-items: stretch;
  295. align-content: flex-start;
  296. }
  297. .u-loading-icon[data-v-2af81691] {
  298. flex-direction: row;
  299. align-items: center;
  300. justify-content: center;
  301. color: #c8c9cc;
  302. }
  303. .u-loading-icon__text[data-v-2af81691] {
  304. margin-left: 4px;
  305. color: #606266;
  306. font-size: 14px;
  307. line-height: 20px;
  308. }
  309. .u-loading-icon__spinner[data-v-2af81691] {
  310. width: 30px;
  311. height: 30px;
  312. position: relative;
  313. box-sizing: border-box;
  314. max-width: 100%;
  315. max-height: 100%;
  316. animation: u-rotate-2af81691 1s linear infinite;
  317. }
  318. .u-loading-icon__spinner--semicircle[data-v-2af81691] {
  319. border-width: 2px;
  320. border-color: transparent;
  321. border-top-right-radius: 100px;
  322. border-top-left-radius: 100px;
  323. border-bottom-left-radius: 100px;
  324. border-bottom-right-radius: 100px;
  325. border-style: solid;
  326. }
  327. .u-loading-icon__spinner--circle[data-v-2af81691] {
  328. border-top-right-radius: 100px;
  329. border-top-left-radius: 100px;
  330. border-bottom-left-radius: 100px;
  331. border-bottom-right-radius: 100px;
  332. border-width: 2px;
  333. border-top-color: #e5e5e5;
  334. border-right-color: #e5e5e5;
  335. border-bottom-color: #e5e5e5;
  336. border-left-color: #e5e5e5;
  337. border-style: solid;
  338. }
  339. .u-loading-icon--vertical[data-v-2af81691] {
  340. flex-direction: column;
  341. }
  342. [data-v-2af81691]:host {
  343. font-size: 0px;
  344. line-height: 1;
  345. }
  346. .u-loading-icon__spinner--spinner[data-v-2af81691] {
  347. animation-timing-function: steps(12);
  348. }
  349. .u-loading-icon__text[data-v-2af81691]:empty {
  350. display: none;
  351. }
  352. .u-loading-icon--vertical .u-loading-icon__text[data-v-2af81691] {
  353. margin: 6px 0 0;
  354. color: #606266;
  355. }
  356. .u-loading-icon__dot[data-v-2af81691] {
  357. position: absolute;
  358. top: 0;
  359. left: 0;
  360. width: 100%;
  361. height: 100%;
  362. }
  363. .u-loading-icon__dot[data-v-2af81691]:before {
  364. display: block;
  365. width: 2px;
  366. height: 25%;
  367. margin: 0 auto;
  368. background-color: currentColor;
  369. border-radius: 40%;
  370. content: " ";
  371. }
  372. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(1) {
  373. transform: rotate(30deg);
  374. opacity: 1;
  375. }
  376. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(2) {
  377. transform: rotate(60deg);
  378. opacity: 0.9375;
  379. }
  380. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(3) {
  381. transform: rotate(90deg);
  382. opacity: 0.875;
  383. }
  384. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(4) {
  385. transform: rotate(120deg);
  386. opacity: 0.8125;
  387. }
  388. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(5) {
  389. transform: rotate(150deg);
  390. opacity: 0.75;
  391. }
  392. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(6) {
  393. transform: rotate(180deg);
  394. opacity: 0.6875;
  395. }
  396. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(7) {
  397. transform: rotate(210deg);
  398. opacity: 0.625;
  399. }
  400. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(8) {
  401. transform: rotate(240deg);
  402. opacity: 0.5625;
  403. }
  404. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(9) {
  405. transform: rotate(270deg);
  406. opacity: 0.5;
  407. }
  408. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(10) {
  409. transform: rotate(300deg);
  410. opacity: 0.4375;
  411. }
  412. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(11) {
  413. transform: rotate(330deg);
  414. opacity: 0.375;
  415. }
  416. .u-loading-icon__dot[data-v-2af81691]:nth-of-type(12) {
  417. transform: rotate(360deg);
  418. opacity: 0.3125;
  419. }
  420. @keyframes u-rotate-2af81691 {
  421. 0% {
  422. transform: rotate(0deg);
  423. }
  424. to {
  425. transform: rotate(1turn);
  426. }
  427. }
  428. /**
  429. * 这里是uni-app内置的常用样式变量
  430. *
  431. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  432. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  433. *
  434. */
  435. /**
  436. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  437. *
  438. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  439. */
  440. /* 颜色变量 */
  441. /* 行为相关颜色 */
  442. /* 文字基本颜色 */
  443. /* 背景颜色 */
  444. /* 边框颜色 */
  445. /* 尺寸变量 */
  446. /* 文字尺寸 */
  447. /* 图片尺寸 */
  448. /* Border Radius */
  449. /* 水平间距 */
  450. /* 垂直间距 */
  451. /* 透明度 */
  452. /* 文章场景相关 */
  453. uni-view[data-v-5ce41ee6], uni-scroll-view[data-v-5ce41ee6], uni-swiper-item[data-v-5ce41ee6] {
  454. display: flex;
  455. flex-direction: column;
  456. flex-shrink: 0;
  457. flex-grow: 0;
  458. flex-basis: auto;
  459. align-items: stretch;
  460. align-content: flex-start;
  461. }
  462. .u-button[data-v-5ce41ee6] {
  463. width: 100%;
  464. }
  465. .u-button__text[data-v-5ce41ee6] {
  466. white-space: nowrap;
  467. line-height: 1;
  468. }
  469. .u-button[data-v-5ce41ee6]:before {
  470. position: absolute;
  471. top: 50%;
  472. left: 50%;
  473. width: 100%;
  474. height: 100%;
  475. border: inherit;
  476. border-radius: inherit;
  477. transform: translate(-50%, -50%);
  478. opacity: 0;
  479. content: " ";
  480. background-color: #000;
  481. border-color: #000;
  482. }
  483. .u-button--active[data-v-5ce41ee6]:before {
  484. opacity: 0.15;
  485. }
  486. .u-button__icon + .u-button__text[data-v-5ce41ee6]:not(:empty), .u-button__loading-text[data-v-5ce41ee6] {
  487. margin-left: 4px;
  488. }
  489. .u-button--plain.u-button--primary[data-v-5ce41ee6] {
  490. color: #22ac38;
  491. }
  492. .u-button--plain.u-button--info[data-v-5ce41ee6] {
  493. color: #909399;
  494. }
  495. .u-button--plain.u-button--success[data-v-5ce41ee6] {
  496. color: #22ac38;
  497. }
  498. .u-button--plain.u-button--error[data-v-5ce41ee6] {
  499. color: #f56c6c;
  500. }
  501. .u-button--plain.u-button--warning[data-v-5ce41ee6] {
  502. color: #f56c6c;
  503. }
  504. .u-button[data-v-5ce41ee6] {
  505. height: 52px;
  506. position: relative;
  507. align-items: center;
  508. justify-content: center;
  509. display: flex;
  510. flex-direction: row;
  511. box-sizing: border-box;
  512. flex-direction: row;
  513. }
  514. .u-button__text[data-v-5ce41ee6] {
  515. font-size: 16px;
  516. }
  517. .u-button__loading-text[data-v-5ce41ee6] {
  518. font-size: 16px;
  519. margin-left: 4px;
  520. }
  521. .u-button--large[data-v-5ce41ee6] {
  522. width: 100%;
  523. height: 64px;
  524. padding: 0 15px;
  525. }
  526. .u-button--normal[data-v-5ce41ee6] {
  527. padding: 0 12px;
  528. font-size: 16px;
  529. }
  530. .u-button--small[data-v-5ce41ee6] {
  531. min-width: 60px;
  532. height: 30px;
  533. padding: 0px 8px;
  534. font-size: 12px;
  535. }
  536. .u-button--mini[data-v-5ce41ee6] {
  537. height: 22px;
  538. font-size: 10px;
  539. min-width: 50px;
  540. padding: 0px 8px;
  541. }
  542. .u-button--disabled[data-v-5ce41ee6] {
  543. opacity: 0.5;
  544. }
  545. .u-button--info[data-v-5ce41ee6] {
  546. color: #323233;
  547. background-color: #fff;
  548. border-color: #ebedf0;
  549. border-width: 1px;
  550. border-style: solid;
  551. }
  552. .u-button--success[data-v-5ce41ee6] {
  553. color: #fff;
  554. background-color: #22ac38;
  555. border-color: #22ac38;
  556. border-width: 1px;
  557. border-style: solid;
  558. }
  559. .u-button--primary[data-v-5ce41ee6] {
  560. color: #fff;
  561. background-color: #22ac38;
  562. border-color: #22ac38;
  563. border-width: 1px;
  564. border-style: solid;
  565. }
  566. .u-button--error[data-v-5ce41ee6] {
  567. color: #fff;
  568. background-color: #f56c6c;
  569. border-color: #f56c6c;
  570. border-width: 1px;
  571. border-style: solid;
  572. }
  573. .u-button--warning[data-v-5ce41ee6] {
  574. color: #fff;
  575. background-color: #f9ae3d;
  576. border-color: #f9ae3d;
  577. border-width: 1px;
  578. border-style: solid;
  579. }
  580. .u-button--block[data-v-5ce41ee6] {
  581. display: flex;
  582. flex-direction: row;
  583. width: 100%;
  584. }
  585. .u-button--circle[data-v-5ce41ee6] {
  586. border-top-right-radius: 100px;
  587. border-top-left-radius: 100px;
  588. border-bottom-left-radius: 100px;
  589. border-bottom-right-radius: 100px;
  590. }
  591. .u-button--square[data-v-5ce41ee6] {
  592. border-bottom-left-radius: 3px;
  593. border-bottom-right-radius: 3px;
  594. border-top-left-radius: 3px;
  595. border-top-right-radius: 3px;
  596. }
  597. .u-button__icon[data-v-5ce41ee6] {
  598. min-width: 1em;
  599. line-height: inherit !important;
  600. vertical-align: top;
  601. }
  602. .u-button--plain[data-v-5ce41ee6] {
  603. background-color: #fff;
  604. }
  605. .u-button--hairline[data-v-5ce41ee6] {
  606. border-width: 0.5px !important;
  607. }
  608. /**
  609. * 这里是uni-app内置的常用样式变量
  610. *
  611. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  612. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  613. *
  614. */
  615. /**
  616. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  617. *
  618. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  619. */
  620. /* 颜色变量 */
  621. /* 行为相关颜色 */
  622. /* 文字基本颜色 */
  623. /* 背景颜色 */
  624. /* 边框颜色 */
  625. /* 尺寸变量 */
  626. /* 文字尺寸 */
  627. /* 图片尺寸 */
  628. /* Border Radius */
  629. /* 水平间距 */
  630. /* 垂直间距 */
  631. /* 透明度 */
  632. /* 文章场景相关 */
  633. uni-view[data-v-72791e59], uni-scroll-view[data-v-72791e59], uni-swiper-item[data-v-72791e59] {
  634. display: flex;
  635. flex-direction: column;
  636. flex-shrink: 0;
  637. flex-grow: 0;
  638. flex-basis: auto;
  639. align-items: stretch;
  640. align-content: flex-start;
  641. }
  642. .u-line[data-v-72791e59] {
  643. vertical-align: middle;
  644. }
  645. /**
  646. * 这里是uni-app内置的常用样式变量
  647. *
  648. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  649. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  650. *
  651. */
  652. /**
  653. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  654. *
  655. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  656. */
  657. /* 颜色变量 */
  658. /* 行为相关颜色 */
  659. /* 文字基本颜色 */
  660. /* 背景颜色 */
  661. /* 边框颜色 */
  662. /* 尺寸变量 */
  663. /* 文字尺寸 */
  664. /* 图片尺寸 */
  665. /* Border Radius */
  666. /* 水平间距 */
  667. /* 垂直间距 */
  668. /* 透明度 */
  669. /* 文章场景相关 */
  670. uni-view[data-v-3fd6feca], uni-scroll-view[data-v-3fd6feca], uni-swiper-item[data-v-3fd6feca] {
  671. display: flex;
  672. flex-direction: column;
  673. flex-shrink: 0;
  674. flex-grow: 0;
  675. flex-basis: auto;
  676. align-items: stretch;
  677. align-content: flex-start;
  678. }
  679. .u-cell__body[data-v-3fd6feca] {
  680. display: flex;
  681. flex-direction: row;
  682. box-sizing: border-box;
  683. padding: 10px 15px;
  684. font-size: 15px;
  685. color: #303133;
  686. align-items: center;
  687. }
  688. .u-cell__body__content[data-v-3fd6feca] {
  689. display: flex;
  690. flex-direction: row;
  691. align-items: center;
  692. flex: 1;
  693. }
  694. .u-cell__body--large[data-v-3fd6feca] {
  695. padding-top: 13px;
  696. padding-bottom: 13px;
  697. }
  698. .u-cell__left-icon-wrap[data-v-3fd6feca], .u-cell__right-icon-wrap[data-v-3fd6feca] {
  699. display: flex;
  700. flex-direction: row;
  701. align-items: center;
  702. font-size: 16px;
  703. }
  704. .u-cell__left-icon-wrap[data-v-3fd6feca] {
  705. margin-right: 4px;
  706. }
  707. .u-cell__right-icon-wrap[data-v-3fd6feca] {
  708. margin-left: 4px;
  709. transition: transform 0.3s;
  710. }
  711. .u-cell__right-icon-wrap--up[data-v-3fd6feca] {
  712. transform: rotate(-90deg);
  713. }
  714. .u-cell__right-icon-wrap--down[data-v-3fd6feca] {
  715. transform: rotate(90deg);
  716. }
  717. .u-cell__title[data-v-3fd6feca] {
  718. flex: 1;
  719. }
  720. .u-cell__title-text[data-v-3fd6feca] {
  721. font-size: 15px;
  722. line-height: 22px;
  723. color: #303133;
  724. }
  725. .u-cell__title-text--large[data-v-3fd6feca] {
  726. font-size: 16px;
  727. }
  728. .u-cell__label[data-v-3fd6feca] {
  729. margin-top: 5px;
  730. font-size: 12px;
  731. color: #909193;
  732. line-height: 18px;
  733. }
  734. .u-cell__label--large[data-v-3fd6feca] {
  735. font-size: 14px;
  736. }
  737. .u-cell__value[data-v-3fd6feca] {
  738. text-align: right;
  739. font-size: 14px;
  740. line-height: 24px;
  741. color: #606266;
  742. }
  743. .u-cell__value--large[data-v-3fd6feca] {
  744. font-size: 15px;
  745. }
  746. .u-cell--clickable[data-v-3fd6feca] {
  747. background-color: #f3f4f6;
  748. }
  749. .u-cell--disabled[data-v-3fd6feca] {
  750. color: #c8c9cc;
  751. cursor: not-allowed;
  752. }
  753. .u-cell--center[data-v-3fd6feca] {
  754. align-items: center;
  755. }
  756. /**
  757. * 这里是uni-app内置的常用样式变量
  758. *
  759. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  760. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  761. *
  762. */
  763. /**
  764. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  765. *
  766. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  767. */
  768. /* 颜色变量 */
  769. /* 行为相关颜色 */
  770. /* 文字基本颜色 */
  771. /* 背景颜色 */
  772. /* 边框颜色 */
  773. /* 尺寸变量 */
  774. /* 文字尺寸 */
  775. /* 图片尺寸 */
  776. /* Border Radius */
  777. /* 水平间距 */
  778. /* 垂直间距 */
  779. /* 透明度 */
  780. /* 文章场景相关 */
  781. uni-view[data-v-014d39dc], uni-scroll-view[data-v-014d39dc], uni-swiper-item[data-v-014d39dc] {
  782. display: flex;
  783. flex-direction: column;
  784. flex-shrink: 0;
  785. flex-grow: 0;
  786. flex-basis: auto;
  787. align-items: stretch;
  788. align-content: flex-start;
  789. }
  790. .u-cell-group[data-v-014d39dc] {
  791. flex: 1;
  792. }
  793. .u-cell-group__title[data-v-014d39dc] {
  794. padding: 16px 16px 8px;
  795. }
  796. .u-cell-group__title__text[data-v-014d39dc] {
  797. font-size: 15px;
  798. line-height: 16px;
  799. color: #303133;
  800. }
  801. .u-cell-group__wrapper[data-v-014d39dc] {
  802. position: relative;
  803. }
  804. body {
  805. background: #F5F6FA;
  806. }
  807. /**
  808. * 这里是uni-app内置的常用样式变量
  809. *
  810. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  811. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  812. *
  813. */
  814. /**
  815. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  816. *
  817. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  818. */
  819. /* 颜色变量 */
  820. /* 行为相关颜色 */
  821. /* 文字基本颜色 */
  822. /* 背景颜色 */
  823. /* 边框颜色 */
  824. /* 尺寸变量 */
  825. /* 文字尺寸 */
  826. /* 图片尺寸 */
  827. /* Border Radius */
  828. /* 水平间距 */
  829. /* 垂直间距 */
  830. /* 透明度 */
  831. /* 文章场景相关 */
  832. .user-info-page[data-v-804eca28] {
  833. padding: 0.625rem;
  834. box-sizing: border-box;
  835. }
  836. .user-info-page .avatar-section[data-v-804eca28] {
  837. background: #FFFFFF;
  838. border-radius: 0.5rem;
  839. padding: 1.25rem;
  840. margin-bottom: 0.625rem;
  841. }
  842. .user-info-page .avatar-section .avatar-wrap[data-v-804eca28] {
  843. display: flex;
  844. align-items: center;
  845. gap: 0.9375rem;
  846. }
  847. .user-info-page .info-section[data-v-804eca28] {
  848. margin-bottom: 0.625rem;
  849. }
  850. .user-info-page .info-section .section-title[data-v-804eca28] {
  851. font-size: 0.875rem;
  852. color: #666;
  853. padding: 0.625rem 0.3125rem;
  854. font-weight: 500;
  855. }
  856. .user-info-page .info-section .info-card[data-v-804eca28] {
  857. background: #FFFFFF;
  858. border-radius: 0.5rem;
  859. overflow: hidden;
  860. }