withdrawal.wxss 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /* pages/withdrawal/withdrawal.wxss */
  2. page {
  3. background: #f5f5f5;
  4. }
  5. .message {
  6. height: 74rpx;
  7. color: #327ae1;
  8. font-size: 28rpx;
  9. line-height: 74rpx;
  10. padding: 0 30rpx;
  11. box-sizing: border-box;
  12. background: #e8f2ff;
  13. }
  14. .money {
  15. padding: 30rpx 30rpx 0 30rpx;
  16. box-sizing: border-box;
  17. background: #fff;
  18. }
  19. .money-content {
  20. height: 220rpx;
  21. }
  22. .money-content-title {
  23. color: #333;
  24. font-size: 28rpx;
  25. }
  26. .money-content-input {
  27. display: flex;
  28. align-items: center;
  29. justify-content: space-between;
  30. }
  31. .input {
  32. flex: 1;
  33. color: #333;
  34. font-size: 68rpx;
  35. display: flex;
  36. align-items: center;
  37. padding: 15rpx 0;
  38. }
  39. .input input {
  40. height: 100%;
  41. }
  42. .all {
  43. font-size: 28rpx;
  44. color: #327ae1;
  45. display: flex;
  46. align-items: center;
  47. justify-content: flex-end;
  48. }
  49. .all-icon {
  50. height: 25rpx;
  51. width: 25rpx;
  52. margin-left: 15rpx;
  53. }
  54. .hint {
  55. height: 100rpx;
  56. color: #999;
  57. font-size: 28rpx;
  58. line-height: 100rpx;
  59. border-top: 2rpx solid #eee;
  60. }
  61. .pay-method {
  62. display: flex;
  63. align-items: center;
  64. justify-content: space-between;
  65. padding: 45rpx;
  66. box-sizing: border-box;
  67. }
  68. .method {
  69. width: 314rpx;
  70. height: 98rpx;
  71. background: #fff;
  72. border: 2rpx solid #eee;
  73. padding: 0 30rpx;
  74. box-sizing: border-box;
  75. display: flex;
  76. align-items: center;
  77. justify-content: flex-start;
  78. position: relative;
  79. }
  80. .wechat {
  81. width: 56rpx;
  82. height: 45rpx;
  83. }
  84. .alipay {
  85. height: 56rpx;
  86. width: 56rpx;
  87. }
  88. .pay-text {
  89. color: #333;
  90. font-size: 28rpx;
  91. margin-left: 30rpx;
  92. }
  93. .choose-pay {
  94. height: 24rpx;
  95. width: 24rpx;
  96. position: absolute;
  97. right: 0;
  98. bottom: 0;
  99. }
  100. .button {
  101. width: 690rpx;
  102. height: 88rpx;
  103. color: #fff;
  104. font-size: 34rpx;
  105. text-align: center;
  106. line-height: 88rpx;
  107. background: #d8d8d8;
  108. border-radius: 10rpx;
  109. margin: 30rpx auto;
  110. }
  111. .background {
  112. background: linear-gradient(90deg, rgba(78, 171, 225, 1) 0%, rgba(49, 121, 225, 1) 100%);
  113. }
  114. .border {
  115. border: 2rpx solid #07aaff;
  116. }