index.module.less 2.5 KB

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