refundOrderDetail.wxss 8.4 KB

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