-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
104 lines (86 loc) · 3.46 KB
/
404.html
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>平安普惠官网_无抵押个人小额贷款_有抵押贷款</title>
<meta name="keywords" content="平安普惠,小额贷款,银行贷款,无抵押贷款,个人贷款,信用贷款,手机贷款">
<meta name="description" content="平安普惠整合了平安直通贷款、陆金所P2P小额信贷、平安易贷三个产品,致力于为个人、企业提供银行小额无抵押贷款">
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,initial-scale=1.0,user-scalable=no" />
<meta name="apple-touch-fullscreen" content="yes" />
<meta name="format-detection" content="telephone=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="pragram" content="no-cache" />
<script src="js/common.js"></script>
<link rel="stylesheet" href="css/common.css"/>
<link rel="stylesheet" href="css/index.css"/>
<script src="js/jquery.js"></script>
</head>
<body>
<div class="wrapper">
<section class="logo-box">
<img src="images/logo.png" width="50%"/>
</section>
<section class="cw-box">
<p class="cw-tit">服务器正在维护中,请稍后再试</p>
<p class="cw-tit1"><span id="num">5</span>秒后自动返回首页</p>
<a href="index.html" class="back-btn">立即返回首页</a>
</section>
<div class="foot-tab clearfix">
<a href="https://m.ph.com.cn" class="pc fl">
<i class="pc-icon"></i>
<span>电脑版</span>
</a>
<a href="javascript:void(0)" class="mobile fl" style="color:#303030;">
<i class="mobile-icon"></i>
<span>触屏版</span>
</a>
<a href="https://m.ph.com.cn/m/app/download/index1.html" class="down-app fr">
<i class="downapp-icon"></i>
<span>APP</span>
</a>
</div>
<div class="copyright pt2 pb12">
<p class="bottom_logo"><img src="images/bottom_logo.png" width="100%" height="auto"></p>
<p class="tc bottom_txt">版权所有©中国平安保险(集团)股份有限公司 未经许可不得复制、转载或摘编,违者必究!<br>
Copyright©PING AN INSURANCE(GROUP)COMPANY OF CHINA,LTD.All Rights Reserved<br>
ICP许可证号 粤ICP备06118290号-11</p>
</div>
<section class="bt-nav">
<div class="bt-navin clearfix">
<a href="index.html" class="active bt color1 bgcolor">
<i class="icon1"></i>
<span>首页</span>
</a>
<a href="classification.html">
<i class="icon2"></i>
<span>分类</span>
</a>
<a href="product.html">
<i class="icon3"></i>
<span>产品</span>
</a>
<a href="gzwx.html">
<i class="icon4"></i>
<span>咨询</span>
</a>
</div>
</section>
</div>
<script>
function jump(count) {
window.setTimeout(function(){
count--;
if(count > 0) {
$('#num').attr('innerHTML', count);
jump(count);
} else {
window.location.href="index.html";
}
}, 1000);
}
jump(5);
</script>
</body>
</html>