
.sort-page .sort-search {
    height: 50px;
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    top: 0;
}

.sort-page .sort-search input {
    background: #f3f4f6;
    border: 1px solid #ebebeb;
    width: 90%;
    height: 30px;
    border-radius: 5px;
    background: url("../images/search.svg") no-repeat 10px center;
    background-size: 16px 16px;
    text-indent: 35px;
}

.sort-page .content {
    display: none;
    text-align: center;
}

.sort-page .content-item {
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
}
.sort-page .content-list{
    width: 48%;
    margin: 5px 0;
}
.sort-page .content-list:nth-of-type(2n){
    margin-left:2%;
}
.sort-page .content-list:nth-of-type(2n+1){
    margin-right:2%;
}
.sort-page  .content_tit{
    font-weight: bold;
}
.sort-page .content-item img{
    /*width: 60px;*/
    /*height: 60px;*/
    width: 100%;
    height: 100%;
}
.sort-page .wrapper-left ul li {
    margin: 0px auto;
    text-align: left;
}
.sort-page .content-list .content-list-name{
    color:#000;
}
.sort-page .wrapper-left .tab_active {
    color: #007aff;
    font-weight: bold;
    border-right: 3px solid #007aff;
}

.sort-page .wrapper-left .active{
    color: #007aff;
}

.sort-page .wrapper-right {
    padding: 20px 15px 60px 15px;
    margin-left: 35%;
    margin-top: 50px;
}

.sort-page .wrapper-left {
    position: fixed;
    height: 100%;
    top: 51px;
    width: 35%;
}
.sort-search-page{
    position: fixed;
    top: 0;
    background: #ffffff;
    height: 100%;
    width: 100%;
    z-index: 102;
}
.sort-search-page .sort-search input {
    border: 1px solid #ebebeb;
    width: 72%;
    height: 30px;
    border-radius: 5px;
    background: #eeeeee;
    background-size: 16px 16px;
    text-indent: 35px;
    margin-left: 5%;
}
.sort-search-page .sort-search {
    height: 50px;
    width: 100%;
    background: #ffffff;
    position: relative;
    display: flex;
    align-items:  center;
}
.sort-search-page .sort-search .iconfont{
    position: absolute;
    top: 18px;
    left: 30px;
}
.sort-search-page .sort-search  .cancel{
   margin-left: 10px;
    cursor: pointer;
}
.sort-search-page .search-content{
    padding: 10px 5%;
    width: 90%;
}
.sort-search-page .search-content-tit{
    font-size: 16px;
    margin-bottom: 20px
}
.sort-search-page .search-content-tag ul{
    display: flex;
    flex-wrap: wrap;
}
.sort-search-page .search-content-tag li{
    background: #eeeeee;
    padding: 5px 10px;
    margin: 5px;
}
.sort-search-page .search-content-tag li a{
    color:#000;
}
.sort-search-page .search-content-tag li +li{

}




/*一级*/
.left-menu{
    width: 100%;
    height: calc(100vh - 98px);
    overflow-y: auto;
    transition: all 0.5s;
}
.left-menu::-webkit-scrollbar{
  display:none;
}
/*.left-menu::-webkit-scrollbar{
    width:5px;
    border-radius:25px;
    background-color:#dcdcdc;
}

.left-menu::-webkit-scrollbar-thumb{
    background-color:#aaaaaa;
}

.left-menu:hover::-webkit-scrollbar-thumb{
    background-color:var(--color1);
}*/

.left-menu>ul{
  margin-left:20px;
}
.left-menu>ul>li{
    position: relative;
}
.left-menu>ul>li>a{
  color: #2e2e2e;
  padding: 16px 0;
  display:block;
}
.left-menu>ul>li>a:hover{
    color:#0c88e6;
}
/*二级以下*/
.left-menu>ul>li ul{
    padding-left:8px;
    display:none;
}
.left-menu>ul>li ul li{
    position: relative;
}
.left-menu>ul>li ul li a{
  color: #2e2e2e;
  padding: 16px 0;
  display:block;
}
.left-menu>ul>li ul li a:hover{
    color:#0c88e6;
}