index.module.less 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. .container {
  2. position: fixed;
  3. inset: 0;
  4. width: 100vw;
  5. height: 100vh;
  6. display: flex;
  7. flex-direction: column;
  8. background-color: #fff;
  9. overflow: hidden;
  10. }
  11. .containerTop {
  12. display: flex;
  13. align-items: flex-start;
  14. background-color: rgba(251, 251, 251, 1);
  15. padding: 6px 0;
  16. border-bottom: 1px solid rgba(222, 224, 225, 1);
  17. }
  18. .topWrap {
  19. display: flex;
  20. align-items: center;
  21. flex-wrap: wrap;
  22. padding-left: 20px;
  23. width: 100%;
  24. .topBtn {
  25. .btnImg {
  26. width: 40px;
  27. height: 40px;
  28. }
  29. }
  30. }
  31. .topBtn {
  32. position: relative;
  33. display: flex;
  34. flex-direction: column;
  35. align-items: center;
  36. font-size: 12px;
  37. margin: .3%;
  38. line-height: 18px;
  39. cursor: pointer;
  40. .btnImg {
  41. display: flex;
  42. justify-content: center;
  43. align-items: center;
  44. width: 46px;
  45. height: 46px;
  46. border-radius: 6px;
  47. margin-bottom: 1px;
  48. &:hover {
  49. background-color: rgba(0, 0, 0, 0.1);
  50. }
  51. }
  52. .btnImg.btnImgActive {
  53. background-color: rgba(193, 219, 251, 1);
  54. }
  55. .topBtnIcon {
  56. width: 100%;
  57. height: 100%;
  58. }
  59. }
  60. .btnDisabled {
  61. cursor: not-allowed;
  62. opacity: .5;
  63. pointer-events: none;
  64. }
  65. .topDownArrow {
  66. padding: 20px 10px;
  67. border-radius: 6px;
  68. cursor: pointer;
  69. &:hover {
  70. background-color: rgba(0, 0, 0, 0.1);
  71. }
  72. img {
  73. width: 10px;
  74. display: block;
  75. }
  76. }
  77. .topLine {
  78. margin: 0 9px;
  79. width: 1px;
  80. height: 40px;
  81. background-color: #DCDADC;
  82. }
  83. .btnPlayMore {
  84. font-size: 24px;
  85. }
  86. .wrapBox {
  87. display: flex;
  88. flex-wrap: wrap;
  89. .topBtn {
  90. // width: calc(100% / 4);
  91. margin: 0 8px 8px;
  92. .btnImg {
  93. font-size: 30px;
  94. }
  95. }
  96. .longTopBtn {
  97. width: calc(100% / 3);
  98. .btnImg {
  99. width: 90%;
  100. }
  101. }
  102. }
  103. .dropDownWrap {
  104. width: 330px;
  105. background: #FFFFFF;
  106. box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.08);
  107. border-radius: 12px;
  108. padding: 10px 12px;
  109. justify-content: space-between;
  110. }
  111. .content {
  112. flex: 1;
  113. display: flex;
  114. overflow: hidden;
  115. .slide {
  116. position: relative;
  117. padding: 12px 0;
  118. width: 300px;
  119. flex-shrink: 0;
  120. background-color: rgba(251, 251, 251, 1);
  121. border-right: 1px solid rgba(222, 224, 225, 1);
  122. overflow-y: auto;
  123. &::-webkit-scrollbar {
  124. display: none;
  125. width: 0;
  126. }
  127. }
  128. .box {
  129. position: relative;
  130. flex: 1;
  131. height: 100%;
  132. overflow: auto;
  133. padding: 20px;
  134. padding-bottom: 180px;
  135. }
  136. }
  137. .value {
  138. display: block;
  139. margin: 20px auto;
  140. width: 80%;
  141. height: 100Px;
  142. }
  143. :global {
  144. .abcjs-note-hover {
  145. &:hover {
  146. fill: #ffe65948;
  147. cursor: pointer;
  148. }
  149. }
  150. .abcjs-bar {
  151. .abcjs-annotation {
  152. display: block;
  153. font-size: 12px;
  154. font-style: italic;
  155. transform: translateX(10px);
  156. }
  157. }
  158. .ABCJS-cursor {
  159. stroke: rgba(25, 140, 254, 0.6);
  160. border-radius: 5px;
  161. }
  162. }
  163. .instruments {
  164. padding: 24px;
  165. background: #FFFFFF;
  166. box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.08);
  167. border-radius: 16px;
  168. border: 1px solid #F5F5F7;
  169. width: 300px;
  170. .instrumentTitle {
  171. font-size: 18px;
  172. font-family: PingFangSC-Semibold, PingFang SC;
  173. font-weight: 600;
  174. color: #131415;
  175. line-height: 25px;
  176. margin-bottom: 20px;
  177. }
  178. }
  179. .titleBox {
  180. :global {
  181. .n-input__border {
  182. border: 1px dashed #ccc;
  183. }
  184. .n-input__input {
  185. text-align: center;
  186. }
  187. }
  188. }
  189. .popupWrap:global(.n-popover) {
  190. padding: 12px !important;
  191. background: #FFFFFF;
  192. box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.08);
  193. border-radius: 16px;
  194. border: 1px solid #F5F5F7;
  195. padding-bottom: 20px !important;
  196. }
  197. .btnLineTitle {
  198. font-size: 16px;
  199. font-weight: 600;
  200. color: #131415;
  201. line-height: 40px;
  202. height: 40px;
  203. }
  204. .btnItem {
  205. display: flex;
  206. flex-direction: column;
  207. justify-content: center;
  208. align-items: center;
  209. .btnItemIcon {
  210. display: flex;
  211. justify-content: center;
  212. align-items: center;
  213. width: 46px;
  214. height: 46px;
  215. font-size: 30px;
  216. border-radius: 6px;
  217. cursor: pointer;
  218. &:hover {
  219. background-color: rgba(0, 0, 0, 0.1);
  220. }
  221. }
  222. .btnItemName {
  223. font-size: 12px;
  224. }
  225. &.btnItemActive {
  226. .btnItemIcon {
  227. background-color: rgba(193, 219, 251, 1);
  228. }
  229. }
  230. }
  231. .titleName {
  232. :global {
  233. .n-input {
  234. font-size: 18px;
  235. font-weight: 600;
  236. height: 40px;
  237. line-height: 40px;
  238. }
  239. }
  240. }
  241. .selectMearesBox {
  242. width: 286px;
  243. position: fixed;
  244. padding: 12px !important;
  245. background: #FFFFFF;
  246. box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.08);
  247. border-radius: 16px;
  248. border: 1px solid #F5F5F7;
  249. cursor: move;
  250. .mearesInput {
  251. display: flex;
  252. align-items: center;
  253. flex: 1;
  254. border: 1px solid rgb(224, 224, 230);
  255. border-radius: 4px;
  256. :global {
  257. .n-input__placeholder,
  258. .n-input__input-el {
  259. text-align: center;
  260. }
  261. }
  262. }
  263. }
  264. .selectMearesHidden {
  265. display: none;
  266. }
  267. .loading {
  268. position: absolute;
  269. left: 0;
  270. right: 0;
  271. top: 0;
  272. bottom: 0;
  273. background-color: rgba(255, 255, 255, 0.5);
  274. display: flex;
  275. justify-content: center;
  276. align-items: center;
  277. }
  278. .exportPng{
  279. position: fixed;
  280. left: 0;
  281. top: 0;
  282. width: 100%;
  283. z-index: -10;
  284. pointer-events: none;
  285. }