87 lines
2.0 KiB
HTML
Executable File
87 lines
2.0 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
{include file="common/meta" /}
|
|
|
|
<style type="text/css">
|
|
body {
|
|
background-color: #FAFAFA;
|
|
background-size: cover;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
background: url("/assets/img/login-background.png") no-repeat center / 100%;
|
|
}
|
|
|
|
.login-ctr {
|
|
width: 1073px;
|
|
height: 642px;
|
|
background: #FFFFFF;
|
|
box-shadow: 0px 4px 8px 2px rgba(0,0,0,0.04), 0px 2px 6px 0px rgba(0,0,0,0.06), 0px 0px 4px 0px rgba(0,0,0,0.08);
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.flex-c {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.flex-r {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
}
|
|
|
|
.flex-l {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
}
|
|
|
|
.flex-sb {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.container .login-ctr .left {
|
|
width: 400px;
|
|
height: 360px;
|
|
background: url("/assets/img/login-image.png") no-repeat center / 100%;
|
|
}
|
|
|
|
.container .login-ctr .right {
|
|
width: 482px;
|
|
height: 445px;
|
|
}
|
|
|
|
.container .login-ctr .right {
|
|
margin-left: 100px;
|
|
}
|
|
|
|
.container .login-ctr .right .title {
|
|
height: 67px;
|
|
font-weight: 700;
|
|
font-size: 40px;
|
|
color: rgba(0,0,0,0.9);
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container flex-c">
|
|
<div class="login-ctr flex-c">
|
|
<div class="left"></div>
|
|
<div class="right">
|
|
<div class="title">
|
|
欢迎登录 超邦手后台
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{include file="common/script" /}
|
|
</body>
|
|
</html>
|