index.module.less 9.0 KB

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