index.module.less 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. .assignStudent {
  2. display: flex;
  3. }
  4. .studentListGroup,
  5. .selectStudentGroup {
  6. flex: 1;
  7. }
  8. .studentListGroup {
  9. border-right: 1px solid #DCDCDC;
  10. .searchSection {
  11. padding: 20px 30px 12px;
  12. }
  13. .searchSpace {
  14. display: flex;
  15. margin-bottom: 13px;
  16. :global {
  17. .n-select+.n-select {
  18. margin-left: 13px;
  19. }
  20. }
  21. }
  22. .studentSection {
  23. padding: 0 40px 13px;
  24. .checkboxAll {
  25. display: flex;
  26. align-items: center;
  27. p {
  28. padding-left: 8px;
  29. font-size: max(15px, 13Px) !important;
  30. font-weight: 600 !important;
  31. color: #333333 !important;
  32. }
  33. .nums {
  34. font-size: max(15px, 13Px) !important;
  35. color: #777;
  36. font-weight: 400;
  37. }
  38. }
  39. }
  40. .student {
  41. padding: 0 30px 15px;
  42. height: 50vh;
  43. }
  44. .loadingSection {
  45. height: calc(50vh - 15px);
  46. }
  47. .studentItem {
  48. padding: 12px;
  49. border-radius: 8px;
  50. display: flex;
  51. align-items: center;
  52. :global {
  53. .n-checkbox__label {
  54. padding: 0;
  55. }
  56. }
  57. &:hover {
  58. background: #F5F6FA;
  59. }
  60. .studentInfo {
  61. display: flex;
  62. align-items: center;
  63. padding-left: 12px;
  64. .studentImg {
  65. width: 48px;
  66. height: 48px;
  67. border-radius: 8px;
  68. background: transparent !important;
  69. }
  70. }
  71. .studentValue {
  72. padding-left: 10px;
  73. }
  74. .userInfo {
  75. display: flex;
  76. align-items: center;
  77. .name {
  78. font-size: max(16px, 13Px);
  79. font-weight: 500;
  80. color: #333333;
  81. line-height: 18px;
  82. padding-right: 5px;
  83. max-width: 120px;
  84. overflow: hidden;
  85. text-overflow: ellipsis;
  86. white-space: nowrap;
  87. }
  88. .iconMember {
  89. width: max(16px, 14Px);
  90. height: max(16px, 14Px);
  91. display: inline-block;
  92. margin-right: 5px;
  93. background: url('../../../../images/icon-member.png') no-repeat center;
  94. background-size: contain;
  95. }
  96. .className {
  97. padding: 1px 3px;
  98. font-size: max(12px, 11Px);
  99. font-family: PingFangSC, PingFang SC;
  100. font-weight: 500;
  101. color: #2089FF;
  102. line-height: 14px;
  103. background: #E8F4FF;
  104. border-radius: 3px;
  105. border: 1px solid #97C7FF;
  106. }
  107. }
  108. .phone {
  109. padding-top: 3px;
  110. font-size: 12Px;
  111. color: #777777;
  112. line-height: 15px;
  113. }
  114. }
  115. }
  116. .selectStudentGroup {
  117. .selectCount {
  118. padding: 20px 30px 13px;
  119. font-size: 15px;
  120. font-weight: 600;
  121. color: #333333;
  122. line-height: 21px;
  123. font-size: max(15px, 13Px) !important;
  124. span {
  125. color: #777777;
  126. font-weight: 400;
  127. }
  128. }
  129. .searchSection {
  130. padding: 0 30px 12px;
  131. }
  132. .student {
  133. padding: 0 30px;
  134. height: calc(50vh);
  135. }
  136. .studentItem {
  137. padding: 10px 12px;
  138. border-radius: 8px;
  139. display: flex;
  140. align-items: center;
  141. justify-content: space-between;
  142. &:hover {
  143. background: #F5F6FA;
  144. }
  145. &.hide {
  146. display: none;
  147. }
  148. .iconClose {
  149. width: 13Px;
  150. height: 13Px;
  151. display: inline-block;
  152. background: url('../../../../images/icon-close.png') no-repeat center;
  153. background-size: contain;
  154. cursor: pointer;
  155. }
  156. }
  157. .studentInfo {
  158. display: flex;
  159. align-items: center;
  160. }
  161. .studentImg {
  162. width: 34px;
  163. height: 34px;
  164. margin-right: 8px;
  165. background: transparent !important;
  166. }
  167. .name {
  168. font-size: max(16px, 13Px);
  169. color: #333333;
  170. line-height: 18px;
  171. }
  172. .btnGroup {
  173. margin-right: 27px;
  174. padding-top: 12px;
  175. :global {
  176. .n-button {
  177. border-radius: 8px;
  178. --n-height: 38px !important;
  179. min-width: 100px;
  180. }
  181. }
  182. }
  183. }