index.module.less 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643
  1. .listWrap {
  2. padding: 32px;
  3. background-color: #fff;
  4. border-radius: 20px;
  5. min-height: 100%;
  6. :global {
  7. .n-form.n-form--inline .n-form-item {
  8. margin-right: 18px;
  9. }
  10. }
  11. }
  12. .datePicker {
  13. :global {
  14. .n-input {
  15. width: 320px !important;
  16. }
  17. }
  18. }
  19. .inputRangeSection {
  20. display: flex;
  21. align-items: center;
  22. .pair {
  23. font-size: max(15px, 13Px);
  24. color: rgba(0, 0, 0, 0.4);
  25. line-height: 21px;
  26. padding: 0 6px;
  27. }
  28. :global {
  29. .n-input-number {
  30. width: 92px;
  31. }
  32. }
  33. }
  34. .infoListWrap {
  35. min-height: calc(100vh - 150px) !important
  36. }
  37. .infoWrap {
  38. min-height: 100%;
  39. }
  40. .addBtnIcon {
  41. width: 13Px !important;
  42. height: 14Px !important;
  43. }
  44. .addBtn {
  45. height: 34Px !important;
  46. background: #198cfe !important;
  47. border-radius: 7Px !important;
  48. line-height: 21Px !important;
  49. padding: 0 18Px !important;
  50. font-size: 13Px !important;
  51. font-weight: 600 !important;
  52. :global {
  53. .n-button__content {
  54. // font-size: 18px;
  55. }
  56. }
  57. }
  58. // 学情
  59. .homeStudy {
  60. background-color: #fff;
  61. .homeStudyTitle {
  62. display: flex;
  63. flex-direction: row;
  64. align-items: center;
  65. font-size: 20px;
  66. font-weight: 600;
  67. color: #131415;
  68. line-height: 28px;
  69. .homeStudyTitleDot {
  70. width: 5px;
  71. height: 16px;
  72. background: #198cfe;
  73. margin-right: 8px;
  74. }
  75. }
  76. .homeStudyInfoList {
  77. display: flex;
  78. flex-direction: row;
  79. align-items: center;
  80. justify-content: space-between;
  81. margin-top: 21px;
  82. .homeStudyInfoTabs {
  83. display: flex;
  84. flex-direction: row;
  85. align-items: center;
  86. .homeStudyInfoTabItem {
  87. cursor: pointer;
  88. width: 112px;
  89. height: 39px;
  90. border-radius: 20px;
  91. font-size: 18px;
  92. font-weight: 600;
  93. line-height: 39px;
  94. text-align: center;
  95. margin-right: 24px;
  96. background: #f5f6fa;
  97. color: rgba(0, 0, 0, 0.5);
  98. &:hover {
  99. background: #198cfe;
  100. color: #ffffff;
  101. opacity: 0.8;
  102. }
  103. }
  104. .homeStudyInfoTabItem.active {
  105. background: #198cfe;
  106. color: #ffffff;
  107. }
  108. }
  109. .homeStudyInfoDate {
  110. display: flex;
  111. flex-direction: row;
  112. align-items: center;
  113. justify-content: flex-end;
  114. }
  115. }
  116. .searchBtn {
  117. width: 90px;
  118. // height: 43px;
  119. background: #198cfe;
  120. border-radius: 8px;
  121. // line-height: 41px;
  122. font-weight: 600 !important;
  123. // font-size: max(18px, 13Px);
  124. }
  125. .resetBtn {
  126. // width: 90px;
  127. // height: 43px;
  128. border-radius: 8px;
  129. // line-height: 41px;
  130. font-weight: 600 !important;
  131. // font-size: max(18px, 13Px);
  132. }
  133. .resetBtn,
  134. .searchBtn {
  135. --n-padding: 0 28px !important;
  136. }
  137. }
  138. .homeTrainData {
  139. margin-top: 40px;
  140. .TrainDataTop {
  141. margin-bottom: 40px;
  142. display: flex;
  143. flex-direction: row;
  144. align-items: center;
  145. justify-content: space-between;
  146. .TrainDataTopLeft {
  147. display: flex;
  148. flex-direction: row;
  149. align-items: center;
  150. .TrainDataItem {
  151. margin-right: 40px;
  152. .TrainDataItemTitle {
  153. display: flex;
  154. flex-direction: row;
  155. align-items: center;
  156. text-align: center;
  157. font-size: max(13px, 11Px);
  158. font-weight: 400;
  159. color: #131415;
  160. line-height: 18px;
  161. span {
  162. font-family: 'DINA';
  163. font-size: max(26px, 18Px);
  164. font-weight: 600;
  165. color: #131415;
  166. line-height: 28px;
  167. }
  168. }
  169. .TrainDataItemsubTitle {
  170. margin-top: 4px;
  171. text-align: center;
  172. font-size: max(14px, 11Px);
  173. font-family: PingFangSC-Regular, PingFang SC;
  174. font-weight: 400;
  175. color: #777777;
  176. line-height: 18px;
  177. }
  178. }
  179. }
  180. .TrainDataTopRight {
  181. display: flex;
  182. flex-direction: row;
  183. align-items: center;
  184. .DataTopRightItem {
  185. cursor: pointer;
  186. display: flex;
  187. flex-direction: row;
  188. align-items: center;
  189. margin-left: 30px;
  190. &:hover {
  191. opacity: 0.8;
  192. }
  193. .DataTopRightDot {
  194. width: 16px;
  195. height: 16px;
  196. background: #3583fa;
  197. border-radius: 4px;
  198. margin-right: 6px;
  199. }
  200. .DataTopRightDot.DataTopRightDotBlue {
  201. background: #d5e9ff;
  202. }
  203. .DataTopRightDot.red {
  204. background: #ff7aa7;
  205. }
  206. }
  207. .DataTopRightItem.DataTopRightItemDis {
  208. .DataTopRightDot {
  209. background: #f5f6fa;
  210. }
  211. }
  212. }
  213. }
  214. }
  215. .tableWrapEcharts {
  216. margin-top: 40px;
  217. }
  218. .tableWrap {
  219. // margin-top: 40px;
  220. :global {
  221. .n-data-table {
  222. border-radius: 10px 10px 0 0;
  223. overflow: hidden;
  224. }
  225. .n-data-table-thead {
  226. height: 54px;
  227. line-height: 54px;
  228. }
  229. .n-data-table-th {
  230. padding: 0 20px;
  231. background-color: #f7f7f8;
  232. color: rgba(0, 0, 0, 0.88);
  233. }
  234. .n-data-table-td {
  235. padding: 12px 20px;
  236. }
  237. .n-data-table-th__title-wrapper {
  238. &::after {
  239. content: '';
  240. width: 1px;
  241. height: 22px;
  242. background: #ebebeb;
  243. &:nth-last-child(1) {
  244. display: none;
  245. }
  246. }
  247. }
  248. .n-data-table-th--last {
  249. .n-data-table-th__title-wrapper {
  250. &::after {
  251. content: '';
  252. width: 0px;
  253. height: 22px;
  254. background: #ebebeb;
  255. }
  256. }
  257. }
  258. .n-tag {
  259. --n-border-radius: 6px !important;
  260. --n-height: 26px !important;
  261. --n-font-size: max(13px, 12Px) !important;
  262. --n-padding: 0 14px !important;
  263. }
  264. }
  265. }
  266. .reportModel {
  267. width: 1200px;
  268. overflow: hidden;
  269. }
  270. .reportContainer iframe {
  271. height: 64vh;
  272. }
  273. .addStudentWrap {
  274. position: relative;
  275. width: 378px;
  276. height: 631px;
  277. margin: 100px auto 0;
  278. .studentCLose {
  279. cursor: pointer;
  280. position: absolute;
  281. right: -67px;
  282. top: -54px;
  283. width: 42px;
  284. height: 42px;
  285. z-index: 100;
  286. }
  287. .stunentStart {
  288. position: absolute;
  289. width: 556px;
  290. height: 246px;
  291. left: -70px;
  292. top: -98px;
  293. img {
  294. width: 556px;
  295. height: 246px;
  296. }
  297. }
  298. .addTitle {
  299. width: 230px;
  300. height: 48px;
  301. top: -9px;
  302. position: absolute;
  303. margin: 0 auto;
  304. left: 50%;
  305. margin-left: -115px;
  306. z-index: 100;
  307. img {
  308. width: 230px;
  309. height: 48px;
  310. }
  311. }
  312. .addStudentInfo {
  313. width: 378px;
  314. height: 631px;
  315. position: relative;
  316. display: flex;
  317. flex-direction: column;
  318. align-items: center;
  319. .studentInfoBg {
  320. position: absolute;
  321. width: 378px;
  322. height: 631px;
  323. img {
  324. left: 0;
  325. top: 0;
  326. width: 378px;
  327. height: 631px;
  328. }
  329. }
  330. .studentCore {
  331. position: absolute;
  332. bottom: 27px;
  333. left: 24px;
  334. width: 330px;
  335. height: 339px;
  336. background: rgba(255, 255, 255, 0.33);
  337. border-radius: 17px;
  338. border: 2px solid #ffffff;
  339. backdrop-filter: blur(17px);
  340. display: flex;
  341. flex-direction: column;
  342. align-items: center;
  343. .schoolLogo {
  344. width: 67px;
  345. height: 67px;
  346. margin-top: -34px;
  347. border: 1px solid #fff;
  348. border-radius: 50%;
  349. z-index: 100;
  350. overflow: hidden;
  351. background-color: #fff;
  352. position: absolute;
  353. }
  354. .studentCoreInfo {
  355. margin-top: 6px;
  356. width: 314px;
  357. height: 323px;
  358. background: #ffffff;
  359. border-radius: 17px;
  360. display: flex;
  361. flex-direction: column;
  362. align-items: center;
  363. h2 {
  364. margin-top: 37px;
  365. height: 22px;
  366. font-size: max(16px, 13Px);
  367. font-weight: 600;
  368. color: #000000;
  369. line-height: 22px;
  370. margin-bottom: 6px;
  371. overflow: hidden;
  372. text-overflow: ellipsis;
  373. white-space: nowrap;
  374. }
  375. .studentCoreInfoSubtitle {
  376. font-size: max(14px, 11Px);
  377. font-weight: 400;
  378. color: #000000;
  379. line-height: 22px;
  380. span {
  381. color: #198cfe;
  382. font-weight: 600;
  383. }
  384. }
  385. .codewrap {
  386. width: 147px;
  387. height: 145px;
  388. background: url(./images/cordWrap.png) no-repeat;
  389. position: relative;
  390. background-size: 147px 145px;
  391. margin: 16px 0 18px;
  392. display: flex;
  393. flex-direction: column;
  394. align-items: center;
  395. justify-content: center;
  396. .codewrapBg {
  397. width: 147px !important;
  398. height: 145px !important;
  399. top: 0;
  400. left: 0;
  401. position: absolute;
  402. }
  403. // img {
  404. // }
  405. }
  406. .codewrapSubmit {
  407. width: 213px;
  408. height: 35px;
  409. // background: linear-gradient(135deg, #d1fdf9 0%, #d6eeff 100%);
  410. // box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.62);
  411. border-radius: 18px;
  412. text-align: center;
  413. line-height: 35px;
  414. font-size: max(14px, 11Px);
  415. color: #117de9;
  416. position: relative;
  417. img {
  418. position: absolute;
  419. left: 0;
  420. top: 0;
  421. width: 213px;
  422. height: 35px;
  423. }
  424. span {
  425. font-weight: 600;
  426. }
  427. }
  428. }
  429. }
  430. }
  431. .studentBottom {
  432. width: 420px;
  433. position: absolute;
  434. left: -21px;
  435. bottom: -140px;
  436. display: flex;
  437. flex-direction: column;
  438. align-items: center;
  439. p {
  440. text-align: center;
  441. font-size: 20px;
  442. font-weight: bold;
  443. color: #ffffff;
  444. margin-bottom: 30px;
  445. }
  446. .downBtn {
  447. width: 256px;
  448. height: 54px;
  449. background: linear-gradient(90deg, #ff7b57 0%, #ff3460 100%);
  450. border-radius: 30px;
  451. line-height: 54px;
  452. font-size: 22px;
  453. font-weight: 600;
  454. text-align: center;
  455. color: #fff;
  456. cursor: pointer;
  457. }
  458. }
  459. }
  460. .setInfo {
  461. margin-top: 64px;
  462. :global {
  463. .n-form-item-label {
  464. font-size: max(15px, 12Px);
  465. color: #000;
  466. }
  467. .n-input {
  468. height: max(50px, 40Px);
  469. border-radius: 8px;
  470. font-size: max(18px, 14Px);
  471. .n-input__input-el {
  472. height: 100%;
  473. }
  474. &.n-input--disabled {
  475. background-color: #f5f6fa;
  476. color: rgba(149, 149, 152, 1);
  477. }
  478. }
  479. .n-base-selection {
  480. border-radius: 8px;
  481. .n-base-selection-label {
  482. height: max(50px, 40Px);
  483. }
  484. }
  485. .n-base-selection.n-base-selection--disabled .n-base-selection-label {
  486. background-color: #f5f6fa;
  487. color: rgba(149, 149, 152, 1);
  488. }
  489. }
  490. }
  491. .btnList {
  492. margin-top: 150px;
  493. .btn {
  494. --n-padding: 0 36px !important;
  495. // --n-height: 45px !important;
  496. --n-border-radius: 8px !important;
  497. }
  498. }
  499. .wordDetailModel {
  500. width: 1012px;
  501. }
  502. .removeVisiable {
  503. width: 432px;
  504. :global {
  505. .n-card-header {
  506. font-size: max(22px, 16Px);
  507. }
  508. }
  509. .studentRemove {
  510. padding: 32px 40px 46px;
  511. p {
  512. font-size: max(18px, 14Px);
  513. color: #777777;
  514. line-height: 30px;
  515. text-align: center;
  516. span {
  517. color: #EA4132;
  518. }
  519. }
  520. }
  521. .btnGroup {
  522. padding: 32px 0 0;
  523. :global {
  524. .n-button {
  525. height: 47px;
  526. min-width: 156px;
  527. }
  528. }
  529. }
  530. }
  531. .updateStudent {
  532. width: 580px;
  533. }