.filterBar{
    z-index: 999;
    height: 45px;
    flex-shrink: 0;
    position: sticky;
    top:0;
}
.scroll-area{
    overflow: hidden;
    height: 45px;
}
.filterBar .scroll{
    width: 100%;
    height: 55px; /* 固定高度（关键！避免高度自适应导致卡顿） */
    white-space: nowrap; /* 防止子元素换行 */
    -webkit-overflow-scrolling: touch; /* 优化iOS滚动流畅度 */
    border-bottom:1px solid #f5f5f5;
    border-top:1px solid #f5f5f5;
    background-color: #fff;
    box-sizing: border-box;
    overflow-x: auto;
}
.filterBar .item{
    display: inline-block;
    height: 100%;
    padding: 0 10px;
    line-height: 45px;
}
.filterBar .item .parent .iconfont{
    display: inline-block;
    font-size:14px;
    line-height: 14px;
    margin-left:5px;
    color:#e84027;
    transition: all .2s ease;
}
.filterBar .item .parent.on{
    color:#e84027;
}
.filterBar .item .parent.on .iconfont{
    transform: rotate(180deg);
}

.filterBar .child{
    background-color: #fff;
    position: absolute;
    left:0;
    top:60px;
    width:100%;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    opacity: 0;
    visibility: hidden;
}
.filterBar .child.active{
    opacity: 1;
    visibility: visible;
    top:45px;
}
.filterBar .child .select{
    display: flex;
    flex-wrap: wrap;
    padding:5px;
}
.filterBar .child .select .option{
    display: flex;
    align-items: center;
    border:1px solid #eee;
    margin:5px;
    padding:6px 10px;
    border-radius: 3px;
    font-size:16px;
}
.filterBar .child .select .option:active{
    background-color: #fafafa;
}
.filterBar .child .select .option .label{
    margin-right:5px;
    color:#666;
}
.filterBar .child .select .option .input .iconfont{
    font-size:20px;
    color:#999;
    display: block;
}
.filterBar .child .select .option .input .icon-checkbox-on,.filterBar .child .select .option .input .icon-radio-on{
    color:#f60;
}

.filterBar .child .bottom{
    border-top:1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:6px 15px;
}
.filterBar .child .bottom .tip{
    color:#666;
}
.filterBar .child .bottom .btns{
    display: flex;
}
.filterBar .child .bottom .btns .submit{
    background-color: #f60;
    color:#fff;
    padding:10px  15px;
    border-radius: 5px;
    margin-left:15px;
}
.filterBar .child .bottom .btns .cancel{
    background-color: #fff;
    color:#999;
    padding:8px 15px;
    border-radius: 5px;
    border:1px solid #eee;
    box-sizing: border-box;
}
.filterBar .child .bottom .btns .cancel:active{
    background-color: #fafafa;
}

.filterBar_bg{
    position: fixed;
    width:100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 998;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    visibility: hidden;
    opacity: 0;
}
.filterBar_bg.active{
    visibility: visible;
    opacity: 1;
}

.filterBar_val{
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    padding:2px;
    position: sticky;
    top:45px;
    z-index: 99;
}
.filterBar_val .item{
    border:1px solid #a0cfff;
    background-color:#ecf5ff;
    color:#409eff;
    padding:4px 6px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    margin:5px;
}
.filterBar_val .item .iconfont{
    font-size:12px;
    line-height: 12px;
}
.filterBar_val .item:active{
    background-color: #fff;
}
.filterBar_val .reset{
    color:#f56c6c;
    border-color: #fab6b6;
    background-color: #fef0f0;
}
.list{
    height: 100%;
    overflow: hidden;
}
.list .scroll-container{
    height: 100%;
}
.list .content{
    display: flex;
    flex-wrap: wrap;
}
.list .content .col{
    width:33.333%;
    overflow: hidden;
    box-sizing: border-box;
}
.list .content .col1{
    padding:0 1px;
    box-sizing: border-box;
}
.list .content .item .imgbox{
    margin-bottom: 1px;
}
.list .content .item .img{
    width:100%;
    display: block;
}


.loading{
    padding: 15px;
    text-align: center;
}

.is_end{
    text-align: center;
    font-size:15px;
    padding: 15px;
    color:#999;
}

