cash.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /* pages/cash/cash.wxss */
  2. page{
  3. background-color: #413668;
  4. }
  5. .c-head-bg{
  6. position: absolute;
  7. width: 671rpx;
  8. height: 272rpx;
  9. left: 40rpx;
  10. top: 40rpx;
  11. }
  12. .c-head{
  13. position: relative;
  14. margin: 40rpx 40rpx 0;
  15. height: 272rpx;
  16. }
  17. .c-head text{
  18. color: #fff;
  19. }
  20. .c-head > .title{
  21. display: inline-block;
  22. height: 48rpx;
  23. line-height: 48rpx;
  24. margin: 50rpx 56rpx 0;
  25. font-size: 26rpx;
  26. }
  27. .c-head > button{
  28. float: right;
  29. width: 128rpx;
  30. height: 48rpx;
  31. line-height: 48rpx;
  32. margin: 50rpx 40rpx 0;
  33. padding: 0;
  34. font-size: 24rpx;
  35. color: #fff;
  36. background: transparent;
  37. border: 1rpx solid #fff;
  38. border-radius: 32rpx;
  39. }
  40. .c-head > button::after{
  41. border: 0;
  42. }
  43. .c-head .balance{
  44. display: block;
  45. line-height: 116rpx;
  46. margin: 0 56rpx;
  47. font-size: 100rpx;
  48. font-family: 'Trebuchet MS', Tahoma, sans-serif;
  49. }
  50. .c-body{
  51. position: relative;
  52. height: 420rpx;
  53. margin: -15rpx 40rpx 0;
  54. background-color: #fff;
  55. border-radius: 20rpx;
  56. }
  57. .c-body > .title{
  58. display: inline-block;
  59. height: 48rpx;
  60. line-height: 48rpx;
  61. margin: 66rpx 56rpx 52rpx;
  62. font-size: 32rpx;
  63. color: #333333;
  64. }
  65. .c-body > view.out{
  66. margin: 0 56rpx 20rpx;
  67. padding-bottom: 36rpx;
  68. border-bottom: 1rpx solid #e5e5e5;
  69. }
  70. .c-body > view.out > text{
  71. display: inline-block;
  72. height: 80rpx;
  73. line-height: 80rpx;
  74. margin-right: 20rpx;
  75. font-size: 60rpx;
  76. color: #333333;
  77. vertical-align: top;
  78. }
  79. .c-body > view.out > input{
  80. display: inline-block;
  81. width: 500rpx;
  82. height: 80rpx;
  83. min-height: 80rpx;
  84. line-height: 80rpx;
  85. color: #333333;
  86. font-size: 68rpx;
  87. font-family: 'Trebuchet MS', Tahoma, sans-serif;
  88. }
  89. .c-body .tip{
  90. display: inline-block;
  91. margin: 0 56rpx;
  92. line-height: 44rpx;
  93. font-size: 26rpx;
  94. color: #999999;
  95. }
  96. .c-body text.yellow{
  97. color: #fc874f;
  98. }
  99. .c-body text.red{
  100. color: #fb444c;
  101. }
  102. .btn-cash{
  103. margin: 60rpx 40rpx 34rpx;
  104. height: 92rpx;
  105. line-height: 92rpx;
  106. min-height: 92rpx;
  107. background: linear-gradient(to right, #dd7fff, #625af7);
  108. border-radius: 46rpx;
  109. color: #fff;
  110. font-size: 34rpx;
  111. font-weight: bold;
  112. }
  113. .c-footer{
  114. display: block;
  115. opacity: 0.7;
  116. margin-bottom: 10rpx;
  117. text-align: center;
  118. font-size: 26rpx;
  119. color: #bfbdff;
  120. }
  121. .dialog-body-cash{
  122. position: relative;
  123. width: 500rpx;
  124. margin: 0 75rpx;
  125. padding: 56rpx 50rpx 66rpx;
  126. background-color: #fff;
  127. border-radius: 40rpx;
  128. text-align: center;
  129. }
  130. .dialog-body-cash .title{
  131. display: block;
  132. line-height: 48rpx;
  133. font-size: 32rpx;
  134. font-weight: bold;
  135. color: #333333;
  136. }
  137. .dialog-body-cash .sub-title{
  138. display: block;
  139. margin-top: 15rpx;
  140. line-height: 36rpx;
  141. padding-bottom: 30rpx;
  142. font-size: 26rpx;
  143. color: #808080;
  144. text-align: left;
  145. border-bottom: 1rpx solid #e5e5e5;
  146. }
  147. .dialog-body-cash input{
  148. height: 108rpx;
  149. line-height: 108rpx;
  150. border-bottom: 1rpx solid #e5e5e5;
  151. color: #333333;
  152. font-size: 32rpx;
  153. }
  154. .dialog-body-cash button{
  155. height: 92rpx;
  156. line-height: 92rpx;
  157. font-size: 34rpx;
  158. margin-top: 54rpx;
  159. background: linear-gradient(to right, #dd7fff, #625af7);
  160. color: #fff;
  161. border-radius: 52rpx;
  162. }