-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMyDroplet.html
More file actions
134 lines (118 loc) · 3.56 KB
/
MyDroplet.html
File metadata and controls
134 lines (118 loc) · 3.56 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>华杉科技实训周</title>
<link rel="short icon" href="Resource/icon.png">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
<link rel="stylesheet" href="CommonStyle.css">
<style>
.MD_top_div {
position: relative;
}
.MD_bg_img {
width: 100%;
}
.MD_inner_div {
text-align: center;
width: 66px;
height: 76px;
left: 50%;
top: 50%;
margin-left: -33px;
margin-top: -38px;
position: absolute;
}
.MD_inner_div span {
padding-top: 5px;
}
button {
width: 66px;
height: 20px;
background-color: rgb(21, 129, 207);
margin-top: 5px;
}
.MD_bottom_div {
width: 100%;
}
.MD_bottom_inner_div {
width: 90%;
height: 50px;
line-height: 50px;
border: 1px solid #cccccc;
margin: 10px auto;
border-radius: 5px;
background-color: white;
}
.MD_bottom_div .MD_bottom_inner_div .MD_left_img {
float: left;
width: 18px;
margin-left: 10px;
margin-top: 15px;
margin-right: 20px;
}
.MD_bottom_div .MD_bottom_inner_div .MD_right_img {
float: right;
margin-right: 10px;
margin-top: 18px;
}
</style>
</head>
<body>
<header class="common_header">
<span>我的小滴</span>
</header>
<div class="MD_top_div">
<img class="MD_bg_img" src="Resource/banner5.png" alt="">
<div class="MD_inner_div">
<img src="Resource/head.png" alt="">
<span>华杉科技</span>
<button>退出登录</button>
</div>
</div>
<div class="MD_bottom_div">
<div class="MD_bottom_inner_div">
<img class="MD_left_img" src="Resource/gr_1.png" alt="">
<span>我的客户</span>
<img class="MD_right_img" src="Resource/jt.png" alt="">
</div>
<div class="MD_bottom_inner_div">
<img class="MD_left_img" src="Resource/gr_2.png" alt="">
<span>我的余额</span>
<img class="MD_right_img" src="Resource/jt.png" alt="">
</div>
<div class="MD_bottom_inner_div">
<img class="MD_left_img" src="Resource/gr_3.png" alt="">
<span>注册客户</span>
<img class="MD_right_img" src="Resource/jt.png" alt="">
</div>
<div class="MD_bottom_inner_div">
<img class="MD_left_img" src="Resource/gr_4.png" alt="">
<span>修改密码</span>
<img class="MD_right_img" src="Resource/jt.png" alt="">
</div>
</div>
<footer>
<a href="DropletService.html">
<img src="Resource/nav10.png" alt="">
<span>小滴服务</span>
</a>
<a href="BusinessProject.html">
<img src="Resource/nav20.png" alt="">
<span>创业项目</span>
</a>
<a href="SignUp.html">
<img src="Resource/nav30.png" alt="">
<span>服务流程</span>
</a>
<a href="Platform.html">
<img src="Resource/nav40.png" alt="">
<span>平台风采</span>
</a>
<a class="current_a" href="MyDroplet.html">
<img src="Resource/nav51.png" alt="">
<span>我的小滴</span>
</a>
</footer>
</body>
</html>