File size: 4,803 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 | <html>
<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 {
position: relative;
width: 1080px;
height: 2400px;
overflow: hidden;
background: #ffffff;
}
/* Status bar */
.status-bar{
height: 88px;
padding: 18px 36px 0 36px;
box-sizing: border-box;
font-weight: 600;
color:#222;
display: flex;
align-items: center;
justify-content: space-between;
}
.status-right{ display:flex; gap:26px; align-items:center; }
.sb-icon{ width:34px; height:34px; }
/* Header */
.header{
display:flex;
align-items:center;
gap:28px;
padding:16px 36px 18px 36px;
}
.close-btn{
width:92px; height:92px; border-radius:46px;
display:flex; align-items:center; justify-content:center;
}
.close-btn svg{ width:56px; height:56px; }
.title{
font-size:64px; font-weight:800; letter-spacing:.2px;
}
/* Search */
.search-wrap{
padding: 10px 36px 10px 36px;
}
.search{
display:flex; align-items:center; gap:20px;
background:#f3f4f6; border-radius:36px; height:120px;
padding: 0 28px;
box-sizing: border-box;
}
.search svg{ width:44px; height:44px; fill:#9aa0a6; }
.search input{
border:none; outline:none; background:transparent;
font-size:42px; color:#6b7280; width:100%;
}
/* Article section */
.mini-label{
color:#2a5bf6; font-size:32px; margin:26px 36px 8px 36px;
}
.article-card{
margin:0 24px;
border:6px solid #f1a43a;
border-radius:18px;
padding:42px 36px;
}
.article-title{
color:#121a7e;
font-size:72px; font-weight:800; line-height:1.12;
}
.links{
margin: 22px 36px;
display:flex; flex-direction:column; gap:36px;
}
.link-row{
color:#2a5bf6; font-weight:800; font-size:54px;
}
.sep-line{
height:16px; background:#f29a83; margin:40px 0 36px 0;
}
.info-text{
padding: 0 36px;
font-size:54px; line-height:1.35; color:#111; font-weight:600;
}
.hint-card{
margin: 36px;
background:#e9f8ff; border-radius:18px;
padding: 40px 36px;
font-size:44px; color:#0f172a;
}
.hint-card a{ color:#2a5bf6; font-weight:800; text-decoration:none; }
/* Bottom home indicator */
.home-indicator{
position:absolute; left:50%; transform:translateX(-50%);
bottom:24px; width:380px; height:12px; border-radius:8px; background:#cfcfcf;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div style="font-size:38px;">10:49</div>
<div class="status-right">
<!-- simple wifi -->
<svg class="sb-icon" viewBox="0 0 24 24" fill="#555"><path d="M12 20.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zM3 9.5l1.4 1.4A11 11 0 0 1 19.6 10L21 8.6A13 13 0 0 0 3 9.5zm4 4l1.4 1.4a7 7 0 0 1 7.2 0L17 13.5a9 9 0 0 0-10 0z"/></svg>
<!-- battery -->
<svg class="sb-icon" viewBox="0 0 24 24" fill="#555"><rect x="2" y="7" width="18" height="10" rx="2"/><rect x="20" y="10" width="2" height="4"/></svg>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="close-btn">
<svg viewBox="0 0 24 24" stroke="#111" stroke-width="2.5" fill="none">
<circle cx="12" cy="12" r="10" stroke="#d1d5db"></circle>
<path d="M7 7l10 10M17 7L7 17"></path>
</svg>
</div>
<div class="title">Help & Contact</div>
</div>
<!-- Search -->
<div class="search-wrap">
<div class="search">
<svg viewBox="0 0 24 24"><path d="M21 21l-4.3-4.3M10.5 18a7.5 7.5 0 1 1 0-15 7.5 7.5 0 0 1 0 15z"/></svg>
<input type="text" placeholder="Search eBay Help..." />
</div>
</div>
<!-- Article -->
<div class="mini-label">4 min article</div>
<div class="article-card">
<div class="article-title">Return an item for a refund</div>
</div>
<div class="links">
<div class="link-row">Open a return request ↓</div>
<div class="link-row">Send the item back ↓</div>
<div class="link-row">Get your refund ↓</div>
<div class="link-row">Get help from eBay ↓</div>
<div class="link-row">Close a return request ↓</div>
<div class="link-row">Misuse of returns ↓</div>
</div>
<div class="sep-line"></div>
<div class="info-text">
If you've changed your mind about an item you bought or there's something wrong with it, you can request a return.
</div>
<div class="hint-card">
Need an update on an open return request? See how to
<a href="#">check the status of your return</a>
</div>
<div class="home-indicator"></div>
</div>
</body>
</html> |