.hanlderSearch{
    display: flex;
    flex-wrap: wrap;
}
.activeSelection{
    background-color: #E60039;
    color: #fff !important;
}
.categoryList{
   width: 100%;
}
.categoryList .input_group{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.categoryList .input_group select{
    width: 300px;
}
.softInfo{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.input_group label{
    font-weight: 700;
}
.input_group select,
.input_group input{
    height: 40px;
    width: 200px;
    line-height: 40px;
    padding-left: 5px;
    margin: 15px 0;
}
.toggle-updown{
    float: right;
    margin-right: 10px;
    margin-top: -40px;
}
/* 按钮布局 */
.searchBtn{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    cursor: pointer;
}
.handleSearchList{
    cursor: pointer;
    height: 46px;
    padding: 12px 40px;
    margin-left: 18px;
    background-color: #E60039; 
    color: #fff;
    border-radius: 4px; 
}

/* 弹窗样式 */
.myStyle{
    position: fixed;
    z-index: 99999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);   
}
.model-detail{
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 95%;
    max-height: 700px;
    overflow: auto;
    /* max-width: 900px; */
}
.myStyle table{
    width: 100% !important;
}
/* 移动端适配 */
@media screen and (max-width:2400px){
    .categoryList .input_group select{
        width: 360px;
    }
    .model-detail{
    margin: 6% auto;
    max-height: 800px;
}
}
@media screen and (max-width:1990px){
    .categoryList .input_group select{
        width: 340px;
    }
    .model-detail{
    margin: 6% auto;
    max-height: 800px;
}
}
@media screen and (max-width:1440px){
    .categoryList .input_group select{
        width: 340px;
    }
    .model-detail{
    margin: 6% auto;
    max-height: 700px;
}
}
@media screen and (max-width:1200px){
.input_group select, .input_group input {
    margin: 15px 0;
}
.toggle-updown{
    margin-top: -31px;
}
.categoryList .input_group select{
    /* width: 290px; */
    width: 28%;
}
.searchBtn{
    justify-content: center;
}
.model-detail{
    margin: 10% auto;
    max-height: 550px;
}
}
@media screen and (max-width:768px){
.softInfo{
    /* width: 290px; */
    flex-wrap: wrap;
}
.softInfo .input_group{
    width: 50%;
}
.searchBtn{
    justify-content: center;
}
.model-detail{
    margin: 15% auto;
    max-height: 500px;
}
}
@media screen and (max-width:550px){
.input_group select,
.input_group input{
    width: 150px;
}
.searchBtn{
    justify-content: center;
}
.model-detail{
    margin: 19% auto;
    max-height: 500px;
}
}