index.module.less 7.2 KB

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