index.module.less 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. .logo {
  2. position: relative;
  3. width: 100Px;
  4. height: 100Px;
  5. border-radius: 50%;
  6. overflow: hidden;
  7. .changeHead {
  8. position: absolute;
  9. left: 0;
  10. right: 0;
  11. top: 0;
  12. bottom: 0;
  13. background-color: rgba(0, 0, 0, .7);
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. font-size: 16px;
  18. color: #fff;
  19. font-weight: 600;
  20. transition: opacity .3s;
  21. border-radius: 50%;
  22. cursor: pointer;
  23. opacity: 0;
  24. &:hover {
  25. opacity: 1;
  26. }
  27. }
  28. .uploadFile {
  29. position: absolute;
  30. left: 0;
  31. right: 0;
  32. top: 0;
  33. bottom: 0;
  34. opacity: 0;
  35. }
  36. }
  37. .formWrap {
  38. :global {
  39. .n-input {
  40. min-width: 284px;
  41. height: 50px;
  42. border-radius: 8Px;
  43. .n-input__input-el {
  44. height: 100%;
  45. }
  46. &.n-input--disabled {
  47. background-color: #F5F6FA;
  48. color: rgba(149, 149, 152, 1);
  49. }
  50. }
  51. .n-base-selection {
  52. height: 50px;
  53. min-width: 284px;
  54. border-radius: 8Px;
  55. .n-base-selection-label {
  56. height: 100%;
  57. }
  58. }
  59. .n-base-selection.n-base-selection--disabled .n-base-selection-label {
  60. background-color: #F5F6FA;
  61. color: rgba(149, 149, 152, 1);
  62. }
  63. }
  64. }
  65. .schoolInfo {
  66. :global {
  67. .n-form-item .n-form-item-label {
  68. color: #777;
  69. }
  70. .n-button {
  71. border-radius: 8px;
  72. }
  73. .n-data-table .n-data-table-th {
  74. background: #F7F7F8;
  75. color: rgba(113, 113, 114, 1) !important;
  76. border: none;
  77. min-height: 54Px;
  78. font-size: 15Px;
  79. }
  80. .n-data-table.n-data-table--bordered .n-data-table-wrapper {
  81. border: none;
  82. }
  83. .n-data-table-tr .n-data-table-td .n-button__content,
  84. .n-data-table .n-data-table-td {
  85. font-weight: bold;
  86. font-size: 15Px;
  87. }
  88. .n-input {
  89. height: 50px;
  90. border-radius: 8Px;
  91. .n-input__input-el {
  92. height: 100%;
  93. }
  94. &.n-input--disabled {
  95. background-color: #F5F6FA;
  96. color: rgba(149, 149, 152, 1);
  97. }
  98. }
  99. .n-base-selection {
  100. border-radius: 8Px;
  101. .n-base-selection-label {
  102. height: 50px;
  103. }
  104. }
  105. .n-base-selection.n-base-selection--disabled .n-base-selection-label {
  106. background-color: #F5F6FA;
  107. color: rgba(149, 149, 152, 1);
  108. }
  109. }
  110. .errorBtn {
  111. :global {
  112. .n-button__content {
  113. color: #FF4D4F;
  114. }
  115. }
  116. }
  117. }
  118. .addTeacher {
  119. padding: 0;
  120. border-radius: 16Px;
  121. overflow: hidden;
  122. min-width: 456Px;
  123. :global {
  124. .n-dialog__close {
  125. transform: translate(0, 3Px);
  126. }
  127. .n-dialog__title {
  128. min-height: 70Px;
  129. justify-content: center;
  130. background: #F5F6FA;
  131. }
  132. .n-form {
  133. padding: 20Px 0;
  134. }
  135. .n-input {
  136. height: 50px;
  137. border-radius: 8Px;
  138. .n-input__input-el {
  139. height: 100%;
  140. }
  141. &.n-input--disabled {
  142. background-color: #F5F6FA;
  143. color: rgba(149, 149, 152, 1);
  144. }
  145. }
  146. .n-base-selection {
  147. border-radius: 8Px;
  148. .n-base-selection-label {
  149. height: 50px;
  150. }
  151. }
  152. .n-base-selection.n-base-selection--disabled .n-base-selection-label {
  153. background-color: #F5F6FA;
  154. color: rgba(149, 149, 152, 1);
  155. }
  156. .n-form-item-blank {
  157. padding-right: 30Px;
  158. }
  159. .genderBtn {
  160. min-width: 84Px;
  161. min-height: 37Px;
  162. border-radius: 8Px;
  163. }
  164. .n-form-item-label {
  165. color: #777;
  166. padding: 0;
  167. font-size: 18Px;
  168. }
  169. .n-form-item-label__text {
  170. height: 50px;
  171. display: flex;
  172. align-items: center;
  173. justify-content: center;
  174. }
  175. .nalert {
  176. padding: 0 30Px;
  177. .n-alert {
  178. background: #FFE8E8;
  179. text-align: center;
  180. }
  181. .n-alert-body .n-alert-body__content {
  182. color: #EA4132;
  183. }
  184. }
  185. .actionBtn {
  186. width: 156Px;
  187. height: 47Px;
  188. font-size: 18Px;
  189. }
  190. }
  191. }
  192. .btnList {
  193. width: 100%;
  194. .btn {
  195. width: 144px;
  196. border-radius: 8px;
  197. font-size: 18px;
  198. font-weight: 600 !important;
  199. margin-right: 24px;
  200. }
  201. }