
	/* 证书查询页面样式 */
.cert-search-box {
	background: #f9f9f9;
	padding: 35px 40px 40px 40px;
	border-radius: 8px;
	border: 1px solid #eee;
	margin-bottom: 30px;
}
.cert-search-box .search-title {
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin-bottom: 20px;
	text-align: center;
}
.cert-search-box .search-title i {
	color: #DB6731;
	margin-right: 8px;
}
.cert-search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	justify-content: center;
	align-items: flex-end;
}
.cert-search-form .form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 0;padding-bottom: 0;
}
.cert-search-form .form-group label {
	font-size: 14px;
	color: #555;
	font-weight: bold;
}
.cert-search-form .form-group input {
	width: 220px;
	padding: 10px 14px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	transition: 0.2s;
	outline: none;
}
.cert-search-form .form-group input:focus {
	border-color: #DB6731;
	box-shadow: 0 0 6px rgba(219, 103, 49, 0.2);
}
.cert-search-form .search-btn {
	padding: 10px 40px;
	background: #DB6731;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	transition: 0.2s;
	height: 42px;
	line-height: 1;
}
.cert-search-form .search-btn:hover {
	background: #c45a28;
}
.cert-search-form .search-btn i {
	margin-right: 6px;
}

/* 结果列表 */
.cert-result-box {
	margin-top: 10px;
}
.cert-result-box .result-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 2px solid #DB6731;
	margin-bottom: 15px;
}
.cert-result-box .result-header h4 {
	font-size: 16px;
	color: #333;
	margin: 0;
}
.cert-result-box .result-header h4 i {
	color: #DB6731;
	margin-right: 6px;
}
.cert-result-box .result-header span {
	font-size: 13px;
	color: #999;
}

.cert-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}
.cert-table thead {
	background: #f5f5f5;
}
.cert-table thead th {
	padding: 12px 15px;
	text-align: left;
	font-weight: bold;
	color: #333;
	border-bottom: 2px solid #e0e0e0;
}
.cert-table tbody td {
	padding: 12px 15px;
	border-bottom: 1px solid #eee;
	color: #555;
}
.cert-table tbody tr:hover {
	background: #fafafa;
}
.cert-table .btn-view {
	padding: 4px 16px;
	background: #DB6731;
	color: #fff;
	border: none;
	border-radius: 3px;
	font-size: 13px;
	cursor: pointer;
	transition: 0.2s;
}
.cert-table .btn-view:hover {
	background: #c45a28;
}
.cert-table .btn-view i {
	margin-right: 4px;
}

/* 空状态 */
.empty-state {
	text-align: center;
	padding: 40px 0;
	color: #999;
}
.empty-state i {
	font-size: 48px;
	color: #ddd;
	display: block;
	margin-bottom: 12px;
}
.empty-state p {
	font-size: 15px;
}

/* 响应式 */
@media (max-width:760px) {
	.cert-search-box {
		padding: 20px 15px 25px 15px;
	}
	.cert-search-form {
		flex-direction: column;
		align-items: stretch;
	}
	.cert-search-form .form-group {
		width: 100%;
	}
	.cert-search-form .form-group input {
		width: 100%;
	}
	.cert-search-form .search-btn {
		width: 100%;
	}
	.cert-table {
		font-size: 12px;
	}
	.cert-table thead th,
	.cert-table tbody td {
		padding: 8px 10px;
	}
	.cert-table .btn-view {
		padding: 3px 12px;
		font-size: 12px;
	}
}
