index.module.less 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322
  1. .selectionContainer {
  2. position: absolute;
  3. left: 0;
  4. top: 0;
  5. right: 0;
  6. z-index: 2;
  7. }
  8. .position {
  9. position: absolute;
  10. }
  11. .note {
  12. cursor: pointer;
  13. // background: rgba(0,0,0,0.3);
  14. }
  15. .selectBox{
  16. position: absolute;
  17. width: 3Px;
  18. background-color: #0EA7FF;
  19. z-index: 9;
  20. .selectHandle{
  21. position: absolute;
  22. top: -22Px;
  23. right: 0;
  24. width: 22Px;
  25. height: 22Px;
  26. cursor: pointer;
  27. background-color: #0EA7FF;
  28. background-image: url("./imgs/close.png");
  29. background-repeat: no-repeat;
  30. background-size: 15Px 15Px;
  31. background-position: 4Px 3Px;
  32. border-radius: 100Px 0 0 100Px;
  33. &.selectHandleRight{
  34. right: -19Px;
  35. background-position: 3Px 3Px;
  36. border-radius: 0 100Px 100Px 0;
  37. }
  38. &.playIng{
  39. pointer-events: none;
  40. background-image:none;
  41. }
  42. }
  43. }
  44. .disable {
  45. pointer-events: none;
  46. }
  47. .line {
  48. position: absolute;
  49. height: 120%;
  50. background-color: rgba(25, 140, 254, 0.7);
  51. min-height: 58PX;
  52. height: 58PX;
  53. top: 50%;
  54. // width: 14PX;
  55. width: 2PX !important;
  56. // margin-top: -17PX;
  57. border-radius: 4Px;
  58. opacity: var(--corsor-opacity);
  59. transform: translate(4PX, -50%);
  60. }
  61. .eyeLine {
  62. background-color: rgb(255, 159, 88);
  63. }
  64. .lineStaff {
  65. width: 14PX;
  66. }
  67. .lineJianPu {
  68. width: 18PX;
  69. }
  70. :global {
  71. .lineHide {
  72. opacity: 0 !important;
  73. }
  74. }
  75. .scoreItem {
  76. position: absolute;
  77. left: 80%;
  78. top: -45px;
  79. transform: translateX(-50%);
  80. font-size: 18px;
  81. font-family: "Roboto", sans-serif;
  82. font-weight: bold;
  83. display: flex;
  84. align-items: center;
  85. pointer-events: none;
  86. transition: all .8s;
  87. img {
  88. height: 43px;
  89. }
  90. span {
  91. margin-top: 5px;
  92. }
  93. }
  94. :global {
  95. .scoreItemLeve0 {
  96. background-color: rgba(255, 142, 142, 0.32) !important;
  97. }
  98. .scoreItemLeve1 {
  99. background-color: rgba(1, 193, 181, 0.2) !important;
  100. }
  101. .scoreItemLeve2 {
  102. background-color: rgba(255, 178, 82, 0.37) !important;
  103. }
  104. .scoreItemLeve3 {
  105. background-color: rgba(255, 220, 64, 0.4) !important;
  106. }
  107. .centerTop-enter-active {
  108. opacity: 1;
  109. }
  110. .centerTop-enter-from {
  111. opacity: 0;
  112. left: 50%;
  113. top: 50%;
  114. transform: translateX(-50%) translateY(-50%) scale(.3);
  115. }
  116. }
  117. .dotWrap {
  118. position: absolute;
  119. top: -10px;
  120. right: 6%;
  121. display: flex;
  122. justify-content: center;
  123. align-items: center;
  124. width: 20px;
  125. height: 20px;
  126. border-radius: 50%;
  127. background-color: #0EA7FF;
  128. color: #673207;
  129. font-size: 14px;
  130. font-weight: 600;
  131. }
  132. .noteFollow {
  133. pointer-events: none;
  134. text-align: center;
  135. display: none;
  136. :global {
  137. .van-icon-success,
  138. .van-icon-cross {
  139. display: none;
  140. }
  141. }
  142. }
  143. // .followTipUp, .followTipDown {
  144. // display: flex;
  145. // align-items: center;
  146. // background: rgba(0,0,0,0.75);
  147. // position: relative;
  148. // padding: 6px 10px;
  149. // border-radius: 16px;
  150. // width: fit-content;
  151. // left: 50%;
  152. // top: -42px;
  153. // transform: translate(-50%);
  154. // img {
  155. // width: 18px;
  156. // height: 18px;
  157. // margin-right: 6px;
  158. // }
  159. // span {
  160. // font-size: 14px;
  161. // font-weight: 500;
  162. // color: #fff;
  163. // word-break: keep-all;
  164. // display: flex;
  165. // width: fit-content;
  166. // }
  167. // ::before {
  168. // content: "";
  169. // position: absolute;
  170. // left: 50%;
  171. // bottom: -8PX;
  172. // transform: translateX(-50%);
  173. // width: 13Px;
  174. // height: 9Px;
  175. // background-image: url('./imgs/arrow_icon.png');
  176. // background-size: 100% 100%;
  177. // background-position: center center;
  178. // background-repeat: no-repeat;
  179. // z-index: 2;
  180. // opacity: 0.7;
  181. // }
  182. // }
  183. .followTipUp, .followTipDown {
  184. display: flex;
  185. align-items: center;
  186. position: relative;
  187. width: fit-content;
  188. left: 50%;
  189. top: -40px;
  190. transform: translate(-50%);
  191. > img {
  192. width: auto;
  193. height: 38px;
  194. }
  195. }
  196. .isPad{
  197. .followTipUp, .followTipDown {
  198. transform: translate(-50%) scale(0.7);
  199. }
  200. }
  201. .followTipUp {
  202. i {
  203. font-style: normal;
  204. color: #EF231D;
  205. }
  206. }
  207. .followTipDown {
  208. i {
  209. font-style: normal;
  210. color: #F47B00;
  211. }
  212. }
  213. :global {
  214. .follow-error {
  215. display: block;
  216. .van-icon-cross {
  217. display: block;
  218. }
  219. :global {
  220. .tip-up, .tip-down {
  221. display: none;
  222. }
  223. }
  224. }
  225. .follow-down {
  226. .van-icon-cross {
  227. color: #F47B00 !important;
  228. }
  229. path {
  230. fill: #F47B00 !important;
  231. stroke: #F47B00 !important;
  232. }
  233. :global {
  234. .tip-down {
  235. display: flex;
  236. }
  237. }
  238. }
  239. .follow-up {
  240. .van-icon-cross {
  241. color: #EF231D !important;
  242. }
  243. path {
  244. fill: #EF231D !important;
  245. stroke: #EF231D !important;
  246. }
  247. :global {
  248. .tip-up {
  249. display: flex;
  250. }
  251. }
  252. }
  253. .follow-success {
  254. // display: block;
  255. transform-box: fill-box;
  256. transform-origin: center;
  257. animation: noteAnimate 1s linear;
  258. .van-icon-success {
  259. display: block;
  260. color: #01B996;
  261. }
  262. path {
  263. fill: #01B996 !important;
  264. stroke: #01B996 !important;
  265. }
  266. :global {
  267. .tip-up, .tip-down {
  268. display: none;
  269. }
  270. }
  271. }
  272. }
  273. .linePC {
  274. .line {
  275. min-height: 94Px;
  276. transform: translateX(8.5Px,-50%);
  277. }
  278. }
  279. .noteDot {
  280. position: absolute;
  281. left: 50%;
  282. top: 50%;
  283. transform: translate(-50%);
  284. width: 2px;
  285. height: 2px;
  286. // background: #07c160;
  287. }