| 12345678910111213141516171819202122232425262728 |
- @use '@/styles/variables.scss' as *;
- .search-box {
- @include flex-center;
- justify-content: space-between;
- width: 100%;
- }
- .select-box {
- display: flex;
- align-items: center;
- flex-wrap: wrap;
- gap: 10cpx;
- &--item {
- @include flex-center;
- white-space: nowrap;
- gap: 10cpx;
- }
- span {
- color: rgba(0, 0, 0, 0.85);
- font-size: 14cpx;
- }
- .el-select {
- width: 200cpx;
- }
- }
- .search-btn {
- display: flex;
- }
|