/*列表页筛选条件条（二手房/租房/小区列表共用）*/
.condition{
    width: 1200px;
    background-color: #FBFBFB;
    margin: 10px auto 0;
    font-size: 12px;
    box-shadow: 0 1px 2px -1px rgba(0,0,0,0.2);
    padding-bottom: 8px;
}
.cond_row{
    padding: 10px 20px;
    overflow: hidden;
}
.cond_label{
    float: left;
    width: 56px;
    font-weight: 600;
    color: #394043;
    line-height: 30px;
}
.cond_body{
    margin-left: 56px;
    overflow: hidden;
}
.cond_link{
    display: inline-block;
    padding: 0 12px;
    line-height: 28px;
    margin: 0 6px 2px 0;
    color: #394043;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
}
.cond_link:hover{
    color: #fa5741;
}
.cond_link.active{
    color: #fff;
    background: #fa5741;
}
.cond_input{
    box-sizing: border-box;
    width: 260px;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    font-size: 13px;
    color: #333;
    vertical-align: middle;
    outline: none;
}
.cond_input:focus{
    border-color: #fa5741;
}
.cond_btn{
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 18px;
    margin-left: 8px;
    background: #fa5741;
    color: #fff;
    border-radius: 3px;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
}
.cond_btn:hover{
    background: #e84a35;
}
