body{
    background-color: #F6F6F6;
}
/* 搜索框 */
.searchPart{
    width: 100%;
    height: 1.2rem;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 0.3rem;
}
.searchPart>.goHome{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.searchPart>.goHome>svg{
    width: 0.4rem;
    height: 0.37rem;
    color: var(--themeColorA);
}
.searchPart>.goHome>p{
    font-size: 0.2rem;
    color: var(--themeColorA);
    line-height: 1em;
    margin-top: 0.1rem;
}
.searchPart>svg{
    width: 0.46rem;
    height: 0.46rem;
    color: #BBBBBB;
}
.searchPart>.inputs{
    width: 5.58rem;
    height: 0.6rem;
    border: none;
    background-color: #F9F9F9;
    color: #999999;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    border-radius: 0.3rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0.4rem;
}
.searchPart>.inputs>svg{
    width: 0.3rem;
    height: 0.3rem;
    color: #333333;
}
.searchPart>.inputs>input{
    margin-left: 0.2rem;
    width: 4.2rem;
    height: 0.36rem;
    font-size: 0.2rem;
    border: none;
    background: none;
}

/* 排序部分 */
.sortPart{
    width: 100%;
    height: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    margin-bottom: 0.2rem;
    background-color: white;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 1.2rem;
    z-index: 1000;
}
.sortPart .item{
    width: 0.8rem;
    height: auto;
    display: flex;
    align-items: center;
}
.sortPart .item>p{
    font-size: 0.3rem;
    line-height: 1em;
    color: #999999;
}
.sortPart .item>.arrows{
    width: 0.1rem;
    height: auto;
    margin-left: 0.07rem;
}
.sortPart .item>.arrows>svg{
    display: block;
    width: 0.1rem;
    height: 0.1rem;
    color: #EEEEEE;
}
.sortPart .item>.arrows>svg.arrowdown{
    margin-top: 0.02rem;
}
.sortPart .item.active>p{
    color: var(--themeColorA);
}
.sortPart .item>.arrows.asc>.arrowup{
    color: var(--themeColorA);
}
.sortPart .item>.arrows.desc>.arrowdown{
    color: var(--themeColorA);
}

/* 筛选框 */
.filters{
    width: 6.5rem;
    height: 100%;
    position: fixed;
    top: 0;
    right: -6.5rem;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    z-index: 5001;
    background-color: white;
    padding-top: 0.86rem;
    padding-left: 0.4rem;
}
.filtersMask{
    width: 100%;
    height: 100%;
    filter: alpha(Opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
    background-color: #000;
    z-index: 5000;
    position: fixed;
    top: 0;
    left: 0;
}
.filters.active{
    right: 0;
}
.filters .title{
    width: 100%;
    font-size: 0.26rem;
    color: #333333;
    font-weight: bold;
    line-height: 0.74rem;
}
.filters .content{
    width: 100%;
    height: auto;
    margin-bottom: 0.15rem;
    display: flex;
    align-items: center;
}
.filters .content .bar{
    width: 0.6rem;
    height: 0.01rem;
    min-height: 1px;
    background-color: #CCCCCC;
    margin: 0 0.2rem;
}
.filters .content .filtersBtn{
    width: 2.4rem;
    height: 0.6rem;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    border-radius: 0.3rem;
    background-color: #F6F6F6;
    font-size: 0.24rem;
    color: #999999;
    line-height: 0.6rem;
    text-align: center;
}
.filters .content .filtersBtn.active{
    background-color: var(--themeColorA);
    color: white;
}
.filters .manuGroup{
    width: 100%;
    height: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 0.5rem;
}
.filters .manuGroup>div{
    width: 2rem;
    height: 0.6rem;
    -webkit-border-radius: 0.3rem;
    -moz-border-radius: 0.3rem;
    border-radius: 0.3rem;
    font-size: 0.26rem;
    font-weight: bold;
    line-height: 1em;
    color: white;
    letter-spacing: 0.1rem;
    text-indent: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.filters .manuGroup>div.resetBtn{
    background-color: var(--themeColorC);
}
.filters .manuGroup>div.confirmBtn{
    background-color: var(--themeColorA);
    margin-left: 0.5rem;
}
