balance.acss 2.6 KB

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