.search-layout{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
}
.search-box{
    width: 100%;
    height: 0.7rem;
    border-radius:6px;
    box-shadow: 0px 2px 5px #ccc;
    display: flex;
    background: #ffffff;
}
.search-box img{
    margin-left: 0.22rem;
    margin-top: 0.2rem;
    margin-right: 0.16rem;
    width: 0.3rem; /*设置图片显示的宽*/
    height: 0.3rem; /*图片显示的高*/
}
.search-box input{
    border: 0;
    outline: 0;
    background: none;
    flex: 1;
    height: 0.68rem;
}
.search-btn{
    background: #ca7cf0;
    line-height: 200%;
    padding: 0 10px;
    border-radius: 0 6px 6px 0;
    color: #fff;
}
.tabBox{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    background-color: #e3e3e3;
    line-height: 200%;
}
.tabBox p{
    width: 60px;
    text-align: center;
}
.tabBox .active{
    border-bottom: 2px #000 solid;
}
.search-list{
    width: 100%;
    flex: 1;
    overflow: auto;
    margin-top: 10px;
}