index.module.less 11 KB

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