index.module.less 924 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .searchGroup {
  2. padding: 0 20px;
  3. display: flex;
  4. .searchSelect2 {
  5. width: 100px;
  6. margin-right: 12px;
  7. }
  8. .searchSelect {
  9. padding: 0 0 20px;
  10. display: flex;
  11. justify-content: flex-start;
  12. gap: 0px 16px;
  13. }
  14. :global {
  15. .n-base-selection,
  16. .n-input {
  17. border-radius: 8px;
  18. min-height: 40px;
  19. height: 40px;
  20. font-size: max(15px, 12Px);
  21. --n-height: 40px !important;
  22. }
  23. }
  24. }
  25. .inputSearch {
  26. :global {
  27. .n-input-wrapper {
  28. padding-left: 12px;
  29. padding-right: 4px;
  30. }
  31. }
  32. .searchBtn {
  33. height: 34px;
  34. border-radius: 8px;
  35. font-size: 15px;
  36. font-weight: 500;
  37. }
  38. }
  39. .btnType {
  40. gap: 0px 6px !important;
  41. :global {
  42. .n-button {
  43. height: 28px;
  44. padding: 0 13px;
  45. font-size: 15px;
  46. color: rgba(0, 0, 0, .6);
  47. &.n-button--primary-type {
  48. font-weight: bold;
  49. color: #fff;
  50. }
  51. }
  52. }
  53. }