/**/
#initBar,#searDesc{
    display: none;
}
.show{
    display: block!important;
}
.pageContent{
    display: flex;
    justify-content: space-between;
    height: calc(100vh - 90px);
    overflow: hidden;
}
/* tab栏 */
.tabBar{
    width: 74px;
    background: #F3F4F5;
}
.tabBar li {
    border-left: 5px solid #F3F4F5;
    border-right: 5px solid #F3F4F5;
    height: 49px;
    overflow: hidden;
    margin-bottom: 3px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 14px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
}
.tabBar li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100%;
}
.tabBar li span {
    line-height: 18px;
    display: inline-block;
    height: 36px;
    width: 36px;
    overflow: hidden;
    word-wrap: break-word;
    word-break: normal;
}
.tabBar li.active {
    border-left: 5px solid #FFE640;
    border-right: 5px solid #fff;
    font-size: 16px;
    font-weight: bold;
    color: #212121;
    background-color: #fff;
}
/* 列表部分 */
.listContent{
    width: calc(100% - 74px);
}
/* 标题栏 */
.titleBar{
    position: relative;
    padding: 0 16px;
    width: 100%;
    height: 49px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}
.titleBar.fixed{
    position: fixed;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin-top: 0;
    background-color: #fff;
}
@media only screen and (min-width: 1000px) {
    .titleBar.fixed{
        width: 550px;
    }
  }
.titleBar h2{
    font-size: 14px;
    color: #666;
}
.titleBar h2 span{
    color: #5DA7F1;
}
.titleBar a{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.titleBar a img{
   width: 10px;
   height: 5px;
   margin-left: 5px;
}
.titleBar a span{
    margin-left: 5px;
    font-size: 14px;
    color: #666;
}
/* 下拉框 */
#selectList{
    display: none;
    background-color: #fff;
    position: absolute;
    width: 100%;
    top: 49px;
    left: 0;
    z-index: 10;
    /* padding: 0 15px; */
}
.titleBar.fixed #selectList{
    position: fixed;
    width: 100%;
    top: 49px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    
}
#selectList.show{
    display: block;
}
#selectList li{
    line-height: 44px;
    border-bottom: 1px solid #eaeaea;
    font-size: 14px;
    color: #333;
    text-align: center;
}
#selectList li.active{
    color: #5DA7F1;
}
#selectList li:last-child{
    border-bottom: 0;
}
@media only screen and (min-width: 1000px) {
    #selectList{
        width: 456px;
    }
  }
/* 纵向列表 */
.directionList{
    position: relative;
    height: calc(100vh - 143px);
    overflow-y: scroll;
}
.directionList #mask{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.3);
    z-index: 5;
}
.directionList #mask.show{
    display: block;
}
.directionList li{
    border-bottom: 1px solid #eaeaea;
    padding: 16px 15px 16px 13px;
}
.directionList li a{
    display: flex;
    justify-content: space-between;
}
.directionList img{
    border-radius: 5px;
    width: 80px;
    height: 80px;
}
.directionList h3{
    font-size: 16px;
    color: #333;
    font-weight: bold;
    overflow: hidden;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 设置最大显示行数 */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}
.directionList span{
    margin-right: 8px;
    display: inline-block;
    position: relative;
    width: calc(100% - 88px);
}
.directionList p{
    font-size: 12px;
    color: #999;
    white-space: nowrap;
    overflow: hidden; 
    text-overflow: ellipsis; 
}
.directionList span p:last-child{
    position: absolute;
    bottom: 0;
}
.directionList .desc{
    padding: 20px;   
    line-height: 40px;
    font-size: 12px;
    color: #999;
    text-align: center;
}