Index_Temp.wxss 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. .bgImg {
  2. height: 520rpx;
  3. width: 100%;
  4. position: absolute;
  5. top: 0;
  6. left: 0;
  7. }
  8. .contentBox {
  9. overflow-y: auto;
  10. position: relative;
  11. z-index: 9;
  12. }
  13. .numberBox {
  14. text-align: center;
  15. font-size: 44rpx;
  16. color: #fff;
  17. padding: 30rpx 0 40rpx;
  18. }
  19. .userMoney {
  20. font-size: 70rpx;
  21. font-weight: bold;
  22. vertical-align: text-bottom;
  23. margin-left: 4rpx;
  24. }
  25. .userMoneyTips {
  26. display: block;
  27. width: 220rpx;
  28. margin-left: calc(50% - 150rpx);
  29. font-size: 36rpx;
  30. padding: 20rpx 40rpx;
  31. margin-top: 10rpx;
  32. border-radius: 50rpx;
  33. color: #eefcfd;
  34. background-color: #2a74c9;
  35. }
  36. .rewardBox {
  37. background-color: #fff;
  38. border-radius: 50rpx 50rpx 0 0;
  39. height: calc(100% - 224rpx);
  40. }
  41. .rewardDetailBox {
  42. height: calc(100% - 120rpx);
  43. background-color: #fff;
  44. position: relative;
  45. overflow-y: auto;
  46. }
  47. .rewardHeaderBox {
  48. line-height: 0;
  49. background-color: #fff;
  50. border-radius: 50rpx 50rpx 0 0;
  51. margin-bottom: 20rpx;
  52. }
  53. .tabBox {
  54. padding: 0;
  55. line-height: 48rpx;
  56. }
  57. .tabItem {
  58. padding: 40rpx 0 30rpx;
  59. display: inline-block;
  60. width: calc(50%);
  61. text-align: center;
  62. color: #333;
  63. font-size: 36rpx;
  64. position: relative;
  65. }
  66. .active {
  67. color: #3e6ffd;
  68. font-weight: bold;
  69. }
  70. .active::after {
  71. content: " ";
  72. width: 120rpx;
  73. height: 4rpx;
  74. background-color: #3e6ffd;
  75. position: absolute;
  76. bottom: 2rpx;
  77. left: calc(50% - 60rpx);
  78. }
  79. .titleTips {
  80. background-color: #fff;
  81. padding: 0rpx 0 20rpx 20rpx;
  82. }
  83. .tipsIcon {
  84. width: 22rpx;
  85. height: 22rpx;
  86. margin: 0 10rpx 4rpx 0;
  87. }
  88. .tipsText {
  89. font-size: 32rpx;
  90. color: #000;
  91. }
  92. .linkText {
  93. font-size: 32rpx;
  94. color: #438cd8;
  95. text-decoration: underline;
  96. }
  97. .rewardContentBox {
  98. position: relative;
  99. height: calc(100% - 120rpx);
  100. background-color: #fff;
  101. }
  102. .rewardTitleBox {
  103. padding: 30rpx 20rpx 30rpx 50rpx;
  104. border-bottom: 2rpx #e2e2e2 solid;
  105. background-color: #f9f9f9;
  106. }
  107. .rewardTitle {
  108. color: #a3a3a3;
  109. font-size: 40rpx;
  110. position: relative;
  111. display: inline-block;
  112. width: calc(100% - 300rpx);
  113. vertical-align: text-bottom;
  114. }
  115. .rewardTitle::before {
  116. content: '';
  117. width: 10rpx;
  118. height: 40rpx;
  119. background-image: linear-gradient(to bottom, #3581d5, #5ca4f6);
  120. position: absolute;
  121. top: 0rpx;
  122. left: -18rpx;
  123. }
  124. .rewardTitleIcon {
  125. width: 40rpx;
  126. height: 40rpx;
  127. vertical-align: bottom;
  128. margin-left: 10rpx;
  129. }
  130. .rewardTitleNum {
  131. display: inline-block;
  132. width: 300rpx;
  133. vertical-align: text-bottom;
  134. color: #000;
  135. font-size: 36rpx;
  136. text-align: right;
  137. }
  138. .rewardListBox {
  139. padding: 0 20rpx;
  140. }
  141. .rewardItemBox {
  142. padding: 46rpx 10rpx 40rpx;
  143. border-bottom: 2rpx #eee solid;
  144. }
  145. .itemImg {
  146. width: 100rpx;
  147. height: 100rpx;
  148. display: inline-block;
  149. vertical-align: middle;
  150. margin-right: 30rpx;
  151. }
  152. .itemInfoBox {
  153. display: inline-block;
  154. vertical-align: middle;
  155. width: calc(100% - 130rpx);
  156. }
  157. .itemTextBox {
  158. display: inline-block;
  159. vertical-align: middle;
  160. width: calc(100% - 190rpx);
  161. }
  162. .itemTitle {
  163. font-size: 36rpx;
  164. color: #000;
  165. width: 100%;
  166. overflow: hidden;
  167. text-overflow: ellipsis;
  168. white-space: nowrap;
  169. padding-bottom: 10rpx;
  170. }
  171. .itemDate {
  172. padding-top: 10rpx;
  173. font-size: 32rpx;
  174. color: #999;
  175. width: 100%;
  176. }
  177. .itemRedNum {
  178. display: inline-block;
  179. vertical-align: middle;
  180. text-align: right;
  181. width: 190rpx;
  182. }
  183. .itemRedNumText {
  184. display: block;
  185. font-size: 44rpx;
  186. color: #df1617;
  187. }
  188. /* 自定提示弹窗 */
  189. .popMask {
  190. position: fixed;
  191. left: 0;
  192. top: 0;
  193. right: 0;
  194. bottom: 0;
  195. display: flex;
  196. justify-content: center;
  197. align-items: center;
  198. background-color: rgba(0, 0, 0, 0.2);
  199. line-height: 1 !important;
  200. z-index: 99;
  201. }
  202. .popContent {
  203. width: 80%;
  204. line-height: 1 !important;
  205. }
  206. .popTips {
  207. width: 100%;
  208. font-size: 44rpx;
  209. color: #333;
  210. font-weight: bold;
  211. text-align: center;
  212. padding: 30rpx 0;
  213. line-height: 1 !important;
  214. background-color: #fff;
  215. border-radius: 30rpx 30rpx 0 0;
  216. }
  217. .popImg {
  218. width: 100%;
  219. height: 600rpx;
  220. border-radius: 0 0 30rpx 30rpx;
  221. }
  222. .popClose {
  223. margin-top: 30rpx;
  224. width: 100rpx;
  225. height: 100rpx;
  226. margin-left: calc(50% - 50rpx);
  227. }
  228. .noneBox {
  229. background-color: #fff;
  230. border-radius: 50rpx 50rpx 0 0;
  231. padding: 50rpx 20rpx;
  232. text-align: center;
  233. }
  234. .noneImg {
  235. width: 240rpx;
  236. height: 240rpx;
  237. }
  238. .noneTips {
  239. font-size: 32rpx;
  240. color: #aaaaaa;
  241. text-align: center;
  242. margin-top: 10rpx;
  243. }