index.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  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-72791e59], uni-scroll-view[data-v-72791e59], uni-swiper-item[data-v-72791e59] {
  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-line[data-v-72791e59] {
  123. vertical-align: middle;
  124. }
  125. /**
  126. * 这里是uni-app内置的常用样式变量
  127. *
  128. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  129. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  130. *
  131. */
  132. /**
  133. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  134. *
  135. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  136. */
  137. /* 颜色变量 */
  138. /* 行为相关颜色 */
  139. /* 文字基本颜色 */
  140. /* 背景颜色 */
  141. /* 边框颜色 */
  142. /* 尺寸变量 */
  143. /* 文字尺寸 */
  144. /* 图片尺寸 */
  145. /* Border Radius */
  146. /* 水平间距 */
  147. /* 垂直间距 */
  148. /* 透明度 */
  149. /* 文章场景相关 */
  150. uni-view[data-v-3fd6feca], uni-scroll-view[data-v-3fd6feca], uni-swiper-item[data-v-3fd6feca] {
  151. display: flex;
  152. flex-direction: column;
  153. flex-shrink: 0;
  154. flex-grow: 0;
  155. flex-basis: auto;
  156. align-items: stretch;
  157. align-content: flex-start;
  158. }
  159. .u-cell__body[data-v-3fd6feca] {
  160. display: flex;
  161. flex-direction: row;
  162. box-sizing: border-box;
  163. padding: 10px 15px;
  164. font-size: 15px;
  165. color: #303133;
  166. align-items: center;
  167. }
  168. .u-cell__body__content[data-v-3fd6feca] {
  169. display: flex;
  170. flex-direction: row;
  171. align-items: center;
  172. flex: 1;
  173. }
  174. .u-cell__body--large[data-v-3fd6feca] {
  175. padding-top: 13px;
  176. padding-bottom: 13px;
  177. }
  178. .u-cell__left-icon-wrap[data-v-3fd6feca], .u-cell__right-icon-wrap[data-v-3fd6feca] {
  179. display: flex;
  180. flex-direction: row;
  181. align-items: center;
  182. font-size: 16px;
  183. }
  184. .u-cell__left-icon-wrap[data-v-3fd6feca] {
  185. margin-right: 4px;
  186. }
  187. .u-cell__right-icon-wrap[data-v-3fd6feca] {
  188. margin-left: 4px;
  189. transition: transform 0.3s;
  190. }
  191. .u-cell__right-icon-wrap--up[data-v-3fd6feca] {
  192. transform: rotate(-90deg);
  193. }
  194. .u-cell__right-icon-wrap--down[data-v-3fd6feca] {
  195. transform: rotate(90deg);
  196. }
  197. .u-cell__title[data-v-3fd6feca] {
  198. flex: 1;
  199. }
  200. .u-cell__title-text[data-v-3fd6feca] {
  201. font-size: 15px;
  202. line-height: 22px;
  203. color: #303133;
  204. }
  205. .u-cell__title-text--large[data-v-3fd6feca] {
  206. font-size: 16px;
  207. }
  208. .u-cell__label[data-v-3fd6feca] {
  209. margin-top: 5px;
  210. font-size: 12px;
  211. color: #909193;
  212. line-height: 18px;
  213. }
  214. .u-cell__label--large[data-v-3fd6feca] {
  215. font-size: 14px;
  216. }
  217. .u-cell__value[data-v-3fd6feca] {
  218. text-align: right;
  219. font-size: 14px;
  220. line-height: 24px;
  221. color: #606266;
  222. }
  223. .u-cell__value--large[data-v-3fd6feca] {
  224. font-size: 15px;
  225. }
  226. .u-cell--clickable[data-v-3fd6feca] {
  227. background-color: #f3f4f6;
  228. }
  229. .u-cell--disabled[data-v-3fd6feca] {
  230. color: #c8c9cc;
  231. cursor: not-allowed;
  232. }
  233. .u-cell--center[data-v-3fd6feca] {
  234. align-items: center;
  235. }
  236. /**
  237. * 这里是uni-app内置的常用样式变量
  238. *
  239. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  240. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  241. *
  242. */
  243. /**
  244. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  245. *
  246. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  247. */
  248. /* 颜色变量 */
  249. /* 行为相关颜色 */
  250. /* 文字基本颜色 */
  251. /* 背景颜色 */
  252. /* 边框颜色 */
  253. /* 尺寸变量 */
  254. /* 文字尺寸 */
  255. /* 图片尺寸 */
  256. /* Border Radius */
  257. /* 水平间距 */
  258. /* 垂直间距 */
  259. /* 透明度 */
  260. /* 文章场景相关 */
  261. uni-view[data-v-014d39dc], uni-scroll-view[data-v-014d39dc], uni-swiper-item[data-v-014d39dc] {
  262. display: flex;
  263. flex-direction: column;
  264. flex-shrink: 0;
  265. flex-grow: 0;
  266. flex-basis: auto;
  267. align-items: stretch;
  268. align-content: flex-start;
  269. }
  270. .u-cell-group[data-v-014d39dc] {
  271. flex: 1;
  272. }
  273. .u-cell-group__title[data-v-014d39dc] {
  274. padding: 16px 16px 8px;
  275. }
  276. .u-cell-group__title__text[data-v-014d39dc] {
  277. font-size: 15px;
  278. line-height: 16px;
  279. color: #303133;
  280. }
  281. .u-cell-group__wrapper[data-v-014d39dc] {
  282. position: relative;
  283. }
  284. /* 无任何数据的空布局 */
  285. .mescroll-empty[data-v-7cefd855] {
  286. box-sizing: border-box;
  287. width: 100%;
  288. padding: 3.125rem 1.5625rem;
  289. text-align: center;
  290. }
  291. .mescroll-empty.empty-fixed[data-v-7cefd855] {
  292. z-index: 99;
  293. position: absolute; /*transform会使fixed失效,最终会降级为absolute */
  294. top: 3.125rem;
  295. left: 0;
  296. }
  297. .mescroll-empty .empty-icon[data-v-7cefd855] {
  298. width: 8.75rem;
  299. height: 8.75rem;
  300. }
  301. .mescroll-empty .empty-tip[data-v-7cefd855] {
  302. margin-top: 0.625rem;
  303. height: 1.25rem;
  304. font-size: 0.875rem;
  305. font-family: PingFangSC;
  306. font-weight: 500;
  307. color: #666666;
  308. line-height: 1.25rem;
  309. }
  310. .mescroll-empty .empty-btn[data-v-7cefd855] {
  311. display: inline-block;
  312. margin-top: 1.25rem;
  313. min-width: 6.25rem;
  314. padding: 0.5625rem;
  315. font-size: 0.875rem;
  316. border: 0.03125rem solid #e04b28;
  317. border-radius: 1.875rem;
  318. color: #e04b28;
  319. }
  320. .mescroll-empty .empty-btn[data-v-7cefd855]:active {
  321. opacity: 0.75;
  322. }
  323. /* 回到顶部的按钮 */
  324. .mescroll-totop[data-v-49fff3a8] {
  325. z-index: 9990;
  326. position: fixed !important; /* 加上important避免编译到H5,在多mescroll中定位失效 */
  327. right: 0.625rem;
  328. bottom: 3.75rem;
  329. width: 2.25rem;
  330. height: auto;
  331. border-radius: 50%;
  332. opacity: 0;
  333. transition: opacity 0.5s; /* 过渡 */
  334. margin-bottom: var(--window-bottom); /* css变量 */
  335. }
  336. /* 适配 iPhoneX */
  337. @supports (bottom: constant(safe-area-inset-bottom)) or (bottom: env(safe-area-inset-bottom)) {
  338. .mescroll-totop-safearea[data-v-49fff3a8] {
  339. margin-bottom: calc(var(--window-bottom) + constant(safe-area-inset-bottom)); /* window-bottom + 适配 iPhoneX */
  340. margin-bottom: calc(var(--window-bottom) + env(safe-area-inset-bottom));
  341. }
  342. }
  343. /* 显示 -- 淡入 */
  344. .mescroll-totop-in[data-v-49fff3a8] {
  345. opacity: 1;
  346. }
  347. /* 隐藏 -- 淡出且不接收事件*/
  348. .mescroll-totop-out[data-v-49fff3a8] {
  349. opacity: 0;
  350. pointer-events: none;
  351. }
  352. .mescroll-uni-warp[data-v-97b1664c] {
  353. height: 100%;
  354. }
  355. .mescroll-uni-content[data-v-97b1664c] {
  356. height: 100%;
  357. }
  358. .mescroll-uni[data-v-97b1664c] {
  359. position: relative;
  360. width: 100%;
  361. height: 100%;
  362. min-height: 6.25rem;
  363. overflow-y: auto;
  364. box-sizing: border-box;
  365. /* 避免设置padding出现双滚动条的问题 */
  366. }
  367. /* 定位的方式固定高度 */
  368. .mescroll-uni-fixed[data-v-97b1664c] {
  369. z-index: 1;
  370. position: fixed;
  371. top: 0;
  372. left: 0;
  373. right: 0;
  374. bottom: 0;
  375. width: auto;
  376. /* 使right生效 */
  377. height: auto;
  378. /* 使bottom生效 */
  379. }
  380. /* 适配 iPhoneX */
  381. @supports (bottom: constant(safe-area-inset-bottom)) or (bottom: env(safe-area-inset-bottom)) {
  382. .mescroll-safearea[data-v-97b1664c] {
  383. padding-bottom: constant(safe-area-inset-bottom);
  384. padding-bottom: env(safe-area-inset-bottom);
  385. }
  386. }
  387. /* 下拉刷新区域 */
  388. .mescroll-downwarp[data-v-97b1664c] {
  389. position: absolute;
  390. top: -100%;
  391. left: 0;
  392. width: 100%;
  393. height: 100%;
  394. text-align: center;
  395. }
  396. /* 下拉刷新--内容区,定位于区域底部 */
  397. .mescroll-downwarp .downwarp-content[data-v-97b1664c] {
  398. position: absolute;
  399. left: 0;
  400. bottom: 0;
  401. width: 100%;
  402. min-height: 1.875rem;
  403. padding: 0.625rem 0;
  404. text-align: center;
  405. }
  406. /* 下拉刷新--提示文本 */
  407. .mescroll-downwarp .downwarp-tip[data-v-97b1664c] {
  408. display: inline-block;
  409. font-size: 0.875rem;
  410. vertical-align: middle;
  411. margin-left: 0.5rem;
  412. /* color: gray; 已在style设置color,此处删去*/
  413. }
  414. /* 下拉刷新--旋转进度条 */
  415. .mescroll-downwarp .downwarp-progress[data-v-97b1664c] {
  416. display: inline-block;
  417. width: 1rem;
  418. height: 1rem;
  419. border-radius: 50%;
  420. border: 0.0625rem solid gray;
  421. border-bottom-color: transparent !important; /*已在style设置border-color,此处需加 !important*/
  422. vertical-align: middle;
  423. }
  424. /* 旋转动画 */
  425. .mescroll-downwarp .mescroll-rotate[data-v-97b1664c] {
  426. animation: mescrollDownRotate-97b1664c 0.6s linear infinite;
  427. }
  428. @keyframes mescrollDownRotate-97b1664c {
  429. 0% {
  430. transform: rotate(0deg);
  431. }
  432. 100% {
  433. transform: rotate(360deg);
  434. }
  435. }
  436. /* 上拉加载区域 */
  437. .mescroll-upwarp[data-v-97b1664c] {
  438. box-sizing: border-box;
  439. min-height: 3.4375rem;
  440. padding: 0.9375rem 0;
  441. text-align: center;
  442. clear: both;
  443. }
  444. /*提示文本 */
  445. .mescroll-upwarp .upwarp-tip[data-v-97b1664c],
  446. .mescroll-upwarp .upwarp-nodata[data-v-97b1664c] {
  447. display: inline-block;
  448. font-size: 0.875rem;
  449. vertical-align: middle;
  450. /* color: gray; 已在style设置color,此处删去*/
  451. }
  452. .mescroll-upwarp .upwarp-tip[data-v-97b1664c] {
  453. margin-left: 0.5rem;
  454. }
  455. /*旋转进度条 */
  456. .mescroll-upwarp .upwarp-progress[data-v-97b1664c] {
  457. display: inline-block;
  458. width: 1rem;
  459. height: 1rem;
  460. border-radius: 50%;
  461. border: 0.0625rem solid gray;
  462. border-bottom-color: transparent !important; /*已在style设置border-color,此处需加 !important*/
  463. vertical-align: middle;
  464. }
  465. /* 旋转动画 */
  466. .mescroll-upwarp .mescroll-rotate[data-v-97b1664c] {
  467. animation: mescrollUpRotate-97b1664c 0.6s linear infinite;
  468. }
  469. @keyframes mescrollUpRotate-97b1664c {
  470. 0% {
  471. transform: rotate(0deg);
  472. }
  473. 100% {
  474. transform: rotate(360deg);
  475. }
  476. }
  477. /**
  478. * 这里是uni-app内置的常用样式变量
  479. *
  480. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  481. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  482. *
  483. */
  484. /**
  485. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  486. *
  487. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  488. */
  489. /* 颜色变量 */
  490. /* 行为相关颜色 */
  491. /* 文字基本颜色 */
  492. /* 背景颜色 */
  493. /* 边框颜色 */
  494. /* 尺寸变量 */
  495. /* 文字尺寸 */
  496. /* 图片尺寸 */
  497. /* Border Radius */
  498. /* 水平间距 */
  499. /* 垂直间距 */
  500. /* 透明度 */
  501. /* 文章场景相关 */
  502. .item[data-v-30bc23e1] {
  503. line-height: 4.6875rem;
  504. border-bottom: 1px solid #ccc;
  505. }
  506. body {
  507. background: #F5F6FA;
  508. }
  509. /**
  510. * 这里是uni-app内置的常用样式变量
  511. *
  512. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  513. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  514. *
  515. */
  516. /**
  517. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  518. *
  519. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  520. */
  521. /* 颜色变量 */
  522. /* 行为相关颜色 */
  523. /* 文字基本颜色 */
  524. /* 背景颜色 */
  525. /* 边框颜色 */
  526. /* 尺寸变量 */
  527. /* 文字尺寸 */
  528. /* 图片尺寸 */
  529. /* Border Radius */
  530. /* 水平间距 */
  531. /* 垂直间距 */
  532. /* 透明度 */
  533. /* 文章场景相关 */
  534. .order-statistics[data-v-17a44f9d] {
  535. padding: 0.625rem;
  536. }
  537. .order-statistics .overview-card[data-v-17a44f9d] {
  538. background: #FFFFFF;
  539. border-radius: 0.5rem;
  540. padding: 0.9375rem 0.625rem;
  541. margin-bottom: 0.625rem;
  542. }
  543. .order-statistics .overview-card .overview-grid[data-v-17a44f9d] {
  544. display: flex;
  545. justify-content: space-between;
  546. }
  547. .order-statistics .overview-card .overview-grid .grid-item[data-v-17a44f9d] {
  548. flex: 1;
  549. text-align: center;
  550. position: relative;
  551. }
  552. .order-statistics .overview-card .overview-grid .grid-item[data-v-17a44f9d]:not(:last-child)::after {
  553. content: "";
  554. position: absolute;
  555. right: 0;
  556. top: 50%;
  557. transform: translateY(-50%);
  558. height: 60%;
  559. width: 0.0625rem;
  560. background: #EEEEEE;
  561. }
  562. .order-statistics .overview-card .overview-grid .grid-item .item-label[data-v-17a44f9d] {
  563. font-size: 1rem;
  564. color: #666666;
  565. margin-bottom: 0.375rem;
  566. display: block;
  567. }
  568. .order-statistics .overview-card .overview-grid .grid-item .item-value[data-v-17a44f9d] {
  569. font-size: 1.375rem;
  570. color: #333333;
  571. font-weight: 500;
  572. }
  573. .order-statistics .overview-card .overview-grid .grid-item .item-value .unit[data-v-17a44f9d] {
  574. font-size: 0.75rem;
  575. margin-left: 0.125rem;
  576. }
  577. .order-statistics[data-v-17a44f9d] .u-cell .u-cell__body {
  578. padding: 15px;
  579. }
  580. .order-statistics .status-grid[data-v-17a44f9d] {
  581. display: grid;
  582. grid-template-columns: repeat(3, 1fr);
  583. gap: 0.625rem;
  584. margin-bottom: 0.625rem;
  585. }
  586. .order-statistics .status-grid .status-item[data-v-17a44f9d] {
  587. background: #FFFFFF;
  588. border-radius: 0.5rem;
  589. padding: 0.75rem 0.375rem;
  590. }
  591. .order-statistics .status-grid .status-item .status-content .status-label[data-v-17a44f9d] {
  592. font-size: 1rem;
  593. color: #666666;
  594. margin-bottom: 0.5rem;
  595. display: block;
  596. }
  597. .order-statistics .status-grid .status-item .status-content .status-value-wrap[data-v-17a44f9d] {
  598. display: flex;
  599. align-items: center;
  600. justify-content: space-between;
  601. }
  602. .order-statistics .status-grid .status-item .status-content .status-value-wrap .status-value[data-v-17a44f9d] {
  603. font-size: 1.375rem;
  604. color: #333333;
  605. font-weight: 500;
  606. }
  607. .order-statistics .status-grid .status-item[data-v-17a44f9d]:active {
  608. opacity: 0.8;
  609. }
  610. .order-statistics .bottom-actions[data-v-17a44f9d] {
  611. background: #FFFFFF;
  612. border-radius: 0.5rem;
  613. overflow: hidden;
  614. }