switch.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. $paddingLR: 32rpx;
  2. .unopen-box {
  3. width: 587rpx;
  4. background-color: #fff;
  5. border-radius: 12rpx;
  6. overflow: hidden;
  7. .unopen-title {
  8. height: 90rpx;
  9. font-size: 32rpx;
  10. font-family: PingFang SC, PingFang SC-Bold;
  11. font-weight: 700;
  12. color: #1a1a1a;
  13. line-height: 90rpx;
  14. letter-spacing: 0.64rpx;
  15. border-bottom: 1rpx solid #e6e6e6;
  16. display: flex;
  17. justify-content: space-between;
  18. padding: 0 $paddingLR;
  19. .z-close{
  20. width: 25rpx;
  21. height: 25rpx;
  22. flex-shrink: 0;
  23. }
  24. }
  25. .unopen-content {
  26. padding: 73.5rpx $paddingLR 65rpx;
  27. .hint-text{
  28. font-size: 28rpx;
  29. font-family: PingFang SC, PingFang SC-Regular;
  30. font-weight: 400;
  31. color: #808080;
  32. line-height: 42rpx;
  33. padding-bottom: 52rpx;
  34. }
  35. .account-box {
  36. width: 100%;
  37. display: flex;
  38. align-items: center;
  39. justify-content: space-between;
  40. .account-item {
  41. width: 220rpx;
  42. height: 80rpx;
  43. text-align: center;
  44. line-height: 80rpx;
  45. background: #f1f1f3;
  46. border-radius: 6rpx;
  47. font-size: 22rpx;
  48. font-family: PingFang SC, PingFang SC-Regular;
  49. font-weight: 400;
  50. text-align: center;
  51. color: #333333;
  52. }
  53. .account-link {
  54. flex: 1;
  55. display: flex;
  56. flex-direction: column;
  57. justify-content: space-around;
  58. align-items: center;
  59. font-size: 22rpx;
  60. font-family: PingFang SC, PingFang SC-Regular;
  61. font-weight: 400;
  62. color: #05c175;
  63. line-height: 30rpx;
  64. image {
  65. width: 30rpx;
  66. height: 26rpx;
  67. }
  68. }
  69. }
  70. .capital-type {
  71. width: 100%;
  72. height: 84rpx;
  73. border: 1rpx solid #b3b3b3;
  74. margin-top: 30rpx;
  75. padding: 0 20rpx;
  76. display: flex;
  77. justify-content: space-between;
  78. align-items: center;
  79. .type-left {
  80. font-size: 24rpx;
  81. font-family: PingFang SC, PingFang SC-Regular;
  82. font-weight: 400;
  83. color: #05c175;
  84. }
  85. .type-rigth {
  86. font-size: 28rpx;
  87. font-family: PingFang SC, PingFang SC-Bold;
  88. font-weight: 700;
  89. color: #1a1a1a;
  90. }
  91. }
  92. // <view class="capital-nums">
  93. // <text class="num-title">可划转金额:</text>
  94. // <text class="num">29997.9123 USDT</text>
  95. // </view>
  96. .capital-nums {
  97. width: 100%;
  98. font-size: 28rpx;
  99. font-family: PingFang SC, PingFang SC-Regular;
  100. font-weight: 400;
  101. text-align: center;
  102. padding: 20rpx 0 30rpx;
  103. .num-title {
  104. color: #808080;
  105. }
  106. .num {
  107. color: #05C175;
  108. }
  109. }
  110. .capital-btn{
  111. width: 100%;
  112. height: 75rpx;
  113. background: #05c175;
  114. border-radius: 8rpx;
  115. font-size: 32rpx;
  116. font-family: PingFang SC, PingFang SC-Regular;
  117. font-weight: 400;
  118. color: #ffffff;
  119. letter-spacing: 0.64rpx;
  120. text-align: center;
  121. line-height: 75rpx;
  122. }
  123. }
  124. }