-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmemberrecycle.html
184 lines (107 loc) · 4.17 KB
/
memberrecycle.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
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="zh-tw">
<head>
<meta charset="UTF-8">
<title>UniSay</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/login_main.css" rel="stylesheet" type="text/css">
<!-- Icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- fonts -->
<link href="https://fonts.googleapis.com/css?family=Cinzel+Decorative" rel="stylesheet">
<!-- font-family: 'Cinzel Decorative', cursive; -->
<link href="https://fonts.googleapis.com/css?family=Amita" rel="stylesheet">
<!-- font-family: 'Amita', cursive; -->
<link href="https://fonts.googleapis.com/css?family=IM+Fell+English+SC" rel="stylesheet">
<!-- font-family: 'IM Fell English SC', serif; -->
<link href="https://fonts.googleapis.com/css?family=Fredericka+the+Great" rel="stylesheet">
<!-- font-family: 'Fredericka the Great', cursive; -->
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans" rel="stylesheet">
<!-- font-family: 'Josefin Sans', sans-serif; -->
<link href="https://fonts.googleapis.com/css?family=Dekko" rel="stylesheet">
<!-- font-family: 'Dekko', cursive; -->
<link href="https://fonts.googleapis.com/css?family=Josefin+Slab" rel="stylesheet">
<!-- font-family: 'Josefin Slab', serif; -->
<link href="https://fonts.googleapis.com/css?family=Patrick+Hand" rel="stylesheet">
<!-- font-family: 'Patrick Hand', cursive; -->
<link href="https://fonts.googleapis.com/css?family=Inder" rel="stylesheet">
<!-- font-family: 'Inder', sans-serif; -->
<link href="https://fonts.googleapis.com/css?family=Mirza" rel="stylesheet">
<!-- font-family: 'Mirza', cursive; -->
</head>
<!-- ====================================================================================== -->
<body>
<!-- 主頁面內容 -->
<div class="wrap">
<header>
<!-- 平板手機會fixed的banner -->
<div class="banner">
<!-- 三明治選單 -->
<div class="sandwich"></div>
<!-- fixed的按鈕 -->
<div class="cart_icon"></div>
<div class="cart_sidebar"></div>
<div class="member_icon"></div>
<div class="member_sidebar"></div>
<div class="totop_icon"></div>
<!-- 中央logo -->
<div class="logo"><img src="images/header/header_logo.svg" alt=""></div>
<!-- 上方選單列 -->
<nav>
<ul>
<!-- 當前頁面掛上here的class -->
<li class="icon_aboutus">
<a href="aboutus.html"></a>
</li>
<li class="icon_product">
<a href="product.html"></a>
</li>
<li class="icon_custom">
<a href="custom.html"></a>
</li>
<li class="icon_inspire">
<a href="inspire.html"></a>
</li>
</ul>
</nav>
<!-- 暗幕的背景 -->
<div class="fixed_shadowbg"></div>
</div><!-- banner包全部 -->
</header>
<!-- ====================================================================================== -->
<content>
<div class="con">
<!-- 麵包屑 -->
<div class="loginnav">
<p>SYSTEM OF RECYCLE</p>
<img src="images/member/line.svg">
</div>
<!-- 中間內容 -->
<div class="recycletext">
<p>回收制度<br>
若您曾在UniSay購買過商品,當您想更換手機殼時,<br>
歡迎您登入會員中心,並且聯絡UniSay,<br>
UniSay將親自過去回收您的舊商品,<br>
<br>
回收商品的同時,讓我們也一同為地球的永續發展盡一份心力。<br>
當成功回收您的舊商品後,<br>
我們將會在您的會員中心替您放入購物金200元,<br>
歡迎您再度回來選購商品!<br>
</p>
</div>
<div class="recycleimg">
<img src="images/member/recycle.svg">
</div>
</div>
</content>
<!-- ====================================================================================== -->
<footer>
</footer>
<!-- ====================================================================================== -->
</div><!-- wrap的結尾 -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="js/nav_icon.js"></script>
</body>
</html>