| <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 { |
| 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 { |
| 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 { |
| 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; |
| } |
| |
| |
| .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"> |
|
|
| |
| <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> |
|
|
| |
| <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 & Contact</div> |
| </div> |
|
|
| <div class="main-title">How can we help you today?</div> |
|
|
| <div class="search-bar">Search eBay Help...</div> |
| </div> |
|
|
| |
| <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> |