storeOrderRefundDetails.wxss 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364
  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. /*自定义主题色 */
  27. .fixed-top-box {
  28. width: 100%;
  29. background: linear-gradient(135deg, #2BC7B9 0%, #60CDC3 100%);
  30. position: fixed;
  31. top: 0;
  32. left: 0;
  33. z-index: 1000;
  34. }
  35. .top-cont {
  36. width: 100%;
  37. height: 500rpx;
  38. position: relative;
  39. }
  40. .top-cont .bg {
  41. width: 100%;
  42. height: 350rpx;
  43. position: absolute;
  44. top: 0;
  45. left: 0;
  46. z-index: 1;
  47. background-color: #FF5C03;
  48. background: linear-gradient(#FF5C03, #E2C99E);
  49. border-radius: 0rpx 0rpx 100rpx 100rpx;
  50. }
  51. .top-cont .top-inner {
  52. width: 100%;
  53. height: 100%;
  54. position: absolute;
  55. top: 0;
  56. left: 0;
  57. z-index: 2;
  58. }
  59. .top-cont .top-inner .back-box {
  60. height: 88rpx;
  61. padding-left: 22rpx;
  62. display: flex;
  63. align-items: center;
  64. justify-content: space-between;
  65. padding: 0 20rpx;
  66. }
  67. .top-cont .top-inner .back-box image {
  68. width: 40rpx;
  69. height: 40rpx;
  70. }
  71. .top-cont .top-inner .back-box .title {
  72. font-size: 36rpx;
  73. font-family: PingFang SC;
  74. font-weight: 500;
  75. color: #FFFFFF;
  76. }
  77. .top-cont .top-inner .order-status {
  78. margin-top: 60rpx;
  79. display: flex;
  80. align-items: center;
  81. justify-content: space-between;
  82. padding: 0 30rpx;
  83. }
  84. .top-cont .top-inner .order-status .inner {
  85. display: flex;
  86. align-items: center;
  87. }
  88. .top-cont .top-inner .order-status .inner .img-box {
  89. width: 96rpx;
  90. height: 96rpx;
  91. margin-right: 30rpx;
  92. }
  93. .top-cont .top-inner .order-status .inner .img-box image {
  94. width: 100%;
  95. height: 100%;
  96. }
  97. .top-cont .top-inner .order-status .inner .status-box {
  98. height: 96rpx;
  99. display: flex;
  100. flex-direction: column;
  101. justify-content: center;
  102. }
  103. .top-cont .top-inner .order-status .inner .status-box .status {
  104. font-size: 40rpx;
  105. font-family: PingFang SC;
  106. font-weight: bold;
  107. color: #FFFFFF;
  108. line-height: 1;
  109. }
  110. .top-cont .top-inner .order-status .inner .status-box .desc {
  111. font-size: 26rpx;
  112. font-family: PingFang SC;
  113. font-weight: 500;
  114. color: #FFFFFF;
  115. line-height: 1;
  116. margin-top: 30rpx;
  117. }
  118. .top-cont .top-inner .order-status .inner .status-box .det-box {
  119. display: flex;
  120. align-items: center;
  121. }
  122. .top-cont .top-inner .order-status .inner .status-box .det-box image {
  123. width: 14rpx;
  124. height: 24rpx;
  125. margin-left: 12rpx;
  126. margin-top: 30rpx;
  127. }
  128. .top-cont .top-inner .refund-info {
  129. margin-top: 50rpx;
  130. padding: 0 20rpx;
  131. }
  132. .top-cont .top-inner .refund-info .inner {
  133. background: #FFFFFF;
  134. border-radius: 16rpx;
  135. padding: 0 30rpx 15rpx 30rpx;
  136. }
  137. .top-cont .top-inner .refund-info .inner .title-box {
  138. height: 88rpx;
  139. border-bottom: 1px solid #F0F0F0;
  140. display: flex;
  141. align-items: center;
  142. justify-content: space-between;
  143. }
  144. .top-cont .top-inner .refund-info .inner .title-box .left {
  145. display: flex;
  146. align-items: center;
  147. }
  148. .top-cont .top-inner .refund-info .inner .title-box .left .title {
  149. font-size: 30rpx;
  150. font-family: PingFang SC;
  151. font-weight: bold;
  152. color: #333333;
  153. line-height: 1;
  154. margin-right: 20rpx;
  155. }
  156. .top-cont .top-inner .refund-info .inner .title-box .left .price-box {
  157. display: flex;
  158. align-items: flex-end;
  159. }
  160. .top-cont .top-inner .refund-info .inner .title-box .left .price-box .unit {
  161. font-size: 24rpx;
  162. font-family: PingFang SC;
  163. font-weight: 500;
  164. color: #FF6633;
  165. line-height: 1.2;
  166. margin-right: 4rpx;
  167. }
  168. .top-cont .top-inner .refund-info .inner .title-box .left .price-box .num {
  169. font-size: 32rpx;
  170. font-family: PingFang SC;
  171. font-weight: bold;
  172. color: #FF6633;
  173. line-height: 1;
  174. }
  175. .top-cont .top-inner .refund-info .inner .title-box .right {
  176. display: flex;
  177. align-items: center;
  178. }
  179. .top-cont .top-inner .refund-info .inner .title-box .right .text {
  180. font-size: 24rpx;
  181. font-family: PingFang SC;
  182. font-weight: 500;
  183. color: #999999;
  184. line-height: 1;
  185. margin-right: 10rpx;
  186. }
  187. .top-cont .top-inner .refund-info .inner .title-box .right image {
  188. width: 12rpx;
  189. height: 22rpx;
  190. }
  191. .top-cont .top-inner .refund-info .inner .refund-item {
  192. margin-top: 40rpx;
  193. }
  194. .top-cont .top-inner .refund-info .inner .refund-item .text {
  195. margin-bottom: 10rpx;
  196. font-size: 26rpx;
  197. font-family: PingFang SC;
  198. font-weight: 500;
  199. color: #666666;
  200. line-height: 1;
  201. }
  202. .content {
  203. padding: 0 20rpx 20rpx;
  204. }
  205. .content .return-info {
  206. margin-top: 30rpx;
  207. background: #FFFFFF;
  208. border-radius: 16rpx;
  209. }
  210. .content .return-info .title-box {
  211. height: 88rpx;
  212. padding: 0 30rpx;
  213. display: flex;
  214. align-items: center;
  215. justify-content: space-between;
  216. }
  217. .content .return-info .title-box .label {
  218. font-size: 30rpx;
  219. font-family: PingFang SC;
  220. font-weight: bold;
  221. color: #333333;
  222. }
  223. .content .return-info .title-box .ret-num {
  224. font-size: 26rpx;
  225. font-family: PingFang SC;
  226. font-weight: 500;
  227. color: #999999;
  228. }
  229. .content .return-info .goods-list {
  230. padding: 0 30rpx;
  231. background-color: #FFFFFF;
  232. border-radius: 16rpx;
  233. }
  234. .content .return-info .goods-list .item {
  235. padding: 30rpx 0;
  236. border-bottom: 1px solid #EDEEEF;
  237. display: flex;
  238. align-items: center;
  239. }
  240. .content .return-info .goods-list .item .img-box {
  241. width: 160rpx;
  242. height: 160rpx;
  243. margin-right: 30rpx;
  244. }
  245. .content .return-info .goods-list .item .img-box image {
  246. width: 100%;
  247. height: 100%;
  248. }
  249. .content .return-info .goods-list .item .info-box {
  250. width: calc(100% - 190rpx);
  251. height: 160rpx;
  252. display: flex;
  253. flex-direction: column;
  254. justify-content: space-between;
  255. }
  256. .content .return-info .goods-list .item .info-box .title {
  257. font-size: 28rpx;
  258. font-family: PingFang SC;
  259. font-weight: 500;
  260. color: #333333;
  261. line-height: 36rpx;
  262. }
  263. .content .return-info .goods-list .item .info-box .title .tag {
  264. display: inline-block;
  265. padding: 0 6rpx;
  266. height: 30rpx;
  267. background: linear-gradient(90deg, #2BC7B9 0%, #2BC7A4 100%);
  268. border-radius: 4rpx;
  269. margin-right: 10rpx;
  270. font-size: 22rpx;
  271. font-family: PingFang SC;
  272. font-weight: bold;
  273. color: #FFFFFF;
  274. line-height: 30rpx;
  275. float: left;
  276. margin-top: 7rpx;
  277. }
  278. .content .return-info .goods-list .item .info-box .spec {
  279. margin-top: 18rpx;
  280. font-size: 24rpx;
  281. font-family: PingFang SC;
  282. font-weight: 500;
  283. color: #999999;
  284. line-height: 1;
  285. }
  286. .content .return-info .goods-list .item .info-box .price-num {
  287. display: flex;
  288. align-items: center;
  289. justify-content: space-between;
  290. }
  291. .content .return-info .goods-list .item .info-box .price-num .price {
  292. display: flex;
  293. align-items: flex-end;
  294. }
  295. .content .return-info .goods-list .item .info-box .price-num .price .unit {
  296. font-size: 24rpx;
  297. font-family: PingFang SC;
  298. font-weight: 500;
  299. color: #111111;
  300. line-height: 1.2;
  301. margin-right: 4rpx;
  302. }
  303. .content .return-info .goods-list .item .info-box .price-num .price .num {
  304. font-size: 32rpx;
  305. font-family: PingFang SC;
  306. font-weight: 500;
  307. color: #111111;
  308. line-height: 1;
  309. }
  310. .content .return-info .goods-list .item .info-box .price-num .num {
  311. font-size: 24rpx;
  312. font-family: PingFang SC;
  313. font-weight: 500;
  314. color: #999999;
  315. line-height: 1;
  316. }
  317. .content .return-info .goods-list .refund-det-info {
  318. padding-bottom: 30rpx;
  319. }
  320. .content .return-info .goods-list .refund-det-info .det-item {
  321. margin-top: 40rpx;
  322. display: flex;
  323. align-items: center;
  324. justify-content: space-between;
  325. }
  326. .content .return-info .goods-list .refund-det-info .det-item .label {
  327. font-size: 26rpx;
  328. font-family: PingFang SC;
  329. font-weight: 500;
  330. color: #666666;
  331. line-height: 1;
  332. }
  333. .content .return-info .goods-list .refund-det-info .det-item .text {
  334. font-size: 26rpx;
  335. font-family: PingFang SC;
  336. font-weight: 500;
  337. color: #222222;
  338. line-height: 1;
  339. }
  340. .btn-box {
  341. margin-top: 15rpx;
  342. box-sizing: border-box;
  343. display: flex;
  344. align-items: center;
  345. justify-content: flex-end;
  346. }
  347. .btn-box .btn {
  348. width: 155rpx;
  349. height: 64rpx;
  350. line-height: 64rpx;
  351. font-size: 26rpx;
  352. font-family: PingFang SC;
  353. font-weight: 500;
  354. text-align: center;
  355. border-radius: 32rpx;
  356. margin-left: 15rpx;
  357. }
  358. .btn-box .btn:first-child {
  359. margin-left: 0;
  360. }
  361. .btn-box .btn.cancel {
  362. border: 1px solid #DDDDDD;
  363. color: #666666;
  364. }