66 lines
2.3 KiB
HTML
66 lines
2.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>404 页面未找到</title>
|
|
<meta name="renderer" content="webkit|ie-comp|ie-stand" />
|
|
<meta name="keywords" content="{$seo_keywords|default=''}" />
|
|
<meta name="description" content="{$seo_description|default=''}" />
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no,viewport-fit=cover" />
|
|
<meta name="author" content="YiFFo" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
|
<meta content="IE=7" http-equiv="X-UA-Compatible" />
|
|
<style>
|
|
.container{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
}
|
|
.container img{
|
|
margin: 2rem 0;
|
|
}
|
|
.container .text,
|
|
.container .text *{
|
|
text-align: center;
|
|
}
|
|
.container .text strong{
|
|
font-size: 22px;
|
|
color: #3b52f6;
|
|
}
|
|
@media screen and (max-width:768px){
|
|
.logo,.img{
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
.container img{
|
|
max-width: 50% !important;
|
|
margin-left: auto !important;
|
|
margin-right: auto !important;
|
|
}
|
|
.container .back {
|
|
max-width: 100px !important;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
<div class="logo">
|
|
<a href="/" class="logo"><img src="/static/home/new/images/logo.png" alt="LightCourse" style="max-width:400px" /></a>
|
|
</div>
|
|
<div class="img"><img src="/static/home/new/images/404.png" alt="404" style="max-width: 500px;"></div>
|
|
<div class="text">
|
|
<strong>Oops !</strong>
|
|
<p>对不起,找不到对应的页面。</p>
|
|
<p>您可以通过<a href="mailto:studentservice@lightglobal.org" style="color: #3b52f6;">studentservice@lightglobal.org</a> 与我们联系,或者</p>
|
|
</div>
|
|
<a href="/" class="img"><img class="back" src="/static/home/new/images/back.png" alt="back" style="max-width: 160px;"></a>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |