/*搜索*/
.search {
    background-color: rgba(0, 0, 0, 0);
    width: 1300px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
/*输入框*/
.searchIpt{
    display: flex;
    width: 800px;
    height: 52px;
    border-radius: 26px;
    margin-bottom: 31px;
}
.searchIpt input{
    flex: 1;
    outline: none;
    padding-left: 26px;
    border: 2px solid #ff6d10;
    border-radius: 26px 0 0 26px;
    font-size: 15px;
    color: #444
}
.searchIpt span{
    width: 120px;
    background: #ff6d10;
    border-radius: 0 100px 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 20px;
    cursor: pointer;
}
.searchIpt span:hover{
    opacity: 0.9;
}
.searchIpt span img{
    width: 19px;
    height: 18px;
    margin-right: 9px;
}
/*筛选条件*/
.search-title{
    width: 1298px;
    height: 44px;
    background: #FCFCFC;
    margin: auto;
    display: flex;
    align-items: center;
}
.search-title span{
    margin-left: 24px;
    width: 60px;
    height: 14px;
    font-size: 15px;
    color: #333333;
    line-height: 14px;
}
.search-container{
    width: 1300px;
    margin: auto;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px;
}
.search-container .provinceWrapper{
    margin-top: 20px;
}
.search-container .select-wrapper {
    margin-bottom: 3px;
}
.search-container .select-wrapper.widthFix .select-content {
    width: auto;
}
.search-container .select-wrapper .select-label {
    width: 86px;
    font-size: 14px;
    color: #666666;
    margin-top: 3px;
}
.search-container .select-wrapper .select-province{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
}
.search-container .select-wrapper .select-province li{
    display: inline-block;
    margin: 2px 30px 10px 2px;
    white-space: nowrap;
    overflow: hidden;
    height: 24px;
    color: #333333;
    cursor: pointer;
}
.search-container .select-wrapper .select-province li:first-child{
    margin: 2px 17px 2px 2px;
}
.search-container .select-wrapper .select-province .select-focus{
    color: #fff;
    background: #ff6d10;
    border: 1px solid #ff6d10;
    padding: 4px 10px 4px 10px;
    font-size: 14px;
    line-height: 14px;
    margin-top: -1px !important;
    border-radius: 16px;
    box-sizing: border-box;
}
/*信息列表*/
.list{
    width: 1300px;
    margin: 20px auto 0;
    padding-bottom: 20px;
}
.list > .title {
    height: 64px;
    font-size: 15px;
    font-weight: bold;
    color: #333333;
    background: #FCFCFC;
    border-radius: 5px 5px 0 0;
    padding: 22px 20px 22px 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.list > ul > li > a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    background: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
}
.list > ul > li > a:hover{
    color: #ff6d10;
    background: #F6FAFE !important;
}
.list > ul > li > a > span {
    display: block;
}
.list > ul > li > a > span.name{
    width: 230px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #ff6d10;
}
.list > ul > li > a > span.date{
    width: 90px;
}
.list > ul > li > a > span.title{
    width: 600px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.list > ul > li > a > span.money{
    width: 193px;
}
.list > ul > li > a > div.area{
    width: 60px;
}
.list > ul > li > a > div.area > span{
    padding: 2px 5px;
    font-size: 12px;
    color: #ff6d10;
    border: 1px solid #ff6d10;
    border-radius: 2px;
}