index.less 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. .container {
  2. background-color: #50AE75;
  3. width: 100vw;
  4. height: 100vh;
  5. overflow: auto;
  6. .scoreBox {
  7. width: 610rpx;
  8. margin: 80rpx auto 0rpx;
  9. .lightBox {
  10. position: relative;
  11. height: 180rpx;
  12. .light {
  13. position: absolute;
  14. width: 360rpx;
  15. height: 180rpx;
  16. left: 0px;
  17. right: 0px;
  18. margin: auto;
  19. }
  20. .stars {
  21. position: absolute;
  22. width: 62rpx;
  23. height: 62rpx;
  24. }
  25. .stars-1 {
  26. top: 64rpx;
  27. left: 132rpx;
  28. }
  29. .stars-2 {
  30. top: 25rpx;
  31. left: 198rpx;
  32. }
  33. .stars-3 {
  34. top: 6rpx;
  35. left: 276rpx;
  36. }
  37. .stars-4 {
  38. top: 25rpx;
  39. right: 198rpx;
  40. }
  41. .stars-5 {
  42. top: 62rpx;
  43. right: 132rpx;
  44. }
  45. }
  46. .score {
  47. position: relative;
  48. width: 100%;
  49. box-sizing: border-box;
  50. padding: 70rpx 40rpx 32rpx;
  51. border-radius: 18rpx;
  52. background-color: white;
  53. box-shadow: rgba(255, 255, 255, 0.15) 0px 6px 12px -2px, rgba(255, 255, 255, 0.1) 0px 3px 7px -3px;
  54. .avatarBox {
  55. position: absolute;
  56. top: -72rpx;
  57. left: 0px;
  58. right: 0px;
  59. margin: 0 auto;
  60. width: 100rpx;
  61. height: 100rpx;
  62. padding: 16rpx;
  63. border-radius: 50%;
  64. background-color: white;
  65. font-size: 0px;
  66. .avatar {
  67. width: 100%;
  68. height: 100%;
  69. border-radius: 50%;
  70. }
  71. }
  72. .nickName {
  73. font-size: 36rpx;
  74. text-align: center;
  75. }
  76. .totalScore {
  77. display: flex;
  78. align-items: center;
  79. justify-content: center;
  80. margin-top: 26rpx;
  81. font-size: 42rpx;
  82. .num {
  83. color: #58C5FF;
  84. font-size: 42rpx;
  85. }
  86. }
  87. .progressBox {
  88. margin-top: 50rpx;
  89. .row {
  90. display: flex;
  91. align-items: center;
  92. justify-content: space-between;
  93. margin-bottom: 42rpx;
  94. .name {
  95. font-size: 32rpx;
  96. width: 96rpx;
  97. }
  98. .progress {
  99. width: 306rpx;
  100. border-radius: 20rpx;
  101. overflow: hidden;
  102. }
  103. .scoreInfo {
  104. font-size: 27rpx;
  105. color: #666666;
  106. }
  107. }
  108. }
  109. .songBg {
  110. width: 100%;
  111. height: 644rpx;
  112. }
  113. }
  114. .songScore {
  115. padding: 0;
  116. }
  117. }
  118. .footer {
  119. width: 610rpx;
  120. padding: 50rpx 35rpx;
  121. box-sizing: border-box;
  122. margin: 40rpx auto;
  123. background-color: white;
  124. border-radius: 18rpx;
  125. box-shadow: rgba(50, 50, 93, 0.15) 0px 6px 12px -2px, rgba(0, 0, 0, 0.1) 0px 3px 7px -3px;
  126. display: flex;
  127. align-items: center;
  128. justify-content: space-between;
  129. .stBtn {
  130. padding: 16rpx 0rpx;
  131. text-align: center;
  132. border-radius: 50rpx;
  133. width: 220rpx;
  134. font-size: 30rpx;
  135. color: white;
  136. background-color: #66C5FF;
  137. box-shadow: 0 6px 14px 0 rgba(50, 197, 255, 0.65);
  138. }
  139. }
  140. }