payment.wxss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. /* pages/payment/payment.wxss */
  2. .payment {
  3. background-color: #FAFCFF;
  4. padding: 40rpx 40rpx 0;
  5. position: fixed;
  6. top: 0;
  7. left: 0;
  8. height: 100%;
  9. overflow: auto;
  10. }
  11. .payment .card {
  12. background-color: #FFF;
  13. padding: 10rpx 40rpx;
  14. position: relative;
  15. border-radius: 10rpx;
  16. box-shadow: 0 2rpx 20rpx 0 rgba(0, 0, 0, 0.1);
  17. }
  18. .payment .card .box {
  19. position: relative;
  20. z-index: 2;
  21. }
  22. .payment .card .box .item {
  23. display: flex;
  24. align-items: center;
  25. justify-content: space-between;
  26. padding: 30rpx 0;
  27. border-bottom: 2rpx solid rgba(174, 203, 228, 0.3);
  28. font-size: 28rpx;
  29. color: #686B78;
  30. }
  31. .payment .card .box .item:last-child {
  32. border: none;
  33. }
  34. .payment .card .box .item text:last-child {
  35. display: inline-block;
  36. width: calc(100% - 160rpx);
  37. text-align: right;
  38. }
  39. .payment .card .box picker {
  40. width: 100%;
  41. height: 100%;
  42. }
  43. .payment .card .box .picker {
  44. width: 100%;
  45. height: 100%;
  46. color: #0091FF;
  47. font-weight: bold;
  48. display: flex;
  49. align-items: center;
  50. justify-content: space-between;
  51. }
  52. .payment .card .box .picker .icon-up {
  53. display: inline-block;
  54. width: 18rpx;
  55. height: 12rpx;
  56. margin-left: 20rpx;
  57. transform: rotate(270deg);
  58. }
  59. .payment .card .bg {
  60. position: absolute;
  61. left: 0;
  62. bottom: 0;
  63. right: 0;
  64. width: 100%;
  65. height: 98rpx;
  66. }
  67. .payment .volume .box {
  68. margin: 40rpx 0;
  69. }
  70. .payment .volume .title {
  71. font-size: 28rpx;
  72. font-weight: bold;
  73. color: #686B78;
  74. display: flex;
  75. align-items: center;
  76. }
  77. .payment .volume .title.line::before {
  78. content: "";
  79. display: inline-block;
  80. width: 6rpx;
  81. height: 16rpx;
  82. background: rgba(0, 145, 255, 1);
  83. border-radius: 2rpx;
  84. margin-right: 12rpx;
  85. }
  86. .payment .volume .input {
  87. height: 72rpx;
  88. margin: 20rpx 0 40rpx;
  89. border-bottom: 2rpx solid #CFD2D5;
  90. display: flex;
  91. align-items: center;
  92. justify-content: space-between;
  93. }
  94. .payment .volume .input .shuidi {
  95. display: inline-block;
  96. width: 38rpx;
  97. height: 38rpx;
  98. margin-right: 20rpx;
  99. }
  100. .payment .volume .input input {
  101. width: calc(100% - 100rpx);
  102. }
  103. .payment .volume .input .unit {
  104. font-size: 32rpx;
  105. color: rgba(66, 70, 86, 0.5);
  106. }
  107. .payment .volume .input input {
  108. display: inline-block;
  109. }
  110. .payment .volume .tags {
  111. display: flex;
  112. justify-content: space-between;
  113. }
  114. .payment .volume .tags button {
  115. margin: 0;
  116. width: 140rpx;
  117. height: 60rpx;
  118. background: rgba(240, 242, 246, 1);
  119. border-radius: 4rpx;
  120. border: none;
  121. font-size: 24rpx;
  122. color: rgba(104, 107, 120, 1);
  123. display: flex;
  124. align-items: center;
  125. justify-content: center;
  126. }
  127. .payment .volume .tags .tag.disabled {
  128. background: rgba(244, 247, 249, 1);
  129. color: rgba(224, 225, 227, 1);
  130. }
  131. .payment .volume .tags .tag.active {
  132. background: rgba(0, 145, 255, 1);
  133. color: #FFF;
  134. }
  135. .payment .payable {
  136. font-size: 26rpx;
  137. font-weight: normal;
  138. }
  139. .payment .payable .h {
  140. font-size: 28rpx;
  141. font-weight: bold;
  142. color: #686B78;
  143. }
  144. .payment .payable .amount {
  145. width: 200rpx;
  146. font-weight: normal;
  147. text-align: center;
  148. }
  149. .payment .payable .unit {
  150. font-size: 26rpx;
  151. font-weight: normal;
  152. color: rgba(66, 70, 86, 0.5);
  153. margin-right: 20rpx;
  154. }
  155. .payment .payable .arrears-tip {
  156. font-size: 26rpx;
  157. font-weight: normal;
  158. color: #F56C6C;
  159. }
  160. .payment .btn-big {
  161. margin: 40rpx auto 40rpx;
  162. }
  163. .payment .tips {
  164. margin: 0;
  165. font-size: 24rpx;
  166. color: rgba(255, 113, 113, 1);
  167. line-height: 34rpx;
  168. }
  169. .payment .nav {
  170. font-size: 24rpx;
  171. color: rgba(0, 145, 255, 1);
  172. height: 114rpx;
  173. line-height: 114rpx;
  174. text-align: center;
  175. display: flex;
  176. align-items: center;
  177. justify-content: center;
  178. margin-bottom: 40rpx;
  179. }
  180. .payment .nav .line {
  181. font-size: 16rpx;
  182. color: #CFD2D5;
  183. margin: 0 40rpx;
  184. }