index.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. .withdrawal {
  2. width: 721rpx;
  3. margin: 0 auto;
  4. padding: 70rpx 74rpx 22rpx;
  5. display: flex;
  6. flex-direction: column;
  7. align-items: center;
  8. box-sizing: border-box;
  9. background: #FFFFFF;
  10. border-radius: 20rpx;
  11. }
  12. .withdrawal .mimg {
  13. margin-bottom: 30rpx;
  14. width: 159rpx;
  15. height: 71rpx;
  16. }
  17. .withdrawal .formBox {
  18. width: 465rpx;
  19. text-align: left;
  20. }
  21. .withdrawal .formBox .title {
  22. font-size: 30rpx;
  23. }
  24. .withdrawal .formBox .inputBox {
  25. display: flex;
  26. align-items: center;
  27. justify-content: space-between;
  28. padding-bottom: 6rpx;
  29. border-bottom: 1rpx solid #97979791;
  30. }
  31. .withdrawal .formBox .inputBox .icon {
  32. font-size: 36rpx;
  33. font-weight: bold;
  34. }
  35. .withdrawal .formBox .inputBox .input {
  36. margin-left: 10rpx;
  37. flex: 1;
  38. }
  39. .withdrawal .formBox .inputBox .close {
  40. padding: 0 10rpx 0 20rpx;
  41. font-size: 46rpx;
  42. color: #979797;
  43. }
  44. .withdrawal .formBox .warning {
  45. margin-top: 10rpx;
  46. font-size: 26rpx;
  47. color: #FF0000;
  48. }
  49. .withdrawal .formBox .amount {
  50. margin: 30rpx 0 18rpx;
  51. font-size: 30rpx;
  52. font-weight: bold;
  53. }
  54. .withdrawal .formBox .tips {
  55. font-size: 26rpx;
  56. color: #B2B2B2;
  57. }
  58. .withdrawal .submit {
  59. margin-top: 90rpx;
  60. padding: 15rpx 240rpx;
  61. border-radius: 40rpx;
  62. font-size: 36rpx;
  63. letter-spacing: 4rpx;
  64. color: #FFFFFF;
  65. background: linear-gradient(180deg, #6EC8FF 0%, #31BDFE 100%);
  66. }
  67. .withdrawal .tips2 {
  68. margin-top: 16rpx;
  69. font-size: 26rpx;
  70. }
  71. .detail {
  72. margin: 34rpx auto;
  73. width: 710rpx;
  74. box-sizing: border-box;
  75. padding: 28rpx 20rpx;
  76. display: flex;
  77. align-items: center;
  78. justify-content: space-between;
  79. background: #FFFFFF;
  80. border-radius: 20rpx;
  81. }
  82. .detail .label {
  83. font-size: 30rpx;
  84. }
  85. .detail .black {
  86. margin-right: 20rpx;
  87. width: 16rpx;
  88. height: 30rpx;
  89. opacity: 0.6;
  90. }
  91. .activationModal {
  92. position: fixed;
  93. z-index: 2;
  94. left: 0rpx;
  95. top: 0rpx;
  96. width: 100vw;
  97. height: 100vh;
  98. background: rgba(0, 0, 0, 0.7);
  99. }
  100. .activationModal .box {
  101. position: absolute;
  102. left: 0;
  103. right: 0;
  104. top: 30%;
  105. margin: auto;
  106. width: 496rpx;
  107. height: 365rpx;
  108. background-color: white;
  109. border-radius: 20rpx;
  110. text-align: center;
  111. }
  112. .activationModal .box .sLcon {
  113. margin-top: 34rpx;
  114. width: 100rpx;
  115. height: 100rpx;
  116. }
  117. .activationModal .box .tips1 {
  118. margin: 36rpx 0rpx 24rpx;
  119. color: #131313;
  120. font-weight: bold;
  121. font-size: 34rpx;
  122. }
  123. .activationModal .box .tips2 {
  124. font-size: 30rpx;
  125. color: #12C962;
  126. }
  127. .activationModal .close {
  128. position: absolute;
  129. padding: 40rpx;
  130. width: 54rpx;
  131. height: 54rpx;
  132. left: 0;
  133. right: 0;
  134. bottom: -140rpx;
  135. margin: auto;
  136. }