* {
	margin: 0;
	padding: 0;
}

body {
	background: #F8FBFF;
}




/* 筛选 */
.filter{
	width: 16rem;
	background: #FFFFFF;
	border-radius: 0.1rem;
	padding: 0.38rem 0.55rem 0.37rem 0.26rem;
	box-sizing: border-box;
	margin: 0 auto;
}
.filter .main{
    width: 100%;
}
.filter_list{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 0.38rem;
	position: relative;
	padding-right: .4rem;
	height: .35rem;
    overflow: hidden;
}
.moreBtn{
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
.filter_list:last-child{
	margin-bottom: 0;
}
.filter_list .filter_title{
	width: 0.95rem;
	font-weight: bold;
	font-size: 0.2rem;
	color: #000000;
}
.filter_list .filter_key{
	width: calc(100% - 0.95rem);
	display: flex;
	flex-wrap: wrap;
}
.filter_list .filter_key span{
	font-weight: 400;
	font-size: 0.18rem;
	color: #000000;
	margin-right: 0.55rem;
	margin-bottom: 0.15rem;
	display: block;
	cursor: pointer;
}
.filter_list .filter_key span.on,
.filter_list .filter_key span:hover{
	color: #C91420;
}





/* 列表 */
.hire_name{
	width: 100%;
	font-weight: bold;
	font-size: 0.35rem;
	color: #000000;
	line-height: 0.25rem;
	text-align: center;
	margin-top: 1.02rem;
	margin-bottom: 0.59rem;
}

.list_item{
	width: 100%;
	min-height: 2rem;
	background: #FFFFFF;
	border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 0.3rem;
	padding: 0 0.26rem;
	box-sizing: border-box;
}
.list_item:last-child{
	margin-bottom: 0;
}
.list_item .hire_fl{
	padding-top: 0.32rem;
	padding-bottom: 0.4rem;
	box-sizing: border-box;
}
.list_item .hire_fl .hire_title{
	font-weight: bold;
	font-size: 0.24rem;
	color: #000000;
	margin-bottom: 0.17rem;
}
.list_item .hire_fl .hire_txt{
	font-weight: 400;
	font-size: 0.16rem;
	color: #414141;
	line-height: 0.35rem;
	margin-bottom: 0.27rem;
}
.list_item .hire_fl .hire_txt span{
	margin-right: 0.26rem;
}
.list_item .hire_fl .hire_num{
	font-weight: 400;
	font-size: 0.25rem;
	color: #FF0011;
	line-height: 0.35rem;
}
.list_item .hire_f .hire_show{
	padding: 0.32rem 0.26rem;
	box-sizing: border-box;
}
.list_item .hire_fr .hire_show .hire_nuit{
	font-weight: 400;
	font-size: 0.2rem;
	color: #000000;
	line-height: 0.35rem;
	margin-bottom: 0.19rem;
	text-align: right;
}
.list_item .hire_fr .hire_show .hire_address{
	font-weight: 400;
	font-size: 0.16rem;
	color: #818181;
	line-height: 0.35rem;
	margin-bottom: 0.18rem;
	display: flex;
	align-items: center;
	justify-content: right;
}
.list_item .hire_fr .hire_show .hire_address i{
	width: 0.14rem;
	height: 0.2rem;
	background: url(../img/address.png) center no-repeat;
	background-size: cover;
	display: block;
	margin-right: 0.08rem;
}
.list_item .hire_fr .hire_show .hire_more{
	width: 1.3rem;
	height: 0.5rem;
	border-radius: 0.1rem;
	border: 0.01rem solid #004098;
	line-height: 0.5rem;
	text-align: center;
	color: #004097;
	font-weight: bold;
	font-size: 0.16rem;
	float: right;
	cursor: pointer;
}
.list_item .hire_fr .hire_show .hire_more:hover{
	border: 0.01rem solid #C91420;
	background: #C91420;
	color: #fff;
}
.list_item .hire_fr .hire_hide{
	width: 1.49rem;
	height: auto;
	text-align: center;
	display: none;
}
.list_item .hire_fr .hire_hide img{
	width: 1.49rem;
	height: 1.49rem;
}
.list_item .hire_fr .hire_hide span{
	font-weight: 400;
	font-size: 0.14rem;
	color: #C91420;
	line-height: 0.16rem;
	text-align: center;
}
.list_item .hire_fr.act .hire_show{
	display: none;
}
.list_item .hire_fr.act .hire_hide{
	display: block;
}

@media screen and (max-width:1024px){
    .filter{
        width: 100%;
        padding: 10px;
    }
    .filter_list{
        margin-bottom: 20px;
        height: 20px;
        align-items: flex-start;
    }
    .filter_list .filter_title{
        height: auto;
        font-size: 14px;
    }
    .filter_list .filter_key span{
        font-size: 14px;
    }
    .hire_name{
        font-size: 20px;
        line-height: 1;
        margin: 20px 0;
    }
    .hire_list{
        width: 95%;
        margin: 0 auto;
    }
    .list_item{
        width: 100%;
        flex-direction: column;
        align-items: normal;
        min-height: 0;
        padding: 10px;
    }
    .list_item .hire_fl .hire_title,
    .list_item .hire_fr .hire_show .hire_nuit{
        font-size: 16px;
        text-align: left;
    }
    .list_item .hire_fl .hire_txt span,
    .list_item .hire_fr .hire_show .hire_address,
    .list_item .hire_fr .hire_show .hire_more,
    .list_item .hire_fr .hire_hide span{
        font-size: 14px;
        float: none;
    }
    .list_item .hire_fl .hire_num{
        font-size: 18px;
    }
    .moreBtn{
        font-size: 14px;
    }
    .list_item .hire_fr .hire_hide{
        width: fit-content;
    }
    .list_item .hire_fr .hire_hide img{
        margin: 0 auto;
    }
    .list_item .hire_fr .hire_show .hire_address i{
        width: 14px;
        height: 20px;
        background-size: contain;
    }
    .list_item .hire_fr .hire_show .hire_address{
        justify-content: flex-start;
    }
}
