index.rpx.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. .page{
  2. height: 100vh;
  3. background: #F9F9F9;
  4. padding: 0 32rpx;
  5. }
  6. .read{
  7. font-size: 28rpx;
  8. color: #000000;
  9. line-height: 40rpx;
  10. }
  11. .title{
  12. position: relative;
  13. }
  14. .title1{
  15. font-size: 35rpx;
  16. line-height: 50rpx;
  17. }
  18. .title2{
  19. font-size: 28rpx;
  20. color: #000000;
  21. line-height: 50rpx;
  22. position: absolute;
  23. right: 0;
  24. top: 0;
  25. }
  26. .withdrawButton{
  27. background: #FFE50C;
  28. width: 686rpx;
  29. height: 80rpx;
  30. color: #000000;
  31. text-align: center;
  32. line-height: 80rpx;
  33. font-size: 28rpx;
  34. border-radius: 10rpx;
  35. }
  36. .marginTop{
  37. margin-top: 24rpx;
  38. }
  39. .priceTitle{
  40. font-size: 28rpx;
  41. }
  42. .price{
  43. font-size: 60rpx;
  44. font-weight: bold;
  45. }
  46. /* 提现金额输入 */
  47. .amountSection {
  48. margin-top: 60rpx;
  49. background: #fff;
  50. border-radius: 12rpx;
  51. padding: 24rpx;
  52. }
  53. .amountInputWrap {
  54. display: flex;
  55. flex-direction: row;
  56. align-items: center;
  57. height: 100rpx;
  58. border-bottom: 1rpx solid #f0f0f0;
  59. }
  60. .amountSymbol {
  61. font-size: 40rpx;
  62. color: #333;
  63. font-weight: bold;
  64. margin-right: 16rpx;
  65. }
  66. .amountInput {
  67. flex: 1;
  68. font-size: 40rpx;
  69. color: #333;
  70. height: 60rpx;
  71. font-weight: bold;
  72. }
  73. .amountTip {
  74. display: flex;
  75. flex-direction: row;
  76. justify-content: space-between;
  77. align-items: center;
  78. margin-top: 16rpx;
  79. font-size: 24rpx;
  80. color: #999;
  81. }
  82. .allAmount {
  83. color: #000000;
  84. }
  85. /* 提现方式选择 */
  86. .withdrawTypeSection {
  87. margin-top: 60rpx;
  88. }
  89. .sectionTitle {
  90. font-size: 28rpx;
  91. color: #333;
  92. font-weight: bold;
  93. margin-bottom: 24rpx;
  94. }
  95. .typeOptionList {
  96. display: flex;
  97. flex-direction: row;
  98. gap: 24rpx;
  99. }
  100. .typeOption {
  101. flex: 1;
  102. height: 120rpx;
  103. background: #fff;
  104. border: 2rpx solid #e0e0e0;
  105. border-radius: 12rpx;
  106. display: flex;
  107. align-items: center;
  108. justify-content: center;
  109. }
  110. .typeOption.active {
  111. border-color: #FFE50C;
  112. background: #FFFBE6;
  113. }
  114. .typeText {
  115. font-size: 28rpx;
  116. color: #333;
  117. }
  118. .typeOption.active .typeText {
  119. color: #000;
  120. font-weight: bold;
  121. }
  122. /* 表单区域 */
  123. .formSection {
  124. margin-top: 40rpx;
  125. background: #fff;
  126. border-radius: 12rpx;
  127. padding: 0 24rpx;
  128. }
  129. .formItem {
  130. display: flex;
  131. flex-direction: row;
  132. align-items: center;
  133. height: 100rpx;
  134. border-bottom: 1rpx solid #f0f0f0;
  135. }
  136. .formItem:last-child {
  137. border-bottom: none;
  138. }
  139. .formLabel {
  140. font-size: 28rpx;
  141. color: #333;
  142. width: 160rpx;
  143. flex-shrink: 0;
  144. }
  145. .formInput {
  146. flex: 1;
  147. font-size: 28rpx;
  148. color: #333;
  149. height: 60rpx;
  150. }
  151. .placeholder {
  152. color: #bbb;
  153. font-size: 28rpx;
  154. }
  155. /* 上传区域 */
  156. .uploadSection {
  157. padding: 24rpx 0;
  158. }
  159. .uploadBox {
  160. margin-top: 24rpx;
  161. width: 300rpx;
  162. height: 300rpx;
  163. background: #f5f5f5;
  164. border: 2rpx dashed #ccc;
  165. border-radius: 12rpx;
  166. display: flex;
  167. align-items: center;
  168. justify-content: center;
  169. }
  170. .uploadPlaceholder {
  171. display: flex;
  172. flex-direction: column;
  173. align-items: center;
  174. justify-content: center;
  175. }
  176. .uploadIcon {
  177. font-size: 60rpx;
  178. color: #999;
  179. line-height: 1;
  180. }
  181. .uploadText {
  182. font-size: 24rpx;
  183. color: #999;
  184. margin-top: 12rpx;
  185. }
  186. .uploadImage {
  187. width: 280rpx;
  188. height: 280rpx;
  189. }