/* 面包屑容器 */
.breadcrumb-box {
	margin: 15px auto 0px;
	max-width: 1200px;
}
.layui-breadcrumb a{
	font-size: 16px;
	text-decoration: none;
}

.layui-breadcrumb a:hover{
	color: #2373c8 !important;
}

.main-container {
	width: 95%;
	max-width: 1200px;
	margin: 20px auto;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
}
.menu-left {
	box-sizing: border-box;
	height: fit-content;
	margin-right: 20px;
	flex: 0 0 calc(23.666% - 20px);
	max-width: calc(23.666% - 20px);
}
.menu-left-module {
	padding: 20px 15px;
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.menu-left-sidebar {
	border-radius: 6px;
	cursor: pointer;
	margin-top: 20px;
}
.content-right {
	background-color: #fff;
	padding: 20px;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05);
	box-sizing: border-box;
	flex: 0 0 calc(76.333%);
	max-width: calc(76.333%);
}
.menu-title {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	padding: 0 0 10px 10px;
	border-bottom: 1px solid #eee;
	margin-bottom: 15px;
}
.menu-item {
	list-style: none;
	padding: 0;
	margin: 0;
}
.menu-item li {
	margin: 8px 0;
	padding: 12px 25px;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
}
.menu-icon {
	width: 20px;
	height: 20px;
	margin-right: 8px;
	font-size: 16px;
	color: #1E9FFF;
}
.menu-item li.active {
	background-color: #e8f4fc;
	color: #1E9FFF;
}
.search-area {
	margin-bottom: 25px !important;
	display: flex;
	align-items: center;
	padding-bottom: 5px;
	flex-wrap: wrap;
	gap: 10px;
}
.search-input {
	width: 280px;
	margin-right: 0;
}
/* 日期输入框样式（适配laydate） */
.date-input {
	width: 180px;
}
.date-separator {
	color: #666;
	margin: 0 5px;
}
.list-container {
	margin-top: 0;
}
.list-header {
	display: flex;
	background-color: #f8f8f8;
	padding: 10px;
	border-bottom: 1px solid #eee;
}
.header-time {
	width: 120px;
	color: #666;
	font-weight: 500;
}
.header-title {
	flex: 1;
	color: #666;
	font-weight: 500;
}
.list-item {
	display: flex;
	padding: 12px 10px;
	border-bottom: 2px dashed #eee;
	align-items: center;
}
.list-item:hover .item-time,
.list-item:hover .item-title {
	color: #0066cc;
}
.item-time {
	width: 120px;
	color: #666;
}
.item-title {
	flex: 1;
	color: #333;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 10px;
}
.new-tag {
	display: inline-block;
	width: 24px;
	height: 14px;
	line-height: 14px;
	background-color: #ed4014;
	color: #fff;
	font-size: 10px;
	text-align: center;
	border-radius: 2px;
	margin-left: 5px;
}
.page-area {
	margin-top: 20px;
	text-align: center;
	color: #666;
}
.page-btn {
	margin: 0 5px;
	padding: 4px 10px;
	border: 1px solid #ddd;
	border-radius: 2px;
	cursor: pointer;
	background-color: #fff;
}
.page-btn:disabled {
	background-color: #f8f8f8;
	cursor: not-allowed;
	color: #ccc;
}
.page-info {
	margin: 0 8px;
}
.page-current {
	color: #ed4014;
	font-weight: bold;
}

/* 响应式适配 */
@media (max-width: 750px) {
	.main-container {
		display: block;
	}
	.menu-left {
		flex: 0 0 100%;
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 15px;
	}
	.menu-left-sidebar {
		width: 100%;
		border-radius: 6px;
		cursor: pointer;
		margin-top: 20px;
	}
	.menu-left-sidebar img{
		width: 100%;
	}
	.content-right {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.search-area {
		justify-content: right;
	}
	.search-input {
		width: 45%;
	}
	.date-input {
		width: calc(50% - 15px);
	}
	.header-time, .item-time {
		width: 100px;
	}
	.list-header, .list-item {
		padding: 8px 5px;
	}
}