body {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans SC', sans-serif;
}
/* 全国贷代企业数据概览 开始 */
.overview-container {
	/*width: 1920px;*/
	width: 100%;
	/*height: 700px;*/
	height: 75rem;
	background-color: #f5f7fb;
	padding-top: 60px;
}

.content-wrapper {
	max-width: 1200px;
	height: 320px;
	/*margin: 0 auto;*/
	margin: 0 10%; /*2025-8-13*/
}

.overview-title {
	width: 1160px;
	height: 45px;
	font-weight: bold;
	font-size: 28px;
	line-height: 31px;
	color: #1A3A6C;
	text-align: center;
	/*margin: 0 auto 30px;*/
	margin: 0 10% 30px; /*2025-08-13*/
	position: relative;
}

.overview-title:hover::after {
	width: 80px;
}

.overview-title::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 4px;
	background-color: #FF6B35;
	transition: width 0.3s ease;
}

.cards-container {
	width: 1160px;
	height: 245px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.data-card {
	width: 350px;
	height: 245px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	padding: 20px;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: space-between;
}

.card-value {
	width: 250px;
	height: 58px;
	font-weight: bold;
	font-size: 36px;
	line-height: 41px;
	color: #1A3A6C;
	text-align: center;
}

.card-divider {
	width: 100%;
	height: 0.5px;
	background-color: #E6E6E6;
	margin: 15px 0;
}

.card-label {
	width: 250px;
	height: 26px;
	font-size: 16px;
	line-height: 17px;
	color: #666666;
	text-align: center;
}

.card-description {
	width: 310px;
	height: 22px;
	font-size: 14px;
	line-height: 16px;
	color: #333333;
	display: flex;
	justify-content: space-between;
}

.enterprise-count {
	font-size: 14px;
	line-height: 16px;
	color: #333333;
}

.banner-container {
	width: 1160px;
	height: 126px;
	background: linear-gradient(to right, #1A3A6C, #244677);
	border-radius: 8px;
	margin: 30px auto 0;
	padding: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.banner-content {
	width: 922px;
	height: 65px;
}

.banner-title {
	width: 922px;
	height: 38px;
	font-weight: bold;
	font-size: 24px;
	line-height: 35px;
	color: #FFD166;
	margin-bottom: 5px;
}

.banner-description {
	width: 700px;
	height: 27px;
	font-size: 16px;
	line-height: 25px;
	color: #FFFFFF;
}

.certify-btn {
	width: 158px;
	height: 54px;
	background-color: #FF6B35;
	color: white;
	font-weight: bold;
	font-size: 16px;
	line-height: 24px;
	border-radius: 8px;
	border: none;
	transition: all 0.3s ease;
}

.certify-btn a {
	color: white;
}

.certify-btn:hover {
	background-color: #e05a2b;
}
/* 全国贷代企业数据概览 结束 */


/* 新闻行业资讯快报 开始 */
.news-section {
	width: 100%;
	height: 775px;
	background-color: white;
	padding: 60px 0;
}

.news-section-title {
	width: 100%;
	max-width: 1160px;
	height: 51px;
	font-weight: 700;
	font-size: 32px;
	line-height: 36px;
	color: #1A3A6C;
	text-align: center;
	margin: 0 auto 40px;
	position: relative;
}

.news-section-title:hover::after {
	width: 80px;
}

.news-section-title::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 4px;
	background-color: #FF6B35;
	transition: width 0.3s ease;
}

.news-cards-container {
	width: 100%;
	max-width: 1554px;
	height: 503px;
	margin: 0 auto;
}

.news-card {
	width: 100%;
	height: 503px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: transform 0.3s ease;
}

.news-card:hover {
	transform: translateY(-5px);
}

.card-header {
	width: 100%;
	height: 91px;
	padding: 20px;
	display: flex;
	align-items: center;
	/*background-color: white;*/
	background-color: #F8F9FA;
	border-bottom: 1px solid #f0f0f0;
}

.card-icon-container {
	width: 50px;
	height: 50px;
	border-radius: 8px;
	/*background: linear-gradient(to bottom, #1A3A6C, #1A3A6C);*/
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
}

.cic-bg1 {
	background: linear-gradient(to bottom, #1A3A6C, #3c69ae);
}

.cic-bg2 {
	background: linear-gradient(to bottom, #ff7138, #ff8b47);
}

.cic-bg3 {
	background: linear-gradient(to bottom, #28b362, #2ec870);
}

.cic-bg4 {
	background: linear-gradient(to bottom, #9854b6, #a67bb8);
}

.card-icon {
	width: 34px;
	height: 34px;
	color: white;
}

.card-header-title {
	font-weight: 700;
	font-size: 20px;
	line-height: 22px;
	color: #1A3A6C;
	flex-grow: 1;
}

.card-body {
	padding: 20px;
}

.news-source {
	width: 100%;
	background-color: #F8F9FA;
	padding: 20px;
	display: flex;
	justify-content: center;
}

.card-news-description {
	width: 100%;
	max-width: 328px;
	height: 67px;
	padding-left: 10px;
}

/*.card-news-description {*/
/*	width: 100%;*/
/*	height: 97px;*/
/*	margin-bottom: 20px;*/
/*}*/

.description-title {
	width: 100%;
	height: 22px;
	font-size: 14px;
	line-height: 16px;
	color: #FF6B35;
	margin-bottom: 10px;
	font-weight: 700;
}

.description-content {
	width: 100%;
	height: 39px;
	font-size: 13px;
	line-height: 15px;
	color: #666666;
}

.news-item {
	width: 100%;
	height: 76px;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f0f0f0;
}

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

.link-news-title {
	display: block;
	width: 100%;
	height: auto;
	font-size: 15px;
	line-height: 17px;
	color: #333333;
	margin-bottom: 8px;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.link-news-title:hover {
	color: #FF6B35;
}

.news-date {
	display: block;
	width: 100%;
	height: 21px;
	font-size: 13px;
	line-height: 15px;
	color: #888888;
	text-align: right;
}

@media (max-width: 1400px) {
	.news-cards-container {
		max-width: 1200px;
	}
}

@media (max-width: 1200px) {
	.news-section {
		height: auto;
		padding: 40px 0;
	}

	.news-cards-container {
		height: auto;
	}
}

@media (max-width: 992px) {
	.news-card {
		margin-bottom: 30px;
	}
}
/* 新闻行业资讯快报 结束 */

/* 优势认证货代 开始 */
.cert-freight-section {
	width: 100%;
	height: 480px;
	/*background-color: #f6f7fb;*/
	margin: 5rem auto;
	/*padding: 30px 0;*/
}

.cert-freight-title {
	font-size: 22px;
	color: #1A3A6C;
	text-decoration: none;
	/*display: block;*/
	/*text-align: center;*/
	display: flex;
	padding-left: 20%;
	margin-bottom: 30px;
	font-weight: 600;
}

.cert-freight-container {
	width: 1160px;
	min-height: 365px;
	margin: 0 auto;
	display: flex;
	/*justify-content: space-between;*/
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 28px;
}

.cert-freight-card {
	width: 268px;
	min-height: 365px;
	border-radius: 20px;
	background-color: white;
	padding: 0;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.cert-freight-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.cert-freight-card-img {
	width: 268px;
	height: 155px;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
}

.cert-freight-card-content {
	padding: 15px 20px;
    flex: 1;
	display: flex;
	flex-direction: column;
}

.cert-freight-card-title {
	font-size: 20px;
	color: #1F2329;
	margin-bottom: 15px;
	font-weight: 600;
	word-break: break-word;
}

.cert-freight-card-desc-container {
	flex-grow: 1;
	/*overflow: hidden;*/
}

/*.cert-freight-card-desc {*/
/*	font-size: 14px;*/
/*	color: #666;*/
/*	margin-bottom: 8px;*/
/*	display: flex;*/
/*	align-items: flex-start;*/
/*	line-height: 1.4;*/
/*	!*word-break: break-word;*!*/
/*	white-space: nowrap;*/
/*	overflow: hidden;*/
/*	text-overflow: ellipsis;*/
/*	max-width: 100%;*/
/*}*/

/*.cert-freight-card-desc::before {*/
/*	content: "";*/
/*	display: inline-block;*/
/*	width: 5px;*/
/*	height: 5px;*/
/*	background-color: #999;*/
/*	border-radius: 50%;*/
/*	margin-right: 8px;*/
/*	margin-top: 8px;*/
/*	flex-shrink: 0;*/
/*}*/
.cert-freight-card-desc {
	font-size: 14px;
	color: #999999;
	margin-bottom: 8px;
	/* 移除display: flex */
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
	padding-left: 13px; /* 为伪元素留出空间 */
	position: relative; /* 用于伪元素定位 */
}

.cert-freight-card-desc::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	background-color: #999999;
	border-radius: 50%;
	margin-right: 8px;
	position: absolute; /* 绝对定位 */
	left: 0; /* 左对齐 */
	top: 8px; /* 垂直居中调整 */
}

.cert-freight-card-btn-container {
	display: flex;
	justify-content: center;
	margin-top: auto;
	padding-top: 15px;
}

.cert-freight-card-btn {
	height: 42px;
	border-radius: 5px;
	background-color: #FF6B35;
	color: #FFFFFF;
	font-size: 14px;
	border: none;
	padding: 0 25px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.cert-freight-card-btn:hover {
	background-color: #e05a2b;
	color: #FFFFFF;
}

.cert-freight-card-btn img {
	width: 14px;
	height: 14px;
	margin-right: 8px;
}
/* 优势认证货代 结束 */

/* 全国贷代企业分布 开始 */
.distribution-section {
	/*width: 1920px;*/
	width: 100%;
	min-width: 1200px;
	height: 888px;
	background-color: #f6f7fb;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	/*overflow-x: auto; !* 添加水平滚动条 *!*/
}

/* 地图容器 */
.map-container {
	width: 100%;
	max-width: 1160px;
	height: 734px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	flex-shrink: 0; /* 防止容器缩小 */
}

/* 地图头部 */
.map-header {
	width: 100%;
	height: 81px;
	padding: 20px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #e2e8f0;
}

.map-title {
	font-weight: 700;
	font-size: 22px;
	line-height: 25px;
	color: #1A3A6C;
	margin: 0;
	white-space: nowrap; /* 防止标题换行 */
}

.map-buttons-group {
	display: flex;
	gap: 10px;
	flex-shrink: 0; /* 防止按钮组缩小 */
}

.map-button {
	/*width: 117px;*/
	min-width: 150px;
	height: 40px;
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0; /* 防止按钮缩小 */
}

.map-button.map-active {
	background-color: #1A3A6C;
	color: white;
}

.map-button:not(.map-active) {
	background-color: #F0F5FF;
	color: #1A3A6C;
}

.map-button:not(.map-active):hover {
	background-color: #1A3A6C;
	color: white;
}

/* 地图内容区域 */
.map-content {
	width: 100%;
	height: 653px;
	display: flex;
}

/* 左侧地图可视化区域 */
/*.map-visual {*/
/*	width: 860px;*/
/*	height: 100%;*/
/*	background-color: #f6f7fb;*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	align-items: center;*/
/*	flex-shrink: 0; !* 防止地图区域缩小 *!*/
/*}*/
.map-visual {
	width: 100%;
	flex: 1 1 70%;
	min-width: 300px;
	height: 100%;
	background-color: #f6f7fb;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* ECharts地图容器 */
.echarts-map {
	width: 650px;
	height: 607px;
	background-color: #f6f7fb;
	flex-shrink: 0;
	border: 2px dashed #c8cbcb;
}

/* 右侧统计区域 */
.map-stats {
	width: 300px;
	height: 100%;
	background-color: #1A3A6C;
	padding: 30px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.map-stats-title {
	width: 240px;
	height: 48px;
	font-weight: 700;
	font-size: 20px;
	line-height: 22px;
	color: white;
	margin-bottom: 15px;
	flex-shrink: 0;
}

.stats-divider {
	width: 100%;
	height: 1px;
	background-color: rgba(255, 255, 255, 0.1);
	margin: 15px 0;
	flex-shrink: 0;
}

/* 添加一个容器来包裹所有的省份统计项 */
.province-stats-container {
	flex: 1; /* 占据剩余空间 */
	overflow-y: auto; /* 添加垂直滚动条 */
	padding-right: 10px; /* 为滚动条留出空间 */
}

/* 自定义滚动条样式 */
.province-stats-container::-webkit-scrollbar {
	width: 6px;
}

.province-stats-container::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
}

.province-stats-container::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 3px;
}

.province-stats-container::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.5);
}

.province-stat {
	width: 210px;
	/*height: 51px;*/
	min-height: 51px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.province-name {
	font-size: 16px;
	line-height: 17px;
	color: white;
}

.province-value-num {
	font-size: 16px;
	line-height: 17px;
	color: #FFD166;
	font-weight: 500;
}
/* 全国贷代企业分布 结束 */

/*全国货代企业数据概览模块水印*/
.watermark1 {
	position: relative;
}

.watermark1::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	background-repeat: repeat;
}

.watermark1-fake::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='200'%3E%3Ctext x='-1' y='100' font-family='Arial' font-size='22' fill='%23999999' opacity='0.3' transform='rotate(-45)'%3E%E8%B4%A7%E4%BB%A3%E5%A4%A9%E7%9C%BC%3C/text%3E%3C/svg%3E");
}


/*地图模块水印*/
.map-document {
	position: relative;
}

.map-document::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	background-repeat: repeat;
}

.map-confidential::before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='200'%3E%3Ctext x='-1' y='100' font-family='Arial' font-size='22' fill='%23999999' opacity='0.3' transform='rotate(-45)'%3E%E8%B4%A7%E4%BB%A3%E5%A4%A9%E7%9C%BC%3C/text%3E%3C/svg%3E");
}
