body {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans SC', sans-serif;
	background-color: #f6f7fb;
}

:root {
	--primary-color: #1A3A6C;
	--secondary-color: #FF6B35;
	--text-color: #4A5568;
	--light-bg: #E9F0FF;
	--certified-bg: #E6F7EE;
	--certified-text: #0D8A4A;
	--stat-label: #A0AEC0;
	--border-color: #E2E8F0;
	--light-gray: #F5F7FA;
}

/* 初级筛选 开始 */
/*.primary-filter-section {*/
/*	!*width: 1920px;*!*/
/*	width: 100%;*/
/*	height: 128px;*/
/*	background-color: white;*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	align-items: center;*/
/*	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
/*}*/
.primary-filter-section {
	min-height: 128px;  /* 最小高度 */
	height: auto;       /* 高度自适应 */
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	padding: 16px 0;    /* 上下留白 */
}

/*.filters-container {*/
/*	width: 1200px;*/
/*	height: 88px;*/
/*	display: flex;*/
/*	flex-direction: column;*/
/*	justify-content: space-between;*/
/*	margin-left: 15px;*/
/*}*/
.filters-container {
	width: 80%; /* 设置为 % 以适应父容器 */
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0 20rem;
}

.filters-group {
	width: 100%;
	display: flex;
	flex-wrap: wrap; /* 启用换行 */
	align-items: center;
	gap: 16px;
}


.advanced-filter-btn {
	/*width: 80px;*/
	height: 39px;
	border: 1px solid #1A3A6C;
	color: #1A3A6C;
	font-size: 11px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border-radius: 4px;
	padding: 0 10px;
	white-space: nowrap;
	/*margin-right: 16px;*/
}

.advanced-filter-btn i {
	display: flex;
	align-items: center;
	margin-right: 6px;
}

.reset-filter-btn {
	height: 39px;
	border: 1px solid #3f7366;
	color: #1A3A6C;
	font-size: 11px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border-radius: 4px;
	padding: 0 10px;
	white-space: nowrap;
	/*margin-right: 16px;*/
}

.reset-filter-btn i {
	display: flex;
	align-items: center;
	margin-right: 6px;
}

/*.filter-group {*/
/*	height: 39px;*/
/*	display: flex;*/
/*	align-items: center;*/
/*	gap: 8px;*/
/*}*/
.filter-group {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0; /* 防止子项被压缩，确保正常换行 */
}

.filter-group:nth-child(1) {
	width: 138px;
}

.filter-group:nth-child(2) {
	width: 177px;
}

.filter-group:nth-child(3) {
	width: 177px;
}

.filter-group:nth-child(4) {
	/*width: 198px;*/
	width: 232px;
}

.filter-label {
	height: 26px;
	font-size: 16px;
	line-height: 24px;
	color: #4A5568;
	white-space: nowrap;
}

.filter-select {
	height: 39px;
	border: 1px solid #E2E8F0;
	border-radius: 4px;
	padding: 0 12px;
	background-color: white;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%231A3A6C' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 16px 12px;
	padding-right: 32px;
}

.filter-select:nth-child(1) {
	width: 91px;
}

.filter-select:nth-child(2) {
	width: 130px;
}

.filter-select:nth-child(3) {
	width: 98px;
}

.filter-select:nth-child(4) {
	width: 101px;
}
.filter-input {
	width: 130px;
	height: 39px;
	border: 1px solid #E2E8F0;
	border-radius: 4px;
	padding: 0 5px;
	background-color: white;
}

.filters-tags-container {
	width: 1160px;
	height: 34px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.filter-tag {
	height: 34px;
	background-color: #E9F0FF;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	font-size: 14px;
	line-height: 20px;
	color: #1A3A6C;
}

.filter-tag i {
	width: 9px;
	height: 9px;
	margin-left: 8px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* 初级筛选 结束 */

/* 高级筛选 开始================================================================ */
/* 模态框样式 */
.advanced-filter-modal .modal-dialog {
	max-width: 1200px;
}

.advanced-filter-modal .modal-content {
	height: 1128px;
	border-radius: 15px;
	background-color: white;
}

/* 标题部分 */
.section-title {
	width: 1140px;
	height: 29px;
	margin: 0 auto;
	padding: 20px 0 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	line-height: 26px;
	color: var(--primary-color);
}

.section-title-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* 已选条件标签容器 */
.selected-filters-tags {
	width: 1140px;
	min-height: 70px;
	margin: 0 auto 20px;
	padding: 15px;
	background-color: var(--light-bg);
	border-radius: 6px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
}

.filter-tag-senior {
	height: 34px;
	padding: 0 15px;
	background-color: white;
	border-radius: 17px;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	line-height: 20px;
	color: var(--text-color);
}

.filter-tag-senior i {
	width: 9px;
	height: 9px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.filter-tag-senior-remove {
	width: 9px;
	height: 9px;
	cursor: pointer;
}

.filter-group-senior {
	width: 1140px;
	margin: 0 auto 25px;
	position: relative;
	padding-bottom: 25px; /* 为横线留出空间 */
}

.filter-group-senior::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1140px;
	height: 1px;
	background-color: #E2E8F0;
}

.filter-group-senior-title {
	width: 100%;
	height: 29px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	line-height: 26px;
	color: var(--primary-color);
}

.filter-group-senior-title-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.filter-button {
	height: 40px;
	padding: 0 20px;
	background-color: white;
	border: 1px solid var(--border-color);
	border-radius: 30px;
	font-size: 14px;
	line-height: 38px;
	color: #333333;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-button:hover,
.filter-button.active {
	background-color: var(--primary-color);
	color: white;
	border-color: var(--primary-color);
}

.filter-actions {
	width: 1140px;
	height: 47px;
	margin: 40px auto 20px;
	display: flex;
	justify-content: flex-end;
	gap: 15px;
}

.btn-reset {
	width: 145px;
	height: 47px;
	background-color: white;
	border: 1px solid var(--primary-color);
	border-radius: 6px;
	font-size: 15px;
	line-height: 47px;
	color: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.btn-reset-icon {
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-reset:hover {
	background-color: var(--primary-color);
	color: white;
}

.btn-reset:hover .btn-reset-icon i {
	opacity: 0;
}
.btn-reset::after {
	content: '';
	position: absolute;
	width: 18px;
	height: 18px;
	background-image: url('/inc/image/icon/list/reset-white_18.svg');
	background-repeat: no-repeat;
	background-position: center;
	left: 27px; /* 调整图标位置 */
	opacity: 0;
	transition: opacity 0.3s ease;
}
.btn-reset:hover::after {
	opacity: 1;
}

.btn-apply {
	width: 145px;
	height: 47px;
	background-color: var(--secondary-color);
	border: none;
	border-radius: 6px;
	font-size: 15px;
	line-height: 47px;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease;
	position: relative;
}
.btn-apply-icon {
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-apply:hover {
	background-color: #e05a2b; /* 更深的橙色 */
}


.filter-results {
	width: 1140px;
	height: 69px;
	margin: 70px auto;
	background-color: var(--light-gray);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	/*line-height: 26px;*/
	color: var(--text-color);
}

.filter-results-count {
	color: var(--secondary-color);
}

@media (max-width: 1200px) {
	.advanced-filter-modal .modal-dialog {
		margin: 1.75rem auto;
		max-width: 95%;
	}

	.filter-group-senior::after {
		width: 95%;
	}

	.section-title,
	.selected-filters-tags,
	.filter-group-senior,
	.filter-actions,
	.filter-results {
		width: 95%;
	}
}

@media (max-width: 768px) {
	.advanced-filter-modal .modal-content {
		height: auto;
		padding-bottom: 20px;
	}

	.filter-buttons {
		justify-content: center;
	}

	.filter-actions {
		justify-content: center;
		margin-top: 20px;
	}
}
/* 高级筛选 结束================================================================ */


/* 结果信息 开始 */
.result-container {
	width: 100%;
	max-width: 1160px;
	height: 79px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
}

.result-text {
	/*font-family: 'Noto Sans SC', sans-serif;*/
	font-size: 18px;
	line-height: 26px;
	color: #4A5568;
}

.result-number {
	color: #FF6B35;
}

.sort-select {
	width: 130px;
	height: 39px;
	/*font-family: 'Noto Sans SC', sans-serif;*/
	font-size: 14px;
	line-height: 20px;
	color: #4A5568;
	text-align: center;
	border: 1px solid #ced4da;
	border-radius: 4px;
	padding: 0 12px;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234A5568' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sort-select option {
	text-align: center;
}

.sort-select:focus {
	box-shadow: none;
	border-color: #ced4da;
	outline: none;
}
/* 结果信息 结束 */

/* 企业列表+分页 开始 */
/* 企业列表容器 */
.company-list-container {
	/*width: 1200px;*/
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

/* 公司卡片 */
.company-card {
	width: 100%;
	height: auto;
	min-height: 275px;
	background-color: white;
	border-radius: 8px;
	border-left: 2px solid var(--secondary-color);
	margin-bottom: 20px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.border-left-none {
	border-left: none;
}


/* 卡片头部 */
.company-card-header {
	width: 100%;
	height: auto;
	min-height: 106px;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* 公司信息模块 */
.company-info {
	width: 100%;
	max-width: 610px;
	height: 65px;
	display: flex;
	gap: 15px;
	overflow: visible;
}

/* Logo容器 */
.logo-container {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	background-color: var(--light-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.logo-icon {
	width: 35px;
	height: 35px;
	flex-shrink: 0;
}

.logo-icon img {
	width: 100%;
	height: 100%;
}

/* 公司标题区域 */
.company-title-area {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
	min-width: 0;
}

.company-title-container {
	display: flex;
	align-items: center;
	gap: 10px;
	overflow: visible; /* 允许溢出 */
	white-space: nowrap;
}

.company-title {
	font-weight: 700;
	font-size: 20px;
	line-height: 29px;
	color: var(--primary-color);
	margin: 0;
	white-space: nowrap; /* 强制不换行 */
	flex-shrink: 0;
}

.company-reg_status {
	font-weight: 700;
	font-size: 16px;
	color: var(--primary-color);
	margin: 0;
	white-space: nowrap; /* 强制不换行 */
	flex-shrink: 0;
}

.certified-badge {
	/*width: 90px;*/
	min-width: 5.5rem;
	height: 27px;
	background-color: var(--certified-bg);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 13px;
	line-height: 19px;
	color: var(--certified-text);
}

.certified-icon {
	width: 17px;
	height: 17px;
	display: flex;
	align-items: center;
}

.company-details {
	display: flex;
	gap: 15px 30px;
	width: 40rem;
	height: 22px;
	font-size: 14px;
	line-height: 20px;
	color: var(--text-color);
}

.company-details span {
	white-space: nowrap;
}

.company-details span:last-child {
	white-space: normal;
}

.company-stats {
	display: flex;
	gap: 30px;
	height: 55px;
}

.stat-item {
	width: 5.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.stat-value {
	font-weight: 700;
	font-size: 20px;
	line-height: 29px;
	color: var(--primary-color);
	text-align: center;
	width: 100%;
}

.stat-label {
	font-size: 13px;
	line-height: 19px;
	color: var(--stat-label);
	text-align: center;
}

.rating-icon {
	width: 28px;
	height: 28px;
	/*margin-left: 10px;*/
	margin: 10px 0 0 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

/* 点赞 */
.rating-icon.liked {
	cursor: default;
}

.rating-icon.liked img {
	filter: drop-shadow(0 0 5px rgba(255, 200, 0, 0.7));
}

/* 心跳动画 */
@keyframes heartbeat {
	0% { transform: scale(1); }
	25% { transform: scale(1.1); }
	50% { transform: scale(1); }
	75% { transform: scale(1.1); }
	100% { transform: scale(1); }
}

.rating-icon.liked {
	animation: heartbeat 0.5s;
}

/* 分隔线 */
.divider {
	width: 100%;
	height: 1px;
	background-color: #E2E8F0;
	margin: 0;
}

/* 卡片主体 */
.company-card-body {
	width: 100%;
	height: auto;
	min-height: 169px;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* 公司描述 */
.company-desc {
	width: 100%;
	max-width: 886px;
	height: auto;
}

.desc-title {
	font-size: 16px;
	line-height: 24px;
	color: var(--text-color);
	margin-bottom: 10px;
}

.desc-content {
	font-size: 14px;
	line-height: 20px;
	color: var(--text-color);
	margin-bottom: 15px;
	width: 100%;
	word-wrap: break-word;
}
/*.business-footer-link2 {*/
/*	font-size: 14px;*/
/*	color: #1A3A6C;*/
/*}*/

.show_rows {
	/*font-size: 14px;*/
	/*line-height: 20px;*/
	/*color: var(--text-color);*/
	/*margin-bottom: 15px;*/
	/*width: 100%;*/
	/*word-wrap: break-word;*/
	/* 添加截断相关样式 */
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5; /* 默认只显示5行 */
	max-width: 100%;
	box-sizing: border-box;
}

/* 超过5行时才显示的查看更多链接 */
.view-more-link {
	font-size: 14px;
	color: #1A3A6C;
	display: none; /* 默认隐藏 */
}

/* 完整显示时的样式 */
.show_rows.full-content {
	-webkit-line-clamp: unset;
	height: auto;
}

/* 1. 标签容器与描述内容增加更多间距 */
.tags-container {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 20px; /* 从10px增加到20px */
	padding-top: 5px; /* 新增：增加顶部内边距 */
}

.tag {
	padding: 6px 16px;
	background-color: var(--light-bg);
	border-radius: 20px;
	font-size: 13px;
	line-height: 19px;
	color: var(--primary-color);
}

/* 公司行动 */
.company-actions {
	width: 100%;
	max-width: 200px;
	height: auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.btn-contact {
	width: 100%;
	height: 46px;
	background-color: var(--secondary-color);
	color: white;
	border-radius: 8px;
	font-size: 16px;
	line-height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: none;
}

.btn-contact:hover {
	background-color: #e05a2b;
	color: white;
}

.contact-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
}

/* 2. 修复"查看详情"按钮图标位置问题 */
.btn-details {
	width: 100%;
	height: 48px;
	background-color: white;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 8px;
	font-size: 16px;
	line-height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
	overflow: hidden;
	padding: 0 16px; /* 新增：确保按钮内容居中 */
}

.btn-details:hover {
	background-color: var(--primary-color);
	color: white;
}

.details-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
	position: relative;
	left: 5px;
}

/* 悬停时显示的新图标 */
.btn-details:hover .details-icon {
	opacity: 0;
}

.btn-details::after {
	content: '';
	position: absolute;
	width: 21px;
	height: 21px;
	left: calc(59% - 60px); /* 调整位置，确保与文字对齐 */
	background-image: url('/inc/image/icon/list/xiangqing_hover_white_21.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.btn-details:hover::after {
	opacity: 1;
}

/* 分页容器 */
.pagination-container {
	width: 100%;
	max-width: 1160px;
	height: auto;
	min-height: 100px;
	margin: 0 auto;
	padding: 30px 0 50px;
	display: flex;
	justify-content: center;
}

.pagination {
	display: flex;
	gap: 10px;
	align-items: center;
}

.page-item {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	border: 1px solid var(--text-color);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.page-item {
	color: var(--text-color);
	text-decoration: none;
	font-size: 16px;
	line-height: 24px;
}

.page-item:hover, .page-item.active {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.page-item:hover, .page-item.active{
	color: white;
}

.page-icon-left,
.page-icon-right {
	width: 13px;
	height: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
}

/* 上一页/下一页按钮悬停效果 */
.page-item:first-child:hover .page-icon-left,
.page-item:last-child:hover .page-icon-right {
	opacity: 0;
}

.page-item:first-child::after,
.page-item:last-child::after {
	content: '';
	position: absolute;
	width: 13px;
	height: 13px;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

/* 上一页按钮悬停图标 */
.page-item:first-child::after {
	background-image: url('/inc/image/icon/list/arrow-left-white.svg');
}

/* 下一页按钮悬停图标 */
.page-item:last-child::after {
	background-image: url('/inc/image/icon/list/arrow-right-white.svg');
}

.page-item:first-child:hover::after,
.page-item:last-child:hover::after {
	opacity: 1;
}



/** layui 分页 */
.layui-laypage a, .layui-laypage span {
	background-color: transparent !important;
}

.layui-laypage-curr{
	margin-right: 10px !important;
}

.layui-laypage a {
	border-radius: 6px !important;
	margin-right: 10px !important;
}

/* 悬浮页码样式 */
.layui-laypage a:hover {
	background-color: #1A3A6C !important;
	color: white !important;
	border-color: #1A3A6C !important;
}

/* 当前页码样式保持与悬浮样式一致 */
.layui-laypage .layui-laypage-curr {
	border: none !important; /* 去除当前页边框 */
}
.layui-laypage .layui-laypage-curr .layui-laypage-em {
	background-color: #1A3A6C !important;
	border-radius: 6px !important;
}

.layui-laypage .layui-laypage-curr em {
	color: white !important;
}

.layui-laypage-spr {
	border-radius: 8px;
	margin: -0.28rem 8px 0 0 !important;
}
/* 企业列表+分页 结束 */

/**
 高亮显示
*/
.key-gaoliang {
	background-color:#f8e4bb;
}
.key-highlight {
	background-color:#f8e4bb;
}
