balance.acss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /* required by usingComponents */
  2. /* pages/balance/balance.wxss */
  3. .balance-top {
  4. height: 80rpx;
  5. text-align: center;
  6. font-size: 24rpx;
  7. background-color: #fff2e2;
  8. color: #fa5207;
  9. line-height: 80rpx;
  10. }
  11. .chongzhi {
  12. padding: 30rpx 40rpx;
  13. }
  14. .card {
  15. padding: 50rpx;
  16. border-radius: 20rpx;
  17. background: linear-gradient(to right, #ffd514, #ffe330);
  18. margin-bottom: 10rpx;
  19. }
  20. .balance-num {
  21. margin-top: 10rpx;
  22. font-size: 26rpx;
  23. }
  24. .iconfont {
  25. font-size: 24rpx;
  26. display: inline-block;
  27. margin-left: 6rpx;
  28. }
  29. .yue {
  30. font-size: 28rpx;
  31. }
  32. .money {
  33. font-size: 60rpx;
  34. font-weight: bold;
  35. }
  36. .yuan {
  37. font-size: 30rpx;
  38. font-weight: 600;
  39. display: inline-block;
  40. margin-left: 4rpx;
  41. }
  42. .money-list {
  43. display: flex;
  44. flex-wrap: wrap;
  45. justify-content: space-between;
  46. flex-direction: row;
  47. }
  48. .money-item,
  49. .active {
  50. flex: 0 0 45%;
  51. margin-top: 30rpx;
  52. height: 120rpx;
  53. border-radius: 20rpx;
  54. line-height: 120rpx;
  55. border: solid 1rpx #ffce3b;
  56. text-align: center;
  57. box-shadow: 0 0 15px #fffce1;
  58. }
  59. .active {
  60. background-color: #ffe02d;
  61. }
  62. .bottom-card {
  63. position: fixed;
  64. bottom: 0;
  65. left: 0;
  66. padding: 50rpx 0;
  67. padding-bottom: 120rpx;
  68. width: 100%;
  69. box-shadow: 0 0 15px #f6f6f6;
  70. }
  71. .bottom-list {
  72. text-align: center;
  73. color: #fff;
  74. font-size: 32rpx;
  75. font-weight: 600;
  76. }
  77. .bottom-item1 {
  78. width: 70%;
  79. margin: 0 auto;
  80. height: 100rpx;
  81. line-height: 100rpx;
  82. border-radius: 50rpx;
  83. background-color: var(--globleColor);
  84. }
  85. .bottom-item2 {
  86. flex: 0 0 36%;
  87. margin-right: 10%;
  88. height: 100rpx;
  89. border-radius: 50rpx;
  90. line-height: 100rpx;
  91. background-color: var(--greenButton);
  92. }
  93. .frame {
  94. height: 100vh;
  95. width: 100%;
  96. position: fixed;
  97. top: 0;
  98. left: 0;
  99. background-color: rgba(0, 0, 0, 0.6);
  100. }
  101. .frame-content {
  102. padding: 80rpx 50rpx;
  103. width: 70%;
  104. margin: 0 auto;
  105. margin-top: 40%;
  106. background-color: #fff;
  107. opacity: 1;
  108. font-size: 28rpx;
  109. }
  110. .frame-title {
  111. margin-left: 50rpx;
  112. color: #909090;
  113. }
  114. .money-detail {
  115. display: flex;
  116. margin-top: 20rpx;
  117. }
  118. .detail-item {
  119. flex: 1;
  120. padding: 20rpx 0;
  121. text-align: center;
  122. }
  123. .detail-item:first-child {
  124. border-right: solid 1rpx #d6d6d6;
  125. }
  126. .detail-nums {
  127. font-size: 40rpx;
  128. font-weight: 600;
  129. }
  130. .detail-text {
  131. margin-top: 10rpx;
  132. color: #333333;
  133. }
  134. .zidingyi{
  135. margin-top: 50rpx;
  136. }
  137. .zidingyi input{
  138. height: 70rpx;
  139. /* width: 80%; */
  140. border: solid 1rpx var(--globleColor);
  141. padding: 0 20rpx;
  142. border-radius: 12rpx;
  143. }
  144. .no-input{
  145. font-size: 26rpx;
  146. }