52 lines
1011 B
HTML
52 lines
1011 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="shortcut icon" type="image/x-icon" href="">
|
|
<!-- 自动将HTTP请求升级成安全的HTTPS请求。 -->
|
|
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
|
|
<title>京西菜市-管理平台</title>
|
|
<style>
|
|
.yz-loading {
|
|
width: 140px;
|
|
height: 140px;
|
|
border: 16px solid rgb(223, 223, 223);
|
|
border-radius: 50%;
|
|
border-top-color: lightgreen;
|
|
animation: rot .5s ease-in-out infinite;
|
|
position: fixed;
|
|
left: 50%;
|
|
top: 50%;
|
|
margin-left: -70px;
|
|
margin-top: -70px;
|
|
z-index: 9999;
|
|
}
|
|
|
|
.yz-mask {
|
|
position: fixed;
|
|
z-index: 9998;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: white;
|
|
}
|
|
|
|
@keyframes rot {
|
|
from {
|
|
transform: rotateZ(0)
|
|
}
|
|
|
|
to {
|
|
transform: rotateZ(360deg)
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
</body>
|
|
|
|
</html> |