.main {
	margin: 50px auto 90px auto;
}
/* ===========================
   筛选
=========================== */
.by-job-filter-box {
	background: #fff;
	border: 1px solid #efefef;
	padding: 16px 15px 15px 15px
}

.by-job-filter-row {
	display: flex;
	align-items: flex-start
}

.by-job-filter-title {
	width: 70px;
	padding-top: 11px;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	align-items: center
}

.by-job-filter-title i {
	margin-right: 5px;
	color: #00b578
}

.by-job-filter-select {
	flex: 1;
	position: relative
}

.by-job-filter-current {
	height: 46px;
	border: 1px solid #e5e5e5;
	border-radius: 5px;
	padding: 0 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer
}

.by-job-filter-current-text {
	font-size: 15px
}

.by-job-filter-current i {
	transition: .25s
}

.by-job-filter-select.open .by-job-filter-current i {
	transform: rotate(180deg)
}

.by-job-filter-dropdown {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
	top: 54px;
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 5px;
	box-shadow: 0 8px 24px rgba(0,0,0,.08);
	max-height: 300px;
	overflow: auto;
	z-index: 99
}

.by-job-filter-select.open .by-job-filter-dropdown {
	display: block
}

.by-job-filter-dropdown ul {
	list-style: none
}

.by-job-filter-dropdown a {
	display: block;
	padding: 14px 16px;
	text-decoration: none;
	color: #333
}

.by-job-filter-dropdown a.active, .by-job-filter-dropdown a:hover {
	background: #eef8f0;
	color: #00b578
}


/* 租房列表 */

.rent-list {
	width: auto;
	margin: 0 0 10px 0;
	background: #fff;
	border-top: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
	overflow: hidden;
	box-shadow: none;
	list-style: none;
}

/* 每条 */

.rent-item {
	display: flex;
	gap: 14px;
	padding: 15px;
	border-bottom: 1px solid #f3f3f3;
}

.rent-item:last-child {
	border-bottom: none;
}

/* 图片 */

.rent-thumb {
	width: 110px;
	height: 82px;
	flex-shrink: 0;
}

.rent-thumb a {
	display: block;
	width: 100%;
	height: 100%;
}

.rent-thumb img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 3px;
}

/* 无图片 */

.rent-item.no-image .rent-thumb {
	display: none;
}

/* 内容 */

.rent-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

/* 标题 */

.rent-title a {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 17px;
	color: #333;
	text-decoration: none;
    margin-top: -1px;
}

/* 房源信息 */

.rent-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 10px 0 12px;
	font-size: 14px;
	color: #666;
}

.no-image .rent-meta {
	margin: 10px 0 14px;
}

.rent-list-sep {
	color: #ddd;
}

/* 地址 */

.rent-location {
	display: flex;
	align-items: center;
	color: #666;
	text-decoration: none;
}

.rent-location i {
	margin-right: 4px;
	font-size: 13px;
	color: #999;
}

/* 底部 */

.rent-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.rent-price {
	font-size: 15px;
	font-weight: 700;
	color: #ff5b22;
    margin-top: -4px;
}

.rent-time {
	font-size: 14px;
	color: #999;
	white-space: nowrap;
}

.rent-zuixin-title {
    padding: 16px 0 16px 15px;
    font-weight: bold;
    font-size: 17px;
    border-top: 1px solid #f3f3f3;
	background: #fff;
	margin-top: 10px;
}