.filters-wrapper {
    display: flex;
    flex-direction: row;
    align-items:unset;
    justify-content: unset;
    
  }

#filters-expander {
    width: 20px;
    height: 200px;
    margin-top: 70px;
    margin-left: 0px;
    top: 0px;

}

.filters {
    height: fit-content;
    min-height: 80px;
    max-width: 90vw;
    min-width: 200px;  
    flex: unset;
    display: flex;
    flex-direction: row;
    overflow-y: initial;
    overflow-x: scroll;
    background-color: #639df3;
    gap: 2px;
}

.filters > * {
    max-width: 200px; /* 设置最大宽度 */
}

