refundOrderLogs.wxss 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  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. .top-cont {
  28. width: 100%;
  29. height: 476rpx;
  30. position: relative;
  31. }
  32. .top-cont .bg {
  33. width: 100%;
  34. height: 100%;
  35. position: absolute;
  36. top: 0;
  37. left: 0;
  38. z-index: 1;
  39. }
  40. .top-cont .top-inner {
  41. width: 100%;
  42. height: 100%;
  43. position: absolute;
  44. top: 0;
  45. left: 0;
  46. z-index: 2;
  47. }
  48. .top-cont .top-inner .back-box {
  49. height: 88rpx;
  50. padding-left: 22rpx;
  51. display: flex;
  52. align-items: center;
  53. justify-content: space-between;
  54. padding: 0 20rpx;
  55. }
  56. .top-cont .top-inner .back-box image {
  57. width: 40rpx;
  58. height: 40rpx;
  59. }
  60. .top-cont .top-inner .back-box .title {
  61. font-size: 36rpx;
  62. font-family: PingFang SC;
  63. font-weight: 500;
  64. color: #FFFFFF;
  65. }
  66. .top-cont .top-inner .order-status {
  67. margin-top: 60rpx;
  68. display: flex;
  69. align-items: center;
  70. justify-content: space-between;
  71. padding: 0 30rpx;
  72. }
  73. .top-cont .top-inner .order-status .inner {
  74. display: flex;
  75. align-items: center;
  76. }
  77. .top-cont .top-inner .order-status .inner .img-box {
  78. width: 96rpx;
  79. height: 96rpx;
  80. margin-right: 30rpx;
  81. }
  82. .top-cont .top-inner .order-status .inner .img-box image {
  83. width: 100%;
  84. height: 100%;
  85. }
  86. .top-cont .top-inner .order-status .inner .status-box {
  87. height: 96rpx;
  88. display: flex;
  89. flex-direction: column;
  90. justify-content: center;
  91. }
  92. .top-cont .top-inner .order-status .inner .status-box .status {
  93. font-size: 40rpx;
  94. font-family: PingFang SC;
  95. font-weight: bold;
  96. color: #FFFFFF;
  97. line-height: 1;
  98. }
  99. .top-cont .top-inner .order-status .inner .status-box .desc {
  100. font-size: 26rpx;
  101. font-family: PingFang SC;
  102. font-weight: 500;
  103. color: #FFFFFF;
  104. line-height: 1;
  105. margin-top: 30rpx;
  106. }
  107. .top-cont .top-inner .order-status .refund-money {
  108. display: flex;
  109. align-items: flex-end;
  110. }
  111. .top-cont .top-inner .order-status .refund-money .unit {
  112. font-size: 32rpx;
  113. font-family: PingFang SC;
  114. font-weight: bold;
  115. color: #FFFFFF;
  116. line-height: 1.2;
  117. margin-right: 10rpx;
  118. }
  119. .top-cont .top-inner .order-status .refund-money .num {
  120. font-size: 50rpx;
  121. font-family: PingFang SC;
  122. font-weight: bold;
  123. color: #FFFFFF;
  124. line-height: 1;
  125. }
  126. .top-cont .top-inner .order-refund {
  127. margin-top: 50rpx;
  128. padding: 0 20rpx;
  129. }
  130. .top-cont .top-inner .order-refund .inner {
  131. box-sizing: border-box;
  132. height: 268rpx;
  133. background: #FFFFFF;
  134. border-radius: 16rpx;
  135. padding: 0 30rpx;
  136. }
  137. .top-cont .top-inner .order-refund .inner .title-box {
  138. height: 88rpx;
  139. display: flex;
  140. align-items: center;
  141. justify-content: space-between;
  142. border-bottom: 1px solid #F0F0F0;
  143. }
  144. .top-cont .top-inner .order-refund .inner .title-box .title {
  145. font-size: 30rpx;
  146. font-family: PingFang SC;
  147. font-weight: bold;
  148. color: #333333;
  149. }
  150. .top-cont .top-inner .order-refund .inner .title-box .price-box {
  151. display: flex;
  152. align-items: flex-end;
  153. }
  154. .top-cont .top-inner .order-refund .inner .title-box .price-box .unit {
  155. font-size: 24rpx;
  156. font-family: PingFang SC;
  157. font-weight: 500;
  158. color: #FF6633;
  159. line-height: 1.2;
  160. margin-right: 4rpx;
  161. }
  162. .top-cont .top-inner .order-refund .inner .title-box .price-box .num {
  163. font-size: 32rpx;
  164. font-family: PingFang SC;
  165. font-weight: bold;
  166. color: #FF6633;
  167. line-height: 1;
  168. }
  169. .top-cont .top-inner .order-refund .inner .text-box {
  170. font-size: 26rpx;
  171. font-family: PingFang SC;
  172. font-weight: 500;
  173. color: #666666;
  174. line-height: 42rpx;
  175. margin-top: 22rpx;
  176. }
  177. .content {
  178. padding: 0 20rpx;
  179. }
  180. .content .refund-steps {
  181. margin-top: 188rpx;
  182. background: #FFFFFF;
  183. border-radius: 16rpx;
  184. padding: 40rpx 44rpx;
  185. }
  186. .content .refund-steps .steps {
  187. padding-left: 40rpx;
  188. padding-bottom: 56rpx;
  189. position: relative;
  190. }
  191. .content .refund-steps .steps::after {
  192. content: "";
  193. width: 4rpx;
  194. height: 100%;
  195. background: #F1F1F1;
  196. position: absolute;
  197. left: 0;
  198. top: 20rpx;
  199. }
  200. .content .refund-steps .steps:last-child {
  201. padding-bottom: 0;
  202. }
  203. .content .refund-steps .steps:last-child::after {
  204. display: none;
  205. }
  206. .content .refund-steps .steps .title {
  207. position: relative;
  208. }
  209. .content .refund-steps .steps .title .text {
  210. font-size: 28rpx;
  211. font-family: PingFang SC;
  212. font-weight: 500;
  213. color: #666666;
  214. line-height: 38rpx;
  215. }
  216. .content .refund-steps .steps .title .text.black-text {
  217. color: #111111;
  218. }
  219. .content .refund-steps .steps .title .dot {
  220. width: 16rpx;
  221. height: 16rpx;
  222. background: #EBEBEB;
  223. border-radius: 50%;
  224. position: absolute;
  225. left: -46rpx;
  226. top: 16rpx;
  227. z-index: 10;
  228. }
  229. .content .refund-steps .steps .title .dot.active {
  230. background-color: #2BC7B9;
  231. }
  232. .content .refund-steps .steps .title .img {
  233. width: 40rpx;
  234. height: 40rpx;
  235. position: absolute;
  236. left: -57rpx;
  237. top: 6rpx;
  238. z-index: 10;
  239. }
  240. .content .refund-steps .steps .time {
  241. font-size: 24rpx;
  242. font-family: Gilroy;
  243. font-weight: 500;
  244. color: #999999;
  245. margin-top: 5rpx;
  246. }
  247. .content .refund-steps .steps .context {
  248. font-size: 26rpx;
  249. font-family: PingFang SC;
  250. font-weight: 500;
  251. color: #999999;
  252. line-height: 40rpx;
  253. margin-top: 22rpx;
  254. }