orderRefund.wxss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background: #f8f6f6;
  13. padding-top: 16rpx;
  14. }
  15. .orderDetial .row .input {
  16. text-align: right;
  17. }
  18. .row {
  19. display: flex;
  20. align-items: center;
  21. position: relative;
  22. padding: 0 30rpx;
  23. height: 110rpx;
  24. background: #fff;
  25. }
  26. .row .refund {
  27. font-size: 30rpx;
  28. color: #303133;
  29. padding-left: 128rpx;
  30. }
  31. .row .noRefund {
  32. font-size: 30rpx;
  33. color: #909399;
  34. padding-left: 128rpx;
  35. }
  36. .row .tit {
  37. flex-shrink: 0;
  38. width: 120rpx;
  39. font-size: 30rpx;
  40. color: #303133;
  41. }
  42. .row .input {
  43. flex: 1;
  44. font-size: 30rpx;
  45. color: #303133;
  46. padding-left: 128rpx;
  47. }
  48. .row .input.payColor {
  49. color: #dd524d;
  50. }
  51. .row .iconlocation {
  52. font-size: 36rpx;
  53. color: #909399;
  54. }
  55. .add-btn {
  56. display: flex;
  57. align-items: center;
  58. justify-content: center;
  59. width: 690rpx;
  60. height: 80rpx;
  61. margin: 60rpx auto;
  62. font-size: 32rpx;
  63. color: #fff;
  64. background-color: #921a23;
  65. border-radius: 10rpx;
  66. }
  67. /* 多条商品 */
  68. .order-item {
  69. display: flex;
  70. flex-direction: column;
  71. background: #fff;
  72. margin-top: 16rpx;
  73. /* 单条商品 */
  74. }
  75. .order-item .goods-box {
  76. height: 160rpx;
  77. padding: 20rpx 0;
  78. white-space: nowrap;
  79. }
  80. .order-item .goods-box .goods-item {
  81. width: 120rpx;
  82. height: 120rpx;
  83. display: inline-block;
  84. margin-right: 24rpx;
  85. }
  86. .order-item .goods-box .goods-img {
  87. display: block;
  88. width: 100%;
  89. height: 100%;
  90. }
  91. .order-item .goods-box-single {
  92. display: flex;
  93. padding: 20rpx 0;
  94. }
  95. .order-item .goods-box-single .goods-img {
  96. display: block;
  97. width: 120rpx;
  98. height: 120rpx;
  99. }
  100. .order-item .goods-box-single .right {
  101. flex: 1;
  102. display: flex;
  103. flex-direction: column;
  104. padding: 0 30rpx 0 24rpx;
  105. overflow: hidden;
  106. }
  107. .order-item .goods-box-single .right .title {
  108. font-size: 30rpx;
  109. color: #303133;
  110. line-height: 1;
  111. }
  112. .order-item .goods-box-single .right .attr-box {
  113. font-size: 26rpx;
  114. color: #909399;
  115. padding: 10rpx 12rpx;
  116. }
  117. .order-item .goods-box-single .right .price {
  118. font-size: 30rpx;
  119. color: #303133;
  120. }
  121. .order-item .goods-box-single .right .price:before {
  122. content: '¥';
  123. font-size: 24rpx;
  124. margin: 0 2rpx 0 8rpx;
  125. }
  126. .refund-num {
  127. margin: 20rpx 0;
  128. width: 750rpx;
  129. height: 100rpx;
  130. background: #ffffff;
  131. line-height: 100rpx;
  132. }
  133. .refund-num view {
  134. display: inline-block;
  135. }
  136. .refund-num .num-title {
  137. font-size: 30rpx;
  138. font-family: PingFangSC;
  139. font-weight: 500;
  140. color: #333333;
  141. padding-left: 30rpx;
  142. }
  143. .refund-num .num {
  144. padding-left: 133rpx;
  145. font-size: 30rpx;
  146. font-family: PingFang SC;
  147. font-weight: bold;
  148. color: #901b21;
  149. }
  150. .good {
  151. margin-bottom: 18rpx;
  152. width: 750rpx;
  153. height: 220rpx;
  154. background: #ffffff;
  155. padding: 30rpx 29rpx;
  156. display: flex;
  157. position: relative;
  158. }
  159. .good .img-wrapper {
  160. width: 160rpx;
  161. height: 160rpx;
  162. }
  163. .good .img-wrapper image {
  164. width: 100%;
  165. height: 100%;
  166. border-radius: 5rpx;
  167. }
  168. .good .good-infoo {
  169. padding-left: 20rpx;
  170. }
  171. .good .good-infoo .good-name {
  172. width: 282rpx;
  173. font-size: 26rpx;
  174. font-family: PingFang SC;
  175. font-weight: 400;
  176. color: #1d2023;
  177. line-height: 40rpx;
  178. margin-bottom: 40rpx;
  179. }
  180. .good .good-infoo .create-time {
  181. height: 21rpx;
  182. font-size: 22rpx;
  183. font-family: PingFang SC;
  184. font-weight: 400;
  185. color: #999999;
  186. }
  187. .good .good-infot {
  188. position: absolute;
  189. right: 29rpx;
  190. text-align: right;
  191. font-size: 26rpx;
  192. font-family: PingFang SC;
  193. font-weight: 400;
  194. color: #666666;
  195. }
  196. .good .good-infot .good-num {
  197. font-size: 22rpx;
  198. }
  199. .pushpic {
  200. margin-top: 20rpx;
  201. width: 750rpx;
  202. height: 284rpx;
  203. background: #FFFFFF;
  204. padding: 30rpx 0 0 30rpx;
  205. }
  206. .pushpic .up-title {
  207. font-size: 30rpx;
  208. font-family: PingFang SC;
  209. font-weight: 400;
  210. color: #3F454B;
  211. line-height: 1;
  212. padding-bottom: 35rpx;
  213. }
  214. .pushpic .up .up-bg {
  215. width: 160rpx;
  216. height: 160rpx;
  217. background: #fff;
  218. border: 2rpx #999999 dashed;
  219. border-radius: 10rpx;
  220. position: relative;
  221. }
  222. .pushpic .up .up-bg image {
  223. width: 36rpx;
  224. height: 36rpx;
  225. position: absolute;
  226. top: 44rpx;
  227. left: 64rpx;
  228. }
  229. .pushpic .up .up-bg .up-tap {
  230. position: absolute;
  231. height: 23rpx;
  232. font-size: 24rpx;
  233. font-family: PingFangSC;
  234. font-weight: 500;
  235. color: #888888;
  236. top: 93rpx;
  237. left: 33rpx;
  238. }
  239. .pushpic .up .up-img {
  240. width: 160rpx;
  241. height: 160rpx;
  242. background: #fff;
  243. border-radius: 10rpx;
  244. }
  245. .pushpic .up .up-img image {
  246. width: 100%;
  247. height: 100%;
  248. border-radius: 10rpx;
  249. }