<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>发生错误</title>
	<style>
		.error-container {
			max-width: 600px;
			margin: 50px auto;
			padding: 20px;
			border: 1px solid #e74c3c;
			border-radius: 5px;
			background-color: #f9ebea;
			font-family: Arial, sans-serif;
		}
		.error-header {
			color: #e74c3c;
			font-size: 24px;
			margin-bottom: 15px;
		}
		.error-details {
			margin-bottom: 15px;
		}
		.error-message {
			padding: 10px;
			background-color: #fff;
			border-left: 4px solid #e74c3c;
			font-family: monospace;
		}
		.error-code {
			font-weight: bold;
		}
	</style>
</head>
<body>
<div class="error-container">
	<div class="error-header">Oops! Something went wrong</div>
	<div class="error-details">
		<p>We encountered an error while processing your request:</p>
		<div class="error-message">No static resource sitemap.xml.</div>
	</div>
	<div>
		<span class="error-code">500</span> -
	</div>
</div>
</body>
</html>