爱简收旧衣按件回收前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

716 lines
16 KiB

  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. .order-detail-container.data-v-9bb1abc0 {
  27. background: #f8f8f8;
  28. min-height: 100vh;
  29. font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  30. display: flex;
  31. flex-direction: column;
  32. align-items: center;
  33. }
  34. .nav-bar.data-v-9bb1abc0 {
  35. display: flex;
  36. align-items: center;
  37. height: calc(150rpx + var(--status-bar-height));
  38. padding: 0 32rpx;
  39. padding-top: var(--status-bar-height);
  40. background: #fff;
  41. position: fixed;
  42. top: 0;
  43. left: 0;
  44. right: 0;
  45. z-index: 999;
  46. box-sizing: border-box;
  47. box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.03);
  48. }
  49. .nav-bar .back.data-v-9bb1abc0 {
  50. padding: 20rpx;
  51. margin-left: -20rpx;
  52. }
  53. .nav-bar .nav-title.data-v-9bb1abc0 {
  54. flex: 1;
  55. text-align: center;
  56. font-size: 32rpx;
  57. font-weight: 500;
  58. color: #222;
  59. }
  60. .nav-bar .nav-icons.data-v-9bb1abc0 {
  61. display: flex;
  62. align-items: center;
  63. gap: 12px;
  64. }
  65. .main-content.data-v-9bb1abc0 {
  66. margin-top: calc(150rpx + var(--status-bar-height));
  67. width: 100vw;
  68. min-width: 0;
  69. box-sizing: border-box;
  70. padding: 0 16px 60px 16px;
  71. display: flex;
  72. flex-direction: column;
  73. align-items: center;
  74. }
  75. .info-card.data-v-9bb1abc0 {
  76. width: 100%;
  77. max-width: 375px;
  78. min-width: 0;
  79. box-sizing: border-box;
  80. margin: 0 auto 28px auto;
  81. padding: 16px 8px;
  82. background: #fff;
  83. border-radius: 20px;
  84. box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  85. }
  86. .info-card.process-card.data-v-9bb1abc0 {
  87. position: relative;
  88. }
  89. .info-card.process-card .status-tag.data-v-9bb1abc0 {
  90. position: absolute;
  91. right: 18px;
  92. top: 18px;
  93. font-size: 13px;
  94. border-radius: 12px;
  95. padding: 2px 10px;
  96. font-weight: 500;
  97. background: #e6f9e6;
  98. color: #1ecb1e;
  99. height: 22px;
  100. line-height: 18px;
  101. display: flex;
  102. align-items: center;
  103. }
  104. .info-card.process-card .status-tag.orange.data-v-9bb1abc0 {
  105. background: #fff7e6;
  106. color: #ffb400;
  107. font-size: 14px;
  108. border-radius: 12px;
  109. padding: 2px 14px;
  110. font-weight: 400;
  111. height: 22px;
  112. display: flex;
  113. align-items: center;
  114. }
  115. .info-card.process-card .status-tag.gray.data-v-9bb1abc0 {
  116. background: #f5f5f5;
  117. color: #444;
  118. font-size: 14px;
  119. border-radius: 12px;
  120. padding: 2px 14px;
  121. font-weight: 400;
  122. height: 22px;
  123. display: flex;
  124. align-items: center;
  125. }
  126. .info-card.process-card .status-tag.blue.data-v-9bb1abc0 {
  127. background: #eaf6ff;
  128. color: #2a9cfb;
  129. font-size: 14px;
  130. border-radius: 12px;
  131. padding: 2px 14px;
  132. font-weight: 400;
  133. height: 22px;
  134. display: flex;
  135. align-items: center;
  136. }
  137. .info-card.process-card .status-tag.red.data-v-9bb1abc0 {
  138. background: #fff0f0;
  139. color: #ff4d4f;
  140. }
  141. .info-card .info-card-header.data-v-9bb1abc0 {
  142. display: flex;
  143. align-items: center;
  144. justify-content: flex-start;
  145. }
  146. .info-card .info-card-header .info-title-wrap.data-v-9bb1abc0 {
  147. display: flex;
  148. align-items: center;
  149. }
  150. .info-card .info-card-header .info-title-wrap .info-title.data-v-9bb1abc0 {
  151. font-size: 18px;
  152. font-weight: bold;
  153. color: #222;
  154. }
  155. .info-card .info-card-header .info-title-wrap .tag-nobaoyou.data-v-9bb1abc0 {
  156. margin-left: 8px;
  157. background: #fff0f0;
  158. color: #ff4d4f;
  159. font-size: 14px;
  160. border-radius: 12px;
  161. padding: 2px 14px;
  162. font-weight: 400;
  163. height: 22px;
  164. display: flex;
  165. align-items: center;
  166. }
  167. .info-card .info-card-header .status-tag.data-v-9bb1abc0 {
  168. margin-left: auto;
  169. }
  170. .info-card .steps-bar.data-v-9bb1abc0 {
  171. display: flex;
  172. justify-content: space-between;
  173. align-items: flex-start;
  174. margin: 24px 0 24px 0;
  175. gap: 14px;
  176. }
  177. .info-card .steps-bar .step-item.data-v-9bb1abc0 {
  178. background: #fff8ea;
  179. border-radius: 16px;
  180. width: 76px;
  181. height: 76px;
  182. display: flex;
  183. flex-direction: column;
  184. align-items: center;
  185. box-shadow: 0 2px 8px rgba(255, 156, 0, 0.04);
  186. overflow: hidden;
  187. position: relative;
  188. transition: all 0.3s ease;
  189. }
  190. .info-card .steps-bar .step-item .step-icon.data-v-9bb1abc0 {
  191. width: 44px;
  192. height: 44px;
  193. margin: 6px 0 0 0;
  194. transition: transform 0.3s ease;
  195. }
  196. .info-card .steps-bar .step-item .step-label.data-v-9bb1abc0 {
  197. width: 100%;
  198. height: 28px;
  199. background: transparent;
  200. position: absolute;
  201. left: 0;
  202. bottom: 0;
  203. border-radius: 0 0 12px 12px;
  204. display: flex;
  205. align-items: center;
  206. justify-content: center;
  207. transition: all 0.3s ease;
  208. overflow: hidden;
  209. line-height: 1;
  210. }
  211. .info-card .steps-bar .step-item .step-label .step-num.data-v-9bb1abc0, .info-card .steps-bar .step-item .step-label .step-text.data-v-9bb1abc0 {
  212. font-size: 11px;
  213. color: #9b9b9b;
  214. font-weight: 600;
  215. line-height: 1;
  216. vertical-align: middle;
  217. transition: color 0.3s ease;
  218. }
  219. .info-card .steps-bar .step-item .step-label .step-num.data-v-9bb1abc0 {
  220. margin-right: 2px;
  221. }
  222. .info-card .steps-bar .step-item.active.data-v-9bb1abc0 {
  223. transform: translateY(-2px);
  224. box-shadow: 0 4px 12px rgba(255, 156, 0, 0.08);
  225. }
  226. .info-card .steps-bar .step-item.active .step-icon.data-v-9bb1abc0 {
  227. transform: scale(1.05);
  228. }
  229. .info-card .steps-bar .step-item.active .step-label.data-v-9bb1abc0 {
  230. background: linear-gradient(90deg, #ffd01e 0%, #ff8917 100%);
  231. }
  232. .info-card .steps-bar .step-item.active .step-num.data-v-9bb1abc0, .info-card .steps-bar .step-item.active .step-text.data-v-9bb1abc0 {
  233. color: #fff;
  234. font-weight: bold;
  235. }
  236. .info-card .steps-bar .step-item.data-v-9bb1abc0:not(.active):hover {
  237. transform: translateY(-1px);
  238. box-shadow: 0 2px 12px rgba(255, 156, 0, 0.06);
  239. }
  240. .info-card .base-info.data-v-9bb1abc0 {
  241. margin-top: 18px;
  242. }
  243. .info-card .base-info .base-info-row.data-v-9bb1abc0 {
  244. display: flex;
  245. align-items: flex-start;
  246. padding: 0 0 0 0;
  247. position: relative;
  248. min-height: 36px;
  249. justify-content: space-between;
  250. }
  251. .info-card .base-info .base-info-row .base-label-wrap.data-v-9bb1abc0 {
  252. min-width: 80px;
  253. text-align: left;
  254. color: #8b8b8b;
  255. font-size: 13px;
  256. }
  257. .info-card .base-info .base-info-row .base-value-wrap.data-v-9bb1abc0 {
  258. display: flex;
  259. align-items: center;
  260. flex: 1;
  261. justify-content: flex-end;
  262. }
  263. .info-card .base-info .base-info-row .base-value.data-v-9bb1abc0 {
  264. color: #222;
  265. font-size: 15px;
  266. font-weight: 600;
  267. word-break: break-all;
  268. text-align: right;
  269. }
  270. .info-card .base-info .base-info-row .copy-btn.data-v-9bb1abc0 {
  271. color: #ffb400;
  272. font-size: 13px;
  273. margin-left: 6px;
  274. font-weight: 400;
  275. padding: 1px 6px;
  276. border-radius: 6px;
  277. transition: background 0.2s;
  278. }
  279. .info-card .base-info .base-info-row .copy-btn.data-v-9bb1abc0:active {
  280. background: #fff7e6;
  281. }
  282. .info-card .base-info .base-info-row .divider.data-v-9bb1abc0 {
  283. position: absolute;
  284. left: 16px;
  285. right: 16px;
  286. bottom: -1px;
  287. height: 1px;
  288. background: #f0f0f0;
  289. }
  290. .info-card .base-info .base-info-row uni-icons.data-v-9bb1abc0 {
  291. margin-left: 6px;
  292. }
  293. .info-card .base-info .base-info-row .base-value-wrap.data-v-9bb1abc0 {
  294. flex-wrap: wrap;
  295. }
  296. .info-card .base-info .base-info-row .base-value.data-v-9bb1abc0 {
  297. white-space: pre-line;
  298. line-height: 1.5;
  299. }
  300. .info-card.detail-card.data-v-9bb1abc0 {
  301. position: relative;
  302. padding: 0;
  303. background: transparent;
  304. }
  305. .info-card.detail-card .card-header-bg.data-v-9bb1abc0 {
  306. height: 56px;
  307. background: linear-gradient(180deg, #fff7e6 0%, #fff 100%);
  308. border-radius: 20px 20px 0 0;
  309. display: flex;
  310. align-items: flex-end;
  311. padding-left: 20px;
  312. padding-top: 12px;
  313. }
  314. .info-card.detail-card .detail-content.data-v-9bb1abc0 {
  315. background: #fff;
  316. border-radius: 0 0 20px 20px;
  317. padding: 20px 16px 16px 16px;
  318. }
  319. .info-card.detail-card .detail-row.data-v-9bb1abc0 {
  320. display: flex;
  321. align-items: center;
  322. min-height: 32px;
  323. }
  324. .info-card.detail-card .detail-row .detail-label.data-v-9bb1abc0 {
  325. color: #bcbcbc;
  326. font-size: 14px;
  327. width: 90px;
  328. flex-shrink: 0;
  329. }
  330. .info-card.detail-card .detail-row .detail-value.data-v-9bb1abc0 {
  331. color: #222;
  332. font-size: 15px;
  333. font-weight: 500;
  334. text-align: left;
  335. margin-left: 0;
  336. flex: 1;
  337. }
  338. .info-card.detail-card .detail-row.total-row .detail-value.total.data-v-9bb1abc0 {
  339. color: #ffb400;
  340. font-size: 20px;
  341. font-weight: bold;
  342. text-align: right;
  343. flex: unset;
  344. margin-left: auto;
  345. min-width: 100px;
  346. }
  347. .info-card.detail-card .detail-row .orange.data-v-9bb1abc0 {
  348. color: #ffb400;
  349. }
  350. .info-card.detail-card .divider.data-v-9bb1abc0 {
  351. height: 1px;
  352. background: #f0f0f0;
  353. margin: 16px 0;
  354. }
  355. .info-card.detail-card .goods-row.data-v-9bb1abc0 {
  356. display: flex;
  357. align-items: flex-start;
  358. margin-bottom: 18px;
  359. }
  360. .info-card.detail-card .goods-img.data-v-9bb1abc0 {
  361. width: 48px;
  362. height: 48px;
  363. border-radius: 12px;
  364. margin-right: 12px;
  365. }
  366. .info-card.detail-card .goods-info.data-v-9bb1abc0 {
  367. flex: 1;
  368. }
  369. .info-card.detail-card .goods-name.data-v-9bb1abc0 {
  370. font-size: 15px;
  371. font-weight: bold;
  372. color: #222;
  373. margin-bottom: 2px;
  374. }
  375. .info-card.detail-card .goods-desc.data-v-9bb1abc0 {
  376. font-size: 13px;
  377. color: #bbb;
  378. margin-bottom: 8px;
  379. }
  380. .info-card.detail-card .goods-price-row.data-v-9bb1abc0 {
  381. display: flex;
  382. align-items: center;
  383. }
  384. .info-card.detail-card .goods-price.data-v-9bb1abc0 {
  385. color: #ffb400;
  386. font-size: 15px;
  387. font-weight: bold;
  388. margin-right: 8px;
  389. }
  390. .info-card.detail-card .goods-unit.data-v-9bb1abc0 {
  391. font-size: 13px;
  392. color: #bbb;
  393. }
  394. .info-card.detail-card .goods-count.data-v-9bb1abc0 {
  395. color: #bbb;
  396. font-size: 13px;
  397. margin-left: 8px;
  398. }
  399. .info-card.detail-card .goods-total.data-v-9bb1abc0 {
  400. color: #222;
  401. font-size: 15px;
  402. font-weight: bold;
  403. margin-left: auto;
  404. }
  405. .footer-btns.data-v-9bb1abc0 {
  406. position: fixed;
  407. left: 0;
  408. right: 0;
  409. bottom: 0;
  410. background: #fff;
  411. display: flex;
  412. gap: 16px;
  413. padding: 16px 24px 32px 24px;
  414. z-index: 101;
  415. }
  416. .footer-btns .btn-outline.data-v-9bb1abc0 {
  417. flex: 1;
  418. height: 40px;
  419. border-radius: 16px;
  420. border: 1px solid #ffe09a;
  421. color: #ffb400;
  422. background: #fff0d2;
  423. font-size: 15px;
  424. font-weight: 500;
  425. box-shadow: none;
  426. padding: 0 18px;
  427. }
  428. .footer-btns .btn-main.data-v-9bb1abc0 {
  429. flex: 1;
  430. height: 40px;
  431. border-radius: 16px;
  432. background: linear-gradient(90deg, #ffbe3d 0%, #ffac04 100%);
  433. color: #fff;
  434. border: none;
  435. font-size: 15px;
  436. font-weight: 500;
  437. box-shadow: none;
  438. padding: 0 18px;
  439. }
  440. .cancel-reason.data-v-9bb1abc0 {
  441. color: #bbb;
  442. font-size: 13px;
  443. margin-bottom: 10px;
  444. padding-left: 2px;
  445. }
  446. .inspect-card.data-v-9bb1abc0 {
  447. max-width: 335px;
  448. width: 100%;
  449. margin: 0 auto 28px auto;
  450. border-radius: 24px;
  451. overflow: hidden;
  452. }
  453. .inspect-card .inspect-header.data-v-9bb1abc0 {
  454. height: 60px;
  455. background: linear-gradient(180deg, #fff7e6 0%, #fffbe6 100%);
  456. border-radius: 24px 24px 0 0;
  457. display: flex;
  458. align-items: flex-end;
  459. padding-left: 24px;
  460. }
  461. .inspect-card .inspect-title.data-v-9bb1abc0 {
  462. font-size: 20px;
  463. font-weight: bold;
  464. color: #222;
  465. line-height: 60px;
  466. }
  467. .inspect-card .inspect-content.data-v-9bb1abc0 {
  468. background: #fff;
  469. border-radius: 0 0 24px 24px;
  470. padding: 24px 24px 20px 24px;
  471. }
  472. .inspect-card .inspect-row.data-v-9bb1abc0 {
  473. display: flex;
  474. align-items: center;
  475. justify-content: space-between;
  476. min-height: 40px;
  477. position: relative;
  478. }
  479. .inspect-card .inspect-row .inspect-label.data-v-9bb1abc0 {
  480. color: #bcbcbc;
  481. font-size: 16px;
  482. }
  483. .inspect-card .inspect-row .inspect-value.data-v-9bb1abc0 {
  484. color: #222;
  485. font-size: 16px;
  486. font-weight: 500;
  487. }
  488. .inspect-card .inspect-row .inspect-divider.data-v-9bb1abc0 {
  489. height: 1px;
  490. background: #f0f0f0;
  491. margin: 0;
  492. width: 100%;
  493. position: absolute;
  494. left: 0;
  495. bottom: 0;
  496. }
  497. .inspect-card .inspect-btn.data-v-9bb1abc0 {
  498. width: 100%;
  499. margin: 24px 0 0 0;
  500. height: 48px;
  501. border-radius: 24px;
  502. border: 1.5px solid #ffb400;
  503. color: #ffb400;
  504. background: #fff0d2;
  505. font-size: 18px;
  506. font-weight: 500;
  507. box-shadow: none;
  508. text-align: center;
  509. line-height: 48px;
  510. }
  511. .card-title.data-v-9bb1abc0 {
  512. font-size: 20px;
  513. font-weight: bold;
  514. color: #222;
  515. margin-bottom: 12px;
  516. }
  517. .custom-inspect-card.data-v-9bb1abc0 {
  518. background: linear-gradient(180deg, #fffbe6 0%, #fff 90%);
  519. border-radius: 20px;
  520. box-shadow: 0 8px 24px rgba(255, 156, 0, 0.03);
  521. padding: 0;
  522. margin: 24rpx 0 0 0;
  523. overflow: hidden;
  524. }
  525. .custom-header-bg.data-v-9bb1abc0 {
  526. height: 56px;
  527. background: linear-gradient(180deg, #fff7e6 0%, #fff 100%);
  528. border-radius: 20px 20px 0 0;
  529. display: flex;
  530. align-items: flex-end;
  531. padding-left: 24px;
  532. padding-top: 12px;
  533. }
  534. .custom-card-title.data-v-9bb1abc0 {
  535. font-size: 20px;
  536. font-weight: bold;
  537. color: #222;
  538. margin-bottom: 12px;
  539. }
  540. .custom-detail-content.data-v-9bb1abc0 {
  541. background: #fff;
  542. border-radius: 0 0 20px 20px;
  543. padding: 20px 16px 16px 16px;
  544. }
  545. .custom-detail-row.data-v-9bb1abc0 {
  546. display: flex;
  547. align-items: center;
  548. min-height: 32px;
  549. font-size: 15px;
  550. }
  551. .custom-detail-row .custom-detail-label.data-v-9bb1abc0 {
  552. color: #bcbcbc;
  553. font-size: 14px;
  554. width: 90px;
  555. flex-shrink: 0;
  556. }
  557. .custom-detail-row .custom-detail-value.data-v-9bb1abc0 {
  558. color: #222;
  559. font-size: 15px;
  560. font-weight: 500;
  561. text-align: left;
  562. margin-left: 0;
  563. flex: 1;
  564. }
  565. .custom-detail-row.total-row .custom-detail-value.total.data-v-9bb1abc0 {
  566. color: #ffb400;
  567. font-size: 20px;
  568. font-weight: bold;
  569. text-align: right;
  570. flex: unset;
  571. margin-left: auto;
  572. min-width: 100px;
  573. }
  574. .custom-detail-row .highlight.data-v-9bb1abc0 {
  575. color: #ffb400;
  576. font-size: 18px;
  577. font-weight: bold;
  578. }
  579. .custom-divider.data-v-9bb1abc0 {
  580. width: 100%;
  581. height: 1px;
  582. background: #f0f0f0;
  583. margin: 16px 0;
  584. }
  585. .custom-goods-row.data-v-9bb1abc0 {
  586. background: #fff;
  587. border-radius: 24px;
  588. display: flex;
  589. align-items: center;
  590. padding: 24px 20px;
  591. box-shadow: 0 2px 8px rgba(255, 156, 0, 0.04);
  592. position: relative;
  593. margin-bottom: 18px;
  594. }
  595. .custom-goods-img.data-v-9bb1abc0 {
  596. width: 48px;
  597. height: 48px;
  598. border-radius: 12px;
  599. margin-right: 12px;
  600. flex-shrink: 0;
  601. }
  602. .custom-goods-info.data-v-9bb1abc0 {
  603. flex: 1;
  604. display: flex;
  605. flex-direction: column;
  606. justify-content: center;
  607. }
  608. .custom-goods-name.data-v-9bb1abc0 {
  609. font-size: 15px;
  610. color: #222;
  611. font-weight: bold;
  612. margin-bottom: 2px;
  613. }
  614. .custom-goods-desc.data-v-9bb1abc0 {
  615. font-size: 13px;
  616. color: #bcbcbc;
  617. margin-bottom: 10px;
  618. }
  619. .custom-goods-meta.data-v-9bb1abc0 {
  620. display: flex;
  621. align-items: center;
  622. gap: 10px;
  623. }
  624. .custom-goods-price.data-v-9bb1abc0 {
  625. color: #ffb400;
  626. font-size: 15px;
  627. font-weight: bold;
  628. }
  629. .custom-goods-unit.data-v-9bb1abc0 {
  630. color: #bcbcbc;
  631. font-size: 13px;
  632. font-weight: normal;
  633. }
  634. .custom-goods-count.data-v-9bb1abc0 {
  635. color: #bcbcbc;
  636. font-size: 13px;
  637. margin-left: 8px;
  638. }
  639. .custom-goods-total.data-v-9bb1abc0 {
  640. color: #222;
  641. font-size: 15px;
  642. font-weight: bold;
  643. margin-left: 18px;
  644. flex-shrink: 0;
  645. }
  646. .user-stat-modal-mask.data-v-9bb1abc0 {
  647. position: fixed;
  648. left: 0;
  649. right: 0;
  650. top: 0;
  651. bottom: 0;
  652. background: rgba(0, 0, 0, 0.45);
  653. z-index: 9999;
  654. display: flex;
  655. align-items: center;
  656. justify-content: center;
  657. }
  658. .user-stat-modal-box.data-v-9bb1abc0 {
  659. width: 80vw;
  660. max-width: 420px;
  661. background: linear-gradient(180deg, #fff7f2 0%, #fff 100%);
  662. border-radius: 32px;
  663. box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  664. padding: 38px 0 32px 0;
  665. display: flex;
  666. flex-direction: column;
  667. align-items: center;
  668. }
  669. .user-stat-modal-title.data-v-9bb1abc0 {
  670. font-size: 24px;
  671. font-weight: bold;
  672. color: #222;
  673. text-align: center;
  674. margin-bottom: 32px;
  675. }
  676. .user-stat-modal-row.data-v-9bb1abc0 {
  677. width: 80%;
  678. display: flex;
  679. align-items: center;
  680. justify-content: space-between;
  681. font-size: 18px;
  682. margin: 0 auto;
  683. padding: 12px 0;
  684. }
  685. .user-stat-label.data-v-9bb1abc0 {
  686. color: #999;
  687. font-size: 16px;
  688. }
  689. .user-stat-value.data-v-9bb1abc0 {
  690. color: #222;
  691. font-size: 18px;
  692. font-weight: 500;
  693. }
  694. .user-stat-modal-divider.data-v-9bb1abc0 {
  695. width: 80%;
  696. height: 1px;
  697. background: #f0f0f0;
  698. margin: 0 auto;
  699. }
  700. .user-stat-modal-btn.data-v-9bb1abc0 {
  701. width: 80%;
  702. margin: 32px auto 0 auto;
  703. height: 48px;
  704. border-radius: 24px;
  705. background: #fffbe6;
  706. color: #ffb400;
  707. font-size: 20px;
  708. font-weight: bold;
  709. border: 2px solid #ffd01e;
  710. text-align: center;
  711. line-height: 48px;
  712. }
  713. .user-stat-trigger.data-v-9bb1abc0 {
  714. color: #222;
  715. font-weight: 500;
  716. cursor: pointer;
  717. }