index.less 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. .rankingBox {
  2. width: 100vw;
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: column;
  6. .podiumBox {
  7. position: relative;
  8. height: 362rpx;
  9. background-size: cover;
  10. .podiumContent {
  11. width: 100%;
  12. height: 100%;
  13. .user {
  14. position: absolute;
  15. width: 150rpx;
  16. display: flex;
  17. flex-direction: column;
  18. align-items: center;
  19. .avatar {
  20. width: 90rpx;
  21. height: 90rpx;
  22. }
  23. .iconBox {
  24. margin: 8rpx 0rpx 4rpx;
  25. display: flex;
  26. align-items: center;
  27. .icon {
  28. width: 30rpx;
  29. height: 30rpx;
  30. }
  31. .num {
  32. margin-left: 6rpx;
  33. color: white;
  34. font-size: 28rpx;
  35. }
  36. }
  37. .nickName {
  38. text-align: center;
  39. font-size: 24rpx;
  40. color: white;
  41. width: 100%;
  42. }
  43. }
  44. .first {
  45. top: 70rpx;
  46. left: 312rpx;
  47. }
  48. .second {
  49. top: 124rpx;
  50. left: 118rpx;
  51. .avatar {
  52. width: 82rpx;
  53. height: 82rpx;
  54. }
  55. }
  56. .third {
  57. top: 144rpx;
  58. right: 102rpx;
  59. .avatar {
  60. width: 80rpx;
  61. height: 80rpx;
  62. }
  63. }
  64. }
  65. .tips {
  66. position: absolute;
  67. right: 0px;
  68. top: 10rpx;
  69. padding: 6rpx 10rpx 6rpx 24rpx;
  70. border-top-left-radius: 25rpx;
  71. border-bottom-left-radius: 25rpx;
  72. font-size: 26rpx;
  73. color: white;
  74. background-color: rgba(0, 0, 0, 0.15);
  75. }
  76. .tips2 {
  77. position: absolute;
  78. right: 24rpx;
  79. top: 80rpx;
  80. padding: 10rpx 5rpx;
  81. border-radius: 50%;
  82. font-size: 26rpx;
  83. background-color: white;
  84. font-size: 18rpx;
  85. }
  86. }
  87. .podiumList {
  88. flex: 1;
  89. overflow: hidden;
  90. .scrollBox {
  91. height: 100%;
  92. padding: 0rpx 30rpx;
  93. box-sizing: border-box;
  94. .row {
  95. display: flex;
  96. align-items: center;
  97. justify-content: space-between;
  98. padding: 23rpx 0rpx;
  99. border-bottom: 1rpx solid #ddd;
  100. .left {
  101. display: flex;
  102. align-items: center;
  103. justify-content: space-between;
  104. .num {
  105. font-size: 37rpx;
  106. }
  107. .avatar {
  108. margin: 0rpx 28rpx 0rpx 44rpx;
  109. width: 78rpx;
  110. height: 78rpx;
  111. border-radius: 50%;
  112. }
  113. .nickName {
  114. font-size: 34rpx;
  115. width: 240rpx;
  116. }
  117. }
  118. .right {
  119. text-align: center;
  120. .icon {
  121. width: 30rpx;
  122. height: 30rpx;
  123. }
  124. .num {
  125. font-size: 32rpx;
  126. color: #666;
  127. }
  128. }
  129. }
  130. }
  131. }
  132. .footer {
  133. width: 100%;
  134. padding: 26rpx 60rpx 30rpx 90rpx;
  135. box-sizing: border-box;
  136. display: flex;
  137. justify-content: space-between;
  138. align-items: center;
  139. background-color: white;
  140. box-shadow: 0 2rpx 24rpx 0 rgba(0, 0, 0, 0.50);
  141. .left {
  142. font-size: 26rpx;
  143. font-weight: bold;
  144. text {
  145. color: #4AC4FF;
  146. font-size: 38rpx;
  147. margin-left: 10rpx;
  148. }
  149. }
  150. .rigth {
  151. padding: 12rpx 34rpx;
  152. border-radius: 50rpx;
  153. background-image: linear-gradient(270deg, #33C3FF 0%, #81C7FF 100%, #14C962 100%);
  154. box-shadow: 0 4rpx 10rpx 0 rgba(50, 197, 255, 0.46);
  155. color: white;
  156. font-size: 26rpx;
  157. }
  158. }
  159. }
  160. .invitation {
  161. background: url('http://reader-wx.ai160.com/images/reader/v3/podium-1.jpg')no-repeat;
  162. .tips2 {
  163. color: #FF7F6C;
  164. }
  165. }
  166. .hot {
  167. background: url('http://reader-wx.ai160.com/images/reader/v3/podium-2.jpg')no-repeat;
  168. .tips2 {
  169. color: #6D9FFE;
  170. }
  171. }
  172. .pk {
  173. background: url('http://reader-wx.ai160.com/images/reader/v3/podium-3.jpg')no-repeat;
  174. .tips2 {
  175. color: #967DFF;
  176. }
  177. }
  178. .iconPk {
  179. width: 42rpx !important;
  180. }