/* 缩放 */
:root {
	--scale: 1; /* 初始化缩放比例 */
	--design-width: 100%; /* 设计宽度改为100% */
}
html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden; /* 禁用水平滚动 */
}
.scale-container {
	width: var(--design-width);
	min-height: 100vh;
	transform-origin: top left;
	transform: scale(var(--scale));
	position: relative;
	margin: 0 auto;
}
/* 缩放 结束 */

body {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans SC', sans-serif;
	background-color: #f6f7fb;
}
.forwarder-container {
	/*width: 68.5%;*/
	width: 90%;
	max-width: 1360px;
	box-sizing: border-box;
	margin: 35px auto;
	padding-bottom: 4rem;
}
/** 筛选 开始 */
.filter-container {
	/*width: 1360px;*/
	width: 90%;
	background-color: #FFFFFF;
	border-radius: 12px;
	padding: 20px;
	margin: 0 auto 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;
}
/** 筛选 结束 */

/** 认证企业列表 开始 */
.cert-enter-container {
	/*width: 1360px;*/
	width: 90%;
	height: auto;
	background-color: #FFFFFF;
	border-radius: 12px;
	margin: 0 auto;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.company-list {
	/*width: 1360px;*/
	min-height: 224px;
	height: auto;
	display: flex;
	align-items: flex-start;
	padding: 20px 40px;
	box-sizing: border-box;
}

.company-list:nth-child(odd) {
	background-color: #FFFFFF;
}

.company-list:nth-child(even) {
	background-color: #FAFBFD;
}

.company-list:nth-child(odd):hover {
	background-color: #FAFBFD;
}

.company-main {
	width: 100%;
	height: auto;
	display: flex;
}

.logo-section {
	width: 124px;
	height: auto;
	display: flex;
	justify-content: center;
	/*align-items: flex-start;*/
	padding-top: 46px;
}

.logo-placeholder {
	width: 83px;
	height: 83px;
	background-color: #E9F0FF;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.logo-placeholder img {
	width: 55px;
	height: 55px;
}

.company-info {
	/*width: 1069px;*/
	flex: 1;
	min-width: 0;
	height: auto;
	padding: 0 20px;
}

.info-header {
	height: 35px;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.company-name {
	font-size: 18px;
	font-weight: bold;
	color: #1A3A6C;
	margin-right: 15px;
}

.company-tag {
	height: 35px;
	background-color: #FF6B35;
	color: #FFFFFF;
	border-radius: 31px;
	padding: 0 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.company-details {
	/*width: 883px;*/
	width: 100%;
	height: auto;
	overflow-wrap: break-word;
}

.service-item {
	/*width: 781px;*/
	height: auto;
	min-height: 24px;
	display: flex;
	align-items: flex-start;
	margin-bottom: 8px;
}

.service-logo {
	width: 24px;
	height: 24px;
	background-color: #F6F6F6;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	flex-shrink: 0;
}

.service-text {
	font-size: 14px;
	color: #555555;
	line-height: 1.5;
	word-break: break-word;
}

.service-desc {
	width: 781px;
	height: auto;
	font-size: 14px;
	color: #555555;
	line-height: 1.5;
	margin-left: 34px;
	margin-bottom: 10px;
}

/** 2025-08-14 新增描述宽度显示加超出换行处理 */
.multidesc {
	/*max-width: 58rem;*/
	/*min-width: 60rem;*/
	min-width: unset; /* 移除固定最小宽度 */
	width: 100%;
	word-wrap: break-word;
	white-space: pre-wrap;
	overflow-wrap: break-word;
}

.contact-info {
	height: auto;
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 10px;
	flex-wrap: wrap;
}

.contact-item {
	display: flex;
	align-items: center;
	font-size: 14px;
	color: #555555;
	height: 24px;
	min-width: 80px; /* 联系方式间隔 */
}

.contact-icon {
	width: 18px;
	height: 18px;
	margin-right: 5px;
	color: #1A3A6C;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.btn-section {
	width: 167px;
	height: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.action-btn {
	height: 35px;
	background-color: #E9F0FF;
	color: #1A3A6C;
	border-radius: 31px;
	border: none;
	padding: 0 20px;
	font-size: 14px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
}
/** 认证企业列表 结束 */

/* 分页容器 */
.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;
}
/** 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;
}

@media (width: 1080px) {
	.action-btn {
		min-width: 6rem;
	}
}