index.wxss 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. .activityList {
  2. padding: 0rpx 14rpx;
  3. box-sizing: border-box;
  4. }
  5. .activityList .ranking-class-1 {
  6. margin-bottom: 20rpx;
  7. width: 100%;
  8. box-sizing: border-box;
  9. border-radius: 30rpx;
  10. overflow: hidden;
  11. box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  12. }
  13. .activityList .ranking-class-1 .header {
  14. display: flex;
  15. align-items: center;
  16. justify-content: space-between;
  17. padding: 25rpx 30rpx;
  18. box-sizing: border-box;
  19. }
  20. .activityList .ranking-class-1 .header .left {
  21. display: flex;
  22. align-items: center;
  23. color: white;
  24. }
  25. .activityList .ranking-class-1 .header .left .icon {
  26. width: 28rpx;
  27. height: 30rpx;
  28. }
  29. .activityList .ranking-class-1 .header .left .title {
  30. font-size: 30rpx;
  31. font-weight: bold;
  32. margin: 0rpx 10rpx;
  33. }
  34. .activityList .ranking-class-1 .header .toAll {
  35. font-size: 28rpx;
  36. color: white;
  37. }
  38. .activityList .ranking-class-1 .header .toAll .backIcon {
  39. width: 14rpx;
  40. height: 24rpx;
  41. }
  42. .activityList .ranking-class-1 .body {
  43. padding: 24rpx 10rpx 38rpx 10rpx;
  44. }
  45. .activityList .ranking-class-1 .body .top {
  46. display: flex;
  47. justify-content: space-around;
  48. align-items: flex-end;
  49. }
  50. .activityList .ranking-class-1 .body .top .userBox {
  51. display: flex;
  52. flex-direction: column;
  53. align-items: center;
  54. text-align: center;
  55. }
  56. .activityList .ranking-class-1 .body .top .nickName {
  57. width: 140rpx;
  58. font-size: 28rpx;
  59. margin-top: 14rpx;
  60. text-align: center;
  61. }
  62. .activityList .ranking-class-1 .body .top .firstUser {
  63. width: 130rpx;
  64. height: 130rpx;
  65. background: url(http://reader-wx.ai160.com/images/reader/v3/first.png) no-repeat;
  66. background-size: 100% 100%;
  67. text-align: center;
  68. }
  69. .activityList .ranking-class-1 .body .top .firstUser .avatar {
  70. margin-top: 36rpx;
  71. width: 90rpx;
  72. height: 90rpx;
  73. border-radius: 50%;
  74. background-color: #EBEBEB;
  75. }
  76. .activityList .ranking-class-1 .body .top .secondUser {
  77. width: 110rpx;
  78. height: 110rpx;
  79. background: url(http://reader-wx.ai160.com/images/reader/v3/second.png) no-repeat;
  80. background-size: 100% 100%;
  81. text-align: center;
  82. }
  83. .activityList .ranking-class-1 .body .top .secondUser .avatar {
  84. margin-top: 28rpx;
  85. width: 80rpx;
  86. height: 80rpx;
  87. border-radius: 50%;
  88. background-color: #EBEBEB;
  89. }
  90. .activityList .ranking-class-1 .body .top .thirdUser {
  91. width: 110rpx;
  92. height: 110rpx;
  93. background: url(http://reader-wx.ai160.com/images/reader/v3/third.png) no-repeat;
  94. background-size: 100% 100%;
  95. text-align: center;
  96. }
  97. .activityList .ranking-class-1 .body .top .thirdUser .avatar {
  98. margin-top: 28rpx;
  99. width: 80rpx;
  100. height: 80rpx;
  101. background-color: #EBEBEB;
  102. border-radius: 50%;
  103. }
  104. .activityList .ranking-class-1 .body .btm {
  105. margin-top: 10rpx;
  106. display: flex;
  107. justify-content: space-between;
  108. align-items: flex-end;
  109. }
  110. .activityList .ranking-class-1 .body .btm .userBox {
  111. display: flex;
  112. flex-direction: column;
  113. align-items: center;
  114. }
  115. .activityList .ranking-class-1 .body .btm .userBox .avatar {
  116. margin-top: 28rpx;
  117. width: 80rpx;
  118. height: 80rpx;
  119. border-radius: 50%;
  120. background-color: #EBEBEB;
  121. }
  122. .activityList .ranking-class-1 .body .btm .userBox .nickName {
  123. width: 120rpx;
  124. font-size: 28rpx;
  125. text-align: center;
  126. margin-top: 14rpx;
  127. }
  128. .activityList .ranking-class-2 {
  129. margin-bottom: 20rpx;
  130. width: 100%;
  131. box-sizing: border-box;
  132. border-radius: 30rpx;
  133. overflow: hidden;
  134. box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  135. }
  136. .activityList .ranking-class-2 .header {
  137. display: flex;
  138. align-items: center;
  139. justify-content: space-between;
  140. padding: 25rpx 30rpx;
  141. box-sizing: border-box;
  142. }
  143. .activityList .ranking-class-2 .header .left {
  144. display: flex;
  145. align-items: center;
  146. color: white;
  147. }
  148. .activityList .ranking-class-2 .header .left .icon {
  149. width: 28rpx;
  150. height: 30rpx;
  151. }
  152. .activityList .ranking-class-2 .header .left .title {
  153. font-size: 30rpx;
  154. font-weight: bold;
  155. margin: 0rpx 10rpx;
  156. }
  157. .activityList .ranking-class-2 .header .toAll {
  158. font-size: 28rpx;
  159. color: white;
  160. }
  161. .activityList .ranking-class-2 .header .toAll .backIcon {
  162. width: 14rpx;
  163. height: 24rpx;
  164. }
  165. .activityList .ranking-class-2 .body {
  166. width: 100%;
  167. padding: 25rpx 20rpx;
  168. box-sizing: border-box;
  169. }
  170. .activityList .ranking-class-2 .body .row {
  171. padding: 14rpx 25rpx;
  172. border-radius: 14rpx;
  173. margin-bottom: 20rpx;
  174. display: flex;
  175. align-items: center;
  176. justify-content: space-between;
  177. background-color: white;
  178. }
  179. .activityList .ranking-class-2 .body .row .left {
  180. display: flex;
  181. align-items: center;
  182. }
  183. .activityList .ranking-class-2 .body .row .left .stand {
  184. width: 36rpx;
  185. height: 36rpx;
  186. }
  187. .activityList .ranking-class-2 .body .row .left .avatar {
  188. width: 72rpx;
  189. height: 72rpx;
  190. margin: 0rpx 30rpx;
  191. border-radius: 50%;
  192. background-color: #EBEBEB;
  193. }
  194. .activityList .ranking-class-2 .body .row .left .nickName {
  195. width: 210rpx;
  196. font-size: 28rpx;
  197. }
  198. .activityList .ranking-class-2 .body .row .right {
  199. text-align: center;
  200. font-size: 0rpx;
  201. }
  202. .activityList .ranking-class-2 .body .row .right .playIcon {
  203. width: 34rpx;
  204. height: 34rpx;
  205. }
  206. .activityList .ranking-class-2 .body .row .right .num {
  207. font-size: 28rpx;
  208. }
  209. .activityList .yxb .header {
  210. background-color: #2DCE66;
  211. }
  212. .activityList .yxb .body {
  213. background-image: linear-gradient(180deg, #4cd67c 0%, #66ec95 100%);
  214. }
  215. .activityList .rbb .header {
  216. background-color: #FF7E6C;
  217. }
  218. .activityList .rbb .body {
  219. background-image: linear-gradient(180deg, #FFB4A8 0%, #FFDCD7 100%);
  220. }
  221. .activityList .pkb .header {
  222. background-color: #967DFF;
  223. }
  224. .activityList .pkb .body {
  225. background-image: linear-gradient(180deg, #8265F9 0%, #B8A7FF 100%);
  226. }
  227. .activityList .pkb .playIcon {
  228. width: 38rpx !important;
  229. height: 34rpx !important;
  230. }
  231. .activityList .activityBox {
  232. margin-bottom: 20rpx;
  233. width: 100%;
  234. padding: 20rpx;
  235. box-sizing: border-box;
  236. background-color: white;
  237. border-radius: 30rpx;
  238. box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  239. }
  240. .activityList .activityBox .cover {
  241. width: 100%;
  242. height: 410rpx;
  243. border-radius: 20rpx;
  244. background-color: #EBEBEB;
  245. }
  246. .activityList .activityBox .cover-small {
  247. width: 100%;
  248. height: 260rpx;
  249. border-radius: 20rpx;
  250. background-color: #EBEBEB;
  251. }
  252. .activityList .activityBox .footer {
  253. display: flex;
  254. align-items: center;
  255. justify-content: space-between;
  256. padding: 10rpx 0rpx;
  257. }
  258. .activityList .activityBox .footer .info .title {
  259. font-size: 32rpx;
  260. margin-bottom: 8rpx;
  261. }
  262. .activityList .activityBox .footer .info .time {
  263. font-size: 28rpx;
  264. }
  265. .activityList .activityBox .footer .info .timeOut {
  266. display: flex;
  267. align-items: center;
  268. font-weight: bold;
  269. font-size: 28rpx;
  270. }
  271. .activityList .activityBox .footer .info .timeOut .outNum {
  272. width: 42rpx;
  273. font-size: 28rpx;
  274. text-align: center;
  275. border-radius: 10rpx;
  276. background-color: #F62339;
  277. color: white;
  278. }
  279. .activityList .activityBox .footer .info .timeOut .outSplit {
  280. margin: 0rpx 2rpx;
  281. color: #F62339;
  282. }
  283. .activityList .activityBox .footer .info .closing .outNum {
  284. background-color: #BAC7D0;
  285. }
  286. .activityList .activityBox .footer .info .closing .outSplit {
  287. color: #BAC7D0;
  288. }
  289. .activityList .activityBox .footer .btn {
  290. padding: 10rpx 48rpx;
  291. background-image: linear-gradient(270deg, #33C3FF 0%, #81C7FF 100%, #14C962 100%);
  292. box-shadow: 0 4rpx 10rpx 0 rgba(50, 197, 255, 0.46);
  293. border-radius: 50rpx;
  294. color: white;
  295. font-size: 32rpx;
  296. }
  297. .activityList .activityBox .footer .closingBtn {
  298. background-image: linear-gradient(270deg, #BAC7D0 0%, #C9D3DC 100%, #D5DFE3 100%);
  299. box-shadow: none;
  300. }
  301. .activityList .newActivityBox {
  302. margin-bottom: 40rpx;
  303. width: 100%;
  304. padding: 20rpx;
  305. box-sizing: border-box;
  306. background-color: white;
  307. border-radius: 30rpx;
  308. box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
  309. }
  310. .activityList .newActivityBox .cover {
  311. margin: 0 auto;
  312. width: 100%;
  313. height: 518rpx;
  314. border-radius: 20rpx;
  315. background-color: #EBEBEB;
  316. }
  317. .activityList .newActivityBox .footer {
  318. padding: 10rpx 0rpx;
  319. }
  320. .activityList .newActivityBox .footer .row {
  321. display: flex;
  322. align-items: center;
  323. justify-content: space-between;
  324. }
  325. .activityList .newActivityBox .footer .row .title {
  326. font-size: 32rpx;
  327. margin-bottom: 8rpx;
  328. }
  329. .activityList .newActivityBox .footer .row .partake {
  330. font-size: 28rpx;
  331. }
  332. .activityList .newActivityBox .footer .row .partake text {
  333. color: #2FB1F1;
  334. }
  335. .activityList .newActivityBox .footer .row .time {
  336. font-size: 28rpx;
  337. }
  338. .activityList .newActivityBox .footer .row .btn {
  339. padding: 10rpx 48rpx;
  340. background-image: linear-gradient(270deg, #33C3FF 0%, #81C7FF 100%, #14C962 100%);
  341. box-shadow: 0 4rpx 10rpx 0 rgba(50, 197, 255, 0.46);
  342. border-radius: 50rpx;
  343. color: white;
  344. font-size: 32rpx;
  345. }