<!DOCTYPE html>
<html lang="en">
<head> <meta name="keywords" content="keywords_temp" />
<meta name="description" content="description_temp" />

    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>404 Error</title>
    <meta http-equiv="refresh" content="10;url=../../">
</head>

<style>
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.error-container {
    max-width: 600px;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease-in-out;
}

.error-code {
    font-size: 120px;
    font-weight: bold;
    color: #3498DB;
    margin: 0;
    line-height: 1;
    animation: bounce 1s ease; 
	text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.error-message {
    font-size: 24px;
    margin: 20px 0;
    color: #555;
    animation: slideIn 1s ease-in-out;
}

.error-description {
    font-size: 16px;
    margin-bottom: 30px;
    color: #ccc;
    animation: slideIn 1s ease-in-out;
}

.home-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #3498DB;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-in-out; font-family:"Microsoft Yahei";
}

.home-button:hover {
    background-color: #2173aa;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2); font-family:"Microsoft Yahei";
}




@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

@keyframes slideIn {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
    .error-code {
        font-size: 80px;
    }
    .error-message {
        font-size: 20px;
    }
}


</style>

<body>
    <div class="error-container">
        <h1 class="error-code">404</h1>
        <p class="error-message">很抱歉，您的访问请求被禁止!</p>
        <p class="error-description">
   Sorry,Your request was rejected.
        </p>
        <a href="../../" class="home-button">返回首页</a>
    </div>
</body>
</html>
