order.wxss 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. .bg {
  2. position: relative;
  3. width: 100%;
  4. min-height: 100%;
  5. background-color: #f3f3f3;
  6. }
  7. .order-title {
  8. margin: 0 20rpx;
  9. height: 90rpx;
  10. line-height: 90rpx;
  11. font-size: 28rpx;
  12. border-bottom: 1rpx solid #eeeeee;
  13. }
  14. .order-title__bg {
  15. width: 100%;
  16. height: 92rpx;
  17. background-color: #fff;
  18. }
  19. .order-title__left {
  20. margin-top: 20rpx;
  21. display: block;
  22. width: 44rpx;
  23. height: 44rpx;
  24. float: left;
  25. border-radius: 100%;
  26. }
  27. .order-title__name {
  28. float: left;
  29. margin-left: 20rpx;
  30. width: 375rpx;
  31. color: #4c4c4c;
  32. font-size: 28rpx;
  33. }
  34. .order-title__right {
  35. color: #999999;
  36. float: right;
  37. }
  38. .orderDetail-address {
  39. position: relative;
  40. padding: 0 20rpx;
  41. color: #4c4c4c;
  42. font-size: 28rpx;
  43. background-color: #fff;
  44. }
  45. .orderDetail-address__left {
  46. margin: 90rpx 0 0 19rpx;
  47. float: left;
  48. width: 33rpx;
  49. height: 38rpx;
  50. background-size: 100% 100%;
  51. background-image: url('https://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/addressblue.png');
  52. }
  53. .orderDetail-address__right {
  54. float: right;
  55. width: 640rpx;
  56. }
  57. .orderDetail-address__info {
  58. padding-top: 25rpx;
  59. }
  60. .orderDetail-address__name {
  61. float: left;
  62. }
  63. .orderDetail-address__tel {
  64. float: right;
  65. }
  66. .orderDetail-address__more {
  67. padding-top: 20rpx;
  68. padding-bottom: 20rpx;
  69. line-height: 50rpx;
  70. }
  71. .orderDetail-address__border {
  72. position: absolute;
  73. left: 0;
  74. bottom: 2rpx;
  75. width: 100%;
  76. height: 2rpx;
  77. }
  78. .order-main {
  79. width: 710rpx;
  80. height: 200rpx;
  81. background-color: #fcfcfc;
  82. }
  83. .order-main__left {
  84. width: 200rpx;
  85. height: 200rpx;
  86. display: block;
  87. float: left;
  88. }
  89. .order-main__right {
  90. position: relative;
  91. width: 490rpx;
  92. height: 200rpx;
  93. float: right;
  94. }
  95. .order-info__title {
  96. color: #4c4c4c;
  97. padding-top: 5rpx;
  98. font-size: 24rpx;
  99. line-height: 36rpx;
  100. height: 72rpx;
  101. -webkit-line-clamp: 2;
  102. }
  103. .order-info__type {
  104. padding-top: 12rpx;
  105. font-size: 24rpx;
  106. color: #bbbbbb;
  107. }
  108. .order-info__price {
  109. position: absolute;
  110. bottom: 16rpx;
  111. left: 0;
  112. font-size: 24rpx;
  113. color: #bbb;
  114. }
  115. .order-info__point {
  116. color: #bbbbbb;
  117. }
  118. .order-info__count {
  119. position: absolute;
  120. bottom: 16rpx;
  121. right: 0;
  122. font-size: 28rpx;
  123. color: #eab86a;
  124. }
  125. .orderDetail-project {
  126. padding: 20rpx;
  127. background-color: #fff;
  128. }
  129. .orderDetail-count {
  130. padding-top: 50rpx;
  131. line-height: 48rpx;
  132. font-size: 28rpx;
  133. }
  134. .orderDetail-count__title {
  135. color: #4c4c4c;
  136. float: left;
  137. }
  138. .orderDetail-count__count {
  139. color: #4c4c4c;
  140. float: right;
  141. }
  142. .orderDetail-discount {
  143. line-height: 48rpx;
  144. font-size: 28rpx;
  145. }
  146. .orderDetail-discount__title {
  147. color: #4c4c4c;
  148. float: left;
  149. }
  150. .orderDetail-discount__count {
  151. color: #eab86a;
  152. float: right;
  153. }
  154. .orderDetail-discount__point {
  155. color: #bbbbbb;
  156. }
  157. .orderDetail-payPrice {
  158. line-height: 80rpx;
  159. }
  160. .orderDetail-payPrice__title {
  161. float: left;
  162. font-size: 28rpx;
  163. color: #eab86a;
  164. }
  165. .orderDetail-payPrice__count {
  166. float: right;
  167. color: #eab86a;
  168. font-size: 32rpx;
  169. }
  170. .orderDetail-info {
  171. padding: 30rpx 20rpx;
  172. background-color: #ffffff;
  173. margin-top: 16rpx;
  174. }
  175. .orderDetail-info__line {
  176. line-height: 42rpx;
  177. color: #bbbbbb;
  178. font-size: 24rpx;
  179. }
  180. .orderDetail-btnbg {
  181. position: fixed;
  182. bottom: 0;
  183. left: 0;
  184. width: 100%;
  185. height: 88rpx;
  186. background-color: #fff;
  187. border-top: 1rpx solid #dddddd;
  188. }
  189. .orderDetail-btn__red {
  190. width: 158rpx;
  191. height: 58rpx;
  192. border: 1rpx solid #eab86a;
  193. font-size: 28rpx;
  194. color: #eab86a;
  195. text-align: center;
  196. line-height: 58rpx;
  197. border-radius: 5rpx;
  198. margin-right: 20rpx;
  199. margin-top: 14rpx;
  200. float: right;
  201. }
  202. .orderDetail-btn__black {
  203. width: 158rpx;
  204. height: 58rpx;
  205. border: 1rpx solid #cccccc;
  206. font-size: 28rpx;
  207. color: #4c4c4c;
  208. text-align: center;
  209. line-height: 58rpx;
  210. border-radius: 5rpx;
  211. margin-right: 20rpx;
  212. margin-top: 14rpx;
  213. float: right;
  214. }
  215. .orderDetail-express {
  216. background-color: #fff;
  217. margin: 20rpx 0;
  218. padding: 20rpx 0;
  219. }
  220. .orderDetail-express__main {
  221. background-color: #fffae4;
  222. margin: 0 20rpx;
  223. padding-bottom: 27rpx;
  224. }
  225. .orderDetail-express__main.closed {
  226. background-color: #eeeeee;
  227. border: 1rpx solid #ccc;
  228. box-sizing: border-box;
  229. }
  230. .orderDetail-express__main.closed .orderDetail-express__title {
  231. color: #999999;
  232. }
  233. .orderDetail-express__title {
  234. text-align: center;
  235. font-size: 28rpx;
  236. color: #f7ae87;
  237. padding: 28rpx 0 16rpx;
  238. }
  239. .orderDetail-express__val {
  240. color: #5b93c3;
  241. text-align: center;
  242. font-size: 28rpx;
  243. font-weight: bold;
  244. }
  245. .orderDetail-express__btn {
  246. width: 88rpx;
  247. height: 40rpx;
  248. border: 1rpx solid #f7ae87;
  249. text-align: center;
  250. margin: 16rpx auto 0;
  251. line-height: 40rpx;
  252. font-size: 24rpx;
  253. color: #f7ae87;
  254. border-radius: 5rpx;
  255. }
  256. .orderDetail-express__com {
  257. padding-left: 5rpx;
  258. }
  259. .orderDetail-allprice {
  260. padding-top: 20rpx;
  261. height: 70rpx;
  262. line-height: 70rpx;
  263. text-align: right;
  264. color: #4c4c4c;
  265. font-size: 24rpx;
  266. }
  267. .orderDetail-allprice text {
  268. color: #eab86a;
  269. font-size: 28rpx;
  270. }
  271. .orderDetail-dialog {
  272. position: relative;
  273. width: 100%;
  274. }
  275. .orderDetail-dialog__bg {
  276. position: fixed;
  277. top: 0;
  278. left: 0;
  279. width: 100%;
  280. min-height: 100%;
  281. background: rgba(0, 0, 0, 0.3);
  282. z-index: 1;
  283. }
  284. .orderDetail-dialog__width {
  285. position: fixed;
  286. top: 20%;
  287. left: 50%;
  288. width: 560rpx;
  289. margin-left: -280rpx;
  290. border-radius: 16rpx;
  291. background-color: #fff;
  292. z-index: 100;
  293. }
  294. .orderDetail-icon {
  295. width: 114rpx;
  296. height: 114rpx;
  297. margin: 64rpx auto 34rpx;
  298. }
  299. .orderDetail-icon image {
  300. width: 100%;
  301. height: 100%;
  302. }
  303. .orderDetail-dialog__info {
  304. text-align: center;
  305. line-height: 48rpx;
  306. font-size: 28rpx;
  307. color: #4c4c4c;
  308. margin-bottom: 40rpx;
  309. }
  310. .orderDetail-dialog__btn {
  311. width: 100%;
  312. height: 100rpx;
  313. text-align: center;
  314. border-top: 1rpx solid #eee;
  315. font-size: 24rpx;
  316. color: #4c4c4c;
  317. box-sizing: border-box;
  318. }
  319. .orderDetail-dialog__btn text {
  320. display: inline-block;
  321. width: 49%;
  322. line-height: 100rpx;
  323. box-sizing: border-box;
  324. }