cash.wxss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. .bg {
  2. position: relative;
  3. width: 100%;
  4. min-height: 100%;
  5. background-color: #f3f3f3;
  6. }
  7. .radish-top {
  8. width: 100%;
  9. height: 360rpx;
  10. background-image: url('http://fohow.oss-cn-shenzhen.aliyuncs.com/xcx/user/djquan.jpg');
  11. background-size: 100%;
  12. }
  13. .radish-top__title {
  14. padding: 95rpx 0 0;
  15. font-size: 34rpx;
  16. color: #FFF;
  17. text-align: center;
  18. text-shadow: 1px 1px 1px #bb954d;
  19. }
  20. .radish-top__count {
  21. font-size: 70rpx;
  22. color: #fff;
  23. text-align: center;
  24. text-shadow: 1px 1px 1px #e6231d;
  25. }
  26. .radish-top__btn {
  27. position: absolute;
  28. top: 190rpx;
  29. left: 150rpx;
  30. width: 196rpx;
  31. height: 60rpx;
  32. border: 2rpx solid #fff;
  33. margin: 48rpx auto 0;
  34. text-align: center;
  35. line-height: 60rpx;
  36. border-radius: 8rpx;
  37. font-size: 28rpx;
  38. color: #fff;
  39. }
  40. .radish-top__btn1 {
  41. position: absolute;
  42. width: 206rpx;
  43. height: 60rpx;
  44. border: 2rpx solid #eb4d20;
  45. text-align: center;
  46. line-height: 60rpx;
  47. border-radius: 45px;
  48. font-size: 32rpx;
  49. color: #fff;
  50. right: calc(50% - 103rpx);
  51. background: linear-gradient(to right,#eb712c,#e71f1c);
  52. top: 0;
  53. left: 0;
  54. }
  55. .radish-main {
  56. background-color: #fff;
  57. }
  58. .radish-main__title {
  59. height: 50rpx;
  60. line-height: 50rpx;
  61. color: #bbbbbb;
  62. background-color: #f3f3f3;
  63. text-align: center;
  64. font-size: 24rpx;
  65. }
  66. .radish-main__line {
  67. margin: 0 20rpx;
  68. height: 100rpx;
  69. border-bottom: 1rpx solid #eeeeee;
  70. }
  71. .radish-main__left {
  72. float: left;
  73. width: 450rpx;
  74. }
  75. .radish-main__text {
  76. float: left;
  77. padding-top: 16rpx;
  78. font-size: 28rpx;
  79. color: #4c4c4c;
  80. width: 450rpx;
  81. }
  82. .radish-main__time {
  83. float: left;
  84. font-size: 18rpx;
  85. color: #bbbbbb;
  86. padding-top: 5rpx;
  87. }
  88. .radish-main__count {
  89. float: right;
  90. width: 260rpx;
  91. font-size: 28rpx;
  92. line-height: 100rpx;
  93. text-align: right;
  94. color: #eab86a;
  95. }
  96. .fund__modal {
  97. position: fixed;
  98. top: 0;
  99. left: 0;
  100. width: 100%;
  101. height: 100%;
  102. padding: 0 20rpx;
  103. background: rgba(0, 0, 0, 0.3);
  104. box-sizing: border-box;
  105. z-index: 200;
  106. }
  107. .fund__modal .content {
  108. width: 560rpx;
  109. background: #fff;
  110. text-align: center;
  111. font-size: 32rpx;
  112. color: #7f93ae;
  113. margin: 360rpx auto 0;
  114. }
  115. .fund__modal .image1 {
  116. display: block;
  117. width: 82rpx;
  118. height: 102rpx;
  119. margin: 0 auto 20rpx;
  120. padding-top: 90rpx;
  121. }
  122. .fund__modal .image2 {
  123. display: block;
  124. width: 560rpx;
  125. height: 472rpx;
  126. margin-bottom: 20rpx;
  127. }
  128. .fund__modal .p1{
  129. font-size: 36rpx;
  130. font-weight: 600;
  131. margin-bottom: 30rpx;
  132. }
  133. .fund__modal .p2{
  134. font-size: 28rpx;
  135. margin-bottom: 42rpx;
  136. }
  137. .fund__modal .btn {
  138. width: 560rpx;
  139. height: 100rpx;
  140. line-height: 100rpx;
  141. font-size: 28rpx;
  142. text-align: center;
  143. }
  144. .fund__modal .noBtn {
  145. float: left;
  146. width: 50%;
  147. height: 100rpx;
  148. background-image: linear-gradient(90deg,
  149. #e5e9ec 0%,
  150. #cfd9e0 100%);
  151. line-height: 100rpx;
  152. font-size: 28rpx;
  153. text-align: center;
  154. color: #7f93ae;
  155. }
  156. .fund__modal .goBtn {
  157. float: left;
  158. width: 50%;
  159. height: 100rpx;
  160. background-image: linear-gradient(90deg,
  161. #eab86a 0%,
  162. #e23232 100%);
  163. line-height: 100rpx;
  164. font-size: 28rpx;
  165. text-align: center;
  166. color: #fff;
  167. }
  168. .fund__modal .doing {
  169. font-size: 28rpx;
  170. }
  171. .fund__modal .continue {
  172. width: 376rpx;
  173. height: 88rpx;
  174. background-image: linear-gradient(90deg,
  175. #eab86a 0%,
  176. #e23232 100%);
  177. border-radius: 44rpx;
  178. margin: 40rpx auto 30rpx;
  179. font-size: 28rpx;
  180. color: #fff;
  181. line-height: 88rpx;
  182. letter-spacing: 6rpx;
  183. }
  184. .fund__modal .withdraw {
  185. font-size: 28rpx;
  186. padding-bottom: 44rpx;
  187. }
  188. .radish-top__btn22{
  189. width: 196rpx;
  190. height: 60rpx;
  191. border: 2rpx solid #fff;
  192. background: rgba(255,255,255,0.2);
  193. margin: 30rpx auto 0;
  194. text-align: center;
  195. line-height: 60rpx;
  196. border-radius: 8rpx;
  197. font-size: 28rpx;
  198. color: #fff;
  199. }
  200. .wd-list{
  201. position: absolute;
  202. right: 20rpx;
  203. top: 20rpx;
  204. color: #fff;
  205. }