index.wxss 6.8 KB

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