-
Notifications
You must be signed in to change notification settings - Fork 0
/
p1.html
78 lines (77 loc) · 1.83 KB
/
p1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" href="//qian-img.tenpay.com/web/v2/favicon.ico?v=1" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>零钱通授权</title>
<link href="//cdn.bootcss.com/pure/1.0.0/base-min.css" rel="stylesheet">
<link href="//cdn.bootcss.com/pure/1.0.0/buttons-min.css" rel="stylesheet">
<style>
header {
width: 80%;
margin: 0 auto;
text-align: center;
border-bottom: 1px solid #eee;
}
header img {
margin-top: 20px;
width: 25%;
}
header h2 {
margin: 8px 0 16px 0;
}
section {
width: 80%;
margin: 0 auto;
}
section h3 {
font-size: 16px;
margin: 10px 0;
}
section p {
margin-top: 0;
font-size: 14px;
color: #999;
}
.btn-wrapper {
display: block;
width: 80%;
margin: 40px auto;
text-align: center;
}
.btn-wrapper .pure-button {
width: 100%;
color: #fff;
font-size: 110%;
background: rgb(28, 184, 65);
}
</style>
</head>
<body class="page-1">
<header>
<img src="https://gw.alipayobjects.com/zos/rmsportal/jfSbVEjAgBCfmIAXkhOc.png" alt="零钱通">
<h2>零钱通</h2>
</header>
<section>
<ul>
<li>
<h3>微信支付新方式</h3>
<p>像零钱一样,支持红包、转账、消费等</p>
</li>
<li>
<h3>赚取收益</h3>
<p>买入货币基金,赚取收益</p>
</li>
<li>
<h3>取出灵活</h3>
<p>资金取出秒到账</p>
</li>
</ul>
</section>
<a href="./p2.html" class="btn-wrapper">
<button class="pure-button">同意授权并开通</button>
</a>
</body>
</html>