index.module.less 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. .listWrap {
  2. min-height: 100%;
  3. padding: 32px;
  4. background-color: #fff;
  5. border-radius: 20px;
  6. }
  7. .teacherSection {
  8. display: flex;
  9. align-items: center;
  10. border-bottom: 1px solid #E9E9E9;
  11. margin-bottom: 30px;
  12. padding-bottom: 24px;
  13. .tTemp {
  14. display: flex;
  15. align-content: center;
  16. }
  17. .infos {
  18. padding: 13px;
  19. background: #FFFFFF;
  20. border-radius: 10px;
  21. .homeTitle {
  22. font-size: max(17px, 14Px);
  23. font-family: PingFangSC, PingFang SC;
  24. font-weight: 600;
  25. color: #000000;
  26. padding-bottom: 5px;
  27. }
  28. .homeContent {
  29. padding-bottom: 5px;
  30. }
  31. .homeworkText {
  32. display: flex;
  33. align-items: flex-start;
  34. .pSection {
  35. max-width: 500px;
  36. }
  37. .p1,
  38. .p2 {
  39. white-space: nowrap;
  40. overflow: hidden;
  41. text-overflow: ellipsis;
  42. }
  43. .p1::before,
  44. .p2::before {
  45. content: '';
  46. display: inline-block;
  47. width: 5px;
  48. height: 5px;
  49. background: #198CFE;
  50. margin-right: 7px;
  51. border-radius: 50%;
  52. flex-shrink: 0;
  53. transform: translateY(-3px);
  54. }
  55. .p2 {
  56. padding-top: 6px;
  57. }
  58. .p2::before {
  59. background: #F44040;
  60. }
  61. }
  62. .title {
  63. font-size: max(13px, 12Px);
  64. color: #777777;
  65. flex-shrink: 0;
  66. }
  67. .text {
  68. font-size: max(13px, 12Px);
  69. font-weight: 500;
  70. color: #333333;
  71. line-height: 22px;
  72. }
  73. }
  74. .stitcTitle {
  75. display: flex;
  76. align-items: center;
  77. font-size: max(20px, 16Px);
  78. font-family: PingFangSC, PingFang SC;
  79. font-weight: 600;
  80. color: #000000;
  81. line-height: 28px;
  82. padding-bottom: 30px;
  83. &::before {
  84. content: '';
  85. display: inline-block;
  86. width: 4px;
  87. height: 14px;
  88. background: #198CFE;
  89. border-radius: 2px;
  90. margin-right: 8px;
  91. }
  92. }
  93. .stitcConent {
  94. :global {
  95. .n-progress {
  96. width: 116Px;
  97. }
  98. }
  99. .contentRect {
  100. text-align: center;
  101. .text {
  102. padding-top: 5px;
  103. font-size: 12Px;
  104. font-family: PingFangSC, PingFang SC;
  105. font-weight: 400;
  106. color: #777777;
  107. line-height: 17px;
  108. }
  109. }
  110. .nums {
  111. display: flex;
  112. align-items: center;
  113. font-size: max(26px, 18Px);
  114. font-family: DINAlternate, DINAlternate;
  115. font-weight: bold;
  116. color: #000000;
  117. line-height: 30px;
  118. i {
  119. font-style: normal;
  120. font-size: max(20px, 14Px);
  121. }
  122. span {
  123. font-size: 12Px;
  124. font-family: PingFangSC, PingFang SC;
  125. font-weight: 500;
  126. color: #333333;
  127. line-height: 17px;
  128. }
  129. }
  130. }
  131. }
  132. .teacherList {
  133. display: flex;
  134. // align-items: center;
  135. flex-direction: column;
  136. // margin-bottom: 32px;
  137. flex: 1;
  138. margin-right: 60px;
  139. position: relative;
  140. &::after {
  141. content: '';
  142. position: absolute;
  143. right: 0;
  144. width: 1px;
  145. height: 120px;
  146. background: #E9E9E9;
  147. top: 50%;
  148. margin-top: -60px;
  149. }
  150. .teacherHeader {
  151. width: 100px;
  152. height: 100px;
  153. padding: 4px;
  154. border-radius: 99px;
  155. background: linear-gradient(228deg,
  156. rgba(2, 186, 255, 1),
  157. rgba(0, 122, 254, 1));
  158. margin-right: 20px;
  159. .teacherHeaderBorder {
  160. width: 100%;
  161. height: 100%;
  162. background: #fff;
  163. border-radius: 99px;
  164. overflow: hidden;
  165. display: flex;
  166. flex-direction: row;
  167. align-items: center;
  168. justify-content: center;
  169. padding: 4px;
  170. }
  171. }
  172. .teacherHeaderImg {
  173. width: 84px;
  174. height: 84px;
  175. border-radius: 50%;
  176. overflow: hidden;
  177. }
  178. .workafterInfo {
  179. display: flex;
  180. justify-content: center;
  181. flex-direction: column;
  182. h4 {
  183. font-size: 22px;
  184. line-height: 30px;
  185. font-weight: 600;
  186. color: #131415;
  187. margin-bottom: 12px;
  188. }
  189. p {
  190. font-size: max(16px, 12Px);
  191. line-height: 22px;
  192. color: #777;
  193. span {
  194. color: #ea4132;
  195. }
  196. }
  197. }
  198. }
  199. .wordDetailModel {
  200. width: 1012px;
  201. }