index.module.less 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. .list {
  2. margin-top: 12px;
  3. display: flex;
  4. flex-flow: row wrap;
  5. justify-content: flex-start;
  6. gap: 22px 0;
  7. min-height: 220px;
  8. margin-left: -12px;
  9. margin-right: -12px;
  10. .itemWrap {
  11. width: calc(100% / 5);
  12. padding-bottom: calc(100% / 5 * 0.73333);
  13. position: relative;
  14. .itemWrapBox {
  15. position: absolute;
  16. left: 0;
  17. top: 0;
  18. width: 100%;
  19. height: 100%;
  20. padding: 0 12px;
  21. }
  22. }
  23. :global {
  24. .card-section-container {
  25. width: 100%;
  26. height: 100%;
  27. }
  28. }
  29. }
  30. .searchGroup {
  31. position: relative;
  32. padding: 0;
  33. .btnType {
  34. gap: 0px 24px !important;
  35. :global {
  36. .n-button {
  37. height: 37px;
  38. padding: 0 24px;
  39. font-size: max(18px, 14px);
  40. color: rgba(0, 0, 0, .6);
  41. &.n-button--primary-type {
  42. font-weight: bold;
  43. color: #fff;
  44. }
  45. }
  46. }
  47. }
  48. :global {
  49. .n-form {
  50. position: relative;
  51. }
  52. .n-form-item {
  53. .n-form-item-label {
  54. font-size: max(17px, 13px);
  55. font-weight: 600;
  56. color: #131415;
  57. line-height: 24px;
  58. }
  59. .n-button {
  60. height: 32px;
  61. font-size: max(17px, 13px);
  62. border-radius: 8px;
  63. color: rgba(0, 0, 0, 0.6);
  64. }
  65. .n-button--primary-type {
  66. color: #131415;
  67. background-color: #D2ECFF !important;
  68. }
  69. }
  70. .n-form-item-feedback-wrapper {
  71. min-height: 14px;
  72. }
  73. }
  74. .inputSearch {
  75. position: absolute;
  76. top: 4px;
  77. right: 0px;
  78. width: 360px;
  79. height: 42px;
  80. font-size: 16px;
  81. --n-height: 42px !important;
  82. img {
  83. width: 18px;
  84. height: 18px;
  85. }
  86. :global {
  87. .n-input-wrapper {
  88. padding-left: 12px;
  89. padding-right: 4px;
  90. height: 42px !important;
  91. }
  92. .n-button {
  93. height: 34px;
  94. font-size: 15px;
  95. font-weight: 500;
  96. width: auto;
  97. }
  98. }
  99. }
  100. .searchCatatory {
  101. display: flex;
  102. justify-content: space-between;
  103. padding-bottom: 24px;
  104. border-bottom: 1px solid #F2F2F2;
  105. margin-bottom: 20px;
  106. .addTrain {
  107. height: 37px;
  108. border-radius: 8px;
  109. font-size: 18px;
  110. background-color: #E8F4FF;
  111. color: #0378EC;
  112. img {
  113. width: 16px;
  114. height: 16px;
  115. margin-right: 8px;
  116. }
  117. }
  118. }
  119. }
  120. .teachingModal {
  121. width: 1100px;
  122. }
  123. .spaceSection {
  124. width: 75%;
  125. transition: 1s all ease-in;
  126. &>div {
  127. line-height: var(--n-blank-height);
  128. }
  129. }
  130. .collapseWrap {
  131. width: 98%;
  132. display: flex;
  133. flex-direction: row;
  134. align-items: flex-end;
  135. }
  136. .collaoseBtn {
  137. width: 32px;
  138. height: 32px;
  139. cursor: pointer;
  140. }
  141. .collaoseBtn.isStart {
  142. transform: rotate(-180deg);
  143. }
  144. .collapsSection {
  145. // padding-top: 10px;
  146. }
  147. .isHidden {
  148. overflow: hidden;
  149. transition: 1s all ease-in;
  150. }
  151. .hideButton {
  152. visibility: hidden;
  153. height: 0 !important;
  154. line-height: 0 !important;
  155. }