/* 主体 */

.byz-list-main {
	display: flex;
	gap: 20px;
}

.byz-list-right {
	width: 300px;
}

/* 结合项 */
.filter-box {
	width: 1200px;
	margin: 0 auto 20px auto;
	background: #fff;
	border: 1px solid #ececec;
	overflow: hidden;
}

.filter-row {
	display: flex;
	padding: 18px 22px;
	border-bottom: 1px solid #f3f3f3;
}

.filter-row:last-child {
	border-bottom: none;
}

.filter-title {
	width: 90px;
	flex-shrink: 0;
	display: flex;
	transform: translateY(6px);
	color: #666;
	font-size: 15px;
	font-weight: 600;
}

.filter-title i {
	color: #00b578;
	font-size: 16px;
	margin-right: 8px;
}

.filter-content {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.filter-item {
	height: 30px;
	line-height: 30px;
	padding: 0 14px;
	border-radius: 18px;
	color: #555;
	text-decoration: none;
	transition: .2s;
	font-size: 14px;
}

.filter-item:hover {
	background: #eef8f0;
	color: #26A44B;
}

.filter-item.active {
	background: #00b578;
	color: #fff;
}

/* 房产列表 */

.house-list {
	width: 880px;
	box-shadow: 0 0 0 1px #f1f1f1;
	margin: 0 auto;
	list-style: none;
	background: #fff;
	overflow: hidden;
}
/* 每条 */

.house-item {
	display: flex;
	gap: 18px;
	padding: 20px;
	border-bottom: 1px solid #f2f2f2;
	transition: .2s;
}

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

.house-item:hover {
	background: #fafcff;
}
/* 图片 */

.house-thumb {
	width: 150px;
	height: 110px;
	flex-shrink: 0;
}

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

.house-thumb img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 2px;
}
/* 无图片 */

.house-item.no-image .house-thumb {
	display: none;
}
/* 内容 */

.house-content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}
/* 标题 */

.house-title {
}

.house-title a {
	color: #222;
	font-size: 17px;
	line-height: 1.9;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.house-title a:hover {
	color: #ff6600;
}
/* 房源信息 */

.house-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 14px;
	color: #666;
	margin: 13px 0 21px 0;
}

.no-image .house-title a {
	line-height: normal;
}

.no-image .house-meta {
	margin: 17px 0 21px 0;
}

.house-list-sep {
	margin: 0 10px;
	color: #d6d6d6;
}
/* 地址 */

.house-location {
	display: flex;
	align-items: center;
	color: #666;
}

.house-location:hover {
	color: #ff6600;
}

.house-location i {
	margin-right: 3px;
	font-size: 13px;
}
/* 底部 */

.house-bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.house-price {
	font-size: 17px;
	line-height: 1;
	color: #ff5b22;
}

.house-time {
	color: #999;
	font-size: 13px;
}


/* 右侧模块 */

.right-box {
	background: #fff;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 0 0 1px #f1f1f1;
}

.byz-home-topic-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.byz-home-module-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.byz-home-more {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #999;
	font-size: 14px;
}

.byz-home-more:hover {
	color: #08c26e;
}

.byz-home-more i {
	font-size: 12px;
}


/* 常见问题 */
.job-qa {
	list-style: none;
	padding: 0 0 5px;
}

.job-qa a {
	display: block;
	margin-bottom: 18px;
	font-size: 15px;
	text-decoration: none;
}

.job-qa a:last-child {
	margin-bottom: 0;
	color: #f60;
}

.job-qa a:hover {
	text-decoration: underline;
}

/* 联系客服 */
.by-business {
	margin-bottom: 15px;
}

.by-business-btn {
	width: 300px;
	height: 62px;
	background: #ff6a00;
	color: #fff;
	border-radius: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 600;
	transition: background .2s;
	box-sizing: border-box;
}

.by-business-btn:hover {
	background: #f35f00;
	color: #fff;
}

.by-business-btn i {
	font-size: 25px;
}

.by-business-btn span {
	line-height: 1;
}

/* 广告 */

.adia-box {
	padding: 0;
	margin-bottom: 20px;
}

.adia-box img {
	width: 100%;
	display: block;
}

/* 手机 */

@media(max-width:768px) {
	.byz-list-main {
		flex-direction: column;
	}

	.byz-list-left, .byz-list-right {
		width: 100%;
	}
}