index.module.less 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. .review {
  2. min-height: 100vh;
  3. position: relative;
  4. overflow: hidden;
  5. color: #333;
  6. }
  7. .reviewContainer {
  8. position: relative;
  9. z-index: 2;
  10. padding: 0 12px;
  11. }
  12. .section {
  13. background: rgba(255, 255, 255, 0.85);
  14. border-radius: 12px;
  15. margin-bottom: 10px;
  16. overflow: hidden;
  17. }
  18. .activeTime {
  19. margin-top: 265px;
  20. overflow: hidden;
  21. .activeBg {
  22. margin: 6px;
  23. background: #ffffff;
  24. border-radius: 8px;
  25. display: flex;
  26. align-items: flex-end;
  27. padding: 8px;
  28. font-size: 15px;
  29. span {
  30. font-weight: 600;
  31. }
  32. }
  33. img {
  34. width: 18px;
  35. height: 18px;
  36. margin-right: 9px;
  37. }
  38. }
  39. .title {
  40. background: url('./images/title_bg.png') top center no-repeat;
  41. background-size: contain;
  42. width: 137px;
  43. line-height: 31px;
  44. font-size: 14px;
  45. font-weight: 600;
  46. text-align: center;
  47. margin: 0 auto 5px;
  48. span {
  49. padding: 0 9px;
  50. }
  51. img {
  52. height: 9px;
  53. }
  54. }
  55. .tips {
  56. margin: 0 10px 10px;
  57. padding: 10px;
  58. background-color: #ffffff;
  59. font-size: 14px;
  60. line-height: 20px;
  61. border-radius: 7px;
  62. text-align: justify;
  63. white-space: pre-line;
  64. }
  65. .title2 {
  66. display: flex;
  67. justify-content: space-between;
  68. align-items: center;
  69. font-size: 14px;
  70. font-weight: 600;
  71. padding: 10px 12px 8px;
  72. span {
  73. display: flex;
  74. align-items: center;
  75. line-height: 1.1;
  76. }
  77. .titlePrefix {
  78. display: inline-block;
  79. width: 4px;
  80. height: 12px;
  81. background: linear-gradient(180deg, #ff8636 0%, #ff4e19 100%);
  82. border-radius: 2px;
  83. margin-right: 6px;
  84. }
  85. .iconStar {
  86. height: 16px;
  87. }
  88. .titleTips {
  89. font-size: 12px;
  90. color: #666666;
  91. font-weight: 400;
  92. }
  93. }
  94. .prizeTitle {
  95. padding: 0 16px 3px;
  96. font-size: 14px;
  97. font-weight: 600;
  98. color: #ff5252;
  99. display: flex;
  100. align-items: center;
  101. .prizeLevel {
  102. height: 17px !important;
  103. width: 24px !important;
  104. margin-right: 5px;
  105. }
  106. }
  107. .prizeSection {
  108. margin: 0 10px 10px;
  109. background-color: #ffffff;
  110. border-radius: 12px;
  111. }
  112. .prize {
  113. display: flex;
  114. align-items: center;
  115. padding: 10px 0;
  116. margin: 0 10px;
  117. border-bottom: 1px solid #ffe4e4;
  118. img {
  119. width: 74px;
  120. height: 74px;
  121. flex-shrink: 0;
  122. border-radius: 6px;
  123. overflow: hidden;
  124. }
  125. .prizeContainer {
  126. margin-left: 15px;
  127. }
  128. .prizeName {
  129. font-size: 14px;
  130. font-weight: 600;
  131. line-height: 20px;
  132. }
  133. .prizeDesc {
  134. font-size: 13px;
  135. line-height: 16px;
  136. }
  137. }
  138. .musicItem {
  139. margin: 0 10px 10px;
  140. background: linear-gradient(270deg, #fff6f6 0%, #ffeeee 100%) !important;
  141. border-radius: 12px;
  142. :global {
  143. .van-cell {
  144. padding: 10px;
  145. background-color: transparent;
  146. &::after {
  147. border-color: #ffe4e4;
  148. }
  149. }
  150. }
  151. .musicTitle {
  152. flex: 1 auto;
  153. max-width: 200px;
  154. display: flex;
  155. }
  156. .cellLevel {
  157. padding-bottom: 18px;
  158. }
  159. .iconMusic {
  160. width: 20px;
  161. height: 20px;
  162. }
  163. .kingSection {
  164. display: flex;
  165. .score {
  166. width: 70px;
  167. padding-left: 6px;
  168. font-size: 27px;
  169. font-weight: 600;
  170. color: #ff1919;
  171. line-height: 1;
  172. span {
  173. font-size: 12px;
  174. font-weight: 400;
  175. }
  176. }
  177. }
  178. .iconKing {
  179. width: 30px;
  180. height: 24px;
  181. }
  182. .userImg {
  183. flex-shrink: 0;
  184. position: relative;
  185. width: 34px;
  186. height: 34px;
  187. background: linear-gradient(
  188. 180deg,
  189. rgba(255, 220, 0, 1),
  190. rgba(255, 182, 0, 1)
  191. );
  192. border-radius: 50%;
  193. .iconLevel {
  194. position: absolute;
  195. bottom: -8px;
  196. left: 50%;
  197. margin-left: -12px;
  198. width: 24px;
  199. height: 16px;
  200. }
  201. }
  202. .userInfo {
  203. display: flex;
  204. align-items: center;
  205. }
  206. .users {
  207. display: flex;
  208. align-items: center;
  209. justify-content: space-between;
  210. }
  211. .userName {
  212. margin-left: 5px;
  213. max-width: 88px;
  214. p {
  215. white-space: nowrap;
  216. text-overflow: ellipsis;
  217. width: 100%;
  218. overflow: hidden;
  219. line-height: 1;
  220. }
  221. .name {
  222. padding-bottom: 3px;
  223. }
  224. .subjectName {
  225. display: inline-block;
  226. font-size: 12px;
  227. color: #ff8c00;
  228. background: #ffe3bc;
  229. border-radius: 4px;
  230. padding: 2px 4px;
  231. }
  232. }
  233. .userLogo {
  234. margin-top: 1px;
  235. margin-left: 1px;
  236. width: 32px;
  237. height: 32px;
  238. overflow: hidden;
  239. border-radius: 50%;
  240. background-color: #fff;
  241. display: flex;
  242. align-items: center;
  243. justify-content: center;
  244. .img {
  245. width: 16px;
  246. height: 15px;
  247. }
  248. }
  249. .noText {
  250. font-size: 14px;
  251. font-weight: 500;
  252. color: rgba(255, 25, 25, 0.5);
  253. }
  254. .musicName {
  255. padding-left: 5px;
  256. font-size: 14px;
  257. font-weight: 600;
  258. line-height: 20px;
  259. max-width: 200px;
  260. display: inline-block;
  261. overflow: hidden;
  262. text-overflow: ellipsis;
  263. white-space: nowrap;
  264. }
  265. }
  266. .btnGroup {
  267. background-color: #fff;
  268. padding: 16px 66px;
  269. }
  270. .submit {
  271. background: linear-gradient(180deg, #ff7e7e 0%, #ff3224 100%);
  272. box-shadow: 0px 4px 0px 0px #d01e1e, inset 0px 0px 13px 0px #ffd8d0;
  273. border-radius: 22px;
  274. font-size: 18px;
  275. font-weight: 500;
  276. color: #ffffff;
  277. }
  278. .shareContainer {
  279. width: 333px;
  280. overflow: hidden;
  281. }
  282. .cover {
  283. position: absolute;
  284. left: 0;
  285. top: 0;
  286. width: 100%;
  287. }
  288. .shareCodeUrl {
  289. padding: 11px;
  290. background-color: rgba(255, 255, 255, 0.85);
  291. & > div {
  292. margin-top: 0;
  293. }
  294. }
  295. .shareSection {
  296. padding: 12px;
  297. font-size: 14px;
  298. line-height: 20px;
  299. text-align: justify;
  300. }
  301. .shareActiveTime {
  302. margin-top: 217px;
  303. }
  304. .shareGroupBtn {
  305. display: flex;
  306. align-items: center;
  307. justify-content: space-between;
  308. padding-top: 12px;
  309. :global(.van-button) {
  310. padding: 8px 32px;
  311. }
  312. }