53 lines
1.4 KiB
HTML
53 lines
1.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>授权登录-上海一草一木教育科技有限公司</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
background-image: url('https://static-data-ycymedu.oss-cn-shanghai.aliyuncs.com/backgroundImage.png');
|
|
background-size: cover;
|
|
background-position: center;
|
|
position: relative; /* 设置为相对定位,以便绝对定位的元素相对于它 */
|
|
overflow: hidden; /* 隐藏滚动条 */
|
|
}
|
|
|
|
#app {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.copyright {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin: 0;
|
|
padding: 10px 20px;
|
|
font-size: 0.8em;
|
|
color: #666;
|
|
text-align: center;
|
|
width: 100%;
|
|
background-color: rgba(255, 255, 255, 0.9);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<!-- 主要内容 -->
|
|
</div>
|
|
|
|
<!-- 添加版权信息 -->
|
|
<p class="copyright">© 2014-2024 www.ycymedu.com 上海一草一木教育科技有限公司</p>
|
|
|
|
<script type="module" src="/src/main.js"></script>
|
|
</body>
|
|
</html> |