search.scss 436 B

12345678910111213141516171819202122232425262728
  1. @use '@/styles/variables.scss' as *;
  2. .search-box {
  3. @include flex-center;
  4. justify-content: space-between;
  5. width: 100%;
  6. }
  7. .select-box {
  8. display: flex;
  9. align-items: center;
  10. flex-wrap: wrap;
  11. gap: 10cpx;
  12. &--item {
  13. @include flex-center;
  14. white-space: nowrap;
  15. gap: 10cpx;
  16. }
  17. span {
  18. color: rgba(0, 0, 0, 0.85);
  19. font-size: 14cpx;
  20. }
  21. .el-select {
  22. width: 200cpx;
  23. }
  24. }
  25. .search-btn {
  26. display: flex;
  27. }