order-detail.wxss 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. /* pages/order-detail/order-detail.wxss */
  2. .order-detail{
  3. padding: 20rpx 24rpx 120rpx;
  4. background: #F6F6F6;
  5. }
  6. .callout-box{
  7. background: #fff;
  8. border-radius: 16rpx 16rpx 16rpx 16rpx;
  9. padding: 14rpx 20rpx;
  10. }
  11. .callout-box .title{
  12. font-weight: bold;
  13. font-size: 28rpx;
  14. color: #222222;
  15. }
  16. .callout-box .desc{
  17. font-size: 24rpx;
  18. color: #222222;
  19. margin-top: 16rpx;
  20. }
  21. /* 店铺 */
  22. .shop-box {
  23. display: inline-block;
  24. padding-bottom: 24rpx;
  25. }
  26. .shop-icon {
  27. display: inline-block;
  28. width: 35rpx;
  29. height: 35rpx;
  30. margin-right: 15rpx;
  31. vertical-align: middle;
  32. }
  33. .shop-icon > image {
  34. width: 100%;
  35. height: 100%;
  36. }
  37. .shop-name {
  38. display: inline-block;
  39. vertical-align: middle;
  40. font-weight: bold;
  41. font-size: 28rpx;
  42. color: #222222;
  43. }
  44. .order-detail .result-box{
  45. padding: 0 28rpx ;
  46. }
  47. .order-detail .result-box .result{
  48. position: relative;
  49. padding: 24rpx 0;
  50. }
  51. .order-detail .result-box .result .title{
  52. font-weight: bold;
  53. font-size: 32rpx;
  54. color: #222222;
  55. }
  56. .order-detail .result-box .result .title.small{
  57. font-size: 28rpx;
  58. }
  59. .order-detail .result-box .result .desc{
  60. font-size: 24rpx;
  61. color: #AAAAAA;
  62. margin-top: 20rpx;
  63. }
  64. .order-detail .result-box .result .title-box{
  65. display: flex;
  66. justify-content: space-between;
  67. }
  68. .order-detail .result-box .result .price{
  69. font-weight: bold;
  70. font-size: 28rpx;
  71. color: #FF4D3A;
  72. }
  73. .box{
  74. background: #FFFFFF;
  75. border-radius: 16rpx 16rpx 16rpx 16rpx;
  76. margin-bottom: 20rpx;
  77. }
  78. .order-detail .oprate-box{
  79. /* display: flex; */
  80. padding: 0 24rpx;
  81. }
  82. .order-sts{
  83. font-weight: bold;
  84. font-size: 36rpx;
  85. color: #222222;
  86. margin-bottom: 20rpx;
  87. }
  88. .pay-btn-box{
  89. display: flex;
  90. justify-content: space-between;
  91. }
  92. .pay-btn-box .cancel-btn{
  93. width: 226rpx;
  94. height: 68rpx;
  95. line-height: 68rpx;
  96. text-align: center;
  97. background: #FFFFFF;
  98. border-radius: 60rpx 60rpx 60rpx 60rpx;
  99. font-weight: bold;
  100. font-size: 28rpx;
  101. color: #AAAAAA;
  102. }
  103. .pay-btn-box .pay-btn{
  104. width: 456rpx;
  105. height: 68rpx;
  106. line-height: 68rpx;
  107. text-align: center;
  108. background: #FF941A;
  109. border-radius: 60rpx 60rpx 60rpx 60rpx;
  110. font-weight: bold;
  111. font-size: 28rpx;
  112. color: #FFFFFF;
  113. }
  114. .order-detail .delivery-addr {
  115. padding: 20rpx 30rpx;
  116. background: #fff;
  117. }
  118. .order-detail .delivery-addr .user-info {
  119. line-height: 48rpx;
  120. word-wrap: break-word;
  121. word-break: break-all;
  122. overflow: hidden;
  123. text-overflow: ellipsis;
  124. display: -webkit-box;
  125. -webkit-line-clamp: 1;
  126. -webkit-box-orient: vertical;
  127. font-weight: bold;
  128. font-size: 32rpx;
  129. color: #222222;
  130. }
  131. .order-detail .delivery-addr .user-info .item {
  132. font-size: 28rpx;
  133. margin-right: 30rpx;
  134. vertical-align: top;
  135. display: inline-block;
  136. }
  137. .order-detail .delivery-addr .addr {
  138. font-size: 28rpx;
  139. line-height: 36rpx;
  140. font-size: 28rpx;
  141. color: #AAAAAA;
  142. margin-top: 20rpx;
  143. }
  144. .order-detail .time-box{
  145. padding: 20rpx 0;
  146. }
  147. .order-detail .time-box .title{
  148. font-size: 28rpx;
  149. color: #222222;
  150. }
  151. .order-detail .time-box .time{
  152. font-weight: bold;
  153. font-size: 48rpx;
  154. color: #222222;
  155. margin-top: 20rpx;
  156. }
  157. .order-detail .flex-box{
  158. display: flex;
  159. }
  160. .order-detail .oprate-box .item{
  161. width: 25%;
  162. text-align: center;
  163. margin: 0;
  164. border: none;
  165. background-color: #fff !important;
  166. padding: 24rpx 0;
  167. display: block!important;
  168. -webkit-tap-highlight-color: transparent;
  169. outline: none;
  170. line-height: normal;
  171. }
  172. .order-detail wx-button:after {
  173. border: none;
  174. }
  175. .order-detail .oprate-box .item .icon{
  176. width: 40rpx;
  177. height: 40rpx;
  178. }
  179. .order-detail .oprate-box .item .label{
  180. font-size: 28rpx;
  181. color: #222222;
  182. margin-top: 20rpx;
  183. }
  184. .order-detail .refund-goods{
  185. padding: 24rpx;
  186. }
  187. .order-detail .refund-goods .title-box{
  188. display: flex;
  189. justify-content: space-between;
  190. padding-bottom: 24rpx;
  191. font-weight: bold;
  192. font-size: 28rpx;
  193. }
  194. .order-detail .refund-goods .title-box .title{
  195. color: #222222;
  196. }
  197. .order-detail .refund-goods .title-box .price{
  198. color: #FF4D3A;
  199. }
  200. .order-detail .refund-goods .good-list{
  201. }
  202. .order-detail .refund-goods .good-list .good-item{
  203. border-top:1rpx solid #F0F0F0;
  204. padding: 20rpx 0;
  205. display: flex;
  206. }
  207. .order-detail .refund-goods .good-list .good-item .img{
  208. width: 120rpx;
  209. height: 120rpx;
  210. border-radius: 16rpx;
  211. background: #F6F6F6;
  212. }
  213. .order-detail .refund-goods .good-list .good-item .info{
  214. margin-left: 20rpx;
  215. flex: 1;
  216. }
  217. .order-detail .refund-goods .good-list .good-item .info .good-name{
  218. font-weight: bold;
  219. font-size: 28rpx;
  220. color: #222222;
  221. }
  222. .order-detail .refund-goods .good-list .good-item .info .desc{
  223. font-size: 24rpx;
  224. color: #AAAAAA;
  225. margin-top: 10rpx;
  226. }
  227. .order-detail .refund-goods .good-list .good-item .info .price{
  228. color: #AAAAAA;
  229. font-size: 24rpx;
  230. }
  231. .order-detail .refund-goods .good-list .good-item .price-box{
  232. display: flex;
  233. flex-direction: column;
  234. justify-content: space-between;
  235. align-items: flex-end;
  236. }
  237. .order-detail .refund-goods .good-list .good-item .price-box .price{
  238. font-weight: bold;
  239. font-size: 32rpx;
  240. color: #FF4D3A;
  241. }
  242. .order-detail .refund-goods .good-list .good-item .price-box .num{
  243. font-size: 24rpx;
  244. color: #AAAAAA;
  245. }
  246. .order-detail .refund-goods .open-btn{
  247. display: flex;
  248. align-items: center;
  249. justify-content: center;
  250. font-size: 24rpx;
  251. color: #222222;
  252. margin-top: 20rpx;
  253. }
  254. .order-detail .refund-goods .open-btn .arrow{
  255. width: 20rpx;
  256. height: 20rpx;
  257. }
  258. .order-detail .goods-info{
  259. padding: 24rpx;
  260. }
  261. .order-detail .goods-info .item{
  262. display: flex;
  263. justify-content: space-between;
  264. padding-bottom: 28rpx;
  265. }
  266. .order-detail .goods-info .item .label{
  267. font-size: 28rpx;
  268. color: #222222;
  269. }
  270. .order-detail .goods-info .item .value{
  271. font-weight: bold;
  272. font-size: 28rpx;
  273. color: #FF4D3A;
  274. }
  275. .order-detail .goods-info .total{
  276. display: flex;
  277. justify-content: space-between;
  278. padding-top: 28rpx ;
  279. border-top: 2rpx solid #F0F0F0;
  280. }
  281. .order-detail .goods-info .total .label{
  282. font-weight: bold;
  283. font-size: 28rpx;
  284. color: #222222;
  285. }
  286. .order-detail .goods-info .total .value{
  287. font-weight: bold;
  288. font-size: 28rpx;
  289. color: #FF4D3A;
  290. }
  291. .order-detail .order-info{
  292. padding: 28rpx 24rpx;
  293. }
  294. .order-detail .order-info .title{
  295. font-weight: bold;
  296. font-size: 32rpx;
  297. color: #222222;
  298. }
  299. .order-detail .order-info .item{
  300. padding-top: 28rpx;
  301. display: flex;
  302. justify-content: space-between;
  303. }
  304. .order-detail .order-info .item .label{
  305. font-size: 28rpx;
  306. color: #AAAAAA;
  307. }
  308. .order-detail .order-info .item .value-box{
  309. display: flex;
  310. align-items: center;
  311. }
  312. .order-detail .order-info .item .value-box .icon{
  313. width: 30rpx;
  314. height: 30rpx;
  315. margin-left: 20rpx;
  316. }
  317. .order-detail .order-info .item .value{
  318. font-weight: bold;
  319. font-size: 28rpx;
  320. color: #222222;
  321. }