index.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /* pages/recharge/index.wxss */
  2. /* 余额 */
  3. .money{
  4. /* padding-top: 72rpx;
  5. text-align: center; */
  6. width: 100vw;
  7. height: 154rpx;
  8. background:#295C56;
  9. position: relative;
  10. text-align: center;
  11. color:#FFFFFF;
  12. }
  13. .money .title{
  14. font-size:26rpx;
  15. /* color:rgba(51,51,51,1); */
  16. }
  17. .cash{
  18. padding-left: 20rpx;
  19. font-size:48rpx;
  20. /* color:rgba(213,76,67,1); */
  21. }
  22. .cash .cash_tag{
  23. font-size:30rpx;
  24. }
  25. .cash .cash_num{
  26. padding-left: 4rpx;
  27. }
  28. /* 下一步 */
  29. .actions{
  30. /* position: fixed;
  31. bottom: 48rpx;
  32. width: 100vw; */
  33. width: 100vw;
  34. }
  35. .actions .logout{
  36. width:690rpx;
  37. height:90rpx;
  38. background:#295C56;
  39. border-radius:45rpx;
  40. margin: 0 auto;
  41. font-size:34rpx;
  42. color:#FFFFFF;
  43. text-align: center;
  44. line-height: 90rpx;
  45. }
  46. /* 背景上的弧度 */
  47. .bg{
  48. width: 750rpx;
  49. height: 34rpx;
  50. display: block;
  51. }
  52. .square{
  53. content: "";
  54. display: block;
  55. width:26rpx;
  56. height:26rpx;
  57. background:rgba(255,255,255,1);
  58. opacity:0.1;
  59. border-radius:50%;
  60. position: absolute;
  61. bottom: 120rpx;
  62. right: 120rpx;
  63. }
  64. /* 提现 */
  65. .recharge_wrap{
  66. width:690rpx;
  67. background:rgba(255,255,255,1);
  68. box-shadow:0rpx 0rpx 21rpx 0rpx rgba(0, 0, 0, 0.09);
  69. border-radius:10rpx;
  70. position: relative;
  71. left: 50%;
  72. top: -60rpx;
  73. transform: translateX(-50%);
  74. padding: 50rpx 30rpx;
  75. }
  76. .recharge_title{
  77. font-size:36rpx;
  78. color:rgba(51,51,51,1);
  79. text-align: center;
  80. }
  81. .recharge{
  82. padding-top: 12rpx;
  83. }
  84. .recharge .card{
  85. width:200rpx;
  86. height:122rpx;
  87. background:rgba(255,255,255,1);
  88. border:1rpx solid rgba(233,233,233,1);
  89. border-radius:5rpx;
  90. margin-top: 18rpx;
  91. margin-right: 15rpx;
  92. font-size:36rpx;
  93. color:rgba(213,76,67,1);
  94. text-align: center;
  95. line-height: 122rpx;
  96. }
  97. .recharge .card:nth-of-type(3n){
  98. margin-right: 0;
  99. }
  100. .recharge .card.active{
  101. background:rgba(255,244,244,1);
  102. border:1rpx solid rgba(255,113,113,1);
  103. }
  104. /* 选择门店 */
  105. .selecteShop_nr{
  106. display: flex;
  107. justify-content: space-between;
  108. margin-top: 20rpx;
  109. }
  110. .selecteShop_nr .text{
  111. font-size: 28rpx;
  112. }
  113. /* 提现金额 */
  114. .recharge_wrap .van-cell{
  115. padding: 10rpx 0 !important;
  116. line-height: normal !important;
  117. border-bottom: 1rpx solid rgba(0, 0, 0, 0.1);
  118. }
  119. .recharge_wrap .van-field__body{
  120. font-size: 30rpx;
  121. padding-top: 30rpx;
  122. }