html,
body {
	overflow: initial !important;
}

.headerHoverArea {
	display: none;
}

.main {
	padding: 0.35rem 0 0.7rem;
	overflow: hidden;
	background: url(bg_page2.jpg) no-repeat bottom center #f5f7fa;
	background-size: cover;
}

.main-inner {
	width: 16.56rem;
	overflow: hidden;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

/* 右侧内容 */
.container {
	width: 12.1rem;
	overflow: hidden;
}

/* 面包屑样式 */
.breadcrumbsSearch {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.breadcrumbs {
	display: flex;
	align-items: center;
}


.breadcrumbs img {
	width: 0.2rem;
	height: 0.2rem;
}

.breadcrumbLink {
	display: flex;
}

.breadcrumbLink, .breadcrumbLink a {
	color: #999;
	font-size: 0.16rem;
}

.breadcrumbLink a,
.breadcrumbLink span {
	margin-left: 0.05rem;
	display: inline-block;
}

.breadcrumbLink a:hover {
	color: #116daa;
}

/* 搜索区域样式 */
.search-container {
	position: relative;
	width: 3.32rem;
	height: 0.45rem;
	display: flex;
}

.search-input {
	width: 2.9rem;
	height: 0.43rem;
	line-height: 0.43rem;
	padding: 0 0.5rem 0 0.2rem;
	font-size: 0.14rem;
	border: 1px solid #116daa;
	border-radius: 0.23rem;
	color: #999;
}

.search-input:focus {
	outline: none;
	border-color: #116daa;
}

.search-container .btn-primary {
	width: 0.23rem;
	height: 0.23rem;
	position: absolute;
	top: 0.1rem;
	right: 0.2rem;
	background: url(searchBtn.png) no-repeat;
	background-size: contain;
	border: 0;
	cursor: pointer;
}

.containerLine {
	border: 0;
	display: block;
	width: 100%;
	height: 0.02rem;
	background-color: #ddd;
	margin: 0.25rem auto;
}

/* 内容区域样式 */
.content {
	overflow: hidden;
}

.data-container {
	width: 100%;
	overflow: hidden;
}

.data-header {
	display: flex;
	justify-content: space-between;
}

.data-count {
	font-size: 0.16rem;
	display: flex;
	align-items: center;
	color: #999;
}

.file-info {
	color: #116daa;
	font-weight: 600;
}

.controls {
	display: flex;
	gap: 15px;
}

.btnTab {
	width: 1.3rem;
	height: 0.4rem;
	font-size: 0.16rem;
	border: 1px solid #eaeaea;
	color: #666;
	background: transparent;
}

.btn {
	background: #116daa;
	border: 1px solid #116daa;
	color: white;
}

.data-content {
	max-height: 11.3rem;
	overflow-y: auto;
	margin-top: 0.2rem;
}

.data-item {
	padding: 0.1rem 0;
	border-bottom: 1px solid #eeeeee;
}

.data-item:hover {
	border-bottom: 1px solid #175f9e;
}

.item-date {
	color: #656565;
	font-size: 0.16rem;
}

.data-item:hover .item-title a {
	color: #175f9e;
}

.item-title {
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.item-title a {
	width: 75%;
	color: #333;
	font-size: 0.16rem;
	display: block;
	line-height: 1.5;
	text-decoration: none;
	transition: color 0.2s;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.item-meta span {
	display: flex;
	align-items: center;
	gap: 5px;
}

/* 未查询到数据提示 */
.no-data {
	text-align: center;
	color: red;
	font-size: 0.2rem;
	padding: 0.5rem 0;
	line-height: 2;
}

/* 加载中 */
.loading {
	text-align: center;
	font-size: 0.2rem;
	padding: 0.5rem 0;
	line-height: 2;
	color: #333;
}

.spinner {
	width: 0.5rem;
	height: 0.5rem;
	border: 0.05rem solid rgba(26, 42, 108, 0.2);
	border-top: 0.05rem solid #1a2a6c;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 0.2rem auto;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* 分页样式 */
.pagination {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.15rem;
	justify-content: center;
	margin-top: 0.6rem;
}

.pagination-info {
	color: #999;
	font-size: 0.16rem;
}

.pagination-info>span {
	color: #116daa;
	font-weight: 600
}

.page-size-select {
	width: 1.4rem;
	height: 0.4rem;
	text-align: center;
	border: 1px solid #ced4da;
	border-radius: 0.05rem;
	font-size: 0.16rem;
	cursor: pointer;
}

.pagination-controls {
	display: flex;
	align-items: center;
	gap: 0.1rem;
}

.page-btn {
	width: 0.44rem;
	height: 0.4rem;
	border-radius: 0.05rem;
	border: 1px solid #ced4da;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 0.16rem;
	color: #333;
}

.page-btn:hover {
	background: #e9ecef;
	border-color: #adb5bd;
}

.page-btn.active {
	background: #116daa;
	color: white;
	border-color: #116daa;
}

.page-btn:disabled {
	cursor: not-allowed;
	background: #f1f3f5;
}

.ellipsis {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.44rem;
	height: 0.4rem;
	border-radius: 0.05rem;
	border: 1px solid #ced4da;
	background: transparent;
	color: #333;
	font-size: 0.16rem;
}

.jump-container {
	display: flex;
	align-items: center;
	gap: 0.1rem;
	color: #999;
	font-size: 0.16rem;
}

.jump-input {
	width: 0.77rem;
	height: 0.4rem;
	border: 1px solid #ced4da;
	border-radius: 0.05rem;
	font-size: 0.16rem;
	text-align: center;
	/* 禁用数字输入框的上下箭头 */
	-moz-appearance: textfield;
}

.jump-input::-webkit-outer-spin-button,
.jump-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.jump-input:focus {
	outline: none;
	border-color: #1a2a6c;
}

/* 状态条样式 */
.status-bar {
	padding: 15px 25px;
	background: #e9ecef;
	border-top: 1px solid #dee2e6;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.95rem;
	color: #495057;
}

.status-indicator {
	display: flex;
	align-items: center;
	gap: 8px;
}

.indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: inline-block;
}

.indicator.active {
	background: #28a745;
	box-shadow: 0 0 8px #28a745;
}

.indicator.inactive {
	background: #6c757d;
}

/* 响应式布局 */
@media only screen and (max-width: 1200px) {
	.sidebar {
		display: none;
	}

	.main {
		width: 96%;
		padding: 0.5rem 2%;
	}

	.main-inner,
	.container {
		width: 100%;
	}
	
	.data-content{
		max-height: max-content;
		overflow: hidden;
	}

	.search-container {
		width: 6.32rem;
	}

	.search-input {
		width: 5.9rem;
	}

}

@media (max-width: 767px) {

	.breadcrumbsSearch {
		flex-wrap: wrap;
		flex-direction: column;
	}

	.search-container {
		margin-top:0.2rem;
		width: 100%;
	}

	.search-input {
		width: 100%;
	}

	.pagination {
		align-items: flex-start;
	}

	.pagination-controls {
		overflow-x: auto;
		padding-bottom: 10px;
		justify-content: center;
	}

	.articleContent{
		padding: 0;
	}

	.infoBlock{
		width: 48%;
	}

	.infoBlock:nth-child(3n-1) {
	    margin-left: 0%;
	    margin-right: 0%;
	}

	.infoBlock:nth-child(odd) {
	    margin-left: 0%;
	    margin-right: 4%;
	}

	.page-number,.ellipsis {
		display: none;
	}

		.btnTab {
		height: 0.6rem;
	}

	.page-size-select{
		width: auto;
		height: 0.6rem;
	}

	.page-btn,
	.jump-input {
		height: 0.6rem;
		line-height: 0.6rem;
	}
}