up_system.html
2.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE >
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>友情提示</title>
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<meta name="format-detection" content="telephone=no" />
<meta name="format-detection" content="email=no" />
<meta name="format-detection" content="address=no;">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<style>
/*body{ font-family:"微软雅黑";
height:82%;
FILTER: progid:DXImageTransform.Microsoft.Gradient(gradientType=0,startColorStr=#ECECEC,endColorStr=white); /*IE 6 7 8*
background: -ms-linear-gradient(top, #ECECEC, #fff); /* IE 10 *
background:-moz-linear-gradient(top,#ECECEC,#fff);/*火狐*
background:-webkit-gradient(linear, 0% 0%, 0% 100%,from(#ECECEC), to(#fff));/*谷歌*
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ECECEC), to(#fff)); /* Safari 4-5, Chrome 1-9*
background: -webkit-linear-gradient(top, #ECECEC, #fff); /*Safari5.1 Chrome 10+*
background: -o-linear-gradient(top, #ECECEC, #fff); /*Opera 11.10+*
}*/
body{
margin: 0;
padding: 0;
font-family: "Microsoft Yahei";
}
.fontbig{ font-size:30px; color:#6F4C2D; line-height:50px;}
.fontts{ font-size:14px; color:#A4A4A4; line-height:30px;}
.errImg{width: 100%;}
.info{position: absolute;left: 42%;top: 250px; width: 450px;height: 150px;overflow: auto;}
.info p{margin: 10px 0;}
.info_tit{font-size: 36px;color: #0164a8;}
.info_text{font-size: 20px;color: #3f3b3a;}
@media (max-width:1440px ) {
.info{top: 200px;}
}
@media (max-width:1280px ) {
.info{width: 400px;}
.info_tit{font-size: 24px;}
.info_text{font-size: 18px;}
}
@media (max-width:1024px ) {
.info{top: 150px;width: 300px;}
.info_tit{font-size: 24px;}
.info_text{font-size: 18px;}
}
</style>
<script src="/public/js/global.js"></script>
<script src="/public/js/jquery-1.8.2.min.js"></script>
</head>
<body>
<div class="info">
<p class="info_tit">能量升级中…</p>
<p class="info_text">亲爱的用户,我们正在对网站进行升级维护工作,给您带来不便,深表歉意!</p>
</div>
<img class="errImg" src="/public/images/err.jpg" />
</body>
</html>
<script>
var getmsg="您未登录,无法操作!";
if (getQueryString("msg")!=null && getQueryString("msg")!="")
{
getmsg=getQueryString("msg");
}
// alert(getmsg)
$(".fontbig").html(getmsg);
</script>