body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background-color: #f0f2f5;
	margin: 0;
	padding: 0;
}

/* 加载效果 */
.loading-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	/* 半透明背景 */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	/* 确保加载效果在最上层 */
}

.loading-spinner {
	font-size: 24px;
	color: #1890ff;
	/* Ant Design 主题色 */
}

.loading-spinner i {
	margin-right: 8px;
}

/****/

.index-top {
	width: 100%;
	background: url(../images/indextop.png) no-repeat center center;
	background-size: cover;
	height: 140px;
	line-height: 140px;
	text-align: center;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
}

.index-top_m {
	display: none;
}

.m_kefu {
	display: none;
}

.m-f-nr{
	display: none;
}

.index-top h1 {
	color: #fff;
	margin: 0px;
	font-size: 50px;
	font-weight: bold;
}

.content {
	max-width: 1200px;
	margin: 50px auto 20px;
	padding: 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content .bit {
	text-align: center;
	margin-bottom: 20px;
	color: #1890ff;
	font-size: 30px;
	font-weight: bold;
}

.button-group {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
	margin-top: 20px;
	gap: 10px;
}

.button-group .ant-btn {
	flex: 1 1 130px;
	max-width: 130px;
	border-radius: 5px;
}

.button-group .ant-btn.active {
	background-color: #096dd9;
	/* 更深的蓝色 */
	border-color: #096dd9;
	color: white;
}

.search-box {
	display: flex;
	justify-content: center;
	margin-bottom: 35px;
}

.search-box .ant-input {
	width: 100%;
	max-width: 800px;
	box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
	line-height: 2.5715;
}

.search-box .ant-btn {
	margin-left: 0px;
	height: 46px;
}

.update-time {
	text-align: center;
}

.statistics {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
	gap: 20px;
}

.statistics .ant-statistic {
	text-align: center;
	padding: 10px;
	background: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	flex: 1 1 200px;
}

/**搜索统计**/
.search-stats {
	background: rgb(248, 249, 254);
	padding: 16px 24px;
	border-radius: 8px;
	margin-bottom: 16px;
}

.search-stats h3 {
	font-size: 16px;
	display: block;
	margin-bottom: 16px;
}

.search-stats ul {
	list-style-type: none;
	padding-left: 0;
	margin: 0;
}

.search-stats li {
	padding: 5px 0;
	border-bottom: 1px solid #eee;
	width: auto;
	display: inline-block;
	margin-right: 20px;
}

.search-stats li:last-child {
	border-bottom: none;
}

.search-stats li .yd1 {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgb(22, 119, 255);
	display: inline-block;
	margin-right: 8px;
}

.search-stats li .yd2 {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgb(82, 196, 26);
	display: inline-block;
	margin-right: 8px;
}

.search-stats li .yd3 {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #FA8C16;
	display: inline-block;
	margin-right: 8px;
}

/***筛选***/
/* 主容器 */
.filter-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 16px;
}

/* 左侧筛选组 */
.filter-group {
	display: flex;
	align-items: center;
	gap: 24px;
}

/* 单选按钮组 */
.radio-group {
	display: inline-flex;
	border-radius: 6px;
	border: 1px solid #d9d9d9;
	overflow: hidden;
}

.radio-button {
	position: relative;
	padding: 0 15px;
	height: 32px;
	line-height: 32px;
	background: #fff;
	border-left: 1px solid #d9d9d9;
	cursor: pointer;
	transition: all 0.3s;
}

.radio-button:first-child {
	border-left: none;
}

.radio-button.checked {
	background: #1677ff;
	color: #fff;
	border-color: #1677ff;
}

.radio-button input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

/* 下拉选择器 */
/* 新增下拉菜单样式 */
.select-box {
	position: relative;
	display: inline-block;
	min-width: 120px;
	padding: 6px 12px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	transition: all 0.3s;
}

.select-box:hover {
	border-color: #40a9ff;
}

.select-box.active {
	border-color: #1890ff;
	box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.select-options {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	max-height: 250px;
	overflow-y: auto;
	margin-top: 4px;
	padding: 4px 0;
	background: #fff;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
		0 6px 16px 0 rgba(0, 0, 0, 0.08),
		0 9px 28px 8px rgba(0, 0, 0, 0.05);
	z-index: 10;
	display: none;
}

.select-box.active .select-options {
	display: block;
}

.select-options div {
	padding: 5px 12px;
	transition: all 0.3s;
}

.select-options div:hover {
	background: #f5f5f5;
}

.select-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* 单选按钮组样式优化 */
.radio-group {
	display: inline-flex;
	border-radius: 6px;
	border: 1px solid #d9d9d9;
	overflow: hidden;
}

.radio-button {
	position: relative;
	padding: 0 15px;
	height: 32px;
	line-height: 32px;
	background: #fff;
	border-left: 1px solid #d9d9d9;
	cursor: pointer;
	transition: all 0.3s;
}

.radio-button:first-child {
	border-left: none;
}

.radio-button.checked {
	background: #1677ff;
	color: #fff;
	border-color: #1677ff;
}

.radio-button input {
	position: absolute;
	opacity: 0;
}

/* 导出按钮 */
.export-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	padding: 4px 15px;
	background: #1677ff;
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	gap: 8px;
}

.export-button:hover {
	background: #4096ff;
}

.list-container {
	width: 100%;
}

.list-item {
	margin-bottom: 20px;
	padding: 16px;
	border: 1px solid #f0f0f0;
	border-radius: 8px;
	background: #fff;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.list-item:nth-child(even) {
	background: #f9f9f9;
}

.list-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.list-item h3 {
	margin-bottom: 16px;
	font-size: 18px;
	color: #1890ff;
	text-align: left;
}

.list-item .info-row {
	width: 100%;
	height: auto;
	overflow: hidden;
	/* 清除浮动 */
	margin-bottom: 16px;
}

.list-item .info-row p {
	display: block;
	width: 50%;
	/* 宽度为 50% */
	float: left;
	/* 左浮动 */
	margin: 0;
	color: #666;
	text-align: left;
	margin-bottom: 10px;
	/* 设置下边距 */
	box-sizing: border-box;
	/* 防止 padding 影响宽度 */
	padding-right: 10px;
	/* 右侧留出间距 */
}

.list-item .info-row p i {
	font-style: normal;
	font-weight: bold;
}

.list-item .details {
	background: #f0f2f5;
	padding: 16px;
	border-radius: 8px;
	margin-top: 16px;
}

.list-item .details p {
	margin: 8px 0;
	color: #333;
}

.list-item .details p i {
	font-style: normal;
	font-weight: bold;
}

/***分页start***/
.pagination {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}

/* 总数 */
.total {
	font-size: 14px;
	color: #666;
}

/* 分页组件 */
.ant-pagination {
	display: flex;
	align-items: center;
}

.ant-pagination-list {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.ant-pagination-item {
	margin: 0 4px;
	padding: 0 8px;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	cursor: pointer;
}

.ant-pagination-item-active {
	border-color: #1890ff;
	color: #1890ff;
}

.ant-pagination-item-ellipsis {
	cursor: default;
}

.ant-pagination-prev,
.ant-pagination-next {
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	padding: 0 8px;
	cursor: pointer;
}

.ant-pagination-prev:disabled,
.ant-pagination-next:disabled {
	cursor: not-allowed;
	opacity: 0.5;
}

/* 跳转输入框 */
.page-jump {
	display: flex;
	align-items: center;
	gap: 8px;
}

.page-jump input {
	width: 50px;
	text-align: center;
}

/***分页end***/

.footer {
	width: 100%;
	background: #0047b5;
	height: 120px;
	z-index: 999;
	position: relative;
}

.corp_right {
	line-height: 0.25rem;
	height: 95px;
	color: #f2f2f2;
	width: 100%;
	font-size: 14px;
	margin: 0 auto;
	text-align: center;
}

.corp_right .f-info {
	width: auto;
	height: 120px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.corp_right .f-info .f-nr {
	/* float: left; */
	line-height: 120px;
	/* margin-top: 20px */
}

.corp_right .f-info .f-nr p {
	margin: 4px 0;
	height: auto;
	line-height: 20px
}

.corp_right .f-info .f-nr p a {
	color: #f2f2f2;
	text-decoration: none;
}

.corp_right a:hover {
	text-decoration: underline;
}

.ant-tag-blue {
	float: right;
}

/**数据可视化**/
.chart-container {
	width: 100%;
	margin-bottom: 40px;
}

.chart-container h3 {
	font-size: 20px;
	color: #1890ff;
	margin-bottom: 20px;
	text-align: center;
}

.chart-container .chart {
	width: 100%;
	height: 500px;
	background: #f9f9f9;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 添加这些样式到您的CSS部分 */
.chart-container {
    width: 100%;
    height: 100%; /* 或设置具体高度 */
    display: flex;
    flex-direction: column;
	
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    box-sizing: border-box;
}

.chart {
    width: 100%;
    height: 100%;
}

/* 给图表容器设置明确高度 */
#regionDistribution {
  height: 700px; /* 根据实际内容调整 */
  min-height: 400px; /* 设置最小高度防止内容挤压 */
}


/* 针对移动端优化 */
@media (max-width: 768px) {
    .chart-container {
        /* height: 400px; */
        padding: 10px;
    }
	
	#monthlyTrend{
		height: 300px;
	}
}


/****右侧****/
.fix_box {
	display: block;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 99;
	width: 75px;
	margin: auto;
	height: 355px;
}

.fix_box li {
	width: 75px;
	background: #1890ff;
	margin-bottom: 1px;
	height: 70px;
	float: right;
	cursor: pointer;
	position: relative;
	-webkit-transition: all 0.55s;
	-moz-transition: all 0.55s;
	-ms-transition: all 0.55s;
	-o-transition: all 0.55s;
	transition: all 0.55s;
	list-style: none;
}

.fix_box li img:nth-of-type(1) {
	display: block;
	margin: 0 auto;
}

.fix_box li img:nth-of-type(2) {
	display: none;
	width: 200px;
	height: 200px;
	position: absolute;
	right: 100px;
	border: 1px solid #eee;
	top: -130px;
}

.fix_box li p {
	color: #fff;
	text-align: center;
	font-size: 14px;
}

.fix_box li:hover {
	width: 100px;
	-webkit-transition: all 0.55s;
	-moz-transition: all 0.55s;
	-ms-transition: all 0.55s;
	-o-transition: all 0.55s;
	transition: all 0.55s;
}

.fix_box li:nth-of-type(2):hover img:nth-of-type(2) {
	display: block;
}

.fix_box li:nth-of-type(1) {
	width: 220px;
	position: relative;
	right: -145px;
	-webkit-transition: all 0.55s;
	-moz-transition: all 0.55s;
	-ms-transition: all 0.55s;
	-o-transition: all 0.55s;
	transition: all 0.55s;
}

.fix_box li:nth-of-type(1) div:nth-of-type(1) {
	width: 75px;
	float: left;
}

.fix_box li:nth-of-type(1) div:nth-of-type(2) {
	height: 70px;
	float: right;
	width: 140px;
	box-sizing: border-box;
	padding-top: 15px;
}

.fix_box li:nth-of-type(1) div:nth-of-type(2) span {
	display: inline-block;
	border-left: 1px solid #fff;
	width: 140px;
	color: #fff;
	line-height: 40px;
	text-indent: 1em;
	font-size: 14px;
	letter-spacing: 1px;
}

.fix_box li:nth-of-type(1):hover {
	right: 0px;
}

/* 响应式布局 */
@media (max-width: 768px) {
	.index-top {
		display: none;
	}
	
	.index-top_m {
		display: block;
		width: 100%;
		background: url(../images/indextop.png) no-repeat center center;
		background-size: cover;
		height: 140px;
		display: flex;
		justify-content: center;
		flex-direction: column;
		text-align: center;
		color: #fff;
		font-weight: bold;
	}

	.index-top_m p {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.index-top h1 {
		font-size: 24px;
	}	
	
	.content{
		margin-top: 20px;
		padding: 10px;
	}
	
	.content .bit{
		font-size: 32px;
	}
	
	.button-group{
		display: block;
		padding-left: 1.5%;
	}
	
	.button-group .ant-btn {
		flex: 1 1 100%;
		/* max-width: 100%; */
		width: 32%;
		margin-bottom: 5px;
	}

	.search-box {
		flex-direction: column;
		align-items: center;
	}

	.search-box .ant-input {
		width: 100%;
		margin-bottom: 10px;
	}

	.search-box .ant-btn {
		width: 100%;
	}

	.statistics {
		flex-direction: column;
		/* 单列显示 */
		gap: 10px;
		/* 增加间距 */
	}

	.statistics .ant-statistic {
		flex: 1 1 100%;
	}

	.list-item .info-row p {
		width: 100%;
		/* 小屏幕下改为单列 */
		float: none;
		/* 取消浮动 */
		padding-right: 0;
		/* 取消右侧间距 */
	}

	/**数据可视化**/
	.chart-container {
		margin-bottom: 20px;
		/* 缩小图表间距 */
	}

	.chart {
		height: 300px;
		/* 缩小图表高度 */
	}

	.chart-container h3 {
		font-size: 18px;
		/* 缩小图表标题字体 */
	}

	.corp_right .f-info {
		width: 100%;
		padding: 0px 2%;
	}

	.corp_right .f-info .f-nr {
		display: none;
		float: none;
		height: 120px;
		display: flex;
		justify-content: center;
		flex-direction: column;

	}
	.p-f-nr{
		display: none!important;
	}
	.m-f-nr{
		display: block;
	}

	/**分页**/
	.pagination {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.ant-pagination-list {
		/* display: none; */
		/* 隐藏页码范围 */
	}

	.page-jump {
		display: none;
		/* 隐藏跳转输入框 */
	}

	.fix_box {
		display: none;
	}

	.m_kefu {
		display: block;
	}

	.cd-top {
		display: inline-block;
		height: 40px;
		width: 40px;
		position: fixed;
		bottom: 5rem;
		right: 10px;
		border-radius: 5px;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
		overflow: hidden;
		text-align: center;
		line-height: 40px;
		white-space: nowrap;
		background: #3eb134;
		visibility: hidden;
		opacity: 0;
		font-size: 0;
		z-index: 1000;
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		transition: all 0.3s;
	}

	.cd-top img {
		width: 80%;
		vertical-align: middle;
	}

	.cd-top.cd-is-visible {
		visibility: visible;
		opacity: 1;
	}

	.wechat {

		display: block;

		width: 40px;

		height: 40px;

		position: fixed;

		bottom: 9rem;

		right: 10px;

		opacity: 1;

		z-index: 99;

	}

	.wechat img {

		width: 100%;

	}

	.wx_box p {

		text-align: center;

		font-size: 1.2rem;

		line-height: 2.5rem;

	}

	.wx_box h4 {

		text-align: center;

		font-size: 1.6rem;

		background: #3eb134;

		color: #fff;

		line-height: 3rem;

		font-weight: bold;

	}

	.wx_box img {

		width: 14rem;

		height: 14rem;

		margin: 1rem auto 0;

		display: block;

		border: 1px solid #eee;

	}

	.wx_box span {

		display: block;

		text-align: center;

		font-size: 1.2rem;

		color: #666;

		line-height: 2.5rem;

	}

}

/* 响应式调整 */
/* 大屏幕（≥992px） */
@media (min-width: 992px) {
	.filter-group {
		gap: 24px;
		flex-wrap: nowrap;
	}
}

/* 中等屏幕（768px-991px） */
@media (min-width: 768px) and (max-width: 991px) {
	.filter-group {
		gap: 16px;
	}

	.radio-group {
		order: 1;
		width: 100%;
	}

	.select-wrapper {
		order: 2;
		width: calc(50% - 8px);
	}
}

/* 小屏幕（≤767px） */
@media (max-width: 767px) {
	.filter-group {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		width: 100%;
	}

	.radio-group {
		order: 1;
		display: flex;
		justify-content: space-between;
	}

	.radio-button {
		flex: 1;
		text-align: center;
		padding: 0 8px;
		font-size: 14px;
	}

	.select-wrapper {
		order: 2;
		width: 100%;
	}

	.select-wrapper span {
		width: 100%;
		font-size: 14px;
	}

	.select-box {
		width: 100%;
	}
}