index.module.less 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635
  1. .wrap {
  2. width: 100vw;
  3. height: 100vh;
  4. display: flex;
  5. flex-direction: row;
  6. background: #f1f5ff;
  7. overflow: hidden;
  8. .WrapcoreView {
  9. // .WrapcoreViewInfo {
  10. // border-radius: 20px;
  11. // background-color: #fff;
  12. // }
  13. padding: 20px 32px 32px;
  14. height: calc(100vh - 64px);
  15. overflow-y: auto;
  16. // overflow: hidden;
  17. &.isNotPadding {
  18. padding: 0;
  19. }
  20. }
  21. }
  22. .silder {
  23. width: 100px;
  24. background: #3044ca;
  25. min-height: 100vh;
  26. display: flex;
  27. flex-direction: column;
  28. align-items: center;
  29. flex: 1;
  30. .logoWrap {
  31. margin-top: 22px;
  32. .logo {
  33. img {
  34. width: 62px;
  35. height: 60px;
  36. }
  37. }
  38. }
  39. .sliderList {
  40. // margin-top: 10px;
  41. max-height: calc(100vh - 92px);
  42. --n-scrollbar-width: 0 !important;
  43. :global {
  44. .n-scrollbar-content {
  45. display: flex;
  46. align-items: center;
  47. flex-direction: column;
  48. }
  49. }
  50. }
  51. }
  52. .silderItem {
  53. position: relative;
  54. width: 84px;
  55. height: 80px;
  56. display: flex;
  57. flex-direction: column;
  58. align-items: center;
  59. margin-bottom: 18px;
  60. justify-content: center;
  61. border-radius: 20px;
  62. cursor: pointer;
  63. &:first-child {
  64. margin-top: 18px;
  65. }
  66. .radiusIcon {
  67. width: 26px;
  68. height: 137px;
  69. position: absolute;
  70. right: -10px;
  71. top: -29px;
  72. }
  73. // .radiusIcon1 {
  74. // // width: 26px;
  75. // // height: 137px;
  76. // width: 92px;
  77. // height: 124px;
  78. // position: absolute;
  79. // right: -10px;
  80. // top: -29px;
  81. // }
  82. p {
  83. margin-top: 4px;
  84. font-size: max(14px, 10px);
  85. font-weight: 600;
  86. color: #ffffff;
  87. line-height: 20px;
  88. }
  89. &:hover {
  90. background-color: rgba(255, 255, 255, 0.1);
  91. }
  92. }
  93. .silderItem.isActiveItem {
  94. // position: relative;
  95. background-color: #f1f5ff;
  96. border-radius: 20px 0px 0px 20px;
  97. div, p {
  98. position: relative;
  99. z-index: 1;
  100. }
  101. p {
  102. color: #21225d;
  103. }
  104. }
  105. .Wrapcore {
  106. height: 100%;
  107. flex: 1;
  108. .layoutTop {
  109. height: var(--layoutTopHeight, 64px);
  110. background-color: #fff;
  111. line-height: 64px;
  112. padding: 0 50px 0 32px;
  113. display: flex;
  114. flex-direction: row;
  115. align-items: center;
  116. justify-content: space-between;
  117. .layoutLeft {
  118. display: flex;
  119. flex-direction: row;
  120. align-items: center;
  121. .schoolIcon {
  122. margin-right: 8px;
  123. img {
  124. width: 32px;
  125. height: 32px;
  126. }
  127. }
  128. p {
  129. font-size: max(18px, 14px);
  130. font-weight: 600;
  131. color: #131415;
  132. }
  133. }
  134. .layoutRight {
  135. display: flex;
  136. flex-direction: row;
  137. align-items: center;
  138. .messageBadge {
  139. margin-right: 24px;
  140. .messageIcon {
  141. width: 32px;
  142. height: 32px;
  143. cursor: pointer;
  144. &.animation {
  145. -webkit-animation: Tada 1s 2s both infinite;
  146. -moz-animation: Tada 1s 2s both infinite;
  147. -ms-animation: Tada 1s 2s both infinite;
  148. animation: Tada 1s 2s both infinite;
  149. }
  150. }
  151. }
  152. .messageBadgeNo,
  153. .messageBadgeHide {
  154. :global {
  155. .n-badge-sup {
  156. visibility: hidden;
  157. }
  158. }
  159. }
  160. @keyframes Tada {
  161. 0% {
  162. transform: scale(1);
  163. transform: scale(1);
  164. }
  165. 10%,
  166. 20% {
  167. transform: scale(0.9) rotate(-3deg);
  168. transform: scale(0.9) rotate(-3deg);
  169. }
  170. 30%,
  171. 50%,
  172. 70%,
  173. 90% {
  174. transform: scale(1.1) rotate(3deg);
  175. transform: scale(1.1) rotate(3deg);
  176. }
  177. 40%,
  178. 60%,
  179. 80% {
  180. transform: scale(1.1) rotate(-3deg);
  181. transform: scale(1.1) rotate(-3deg);
  182. }
  183. 100% {
  184. transform: scale(1) rotate(0);
  185. transform: scale(1) rotate(0);
  186. }
  187. }
  188. .line {
  189. width: 1px;
  190. height: 18px;
  191. background-color: #dfdfdf;
  192. margin-right: 24px;
  193. }
  194. .mesgWrap {
  195. display: flex;
  196. flex-direction: row;
  197. align-items: center;
  198. .teacherIcon {
  199. width: 32px;
  200. height: 32px;
  201. border-radius: 50%;
  202. overflow: hidden;
  203. }
  204. flex: 1;
  205. .rotueLeft {
  206. transform: rotate(-90deg);
  207. transition: 0.2s;
  208. margin-left: 10px;
  209. }
  210. .rotueRight {
  211. transform: rotate(90deg);
  212. margin-left: 10px;
  213. transition: 0.2s;
  214. }
  215. }
  216. .optons {
  217. margin-top: 18px;
  218. margin-bottom: 14px;
  219. width: 32px;
  220. height: 32px;
  221. margin-right: 24px;
  222. display: flex;
  223. flex-direction: row;
  224. align-items: center;
  225. cursor: pointer;
  226. &.booxToolDisabled {
  227. opacity: 0.5;
  228. cursor: not-allowed;
  229. }
  230. img {
  231. width: 100%;
  232. height: 100%;
  233. }
  234. }
  235. }
  236. }
  237. }
  238. :global {
  239. .nameTool.n-popover {
  240. background-color: #000 !important;
  241. color: #fff;
  242. }
  243. }
  244. :global {
  245. .n-popover {
  246. // overflow: hidden;
  247. border-radius: 16px;
  248. }
  249. }
  250. :global {
  251. .timerMeterConBoxClass_drag {
  252. box-shadow: initial;
  253. width: 651px;
  254. .topDragDom {
  255. position: absolute;
  256. left: 0;
  257. top: 0;
  258. width: calc(100% - 31px);
  259. height: 40px;
  260. }
  261. }
  262. }
  263. .timerMeterClose {
  264. position: absolute;
  265. width: 31px;
  266. height: 32px;
  267. top: 16px;
  268. right: 0;
  269. cursor: pointer;
  270. }
  271. .propWrap {
  272. background-color: var(--n-color);
  273. border-radius: 16px;
  274. width: 300px;
  275. overflow-y: auto;
  276. background: #ffffff;
  277. box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.08);
  278. padding: 20px !important;
  279. .teacherInfo {
  280. display: flex;
  281. flex-direction: row;
  282. align-items: center;
  283. border-bottom: 1px solid #f2f2f2;
  284. padding-bottom: 20px;
  285. .teacherIcon {
  286. width: 58px;
  287. height: 58px;
  288. border-radius: 50%;
  289. border: 1px solid #ffffff;
  290. overflow: hidden;
  291. }
  292. .teacherName {
  293. flex: 1;
  294. font-size: max(20px, 15px);
  295. font-weight: 600;
  296. color: #333333;
  297. overflow: hidden;
  298. text-overflow: ellipsis;
  299. white-space: nowrap;
  300. }
  301. .userInfos {
  302. margin-left: 16px;
  303. display: flex;
  304. align-items: flex-start;
  305. flex-direction: column;
  306. .roleType {
  307. margin-top: 3px;
  308. font-size: max(12px, 11px);
  309. color: #2089ff;
  310. background: #e8f4ff;
  311. border-radius: 3px;
  312. border: 1px solid rgba(25, 140, 254, 0.5);
  313. padding: 0 4px;
  314. line-height: 1.3;
  315. }
  316. }
  317. }
  318. .propWrapList {
  319. padding-bottom: 17px;
  320. border-bottom: 1px solid #f2f2f2;
  321. margin-top: 16px;
  322. }
  323. .propWrapItem {
  324. display: flex;
  325. flex-direction: row;
  326. align-items: center;
  327. height: 50px;
  328. line-height: 50px;
  329. cursor: pointer;
  330. &:hover {
  331. background: #f5f6fa;
  332. border-radius: 10px;
  333. }
  334. }
  335. .smallIcon {
  336. width: 22px;
  337. height: 23px;
  338. margin-right: 21px;
  339. margin-left: 10px;
  340. }
  341. .smallTitle {
  342. font-size: 18px;
  343. font-weight: 600;
  344. color: #333333;
  345. }
  346. .logoutInfo {
  347. margin-top: 16px;
  348. }
  349. }
  350. :global {
  351. .fade-slide-leave-active,
  352. .fade-slide-enter-active {
  353. transition: all 0.3s;
  354. }
  355. .fade-slide-enter-from {
  356. opacity: 0;
  357. transform: translateX(-30px);
  358. }
  359. .fade-slide-leave-to {
  360. opacity: 0;
  361. transform: translateX(30px);
  362. }
  363. }
  364. .toolboxImg {
  365. width: 83px;
  366. height: 83px;
  367. position: absolute;
  368. right: 32px;
  369. bottom: 84px;
  370. cursor: pointer;
  371. z-index: 1000;
  372. }
  373. .isDragIng {
  374. width: 83px;
  375. height: 83px;
  376. }
  377. // .toolClassImg {
  378. // width: 100px;
  379. // height: 100px;
  380. // // position: absolute;
  381. // // right: 32px;
  382. // // bottom: 160px;
  383. // // cursor: pointer;
  384. // // z-index: 1000;
  385. // }
  386. :global {
  387. .moveable-control-box {
  388. --moveable-color: transparent !important;
  389. }
  390. .n-popover {
  391. background-color: transparent;
  392. }
  393. }
  394. .booxToolWrap {
  395. // width: 286px;
  396. // height: 95px;
  397. background: #ffffff;
  398. box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
  399. border-radius: 20px;
  400. display: flex;
  401. //flex-direction: column;
  402. // flex-direction: row;
  403. align-items: center;
  404. padding: 16px 20px;
  405. justify-content: space-between;
  406. & > div {
  407. display: flex;
  408. &:last-child {
  409. // margin-top: 16px;
  410. }
  411. }
  412. .booxToolItem {
  413. margin: 0 12px;
  414. display: flex;
  415. flex-direction: column;
  416. align-items: center;
  417. font-size: max(12px, 11px);
  418. cursor: pointer;
  419. text-align: center;
  420. &.booxToolDisabled {
  421. opacity: 0.5;
  422. cursor: not-allowed;
  423. &:hover {
  424. opacity: 0.5;
  425. cursor: not-allowed;
  426. }
  427. }
  428. &:hover {
  429. opacity: 0.8;
  430. }
  431. img {
  432. width: 56px;
  433. height: 56px;
  434. margin-bottom: 4px;
  435. }
  436. }
  437. }
  438. .setTimeImage {
  439. cursor: pointer;
  440. img {
  441. width: 792px;
  442. }
  443. }
  444. .beatImage {
  445. cursor: pointer;
  446. img {
  447. width: 698px;
  448. }
  449. }
  450. .changePwdModal {
  451. border-radius: 16px;
  452. }
  453. .imChatModal {
  454. border-radius: 20px;
  455. }
  456. .modeWrap {
  457. overflow: hidden;
  458. border-radius: 16px;
  459. background-color: #fff;
  460. }
  461. .imGroupContainer,
  462. .container {
  463. background-color: #fff;
  464. width: 1156px;
  465. height: 834px;
  466. border-radius: 15px;
  467. }
  468. .hideModal {
  469. visibility: hidden;
  470. }
  471. .showClass {
  472. width: 800px;
  473. border-radius: 16px;
  474. overflow: hidden;
  475. }
  476. .showModalTone {
  477. width: 500px;
  478. .studentRemove {
  479. padding: 32px 40px 46px;
  480. p {
  481. font-size: 18px;
  482. color: #777777;
  483. line-height: 30px;
  484. text-align: center;
  485. span {
  486. color: #ea4132;
  487. }
  488. }
  489. }
  490. }
  491. .suggestWrap {
  492. // :global {
  493. // .n-card-header {
  494. // display: none;
  495. // }
  496. // .n-card__content {
  497. // background-color: transparent;
  498. // }
  499. // }
  500. width: 754px;
  501. background-color: transparent !important;
  502. box-shadow: none !important;
  503. :global {
  504. .n-card-header {
  505. display: none;
  506. }
  507. .n-card__content {
  508. background-color: transparent;
  509. }
  510. .n-input__border {
  511. display: none;
  512. }
  513. .n-input__state-border {
  514. display: none;
  515. }
  516. // .n-card.n-modal {
  517. // background-color: transparent !important;
  518. // box-shadow: none !important;
  519. // .n-input__border {
  520. // display: none;
  521. // }
  522. // .n-input__state-border {
  523. // display: none;
  524. // }
  525. // }
  526. }
  527. }
  528. .popoverClassModel {
  529. width: 500px !important;
  530. border-radius: 19px !important;
  531. // border-radius: ;
  532. }
  533. .popBox {
  534. z-index: 9999;
  535. }