File size: 7,415 Bytes
67530d2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Help & Contact - Mock</title>
<meta name="viewport" content="width=1080, initial-scale=1.0">
<style>
  body {
    margin: 0;
    padding: 0;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
    color: #111;
  }
  #render-target {
    width: 1080px;
    height: 2400px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
  }

  /* Status bar */
  .status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 1080px;
    height: 96px;
    padding: 0 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #111;
    font-weight: 600;
    font-size: 36px;
  }
  .status-left {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .status-right {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  .sun-icon {
    width: 34px;
    height: 34px;
  }
  .wifi-icon, .battery-icon {
    height: 32px;
  }

  /* Header area */
  .header {
    position: absolute;
    top: 96px;
    left: 0;
    width: 100%;
    padding: 24px 36px 0 36px;
    box-sizing: border-box;
  }
  .top-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
  }
  .close-btn {
    width: 72px;
    height: 72px;
    border-radius: 36px;
    background: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .close-btn svg { width: 28px; height: 28px; }
  .title {
    font-size: 50px;
    font-weight: 700;
  }

  .main-title {
    margin-top: 20px;
    font-size: 92px;
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.5px;
  }

  .search-bar {
    margin-top: 36px;
    width: calc(100% - 72px);
    height: 120px;
    background: #F3F3F3;
    border-radius: 60px;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
    color: #999;
    font-size: 42px;
  }

  /* List items */
  .list {
    position: absolute;
    top: 700px;
    left: 0;
    width: 100%;
    padding: 0 0 140px 0;
  }
  .card {
    width: 100%;
    background: #EAF6FF;
    padding: 40px 120px 40px 36px;
    box-sizing: border-box;
    border-top: 1px solid #E0EEF9;
  }
  .card:first-child {
    border-top: none;
  }
  .card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .card-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 18px;
  }
  .card-sub {
    font-size: 36px;
    color: #666;
    font-weight: 500;
  }
  .arrow {
    width: 52px;
    height: 52px;
    color: #1E6CFF;
  }

  /* Bottom gesture bar */
  .gesture-bar {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 12px;
    background: #CFCFCF;
    border-radius: 8px;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status Bar -->
  <div class="status-bar">
    <div class="status-left">
      <div>10:48</div>
      <svg class="sun-icon" viewBox="0 0 24 24">
        <circle cx="12" cy="12" r="5" fill="#808080"></circle>
        <g stroke="#808080" stroke-width="1.5">
          <line x1="12" y1="1.5" x2="12" y2="5"></line>
          <line x1="12" y1="19" x2="12" y2="22.5"></line>
          <line x1="1.5" y1="12" x2="5" y2="12"></line>
          <line x1="19" y1="12" x2="22.5" y2="12"></line>
        </g>
      </svg>
    </div>
    <div class="status-right">
      <svg class="wifi-icon" viewBox="0 0 24 24">
        <path d="M2 8.5c5.5-4.5 14.5-4.5 20 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/>
        <path d="M5 12.5c4-3 10-3 14 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/>
        <path d="M9 16.5c2.5-1.8 5.5-1.8 8 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/>
        <circle cx="12.5" cy="19" r="1.5" fill="#555"/>
      </svg>
      <svg class="battery-icon" viewBox="0 0 28 24">
        <rect x="1" y="5" width="22" height="14" rx="3" ry="3" fill="none" stroke="#555" stroke-width="2"/>
        <rect x="3.5" y="7.5" width="14" height="9" rx="2" fill="#555"/>
        <rect x="23.5" y="9" width="3.5" height="6" rx="1" fill="#555"/>
      </svg>
    </div>
  </div>

  <!-- Header -->
  <div class="header">
    <div class="top-row">
      <div class="close-btn">
        <svg viewBox="0 0 24 24">
          <path d="M5 5 L19 19 M19 5 L5 19" stroke="#333" stroke-width="2.5" stroke-linecap="round"/>
        </svg>
      </div>
      <div class="title">Help &amp; Contact</div>
    </div>

    <div class="main-title">How can we help you today?</div>

    <div class="search-bar">Search eBay Help...</div>
  </div>

  <!-- List of help topics -->
  <div class="list">
    <div class="card">
      <div class="card-row">
        <div>
          <div class="card-title">Return an item for a refund</div>
          <div class="card-sub">Popular article</div>
        </div>
        <svg class="arrow" viewBox="0 0 24 24">
          <path d="M8 5 L16 12 L8 19" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </div>
    </div>

    <div class="card">
      <div class="card-row">
        <div>
          <div class="card-title">Get help with an item that hasn't arrived</div>
          <div class="card-sub">Popular article</div>
        </div>
        <svg class="arrow" viewBox="0 0 24 24">
          <path d="M8 5 L16 12 L8 19" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </div>
    </div>

    <div class="card">
      <div class="card-row">
        <div>
          <div class="card-title">Create a listing</div>
          <div class="card-sub">Popular article</div>
        </div>
        <svg class="arrow" viewBox="0 0 24 24">
          <path d="M8 5 L16 12 L8 19" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </div>
    </div>

    <div class="card">
      <div class="card-row">
        <div>
          <div class="card-title">Payments on hold</div>
          <div class="card-sub">Popular article</div>
        </div>
        <svg class="arrow" viewBox="0 0 24 24">
          <path d="M8 5 L16 12 L8 19" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </div>
    </div>

    <div class="card">
      <div class="card-row">
        <div>
          <div class="card-title">Account restrictions and suspensions</div>
          <div class="card-sub">Popular article</div>
        </div>
        <svg class="arrow" viewBox="0 0 24 24">
          <path d="M8 5 L16 12 L8 19" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </div>
    </div>

    <div class="card">
      <div class="card-row">
        <div>
          <div class="card-title">Selling limits</div>
          <div class="card-sub">Popular article</div>
        </div>
        <svg class="arrow" viewBox="0 0 24 24">
          <path d="M8 5 L16 12 L8 19" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/>
        </svg>
      </div>
    </div>
  </div>

  <div class="gesture-bar"></div>
</div>
</body>
</html>