contribution.wxss 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. .bg {
  2. width: 100%;
  3. min-height: 100%;
  4. background-color: #ffe3dc;
  5. box-sizing: border-box;
  6. padding: 30rpx 20rpx
  7. }
  8. .con-top {
  9. /* height: 540rpx; */
  10. width: 710rpx;
  11. border-radius: 15rpx;
  12. background: #fff;
  13. overflow: hidden;
  14. margin-bottom: 20rpx;
  15. }
  16. .top-part {
  17. height: 60rpx;
  18. width: 710rpx;
  19. background: #fff7f5;
  20. }
  21. .top-text {
  22. font-size: 22rpx;
  23. color: #e1a799;
  24. line-height: 60rpx;
  25. float: left;
  26. padding-left: 30rpx;
  27. }
  28. .top-count {
  29. font-size: 22rpx;
  30. color: #e1a799;
  31. line-height: 60rpx;
  32. float: right;
  33. padding-right: 30rpx
  34. }
  35. .main-left {
  36. float: left;
  37. width: 50%;
  38. }
  39. .main-right {
  40. float: right;
  41. width: 50%;
  42. }
  43. .left-text {
  44. font-size: 24rpx;
  45. color: #999999;
  46. text-align: center;
  47. }
  48. .left-count {
  49. font-size: 30rpx;
  50. color: #eab86a;
  51. font-weight: 600;
  52. text-align: center;
  53. padding-top: 20rpx;
  54. }
  55. .right-text {
  56. font-size: 24rpx;
  57. color: #999999;
  58. text-align: center;
  59. }
  60. .right-count {
  61. font-size: 30rpx;
  62. color: #4c4c4c;
  63. font-weight: 600;
  64. text-align: center;
  65. padding-top: 20rpx;
  66. }
  67. .top-main {
  68. padding-top: 38rpx;
  69. }
  70. .line {
  71. height: 85rpx;
  72. width: 2rpx;
  73. background: #f3e2de;
  74. position: absolute;
  75. left: 50%;
  76. top: 0;
  77. transform: translateX(-50%)
  78. }
  79. .main-top {
  80. position: relative;
  81. padding-bottom: 36rpx;
  82. }
  83. .myper {
  84. color: #999999;
  85. font-size: 25rpx;
  86. text-align: center;
  87. padding-bottom: 26rpx;
  88. }
  89. .percount {
  90. font-size: 24rpx;
  91. text-align: center;
  92. color: #4c4c4c;
  93. padding-bottom: 38rpx;
  94. }
  95. .main-bottom {
  96. width: 670rpx;
  97. margin: 0 auto;
  98. /* height: 176rpx; */
  99. background: #f1f5f9;
  100. border-radius: 5rpx;
  101. font-size: 26rpx;
  102. color: #999999;
  103. padding: 10rpx;
  104. box-sizing: border-box;
  105. border-radius: 5rpx;
  106. margin-bottom: 20rpx;
  107. line-height: 35rpx;
  108. }
  109. .con-bottom {
  110. width: 710rpx;
  111. margin: 0 auto;
  112. /* height: 700rpx; */
  113. border-radius: 15rpx;
  114. background: #fff;
  115. overflow: hidden;
  116. padding: 20rpx;
  117. box-sizing: border-box;
  118. padding-bottom: 30rpx;
  119. }
  120. .bottom-top {
  121. height: 50rpx;
  122. font-size: 25rpx;
  123. border-bottom: 1rpx solid #dddddd;
  124. }
  125. .bottom-left {
  126. color: #999999;
  127. font-size: 25rpx;
  128. float: left;
  129. }
  130. .bottom-right {
  131. color: #999999;
  132. font-size: 25rpx;
  133. float: right;
  134. }
  135. .list-text {
  136. font-size: 30rpx;
  137. color: #4c4c4c;
  138. float: left;
  139. overflow: hidden;
  140. text-overflow:ellipsis;
  141. white-space: nowrap;
  142. width: 400rpx;
  143. }
  144. .list-count {
  145. font-size: 30rpx;
  146. color: #eab86a;
  147. float: right;
  148. }
  149. .list-time {
  150. font-size: 24rpx;
  151. color: #999999;
  152. float: left;
  153. }
  154. .list-sum {
  155. font-size: 24rpx;
  156. color: #999999;
  157. float: right;
  158. }
  159. .center-list {
  160. padding-top: 28rpx;
  161. }
  162. .more-btn {
  163. height: 50rpx;
  164. width: 172rpx;
  165. text-align: center;
  166. line-height: 50rpx;
  167. font-size: 30rpx;
  168. color: #eab86a;
  169. border: 1rpx solid #eab86a;
  170. border-radius: 50rpx;
  171. margin: 30rpx auto 20rpx;
  172. }
  173. .con-no {
  174. width: 710rpx;
  175. /* height: 354rpx; */
  176. margin: 0 auto 20rpx;
  177. background: #fff;
  178. border-radius: 15rpx;
  179. overflow:hidden;
  180. }
  181. .con-no-top {
  182. height: 60rpx;
  183. background: #fff7f5;
  184. text-align: center;
  185. color: #e1a291;
  186. font-size: 30rpx;
  187. line-height: 60rpx;
  188. }
  189. .con-no-maintext {
  190. text-align: center;
  191. font-size: 30rpx;
  192. color: #4c4c4c;
  193. padding-top: 30rpx;
  194. padding-bottom: 18rpx;
  195. }
  196. .con-no-maintext1 {
  197. text-align: center;
  198. font-size: 30rpx;
  199. color: #4c4c4c;
  200. padding-bottom: 18rpx;
  201. }
  202. .con-no-maintext2 {
  203. text-align: center;
  204. font-size: 30rpx;
  205. color: #4c4c4c;
  206. padding-bottom: 25rpx;
  207. }
  208. .con-no-mainbtn {
  209. width: 433rpx;
  210. height: 70rpx;
  211. background: linear-gradient(#ff9a74,#ff615e);
  212. text-align: center;
  213. color: #fff;
  214. line-height: 70rpx;
  215. border-radius: 50rpx;
  216. font-size: 30rpx;
  217. margin: 0 auto 30rpx;
  218. }
  219. .no-img {
  220. display: block;
  221. width: 158rpx;
  222. height: 158rpx;
  223. margin: 105rpx auto 20rpx;
  224. }
  225. .no-imgtext {
  226. text-align: center;
  227. color: #bac4d0;
  228. font-size: 30rpx;
  229. margin-bottom: 123rpx;
  230. }
  231. .p-bg {
  232. position: fixed;
  233. top: 0;
  234. width: 100%;
  235. height: 100%;
  236. background: rgba(0,0,0,0.4);
  237. z-index: 99;
  238. }
  239. .p-panel {
  240. position: fixed;
  241. left: 50%;
  242. transform: translate(-50%);
  243. bottom: 20%;
  244. background: #fff;
  245. z-index: 100;
  246. width: 560rpx;
  247. height: 702rpx;
  248. border-radius: 10rpx;
  249. }
  250. .p-title {
  251. text-align: center;
  252. color: #7f93ae;
  253. font-size: 28rpx;
  254. padding-top: 25rpx;
  255. padding-bottom: 25rpx;
  256. }
  257. .p-item {
  258. width: 560rpx;
  259. height: 420rpx;
  260. background: #f1f5f9;
  261. box-sizing: border-box;
  262. padding: 15rpx 15rpx 30rpx;
  263. }
  264. .item-img {
  265. background: #eab86a;
  266. height: 240rpx;
  267. width: 100%;
  268. }
  269. .item-title {
  270. width: 540rpx;
  271. height: 76rpx;
  272. display: -webkit-box;
  273. -webkit-box-orient: vertical;
  274. -webkit-line-clamp: 2;
  275. overflow: hidden;
  276. text-overflow: ellipsis;
  277. font-size: 28rpx;
  278. color: #4c4c4c;
  279. margin-bottom: 15rpx;
  280. }
  281. .item-line {
  282. color: #999999;
  283. font-size: 24rpx;
  284. }
  285. .item-text {
  286. padding-top: 7rpx;
  287. float: left;
  288. padding-right: 20rpx;
  289. }
  290. .item-money {
  291. float: left;
  292. font-size: 32rpx;
  293. color: #4c4c4c;
  294. padding-right: 20rpx;
  295. }
  296. .item-text1 {
  297. float: left;
  298. font-size: 24rpx;
  299. color: #4c4c4c;
  300. /* padding-right: 172rpx; */
  301. padding-top: 7rpx;
  302. }
  303. .item-text2 {
  304. float: right;
  305. padding-top: 7rpx;
  306. }
  307. .p-btn {
  308. text-align:center;
  309. height:80rpx;
  310. color:#fff;
  311. background:#fb5352;
  312. width:288rpx;
  313. line-height:80rpx;
  314. border-radius:50rpx;
  315. margin:30rpx auto 0;
  316. font-size:24rpx;
  317. }
  318. .p-nobtn {
  319. text-align:center;
  320. height:80rpx;
  321. color:#8a9cb4;
  322. background:#fff;
  323. width:288rpx;
  324. line-height:80rpx;
  325. /* border-radius:50rpx; */
  326. margin:0 auto;
  327. font-size:24rpx;
  328. }