index.module.less 9.0 KB

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