index.module.less 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. .searchGroup {
  2. position: relative;
  3. padding: 0 40px;
  4. .btnType {
  5. gap: 0px 24px !important;
  6. :global {
  7. .n-button {
  8. height: 37px;
  9. padding: 0 24px;
  10. font-size: 18px;
  11. color: rgba(0, 0, 0, .6);
  12. &.n-button--primary-type {
  13. font-weight: bold;
  14. color: #fff;
  15. }
  16. }
  17. }
  18. }
  19. :global {
  20. .n-form {
  21. position: relative;
  22. }
  23. .n-form-item {
  24. .n-form-item-label {
  25. font-size: 17px;
  26. font-weight: 600;
  27. color: #131415;
  28. line-height: 24px;
  29. }
  30. .n-button {
  31. height: 32px;
  32. font-size: 17px;
  33. border-radius: 8px;
  34. padding: 4Px 20px;
  35. font-size: max(17px, 12Px);
  36. color: rgba(0, 0, 0, 0.6);
  37. }
  38. .n-button--primary-type {
  39. color: #131415;
  40. }
  41. }
  42. .n-form-item-feedback-wrapper {
  43. min-height: 14px;
  44. }
  45. }
  46. .inputSearch {
  47. width: 360px;
  48. height: 42px;
  49. font-size: 16px;
  50. --n-height: 42px !important;
  51. img {
  52. width: 18px;
  53. height: 18px;
  54. }
  55. :global {
  56. .n-input-wrapper {
  57. padding-left: 12px;
  58. padding-right: 4px;
  59. height: 42px !important;
  60. }
  61. .n-button {
  62. height: 34px;
  63. font-size: 15px;
  64. font-weight: 500;
  65. width: auto;
  66. }
  67. }
  68. }
  69. .searchCatatory {
  70. display: flex;
  71. justify-content: space-between;
  72. padding-bottom: 20px;
  73. border-bottom: 1px solid #F2F2F2;
  74. margin-bottom: 20px;
  75. .addTrain {
  76. height: 37px;
  77. border-radius: 8px;
  78. font-size: 18px;
  79. background-color: #E8F4FF;
  80. color: #0378EC;
  81. img {
  82. width: 16px;
  83. height: 16px;
  84. margin-right: 8px;
  85. }
  86. }
  87. }
  88. }
  89. .spaceSection {
  90. width: 100%;
  91. padding-right: 40px;
  92. gap: 8px 12px !important;
  93. &>div {
  94. line-height: var(--n-blank-height);
  95. &:last-child {
  96. // margin-left: -12Px;
  97. }
  98. }
  99. }
  100. .collaoseGroup {
  101. height: var(--n-blank-height);
  102. position: absolute;
  103. display: flex;
  104. align-items: center;
  105. padding-left: 8px;
  106. }
  107. .collapseWrap {
  108. width: 100%;
  109. display: flex;
  110. flex-direction: row;
  111. align-items: flex-end;
  112. }
  113. .collaoseBtn {
  114. width: 32px;
  115. height: 32px;
  116. cursor: pointer;
  117. }
  118. .collaoseBtn.isStart {
  119. transform: rotate(-180deg);
  120. }
  121. .collapsSection {
  122. // padding-top: 10px;
  123. }
  124. .isHidden {
  125. overflow: hidden;
  126. transition: 1s all ease-in;
  127. }
  128. .hideButton {
  129. visibility: hidden;
  130. height: 0 !important;
  131. line-height: 0 !important;
  132. }
  133. .popSelect {
  134. font-size: 16px;
  135. width: 200px;
  136. box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.08);
  137. border-radius: 11px;
  138. --n-option-height: 34px;
  139. :global {
  140. .n-base-select-option__content {
  141. width: 80% !important;
  142. }
  143. }
  144. }
  145. .spaceSection2 {
  146. &>div {
  147. height: 34Px !important;
  148. display: flex;
  149. align-items: center;
  150. }
  151. }
  152. .textBtn {
  153. background: #fff;
  154. border-radius: 8Px;
  155. padding: 4Px 20px;
  156. font-size: max(17px, 12Px);
  157. color: rgba(0, 0, 0, 0.6);
  158. cursor: pointer;
  159. display: flex;
  160. align-items: center;
  161. font-weight: 500;
  162. line-height: 24px;
  163. .iconArrow {
  164. display: inline-block;
  165. margin-left: 8px;
  166. width: 8px;
  167. height: 5px;
  168. background: url('@/views/content-information/images/icon-arrow2.png') no-repeat center center / contain;
  169. transform: rotate(180deg);
  170. }
  171. &:hover,
  172. &.textBtnActive {
  173. background: #D2ECFF;
  174. font-weight: 500;
  175. color: #131415;
  176. }
  177. &:hover {
  178. .iconArrow {
  179. transform: rotate(0deg);
  180. }
  181. }
  182. }