index.module.less 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. .evaluatResult {
  2. position: relative;
  3. width: 100vw;
  4. height: 100vh;
  5. display: flex;
  6. justify-content: center;
  7. align-items: center;
  8. }
  9. .closeBtn {
  10. position: absolute;
  11. left: 30px;
  12. top: 18px;
  13. width: 40px;
  14. height: 40px;
  15. z-index: 1;
  16. img {
  17. width: 100%;
  18. height: 100%;
  19. display: block;
  20. }
  21. &:active {
  22. opacity: .8;
  23. }
  24. }
  25. .headerButton {
  26. position: absolute;
  27. right: -60px;
  28. top: 70px;
  29. display: flex;
  30. flex-direction: column;
  31. z-index: 1;
  32. .headBtn {
  33. display: flex;
  34. flex-direction: column;
  35. justify-content: center;
  36. align-items: center;
  37. font-size: 12px;
  38. color: #fff;
  39. text-align: center;
  40. margin-bottom: 30px;
  41. & > img {
  42. width: 36px;
  43. height: 36px;
  44. }
  45. &:active {
  46. opacity: .8;
  47. }
  48. }
  49. }
  50. .fraction {
  51. position: relative;
  52. top: -4px;
  53. border-radius: 18px;
  54. width: 361px;
  55. display: flex;
  56. flex-direction: column;
  57. justify-content: space-between;
  58. padding-top: 38px;
  59. .bg {
  60. position: absolute;
  61. left: 0;
  62. top: 0;
  63. width: 100%;
  64. display: block;
  65. z-index: -1;
  66. }
  67. .box{
  68. background-color: rgba(254,247,228,1);
  69. border-radius: 0 0 20px 20px;
  70. }
  71. .top {
  72. position: relative;
  73. display: flex;
  74. align-items: center;
  75. height: 50px;
  76. margin-bottom: 26px;
  77. margin-left: -8px;
  78. .text {
  79. position: relative;
  80. display: flex;
  81. font-size: 20px;
  82. font-family: DIN-Bold, DIN;
  83. font-weight: bold;
  84. color: #fff;
  85. line-height: 41px;
  86. align-items: flex-end;
  87. z-index: 1;
  88. white-space: nowrap;
  89. margin: 0 auto;
  90. }
  91. .num {
  92. font-size: 30px;
  93. color: #FFF79E;
  94. }
  95. }
  96. }
  97. .tips {
  98. padding: 16px 20px 0 20px;
  99. font-size: 13px;
  100. color: #808080;
  101. }
  102. .ctrls {
  103. display: flex;
  104. justify-content: space-evenly;
  105. align-items: center;
  106. margin: 0 20px 12px 20px;
  107. padding-top: 12px;
  108. .ctrlsBtn {
  109. width: 94px;
  110. }
  111. }
  112. .detail {
  113. display: flex;
  114. align-items: center;
  115. margin: 0 16px;
  116. padding: 0 12px;
  117. background: #fff;
  118. border-radius: 12px;
  119. padding: 10px 0;
  120. }
  121. .progressitem {
  122. flex: 1;
  123. display: flex;
  124. flex-direction: column;
  125. justify-content: center;
  126. align-items: center;
  127. text-align: center;
  128. color: #1A1A1A;
  129. font-weight: 500;
  130. font-size: 14px;
  131. &>div {
  132. padding-left: 24px;
  133. background-repeat: no-repeat;
  134. background-position: left center;
  135. background-size: auto 100%;
  136. margin-bottom: 4px;
  137. }
  138. .intonation{
  139. background-image: url('./img/intonation.svg');
  140. }
  141. .cadence{
  142. background-image: url('./img/cadence.svg');
  143. }
  144. .integrity{
  145. background-image: url('./img/integrity.svg');
  146. }
  147. &:nth-child(2){
  148. border-left: 1px solid #F2F2F2;
  149. border-right: 1px solid #F2F2F2;
  150. }
  151. &>span {
  152. font-size: 16px;
  153. font-weight: 600;
  154. color: #FF6729;
  155. }
  156. }
  157. .percussion {
  158. display: flex;
  159. flex-direction: column;
  160. justify-content: center;
  161. align-items: center;
  162. &>img {
  163. height: 74px;
  164. margin-bottom: 10px;
  165. }
  166. .scoreDes {
  167. color: var(--van-primary-color);
  168. font-size: 18px;
  169. .scoreNum {
  170. font-weight: bold;
  171. font-size: 28px;
  172. }
  173. }
  174. }