index.module.less 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. .rightTeachingWrap {
  2. overflow: hidden;
  3. flex: 1;
  4. background-color: #fff;
  5. padding: 10px 0 30px;
  6. border-radius: 20px;
  7. .rightTeachingWrapTitle {
  8. display: flex;
  9. flex-direction: row;
  10. // align-items: center;
  11. justify-content: space-between;
  12. flex-direction: column;
  13. .lookMore {
  14. cursor: pointer;
  15. display: flex;
  16. align-items: center;
  17. min-width: 114px;
  18. border-radius: 8px;
  19. border: 1px solid #DEDEDE;
  20. font-size: 15px;
  21. color: #131415;
  22. padding: 7px 12px;
  23. svg {
  24. margin-left: 8px;
  25. width: 16px;
  26. height: 16px;
  27. }
  28. }
  29. .classSearchList {
  30. display: flex;
  31. gap: 12px;
  32. :global {
  33. .n-base-selection {
  34. --n-height: 35px !important;
  35. --n-font-size: 12Px !important;
  36. --n-border: 1px solid #DEDEDE !important;
  37. --n-border-radius: 8px !important;
  38. max-width: 150px;
  39. }
  40. }
  41. }
  42. }
  43. }
  44. :global {
  45. .n-base-select-menu .n-base-select-option.n-base-select-option--show-checkmark {
  46. padding-right: var(--n-option-padding);
  47. }
  48. .n-empty {
  49. --n-font-size: max(16px, 12Px) !important;
  50. }
  51. }
  52. .teachListWrap {
  53. position: relative;
  54. }
  55. .teachListWrapWall {
  56. position: absolute;
  57. bottom: 0;
  58. height: 159px;
  59. width: 100%;
  60. background: linear-gradient(180deg,
  61. rgba(255, 255, 255, 0) 0%,
  62. #ffffff 100%);
  63. border-radius: 0px 0px 20px 20px;
  64. span {
  65. position: absolute;
  66. bottom: 17px;
  67. left: 0;
  68. width: 100%;
  69. text-align: center;
  70. color: #1677FF;
  71. font-size: max(16px, 13Px);
  72. cursor: pointer;
  73. &::after {
  74. content: ' ';
  75. display: inline-block;
  76. width: 12px;
  77. height: 12px;
  78. background: url('../../images/blueArrow.png') no-repeat center;
  79. background-size: contain;
  80. }
  81. }
  82. }
  83. .teachGroup {
  84. margin-top: 12px;
  85. .teachGroupTitle {
  86. position: relative;
  87. left: -10px;
  88. font-size: 14Px;
  89. font-weight: 400;
  90. color: #aaaaaa;
  91. width: 60px;
  92. text-align: center;
  93. margin-bottom: 12px;
  94. }
  95. .teachGroupList {
  96. padding-bottom: 12px;
  97. margin-left: 20px;
  98. border-left: 1px solid #d1e8ff;
  99. min-height: 92px;
  100. position: relative;
  101. .teachGroupListDot {
  102. width: 15px;
  103. height: 15px;
  104. background: #198cfe;
  105. border: 4px solid #d1e8ff;
  106. border-radius: 50%;
  107. top: 28px;
  108. left: -8px;
  109. position: absolute;
  110. }
  111. }
  112. .teachGroupItemWrap {
  113. margin-left: 28px;
  114. background: #f7f9ff;
  115. border-radius: 12px;
  116. display: flex;
  117. flex-direction: row;
  118. align-items: top;
  119. &:nth-last-of-type(1) {
  120. margin-bottom: 0;
  121. }
  122. margin-bottom: 12px;
  123. padding: 10px;
  124. .teachGroupItemLeft {
  125. margin-right: 12px;
  126. width: 50px;
  127. height: 50px;
  128. border-radius: 50%;
  129. overflow: hidden;
  130. border: 2px solid #198cfe;
  131. .teachGroupItemHeader {
  132. border: 2px solid #fff;
  133. border-radius: 50%;
  134. overflow: hidden;
  135. img {
  136. width: 44px;
  137. height: 44px;
  138. }
  139. }
  140. }
  141. .teachGroupItemRight {
  142. flex: 1;
  143. .teachGroupItemName {
  144. display: flex;
  145. flex-direction: row;
  146. align-items: center;
  147. justify-content: space-between;
  148. font-size: 16px;
  149. margin-top: 2px;
  150. font-weight: 600;
  151. color: #131415;
  152. span {
  153. font-size: 13px;
  154. font-weight: 400;
  155. color: #1677ff;
  156. line-height: 18px;
  157. }
  158. }
  159. .teachGroupItemInfo {
  160. font-size: 13px;
  161. line-height: 26px;
  162. color: rgba(0, 0, 0, 0.5);
  163. }
  164. .subjectName {
  165. font-size: 14px;
  166. font-weight: 400;
  167. color: #FFFFFF;
  168. background: #198CFE;
  169. border-radius: 5px;
  170. padding: 1px 8px;
  171. margin-right: 4px;
  172. }
  173. }
  174. }
  175. }