微信小店联盟带货小程序

withdraw.wxss 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. /* pages/distribution/withdraw.wxss */
  2. .container {
  3. min-height: 100vh;
  4. background: #f8f8f8;
  5. padding-bottom: calc(env(safe-area-inset-bottom) + 40rpx);
  6. }
  7. /* 余额卡片 */
  8. .balance-card {
  9. margin: 20rpx;
  10. padding: 40rpx 30rpx;
  11. background: linear-gradient(135deg, #ff4d4f, #ff7875);
  12. border-radius: 16rpx;
  13. color: #fff;
  14. text-align: center;
  15. }
  16. .balance-card .title {
  17. font-size: 28rpx;
  18. opacity: 0.9;
  19. line-height: 1.5;
  20. }
  21. .balance-card .amount {
  22. font-size: 72rpx;
  23. font-weight: 600;
  24. margin: 20rpx 0;
  25. line-height: 1.2;
  26. }
  27. .balance-card .tips {
  28. display: flex;
  29. justify-content: center;
  30. font-size: 24rpx;
  31. opacity: 0.9;
  32. line-height: 1.5;
  33. }
  34. .tip-item {
  35. margin: 0 20rpx;
  36. display: flex;
  37. align-items: center;
  38. }
  39. /* 提现表单 */
  40. .withdraw-form {
  41. margin: 20rpx;
  42. padding: 30rpx;
  43. background: #fff;
  44. border-radius: 16rpx;
  45. }
  46. .form-title {
  47. font-size: 32rpx;
  48. color: #333;
  49. margin-bottom: 20rpx;
  50. font-weight: 500;
  51. line-height: 1.5;
  52. }
  53. .input-group {
  54. display: flex;
  55. align-items: center;
  56. border-bottom: 2rpx solid #f0f0f0;
  57. padding: 20rpx 0;
  58. margin-bottom: 16rpx;
  59. }
  60. .currency {
  61. font-size: 40rpx;
  62. color: #333;
  63. margin-right: 20rpx;
  64. font-weight: 500;
  65. line-height: 1;
  66. display: flex;
  67. align-items: center;
  68. }
  69. .amount-input {
  70. flex: 1;
  71. font-size: 40rpx;
  72. color: #333;
  73. height: 60rpx;
  74. line-height: 60rpx;
  75. padding: 0;
  76. }
  77. .amount-tips {
  78. display: flex;
  79. justify-content: space-between;
  80. align-items: center;
  81. font-size: 24rpx;
  82. color: #999;
  83. margin-bottom: 40rpx;
  84. line-height: 1.5;
  85. }
  86. .all-amount {
  87. color: #ff4d4f;
  88. padding: 10rpx 0 10rpx 20rpx;
  89. }
  90. /* 提现方式 */
  91. .withdraw-method {
  92. margin-bottom: 40rpx;
  93. }
  94. .method-title {
  95. font-size: 32rpx;
  96. color: #333;
  97. margin-bottom: 20rpx;
  98. font-weight: 500;
  99. line-height: 1.5;
  100. }
  101. .method-list {
  102. background: #f8f8f8;
  103. border-radius: 12rpx;
  104. overflow: hidden;
  105. }
  106. .method-item {
  107. display: flex;
  108. align-items: center;
  109. padding: 30rpx;
  110. background: #fff;
  111. margin-bottom: 2rpx;
  112. position: relative;
  113. }
  114. .method-item.active {
  115. background: rgba(255, 77, 79, 0.05);
  116. }
  117. .method-icon {
  118. width: 48rpx;
  119. height: 48rpx;
  120. margin-right: 20rpx;
  121. flex-shrink: 0;
  122. }
  123. .method-info {
  124. flex: 1;
  125. display: flex;
  126. flex-direction: column;
  127. justify-content: center;
  128. }
  129. .method-name {
  130. font-size: 28rpx;
  131. color: #333;
  132. margin-bottom: 4rpx;
  133. line-height: 1.5;
  134. }
  135. .method-desc {
  136. font-size: 24rpx;
  137. color: #999;
  138. line-height: 1.5;
  139. }
  140. .icon-check {
  141. font-size: 40rpx;
  142. color: #ff4d4f;
  143. opacity: 0;
  144. display: flex;
  145. align-items: center;
  146. }
  147. .method-item.active .icon-check {
  148. opacity: 1;
  149. }
  150. /* 提现按钮 */
  151. .withdraw-btn {
  152. width: 100%;
  153. height: 88rpx;
  154. background: #ff4d4f;
  155. color: #fff;
  156. font-size: 32rpx;
  157. border-radius: 44rpx;
  158. margin: 40rpx 0;
  159. font-weight: 500;
  160. border: none;
  161. padding: 0;
  162. display: flex;
  163. align-items: center;
  164. justify-content: center;
  165. }
  166. .withdraw-btn.disabled {
  167. background: #ffa39e;
  168. opacity: 0.6;
  169. }
  170. /* 提现说明 */
  171. .withdraw-rules {
  172. margin-top: 40rpx;
  173. padding-top: 40rpx;
  174. border-top: 2rpx solid #f5f5f5;
  175. }
  176. .rules-title {
  177. font-size: 28rpx;
  178. color: #333;
  179. margin-bottom: 20rpx;
  180. font-weight: 500;
  181. line-height: 1.5;
  182. }
  183. .rule-item {
  184. font-size: 24rpx;
  185. color: #666;
  186. margin-bottom: 12rpx;
  187. padding-left: 20rpx;
  188. position: relative;
  189. line-height: 1.5;
  190. }
  191. .rule-item:last-child {
  192. margin-bottom: 0;
  193. }