detail.wxss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. /* pages/order/detail/detail.wxss */
  2. page {
  3. width: 750rpx;
  4. min-height: 100vh;
  5. background: linear-gradient(180deg, #ebf4fd 0%, #FFF 100%);
  6. padding-bottom: 50rpx;
  7. background-attachment: fixed;
  8. }
  9. .navBar {
  10. position: fixed;
  11. left: 25rpx;
  12. z-index: 10;
  13. }
  14. .topBg {
  15. width: 750rpx;
  16. position: relative;
  17. z-index: 1;
  18. padding: 150rpx 30rpx 0;
  19. overflow: hidden;
  20. }
  21. .topBg .bg {
  22. height: 536rpx;
  23. }
  24. .topBg .title {
  25. font-size: 40rpx;
  26. font-weight: 500;
  27. color: #191C27;
  28. margin-bottom: 32rpx;
  29. }
  30. .zhifu {
  31. width: 702rpx;
  32. height: 230rpx;
  33. background: #FFFFFF;
  34. border-radius: 12rpx;
  35. margin: 24rpx 0;
  36. flex-direction: column;
  37. justify-content: space-between;
  38. align-items: flex-start;
  39. padding: 24rpx;
  40. }
  41. .zhifu .tips {
  42. font-size: 32rpx;
  43. font-weight: 500;
  44. color: #191C27;
  45. }
  46. .zhifu .price {
  47. font-size: 26rpx;
  48. color: #666666;
  49. }
  50. .zhifu .footer .btn {
  51. width: 152rpx;
  52. height: 60rpx;
  53. border-radius: 30rpx;
  54. text-align: center;
  55. line-height: 60rpx;
  56. font-size: 28rpx;
  57. margin-right: 24rpx;
  58. }
  59. .contioner {
  60. width: 702rpx;
  61. background: #FFFFFF;
  62. border-radius: 12rpx;
  63. margin: 0 auto 24rpx;
  64. padding: 0rpx 24rpx 32rpx;
  65. }
  66. .contioner .tit {
  67. font-size: 32rpx;
  68. font-weight: 500;
  69. color: #191C27;
  70. padding: 32rpx 0;
  71. }
  72. .payMessage .items {
  73. padding-bottom: 24rpx;
  74. }
  75. .payMessage .items .le .message {
  76. width: 120rpx;
  77. height: 120rpx;
  78. background: #FFFFFF;
  79. border-radius: 4rpx;
  80. border: 1px solid #EDEDED;
  81. margin-right: 24rpx;
  82. }
  83. .payMessage .items .le .name {
  84. font-size: 28rpx;
  85. color: #191C27;
  86. width: 505rpx;
  87. height: 70rpx;
  88. margin-bottom: 24rpx;
  89. }
  90. .payMessage .items .le .num {
  91. font-size: 28rpx;
  92. color: #999999;
  93. }
  94. .payMessage .items .lr {
  95. font-size: 28rpx;
  96. color: #191C27;
  97. }
  98. .payMessage .items .footer {
  99. margin-top: 20rpx;
  100. color: #191C27;
  101. font-size: 28rpx;
  102. }
  103. .payMessage .items .footer .content {
  104. margin-left: 32rpx;
  105. font-size: 24rpx;
  106. color: #191C27;
  107. }
  108. .payMessage .items .footer .t2 {
  109. color: #999999;
  110. }
  111. .payMessage .items .footer .price {
  112. margin-left: auto;
  113. }
  114. .orderMessage .items {
  115. padding: 32rpx 0;
  116. font-size: 28rpx;
  117. color: #191C27;
  118. }
  119. .orderMessage .items .lr.color {
  120. color: #FF663D;
  121. }
  122. .payMessage .allPrice {
  123. padding-top: 24rpx;
  124. font-size: 28rpx;
  125. color: #191C27;
  126. }
  127. .payMessage .allPrice .num {
  128. font-size: 40rpx;
  129. font-weight: 500;
  130. margin-left: 12rpx;
  131. }
  132. .footerBoxs {
  133. padding: 16rpx 0 0;
  134. }
  135. .footerBoxs .footerItems {
  136. padding: 16rpx 0;
  137. font-size: 28rpx;
  138. }
  139. .footerBoxs .footerItems .les {
  140. color: #999999;
  141. }
  142. .footerBoxs .footerItems .lrs {
  143. color: #191C27;
  144. text-align: right;
  145. }
  146. .footerBoxs .footerItems .btn {
  147. font-size: 22rpx;
  148. color: #191C27;
  149. line-height: 34rpx;
  150. width: 82rpx;
  151. height: 34rpx;
  152. border-radius: 4rpx;
  153. border: 1px solid #CCCCCC;
  154. margin-left: 16rpx;
  155. }
  156. .statusBox {
  157. width: 702rpx;
  158. background: #FFFFFF;
  159. border-radius: 12rpx;
  160. margin: 24rpx 0;
  161. padding: 32rpx 24rpx;
  162. }
  163. .statusBox .statusTips {
  164. font-size: 32rpx;
  165. font-weight: 500;
  166. color: #191C27;
  167. }
  168. .statusBox .statusTime {
  169. font-size: 26rpx;
  170. color: #666666;
  171. margin-top: 24rpx;
  172. }
  173. .statusBox .statusBtn {
  174. margin: 32rpx 0;
  175. }
  176. .statusBox .statusBtn .btn {
  177. width: 152rpx;
  178. height: 60rpx;
  179. line-height: 60rpx;
  180. border-radius: 30rpx;
  181. margin-right: 24rpx;
  182. }
  183. .statusBox .statusFooter {
  184. margin-top: 32rpx;
  185. }
  186. .statusFooter .top .lr text {
  187. font-size: 26rpx;
  188. color: #191C27;
  189. }
  190. .statusFooter .top .lr image {
  191. width: 39rpx;
  192. height: 39rpx;
  193. margin-right: 10rpx;
  194. }
  195. .statusFooter .top .le {
  196. font-size: 32rpx;
  197. font-weight: 500;
  198. color: #191C27;
  199. }
  200. .statusFooter .bottom {
  201. font-size: 28rpx;
  202. color: #191C27;
  203. margin-top: 32rpx;
  204. }
  205. .remarks {
  206. padding-top: 32rpx;
  207. font-size: 28rpx;
  208. color: #666666;
  209. }