orderDetail.wxss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. /* pages/bikeList/bikeList.wxss */
  2. page {
  3. background-color: rgba(238, 238, 238, 1);
  4. height: 100%;
  5. }
  6. .home {
  7. height: 100%;
  8. position: relative;
  9. }
  10. .top {
  11. padding: 56rpx 100rpx 38rpx 100rpx;
  12. display: flex;
  13. text-align: center;
  14. }
  15. .top-left,
  16. .top-right {
  17. flex: 1;
  18. text-align: center;
  19. font-size: 26rpx;
  20. font-family: PingFang SC;
  21. font-weight: 550;
  22. color: rgba(42, 42, 42, 0.42);
  23. }
  24. .cur {
  25. font-size: 34rpx;
  26. font-family: PingFang SC;
  27. color: rgba(42, 42, 42, 0.8);
  28. }
  29. .line {
  30. margin-left: 40%;
  31. margin-top: 15rpx;
  32. display: block;
  33. width: 20%;
  34. height: 12rpx;
  35. background: #FF6545;
  36. border-radius: 4rpx;
  37. }
  38. .content {
  39. padding: 16rpx 30rpx;
  40. }
  41. .list {
  42. position: relative;
  43. font-size: 28rpx;
  44. font-family: PingFang SC;
  45. font-weight: 500;
  46. color: #202020;
  47. padding: 45rpx 50rpx 36rpx 50rpx;
  48. background: #FFFFFF;
  49. border-radius: 10rpx;
  50. }
  51. .list-text {
  52. margin: 10rpx 0;
  53. }
  54. .title {
  55. margin-bottom: 30rpx;
  56. height: 31rpx;
  57. font-size: 32rpx;
  58. font-family: PingFang SC;
  59. font-weight: bold;
  60. color: #FF6545;
  61. }
  62. .detail {
  63. text-align: center;
  64. position: absolute;
  65. bottom: 47rpx;
  66. right: 37rpx;
  67. width: 148rpx;
  68. height: 54rpx;
  69. line-height: 54rpx;
  70. background: #FF6545;
  71. border-radius: 27rpx;
  72. font-size: 24rpx;
  73. font-family: PingFang SC;
  74. font-weight: 500;
  75. color: #FFFEFE;
  76. }
  77. .pop {
  78. position: fixed;
  79. top: 0;
  80. height: 100%;
  81. width: 100%;
  82. z-index: 200;
  83. background-color: rgba(0, 0, 0, 0.6);
  84. }
  85. .pop-bottom {
  86. position: fixed;
  87. bottom: 0;
  88. border-radius: 20rpx 20rpx 0rpx 0rpx;
  89. background-color: #FFFFFF;
  90. width: 100%;
  91. }
  92. .bottom-top {
  93. padding: 0 30rpx;
  94. }
  95. .bottom-title {
  96. padding: 54rpx 0;
  97. text-align: center;
  98. border-bottom: solid 1rpx rgba(238, 238, 238, 1);
  99. font-size: 34rpx;
  100. font-family: PingFang SC;
  101. font-weight: 500;
  102. color: #202020;
  103. }
  104. .bottom-text {
  105. padding: 30rpx 0 45rpx 0;
  106. border-bottom: solid 1rpx rgba(238, 238, 238, 1);
  107. }
  108. .text1,
  109. .text6 {
  110. display: flex;
  111. }
  112. .text1 view {
  113. flex: 1;
  114. }
  115. .text6 view {
  116. flex: 1;
  117. }
  118. .text1 {
  119. margin-bottom: 35rpx;
  120. font-size: 28rpx;
  121. font-family: PingFang SC;
  122. font-weight: bold;
  123. color: #202020;
  124. }
  125. .text3 {
  126. text-align: right;
  127. }
  128. .text6 {
  129. margin: 15rpx;
  130. font-size: 24rpx;
  131. font-family: PingFang SC;
  132. font-weight: 500;
  133. color: #4D4D4D;
  134. }
  135. .text5 {
  136. text-align: right;
  137. }
  138. .result {
  139. margin: 30rpx;
  140. font-size: 28rpx;
  141. text-align: right;
  142. font-family: PingFang SC;
  143. font-weight: bold;
  144. color: #202020;
  145. }
  146. .tips {
  147. margin: 30rpx 0;
  148. font-size: 24rpx;
  149. font-family: PingFang SC;
  150. font-weight: 500;
  151. color: #FF6545;
  152. }
  153. .pay {
  154. height: 138rpx;
  155. width: 100%;
  156. line-height: 138rpx;
  157. text-align: center;
  158. display: flex;
  159. }
  160. .pay-left {
  161. flex: 0 0 60%;
  162. background: #FFE5E0;
  163. font-size: 30rpx;
  164. font-family: PingFang SC;
  165. font-weight: 400;
  166. color: #333333;
  167. }
  168. .pay-right {
  169. flex: 1;
  170. background: #FF6545;
  171. font-size: 40rpx;
  172. font-family: PingFang SC;
  173. font-weight: 500;
  174. color: #FFFFFF;
  175. }
  176. .tip {
  177. margin: 40rpx 30rpx;
  178. font-size: 22rpx;
  179. font-family: PingFang SC;
  180. font-weight: 400;
  181. color: #333333;
  182. }