error.html
1.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>泛微-协同软件的精英团队,我们的目标:造就协同软件第一品牌!</title>
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
</head>
<body>
<div class="error-container">
<div class="error-wrapper">
<div class="error-icon"></div>
<div class="error-msg">
很抱歉,当前系统不支持IE8,请使用IE9以上浏览器或其他主流浏览器访问
</div>
</div>
</div>
</body>
<style type="text/css">
*, :after, :before {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.error-container {
text-align: center;
}
.error-wrapper {
text-align: left;
padding-left: 130px;
position: relative;
display: inline-block;
margin-top: 300px;
width: 511px;
height: 170px;
border: 1px solid #E2E2E2;
}
.error-icon {
position: absolute;
width: 63px;
height: 63px;
background: url('/cloudstore/images/e9/err.png');
background-repeat: no-repeat;
background-size: cover;
left: 38px;
top: 57px;
}
.error-msg {
text-align: left;
padding-top: 68px;
display: inline-block;
font-size: 14px;
width: 330px;
color: #aaa;
}
</style>
</html>