/*容器重置*/
.main{
    margin-top: 101px;
}
/**/
#initBar,#searDesc{
    display: none;
}
.show{
    display: block!important;
}
/* 搜索栏 */
.searchBar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eaeaea;

    width: 100%;
    position: fixed;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background-color: #fff;
}
@media only screen and (min-width: 1000px) {
    .searchBar{
      width: 550px;
    }
  }
.inputLeft{
    width: calc(100% - 72px);
    padding: 0 8px;
    height: 35px;
    background-color: #f4f4f5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: start;
}
.inputLeft img{
    margin-right: 7px;
    width: 16px;
    height: 16px;
}
.inputLeft input{
    width: calc(100% - 23px);
    font-size: 14px;
    color: #666;
    background-color: transparent;
}
.buttonRight{
    width: 62px;
    height: 35px;
}
.buttonRight button{
    display: none;
    border: 1px solid #eaeaea;
    width: 100%;
    height: 35px;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
}
.buttonRight button.primary{
    border: 1px solid #FFDD2B;
    background-color: #FFDD2B;
}
/* 标题 */
.title{
    padding: 15px 15px 0 15px;
    line-height: 19px;
    font-size: 14px;
    color: #999;
}
/* 推荐搜索 */
.recommendBar{
    margin-top: 15px;
    padding: 0 6px;
    display: flex;
    flex-wrap: wrap;
}
.recommendBar span{
    width: auto;
    padding: 0 9px;
    margin-bottom: 8px;
   
}
    .recommendBar button {
        border: 1px solid #eaeaea;
        display: inline-block;
        width: 100%;
        height: 35px;
        padding: 0 9px;
        text-align: center;
        border-radius: 4px;
        font-size: 14px;
        background-color: #fff;
    }
/* 纵向列表 */
.directionList{
    position: relative;
}

.directionList li{
    border-bottom: 1px solid #eaeaea;
    padding: 22px 15px 24px;
}

.directionList li a{
    display: flex;
    justify-content: space-between;
}
.directionList img{
    border-radius: 5px;
    width: 90px;
    height: 90px;
}
.directionList h3{
    font-size: 18px;
    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% - 98px);
}
.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;
}