recharge.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. page{
  2. height: 100%;
  3. background: #f4f4f4;
  4. }
  5. .left_top{
  6. position: absolute;
  7. display: flex;
  8. flex-direction: column;
  9. top: 30rpx;
  10. left: 30rpx;
  11. font-size:35rpx;
  12. font-family:PingFang SC;
  13. font-weight:bold;
  14. color:rgba(137,137,139,1);
  15. }
  16. .recharge{
  17. width: 100%;
  18. display: flex;
  19. flex-direction: column;
  20. align-items: center;
  21. }
  22. .rechargeCon{
  23. width:97%;
  24. margin:0 auto;
  25. text-align: center;
  26. }
  27. /* 充值金额 */
  28. .hint{
  29. padding-top:62rpx;
  30. width: 92%;
  31. font-size:30rpx;
  32. font-family:PingFang SC;
  33. font-weight:bold;
  34. color:rgba(42,42,42,1);
  35. }
  36. /* 金额 */
  37. .amount{
  38. margin-top: 13rpx;
  39. flex-wrap: wrap;
  40. display: flex;
  41. margin-bottom: 44rpx;
  42. }
  43. .amount view{
  44. width:30%;
  45. height:141rpx;
  46. background:rgba(255,255,255,1);
  47. box-shadow:0px 0px 10rpx 0px rgba(222,222,222,1);
  48. border-radius:6rpx;
  49. display: flex;
  50. flex-direction: column;
  51. align-items: center;
  52. justify-content: center;
  53. margin-top: 20rpx;
  54. margin-left: 20rpx;
  55. }
  56. .amount view text:nth-of-type(1){
  57. font-size:35rpx;
  58. font-family:PingFang SC;
  59. font-weight:bold;
  60. color:rgba(137,137,139,1);
  61. }
  62. .amount view text:nth-of-type(2){
  63. font-size:26rpx;
  64. font-family:PingFang SC;
  65. font-weight:500;
  66. color:rgba(253,72,43,1);
  67. padding-top: 20rpx;
  68. }
  69. /* .amount :last-child{
  70. display: none;
  71. } */
  72. /* 自定义输入金额 */
  73. .inp{
  74. width: 95%;
  75. margin: 0 auto;
  76. }
  77. .inp input{
  78. height:88rpx;
  79. background:rgba(255,255,255,1);
  80. box-shadow:0px 0px 10rpx 0px rgba(222,222,222,1);
  81. border-radius:6rpx;
  82. }
  83. /* 立即支付 */
  84. .payBtn{
  85. margin:64rpx auto 39rpx;
  86. }
  87. .deal{
  88. font-size:24rpx;
  89. color:#18D5B9;
  90. margin:0 auto;
  91. }
  92. .amount .choice{
  93. background: #18D3B8;
  94. }
  95. .amount .choice text:nth-of-type(1){
  96. color: #fff;
  97. }
  98. .bottom{
  99. width: 100%;
  100. text-align: center;
  101. position: absolute;
  102. bottom: 16rpx;
  103. color:#b1b1b1;
  104. font-size: 24rpx;
  105. }