deposit.wxss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. page {
  2. background: #f4f4f4;
  3. padding-bottom: 200rpx;
  4. overflow-y: scroll !important;
  5. }
  6. /* 弹窗 */
  7. .popCover {
  8. background: rgba(0, 0, 0, .4);
  9. position: fixed;
  10. z-index: 10;
  11. top: 0;
  12. left: 0;
  13. width: 100%;
  14. height: 100%;
  15. }
  16. .popCon {
  17. width: 550rpx;
  18. background: #fff;
  19. position: fixed;
  20. left: 50%;
  21. top: 50%;
  22. border-radius: 20rpx;
  23. -webkit-transform: translate(-50%, -50%);
  24. -moz-transform: translate(-50%, -50%);
  25. -o-transform: translate(-50%, -50%);
  26. -ms-transform: translate(-50%, -50%);
  27. transform: translate(-50%, -50%);
  28. z-index: 20;
  29. text-align: center;
  30. overflow: hidden;
  31. color: #2a2a2a;
  32. }
  33. .popTitle {
  34. padding: 46rpx 0 36rpx 0;
  35. font-size: 36rpx;
  36. }
  37. .popDetail {
  38. padding: 0 31rpx 67rpx 31rpx;
  39. font-size: 28rpx;
  40. line-height: 1.5;
  41. }
  42. .popBtn {
  43. border-top: 1px solid #f4f4f4;
  44. display: flex;
  45. justify-content: space-around;
  46. align-items: center;
  47. padding: 20rpx 0rpx;
  48. }
  49. .popBtn text {
  50. padding: 13rpx 103rpx;
  51. }
  52. .popBtn text:last-child {
  53. border-left: 1px solid #f4f4f4;
  54. color: #18D5B9;
  55. }
  56. .content {
  57. width: 92%;
  58. margin: 0 auto;
  59. }
  60. .title,
  61. .avoid text {
  62. font-size: 40rpx;
  63. color: #3A3636;
  64. margin-left: 15rpx;
  65. }
  66. .info {
  67. width: 100%;
  68. height: 301rpx;
  69. position: relative;
  70. }
  71. .activeBg {
  72. background:#0AD7B6 url('http://resource.bike.hanyiyun.com/weapp/depBg1.png') no-repeat;
  73. background-size: 100% 100%;
  74. border-radius: 28rpx;
  75. }
  76. .normalBg {
  77. background:#FFFFFF url('http://resource.bike.hanyiyun.com/weapp/depBg2.png') no-repeat;
  78. background-size: 100% 100%;
  79. border-radius: 28rpx;
  80. }
  81. .normalBg view {
  82. color: #3A3636;
  83. }
  84. .normalBg .state {
  85. color: #068371;
  86. }
  87. .money {
  88. color: #fff;
  89. margin-left: 74rpx;
  90. }
  91. .money .sum {
  92. font-size: 80rpx;
  93. margin: 30rpx 0;
  94. }
  95. .money>view:first-child {
  96. font-size: 32rpx;
  97. padding-top: 30rpx;
  98. }
  99. .state {
  100. position: absolute;
  101. top: 38rpx;
  102. right: 27rpx;
  103. font-size: 26rpx;
  104. color: #068371;
  105. }
  106. .avoid {
  107. margin-top: 28rpx;
  108. position: relative;
  109. }
  110. .avoid .right{
  111. position: absolute;
  112. bottom: 0rpx;
  113. right: 0;
  114. font-size:24rpx;
  115. font-family:PingFang SC;
  116. color:#FA785A;
  117. }
  118. .avoid image {
  119. width: 40rpx;
  120. height: 40rpx;
  121. vertical-align: middle;
  122. margin-left: 10rpx;
  123. }
  124. .avoid view {
  125. font-size: 24rpx;
  126. color: #767575;
  127. margin: 16rpx 0 0rpx 15rpx;
  128. }
  129. .avoidCard {
  130. display: flex;
  131. justify-content: space-between;
  132. align-items: center;
  133. flex-wrap: wrap;
  134. width: 100%;
  135. }
  136. .avoidCard image {
  137. width: 326rpx;
  138. height: 202rpx;
  139. }
  140. .avoidCard .detail {
  141. height: 202rpx;
  142. width: 332rpx;
  143. margin-top: 26rpx;
  144. border-radius: 20rpx;
  145. }
  146. .detail text {
  147. font-size: 46rpx;
  148. color: #555757;
  149. font-weight: bold;
  150. }
  151. .detail .money1,
  152. .detail .discount_price{
  153. color: #18D5B9;
  154. }
  155. .detail .money1{
  156. font-size: 36rpx;
  157. }
  158. .detail .discount_price{
  159. font-size: 46rpx;
  160. }
  161. .detail .price{
  162. font-size: 36rpx;
  163. text-decoration: line-through;
  164. }
  165. .active .discount_price,
  166. .active .money1{
  167. color: white;
  168. }
  169. .detail .date {
  170. font-size: 24rpx;
  171. color: #282828;
  172. margin-top: 20rpx;
  173. opacity: .8;
  174. }
  175. .normal {
  176. background-color: #FFF;
  177. }
  178. .active {
  179. background: linear-gradient(23deg, rgba(105, 233, 183, 1) 0%, rgba(0, 213, 182, 1) 100%);
  180. box-shadow: 0px 5px 30px 0px rgba(233, 230, 230, 0.49);
  181. }
  182. .active text,
  183. .active .date {
  184. color: #fff;
  185. }
  186. .return{
  187. display: flex;
  188. flex-direction: column;
  189. align-items: center;
  190. position: fixed;
  191. left: 0rpx;
  192. bottom: 0rpx;
  193. width: 100%;
  194. background: white;
  195. padding: 30rpx 0rpx;
  196. }
  197. .payBtn{
  198. display: flex;
  199. flex-direction: column;
  200. align-items: center;
  201. position: fixed;
  202. left: 0rpx;
  203. bottom: 0rpx;
  204. width: 100%;
  205. background: white;
  206. padding: 30rpx 0rpx;
  207. }
  208. .pay {
  209. width: 650rpx;
  210. height: 76rpx;
  211. background: rgba(24, 213, 185, 1);
  212. border-radius: 10rpx;
  213. color: #fff;
  214. }
  215. .order {
  216. color: #8F8F8F;
  217. font-size: 24rpx;
  218. text-align: center;
  219. margin-top: 16rpx;
  220. }
  221. .renzheng{
  222. font-size: 28rpx;
  223. color: red;
  224. padding-bottom: 20rpx;
  225. }