index.module.less 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. @img: './images';
  2. .listWrap {
  3. min-height: 805px;
  4. padding: 32px;
  5. background-color: #fff;
  6. border-radius: 20px;
  7. .customTabs {
  8. :global {
  9. .n-tabs-tab--active {
  10. font-size: max(18px, 14Px) !important;
  11. font-weight: 600 !important;
  12. color: #131415 !important;
  13. }
  14. .n-tabs-tab {
  15. font-size: max(18px, 14Px);
  16. padding: 8px 0 !important;
  17. font-weight: 400;
  18. min-width: 50px;
  19. color: #8b8d98;
  20. &:hover {
  21. color: #198cfe !important;
  22. }
  23. }
  24. .n-tabs-bar {
  25. // background-color: red !important;
  26. width: 50px !important;
  27. height: 5px !important;
  28. background: url('@{img}/barIcon.png') no-repeat;
  29. background-size: 50px 5px;
  30. }
  31. }
  32. }
  33. }
  34. .infoWrap {
  35. height: 100%;
  36. padding-top: 100px;
  37. display: flex;
  38. flex-direction: column;
  39. align-items: center;
  40. .teacherInfoWrap {
  41. display: flex;
  42. flex-direction: column;
  43. align-items: center;
  44. .teacherHeadWrap {
  45. position: relative;
  46. width: 236px;
  47. height: 132px;
  48. .headerD {
  49. width: 100%;
  50. height: 100%;
  51. }
  52. .defultHeade {
  53. width: 116px;
  54. height: 116px;
  55. overflow: hidden;
  56. border-radius: 50%;
  57. position: absolute;
  58. top: 8px;
  59. left: 60px;
  60. }
  61. .changeHead {
  62. background-color: rgba(0, 0, 0, 0.7);
  63. display: flex;
  64. justify-content: center;
  65. align-items: center;
  66. font-size: 16px;
  67. color: #fff;
  68. font-weight: 600;
  69. transition: opacity 0.3s;
  70. cursor: pointer;
  71. }
  72. .disalbedNone {
  73. display: none;
  74. }
  75. .hoverNone {
  76. background: transparent;
  77. color: transparent;
  78. transition: all 0.3s;
  79. &:hover {
  80. background-color: rgba(0, 0, 0, 0.7);
  81. color: #fff;
  82. transition: all 0.3s;
  83. }
  84. }
  85. .uploadFile {
  86. position: absolute;
  87. left: 0;
  88. right: 0;
  89. top: 0;
  90. bottom: 0;
  91. opacity: 0;
  92. }
  93. }
  94. .headerInfo {
  95. .headerTitle {
  96. font-size: 22px;
  97. font-weight: 600;
  98. color: #131415;
  99. line-height: 28px;
  100. letter-spacing: 1px;
  101. margin: 18px 0 8px;
  102. text-align: center;
  103. display: flex;
  104. flex-direction: row;
  105. justify-content: center;
  106. align-items: center;
  107. .sexIcon {
  108. width: 12px;
  109. height: 21px;
  110. margin-left: 5px;
  111. }
  112. }
  113. .headerSubTitle {
  114. font-size: 16px;
  115. font-weight: 400;
  116. color: #707a92;
  117. line-height: 20px;
  118. text-align: center;
  119. }
  120. }
  121. }
  122. .setInfo {
  123. margin-top: 64px;
  124. width: 1172px;
  125. :global {
  126. .n-form-item {
  127. min-width: 200px;
  128. }
  129. .n-form-item-label {
  130. font-size: 15px;
  131. color: rgba(0, 0, 0, 0.8);
  132. }
  133. .n-input {
  134. border-radius: 8px;
  135. .n-input__input-el {
  136. height: 50px;
  137. font-size: 16px;
  138. }
  139. &.n-input--disabled {
  140. background-color: #f5f6fa;
  141. color: rgba(149, 149, 152, 1);
  142. .n-input__input-el {
  143. background-color: #F5F6FA;
  144. color: rgba(0, 0, 0, 0.4);
  145. }
  146. }
  147. }
  148. .n-base-selection {
  149. height: 50px;
  150. border-radius: 8px;
  151. .n-base-selection-label {
  152. height: 50px;
  153. font-size: 16px;
  154. }
  155. }
  156. .n-base-selection.n-base-selection--disabled .n-base-selection-label {
  157. background-color: #F5F6FA;
  158. color: rgba(0, 0, 0, 0.4) !important;
  159. }
  160. .n-base-selection.n-base-selection--disabled .n-base-selection-label .n-base-selection-input {
  161. color: rgba(0, 0, 0, 0.4) !important;
  162. }
  163. }
  164. }
  165. }
  166. .btnList {
  167. width: 100%;
  168. padding: 20px 0;
  169. margin-top: 30px;
  170. .btn {
  171. width: 144px;
  172. height: 45px;
  173. border-radius: 8px;
  174. font-size: 18px;
  175. font-weight: 600 !important;
  176. margin-right: 24px;
  177. }
  178. }
  179. :global {
  180. .option.n-base-select-option {
  181. justify-content: center;
  182. }
  183. .option.n-base-select-option.n-base-select-option--pending::before {
  184. background-color: #198cfe !important;
  185. }
  186. .option.n-base-select-option.n-base-select-option--pending .n-base-select-option__content {
  187. color: #fff !important;
  188. text-align: center;
  189. }
  190. }
  191. .changePwdModal {
  192. border-radius: 16px;
  193. .wrap {
  194. padding: 12px 0;
  195. :global {
  196. .n-input {
  197. border-radius: 5px;
  198. }
  199. .n-input .n-input__input-el {
  200. height: 50px;
  201. }
  202. .n-button.n-button--disabled {
  203. background: #aaa;
  204. }
  205. }
  206. }
  207. .sendMsg {
  208. min-width: 108px;
  209. height: 50px;
  210. }
  211. .pwdIcon {
  212. width: 24px;
  213. height: 24px;
  214. cursor: pointer;
  215. }
  216. .submitBtm {
  217. width: 45%;
  218. height: 46px;
  219. }
  220. }
  221. .wrap {
  222. padding: 12px 0;
  223. :global {
  224. .n-input {
  225. border-radius: 8px;
  226. }
  227. .n-input .n-input__input-el {
  228. height: 53px;
  229. }
  230. .n-button.n-button--disabled {
  231. background: #aaa;
  232. }
  233. }
  234. }
  235. .sendMsg {
  236. height: 53px;
  237. min-width: 108px;
  238. }
  239. .pwdIcon {
  240. width: 24px;
  241. height: 24px;
  242. cursor: pointer;
  243. }
  244. .submitBtm {
  245. width: 45%;
  246. height: 47px;
  247. }