.filter-forwarder {
	width: 100%;
	background-color: #f6f7fb;
	overflow: hidden; /* 清除浮动  清除下方空白区域*/
	position: relative; /* 创建新的块级格式化上下文 */
}
.forwarder-container {
	width: 90%;
	max-width: 69%;
	box-sizing: border-box;
	margin: 0 auto;
	/*padding-bottom: 4rem;*/
}
/** 筛选 开始 */
.filter-container {
	background-color: #FFFFFF;
	border-radius: 12px;
	padding: 20px;
	margin: 0 0 50px;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.filter-group {
	/*width: 1300px;*/
	margin-bottom: 30px;
}

.filter-header {
	width: 1300px;
	height: 29px;
	border-left: 4px solid #FF6B35;
	padding-left: 15px;
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.filter-icon {
	margin-right: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.filter-title {
	font-size: 20px;
	color: #1A3A6C;
	font-weight: bold;
	display: flex;
	align-items: center;
}

.filter-conditions {
	/*width: 1300px;*/
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.filter-item {
	height: 39px;
	background-color: #F8F9FA;
	border: 1px solid #E2E8F0;
	border-radius: 6px;
	padding: 0 15px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #4A5568;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-item:hover, .filter-item.active {
	background-color: #1A3A6C;
	border-color: #1A3A6C;
	color: #FFFFFF;
}
/** 筛选 结束 */
