index.module.less 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. .btnGroup {
  2. display: flex;
  3. align-items: center;
  4. justify-content: space-between;
  5. padding-left: 36px !important;
  6. height: 40px;
  7. padding-right: 36px !important;
  8. :global {
  9. .n-base-selection {
  10. --n-height: max(40px, 36Px) !important;
  11. width: 160px;
  12. font-size: 15px;
  13. border-radius: 8px !important;
  14. }
  15. .n-base-selection-input__content {
  16. font-size: max(15px, 13Px);
  17. }
  18. .n-button {
  19. border-radius: 8px;
  20. height: 38px;
  21. font-size: max(18px, 13Px);
  22. font-weight: 600 !important;
  23. padding: 0 27px;
  24. margin-left: 14px;
  25. }
  26. .n-button--default-type {
  27. background: #E8F4FF;
  28. color: #0378EC;
  29. &:not(.n-button--disabled):hover {
  30. background: #E8F4FF;
  31. }
  32. .n-button__border {
  33. border: 1px solid #198CFE;
  34. }
  35. }
  36. .n-button--error-type {
  37. background: #FDEBED !important;
  38. color: #EC3A4E !important;
  39. &:not(.n-button--disabled):hover,
  40. &:not(.n-button--disabled):active {
  41. background: #FDEBED;
  42. color: #EC3A4E;
  43. }
  44. .n-button__border {
  45. border: 1px solid #EC3A4E;
  46. }
  47. }
  48. }
  49. }
  50. .dragbom{
  51. position: absolute;
  52. bottom: 0;
  53. left: 0;
  54. }
  55. .tipsContainer {
  56. display: flex;
  57. align-items: center;
  58. justify-content: space-between;
  59. flex: 1 auto;
  60. margin-right: 30px;
  61. height: 40px;
  62. padding: 0 16px;
  63. background: #EDF7FF;
  64. border-radius: 9px;
  65. max-width: 600px;
  66. .tipsLeft {
  67. display: flex;
  68. align-items: center;
  69. font-size: 16px;
  70. color: rgba(0, 0, 0, 0.88);
  71. .tips {
  72. line-height: 38px;
  73. }
  74. }
  75. .iconTips {
  76. margin-right: 9px;
  77. width: 18px;
  78. height: 18px;
  79. }
  80. .btnNoTips {
  81. font-size: 16px;
  82. font-weight: 500;
  83. color: #1677FF;
  84. cursor: pointer;
  85. }
  86. }
  87. .btnItem {
  88. display: flex;
  89. align-items: center;
  90. .btnTitle {
  91. flex-shrink: 0;
  92. font-size: max(18px, 13Px);
  93. font-weight: 600;
  94. }
  95. // &:last-child {
  96. // margin-left: 12px;
  97. // }
  98. :global {
  99. .n-input {
  100. --n-height: 42px !important;
  101. width: 280px;
  102. }
  103. }
  104. }
  105. .btnGroupClass {
  106. margin-top: 10px;
  107. }
  108. .listContainer {
  109. margin-top: 12px;
  110. // // 52 + 28 + 38
  111. max-height: calc(var(--window-page-lesson-height) - 196px);
  112. .listSection {
  113. min-height: calc(var(--window-page-lesson-height) - 196px);
  114. }
  115. &.listContainerDrag {
  116. max-height: calc(var(--window-page-lesson-height) - 148px);
  117. .listSection {
  118. min-height: calc(var(--window-page-lesson-height) - 148px);
  119. }
  120. }
  121. .emptySection {
  122. display: flex;
  123. align-items: center;
  124. }
  125. }
  126. .list {
  127. padding: 12px 36px 12px;
  128. display: flex;
  129. flex-flow: row wrap;
  130. justify-content: flex-start;
  131. gap: 20px 2%;
  132. &>div {
  133. width: 32% !important;
  134. }
  135. .itemBlock {
  136. &>div {
  137. width: 100% !important;
  138. }
  139. }
  140. }
  141. .trainEditModal {
  142. width: 494px;
  143. }
  144. .assignHomework {
  145. width: 560px;
  146. }
  147. .assignHomeworkContainer {
  148. padding: 24px 30px;
  149. .updateBtnGroup {
  150. padding: 0;
  151. justify-content: center !important;
  152. :global {
  153. .n-button {
  154. height: 48px !important;
  155. min-width: 156px;
  156. }
  157. }
  158. }
  159. .switch {
  160. height: 37px !important;
  161. border-radius: 8px;
  162. &.active {
  163. background: #198CFE;
  164. color: #fff;
  165. }
  166. }
  167. .studentSection {
  168. :global {
  169. .n-form-item-blank {
  170. flex-direction: column;
  171. align-items: flex-start;
  172. }
  173. }
  174. }
  175. .selectStudentBtn {
  176. // padding-top: 9px;
  177. // padding-bottom: 4px;
  178. font-size: max(15px, 13Px);
  179. height: max(40px, 36Px) !important;
  180. line-height: max(40px, 36Px) !important;
  181. font-weight: 500;
  182. color: #1677FF;
  183. text-decoration: underline;
  184. cursor: pointer;
  185. &.disabled {
  186. color: #bbb;
  187. cursor: not-allowed;
  188. }
  189. }
  190. .firstName {
  191. padding-left: 4px;
  192. }
  193. .studentList {
  194. // margin-top: 10px;
  195. color: #333333;
  196. font-size: max(13px, 12Px);
  197. padding: 10px 6px;
  198. border-radius: 8px;
  199. background: #F7F7F8;
  200. width: 100%;
  201. .studentItem {
  202. background: #FFFFFF;
  203. height: 28px;
  204. border-radius: 7px;
  205. padding: 5px 10px;
  206. color: #333333;
  207. line-height: 18px;
  208. margin: 3px 4px;
  209. display: inline-block;
  210. i {
  211. display: inline-block;
  212. width: 13px;
  213. height: 13px;
  214. background: url('../../../images/icon-close.png') no-repeat center;
  215. background-size: contain;
  216. cursor: pointer;
  217. }
  218. }
  219. }
  220. }
  221. .removeVisiable {
  222. width: 432px;
  223. :global {
  224. .n-card-header {
  225. font-size: max(22px, 16Px);
  226. }
  227. }
  228. .studentRemove {
  229. padding: 20px 40px 0;
  230. p {
  231. font-size: max(18px, 14Px);
  232. color: #777777;
  233. line-height: 30px;
  234. text-align: center;
  235. span {
  236. color: #EA4132;
  237. }
  238. }
  239. }
  240. .btnGroupModal {
  241. padding: 32px 0;
  242. :global {
  243. .n-button {
  244. height: 47px;
  245. min-width: 156px;
  246. }
  247. }
  248. }
  249. }
  250. .removeVisiable1 {
  251. width: 432px;
  252. :global {
  253. .n-card-header {
  254. font-size: max(22px, 16Px);
  255. }
  256. }
  257. .studentRemove {
  258. padding: 20px 40px 0;
  259. p {
  260. text-align: center;
  261. font-size: max(18px, 14Px);
  262. color: #777777;
  263. line-height: 30px;
  264. span {
  265. color: #EA4132;
  266. }
  267. }
  268. }
  269. .btnGroupModal {
  270. padding: 32px 0;
  271. :global {
  272. .n-button {
  273. height: 47px;
  274. min-width: 156px;
  275. }
  276. }
  277. }
  278. }