
/* 搜索 */
.search_bar{
    padding:10px 10px 5px 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.search_bar .reset{
    flex-shrink: 0;
    margin-left: 6px;
    color:#fff;
    height: 40px;
    line-height: 40px;
    border-radius: 40px;
    padding:0 15px;
    font-size:16px;
    background: linear-gradient(135deg, #808080, #4d4d4d);
}

.search_bar .filter {
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #fff;
    border: 1px solid #ececec;
    border-radius: 9999px;
    padding:4px;
}

.search_bar .filter .fake_input {
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    box-sizing: border-box;
    padding:0 4px;
    box-sizing: border-box;
    word-break:break-all;
    display:-webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.search_bar .filter .fake_input input{
    width:100%;
    border:none;
    padding-left:5px;
}
.search_bar .filter .iconfont {
    width: 80px;
    height: 36px;
    color: #fff;
    background-color: #e84027;
    font-size: 22px;
    font-weight: bold;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list{
    padding:0 5px;
}
.list .item{
    background-color: #fff;
    margin:5px;
    border-radius: 5px;
    overflow: hidden;
}
.list .item:active{
    background-color: #f5f5f5;
}
.list .item .user{
    display: flex;
    align-items: center;
    padding:15px 15px 5px 15px;
}
.list .item .user .headimg{
    height: 40px;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 5px;
}
.list .item .user .headimg img{
    width:100%;
    height: 100%;
}
.list .item .user .info .nickname{
    font-size: 15px;
}
.list .item .user .info .mobile{
    color:#999;
    font-size:14px;
}
.list .item .content{
    padding:10px 15px;
}
.list .item .time{
    color:#999;
    padding:10px;
    font-size:13px;
}
.list .item .share{
    padding:10px 15px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    width:100%;
}
.list .item .share .text{
    font-weight: normal;
}
.list .item .share .icon{
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

.list .item .imgs{
    padding:5px 10px;
    display: flex;
    flex-wrap: wrap;
}
.list .item .imgs .img{
    width:100px;
    height:100px;
    margin:3px;
    border-radius: 3px;
    overflow: hidden;
}
.list .item .imgs .img img{
    width:100%;
    height: 100%;
}
.list .item .btns{
    display: flex;
}
.list .item .btns button{
    border:none;
}

.loading{
    text-align: center;
    padding: 10px;
}
.is_end{
    text-align: center;
    padding: 10px;
    color:#999;
}

.postPurchase{
    position: fixed;
    bottom:120px;
    right:10px;
    background-color: #F44336;
    color:#fff;
    width:35px;
    height: 35px;
    padding: 10px;
    border-radius: 50%;
    font-size: 15px;
    line-height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    letter-spacing: 1px;
}
.postPurchase .t:first-child{
    margin-bottom: 3px;
}
