index.module.less 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. .logo {
  2. position: relative;
  3. width: 100px;
  4. height: 100px;
  5. border-radius: 50%;
  6. overflow: hidden;
  7. :global {
  8. .n-image {
  9. width: 100%;
  10. height: 100%;
  11. }
  12. }
  13. .changeHead {
  14. position: absolute;
  15. left: 0;
  16. right: 0;
  17. top: 0;
  18. bottom: 0;
  19. background-color: rgba(0, 0, 0, .7);
  20. display: flex;
  21. justify-content: center;
  22. align-items: center;
  23. font-size: 16px;
  24. color: #fff;
  25. font-weight: 600;
  26. transition: opacity .3s;
  27. border-radius: 50%;
  28. cursor: pointer;
  29. opacity: 0;
  30. &:hover {
  31. opacity: 1;
  32. }
  33. }
  34. .uploadFile {
  35. position: absolute;
  36. left: 0;
  37. right: 0;
  38. top: 0;
  39. bottom: 0;
  40. opacity: 0;
  41. }
  42. }
  43. .formWrap {
  44. :global {
  45. .n-input {
  46. width: 284px;
  47. border-radius: 8px;
  48. .n-input__input-el {
  49. height: 50px;
  50. font-size: 16px;
  51. }
  52. &.n-input--disabled {
  53. background-color: #F5F6FA;
  54. .n-input__input-el {
  55. color: rgba(0, 0, 0, 0.4);
  56. }
  57. }
  58. }
  59. .n-base-selection {
  60. height: 50px;
  61. width: 284px;
  62. border-radius: 8px;
  63. .n-base-selection-label {
  64. height: 50px;
  65. font-size: 16px;
  66. }
  67. }
  68. .n-base-selection.n-base-selection--disabled .n-base-selection-label {
  69. background-color: #F5F6FA;
  70. color: rgba(0, 0, 0, 0.4);
  71. }
  72. .n-base-selection.n-base-selection--disabled .n-base-selection-label .n-base-selection-input {
  73. color: rgba(0, 0, 0, 0.4) !important;
  74. }
  75. }
  76. }
  77. .schoolInfo {
  78. :global {
  79. .n-form-item .n-form-item-label {
  80. color: #777;
  81. }
  82. .n-button {
  83. border-radius: 8px;
  84. }
  85. // .n-data-table .n-data-table-th {
  86. // background: #F7F7F8;
  87. // color: rgba(113, 113, 114, 1) !important;
  88. // border: none;
  89. // min-height: 54px;
  90. // font-size: 15px;
  91. // }
  92. // .n-data-table.n-data-table--bordered .n-data-table-wrapper {
  93. // border: none;
  94. // }
  95. // .n-data-table-tr .n-data-table-td .n-button__content,
  96. // .n-data-table .n-data-table-td {
  97. // font-weight: bold;
  98. // font-size: 15px;
  99. // }
  100. }
  101. .errorBtn {
  102. :global {
  103. .n-button__content {
  104. color: #FF4D4F;
  105. }
  106. }
  107. }
  108. }
  109. .removeVisiable1 {
  110. width: 432px;
  111. // :global {
  112. // .n-card-header {
  113. // font-size: max(22px, 16Px);
  114. // }
  115. // }
  116. .btnGroupModal {
  117. padding: 32px 0;
  118. :global {
  119. .n-button {
  120. height: 47px;
  121. min-width: 156px;
  122. }
  123. }
  124. }
  125. }
  126. .addTeacher {
  127. padding: 0;
  128. border-radius: 16px;
  129. overflow: hidden;
  130. min-width: 456px;
  131. :global {
  132. .n-dialog__close {
  133. transform: translate(0, 3px);
  134. }
  135. .n-dialog__title {
  136. min-height: 70px;
  137. justify-content: center;
  138. background: #F5F6FA;
  139. }
  140. .n-form {
  141. padding: 20px 0;
  142. }
  143. .n-input {
  144. border-radius: 8px;
  145. .n-input__input-el {
  146. height: 50px;
  147. font-size: 16px;
  148. }
  149. &.n-input--disabled {
  150. background-color: #F5F6FA;
  151. color: rgba(149, 149, 152, 1);
  152. }
  153. }
  154. .n-base-selection {
  155. border-radius: 8px;
  156. .n-base-selection-label {
  157. height: 50px;
  158. font-size: 16px;
  159. }
  160. }
  161. .n-base-selection.n-base-selection--disabled .n-base-selection-label {
  162. background-color: #F5F6FA;
  163. color: rgba(149, 149, 152, 1);
  164. }
  165. .n-form-item-blank {
  166. padding-right: 30px;
  167. }
  168. .genderBtn {
  169. min-width: 84px;
  170. min-height: 37px;
  171. border-radius: 8px;
  172. }
  173. .n-form-item-label {
  174. color: #777;
  175. padding: 0;
  176. font-size: 18px;
  177. }
  178. .n-form-item-label__text {
  179. height: 50px;
  180. display: flex;
  181. align-items: center;
  182. justify-content: center;
  183. }
  184. .nalert {
  185. padding: 0 30px;
  186. .n-alert {
  187. background: #FFE8E8;
  188. text-align: center;
  189. }
  190. .n-alert-body .n-alert-body__content {
  191. color: #EA4132;
  192. font-size: 14px;
  193. }
  194. }
  195. .actionBtn {
  196. width: 156px;
  197. height: 47px;
  198. font-size: 18px;
  199. }
  200. }
  201. }
  202. .btnList {
  203. width: 100%;
  204. .btn {
  205. width: 144px;
  206. height: 45px;
  207. border-radius: 8px;
  208. font-size: 18px;
  209. font-weight: 600 !important;
  210. margin-right: 24px;
  211. }
  212. }
  213. .addStudentWrap {
  214. position: relative;
  215. width: 378px;
  216. height: 631px;
  217. margin: 120px auto 0;
  218. .studentCLose {
  219. cursor: pointer;
  220. position: absolute;
  221. right: -67px;
  222. top: -54px;
  223. width: 42px;
  224. height: 42px;
  225. z-index: 100;
  226. }
  227. .stunentStart {
  228. position: absolute;
  229. width: 556px;
  230. height: 246px;
  231. left: -70px;
  232. top: -98px;
  233. img {
  234. width: 556px;
  235. height: 246px;
  236. }
  237. }
  238. .addTitle {
  239. width: 212px;
  240. height: 40px;
  241. top: -9px;
  242. position: absolute;
  243. margin: 0 auto;
  244. left: 50%;
  245. margin-left: -106px;
  246. z-index: 100;
  247. img {
  248. width: 212px;
  249. height: 40px;
  250. }
  251. &.addTeacherTitle {
  252. top: -12px;
  253. height: 40px;
  254. img {
  255. height: 40px
  256. }
  257. }
  258. }
  259. .addStudentInfo {
  260. width: 378px;
  261. height: 631px;
  262. position: relative;
  263. display: flex;
  264. flex-direction: column;
  265. align-items: center;
  266. .studentInfoBg {
  267. position: absolute;
  268. width: 378px;
  269. height: 631px;
  270. img {
  271. left: 0;
  272. top: 0;
  273. width: 378px;
  274. height: 631px;
  275. }
  276. }
  277. .studentCore {
  278. position: absolute;
  279. bottom: 27px;
  280. left: 24px;
  281. width: 330px;
  282. height: 339px;
  283. background: rgba(255, 255, 255, 0.33);
  284. border-radius: 17px;
  285. border: 2px solid #ffffff;
  286. backdrop-filter: blur(17px);
  287. display: flex;
  288. flex-direction: column;
  289. align-items: center;
  290. .schoolLogo {
  291. width: 67px;
  292. height: 67px;
  293. margin-top: -34px;
  294. border: 1px solid #fff;
  295. border-radius: 50%;
  296. z-index: 100;
  297. overflow: hidden;
  298. background-color: #fff;
  299. position: absolute;
  300. }
  301. .studentCoreInfo {
  302. margin-top: 6px;
  303. width: 314px;
  304. height: 323px;
  305. background: #ffffff;
  306. border-radius: 14px;
  307. display: flex;
  308. flex-direction: column;
  309. align-items: center;
  310. h2 {
  311. margin-top: 37px;
  312. height: 22px;
  313. font-size: 16px;
  314. font-weight: 600;
  315. color: #000000;
  316. line-height: 22px;
  317. margin-bottom: 6px;
  318. overflow: hidden;
  319. text-overflow: ellipsis;
  320. white-space: nowrap;
  321. }
  322. .studentCoreInfoSubtitle {
  323. font-size: 14px;
  324. font-weight: 400;
  325. color: #000000;
  326. span {
  327. color: #198cfe;
  328. font-weight: 600;
  329. }
  330. }
  331. .codewrap {
  332. width: 147px;
  333. height: 145px;
  334. // background: url(./images/cordWrap.png) no-repeat;
  335. position: relative;
  336. // background-size: 147px 145px;
  337. margin: 16px 0 18px;
  338. display: flex;
  339. flex-direction: column;
  340. align-items: center;
  341. justify-content: center;
  342. .codewrapBg {
  343. width: 147px !important;
  344. height: 145px !important;
  345. top: 0;
  346. left: 0;
  347. position: absolute;
  348. }
  349. // img {
  350. // }
  351. }
  352. .codewrapSubmit {
  353. width: 213px;
  354. height: 35px;
  355. // background: linear-gradient(135deg, #d1fdf9 0%, #d6eeff 100%);
  356. // box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.62);
  357. border-radius: 18px;
  358. text-align: center;
  359. line-height: 35px;
  360. font-size: 14px;
  361. color: #117de9;
  362. position: relative;
  363. img {
  364. position: absolute;
  365. left: 0;
  366. top: 0;
  367. width: 213px;
  368. height: 35px;
  369. }
  370. span {
  371. font-weight: 600;
  372. }
  373. }
  374. }
  375. }
  376. }
  377. .studentBottom {
  378. width: 420px;
  379. position: absolute;
  380. left: -21px;
  381. bottom: -120px;
  382. display: flex;
  383. flex-direction: column;
  384. align-items: center;
  385. p {
  386. text-align: center;
  387. font-size: 16px;
  388. color: #ffffff;
  389. margin-bottom: 30px;
  390. }
  391. .downBtn {
  392. width: 256px;
  393. height: 54px;
  394. background: linear-gradient(291deg, #02BAFF 0%, #007AFE 100%);
  395. border-radius: 30px;
  396. line-height: 54px;
  397. font-size: 22px;
  398. font-weight: 600;
  399. text-align: center;
  400. color: #fff;
  401. cursor: pointer;
  402. }
  403. }
  404. }