File size: 9,401 Bytes
fa881a6 | 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 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 | <html lang="en">
<head>
<meta charset="UTF-8">
<title>Nike Product Detail - Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #ffffff;
}
/* Top status bar */
.status-bar {
height: 90px;
padding: 0 40px;
display: flex;
align-items: center;
justify-content: space-between;
color: #111;
font-weight: 600;
font-size: 34px;
}
.status-icons {
display: flex;
align-items: center;
gap: 22px;
}
.status-dot {
width: 16px; height: 16px; border-radius: 50%; background: #111;
}
.status-battery {
width: 36px; height: 20px; border: 2px solid #111; border-radius: 4px; position: relative;
}
.status-battery::after {
content: "";
position: absolute;
right: -8px; top: 6px;
width: 6px; height: 8px; background: #111; border-radius: 2px;
}
.status-battery .level {
width: 65%; height: 100%; background: #111;
}
/* Header row */
.header {
height: 120px;
padding: 0 40px;
display: flex;
align-items: center;
justify-content: space-between;
}
.title-area {
display: flex;
align-items: center;
gap: 26px;
}
.page-title {
font-size: 48px;
font-weight: 700;
color: #0f0f0f;
letter-spacing: 0.2px;
}
.header-icons {
display: flex;
align-items: center;
gap: 36px;
}
.icon-btn { width: 56px; height: 56px; }
.cart-wrap { position: relative; }
.badge {
position: absolute;
right: -6px; top: -6px;
min-width: 42px;
height: 42px;
padding: 0 8px;
background: #111;
color: #fff;
border-radius: 14px;
display: flex; align-items: center; justify-content: center;
font-size: 26px; font-weight: 700;
border: 2px solid #fff;
}
/* Content */
.content {
padding: 0 40px;
color: #1a1a1a;
}
.subtitle {
margin-top: 8px;
font-size: 34px;
line-height: 48px;
color: #222;
}
.bullets {
margin-top: 24px;
font-size: 34px;
line-height: 54px;
}
.link {
margin-top: 28px;
font-size: 36px;
color: #3b3b3b;
font-weight: 600;
}
/* Pills and buttons */
.pill {
margin-top: 36px;
height: 120px;
border: 2px solid #E6E6E6;
border-radius: 60px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 44px;
color: #111;
background: #fafafa;
font-size: 40px;
font-weight: 700;
}
.pill .right {
display: flex; align-items: center; gap: 18px;
}
.bag-btn {
margin-top: 32px;
height: 126px;
border-radius: 64px;
background: #0f0f0f;
color: #fff;
font-size: 44px;
font-weight: 800;
display: flex; align-items: center; justify-content: center;
}
.pill-light {
margin-top: 24px;
height: 120px;
border: 2px solid #EAEAEA;
border-radius: 60px;
background: #fff;
display: flex; align-items: center; justify-content: space-between;
padding: 0 44px;
font-size: 40px; font-weight: 700; color: #222;
}
/* Sections */
.section {
margin-top: 36px;
border-top: 2px solid #eee;
}
.section-row {
height: 120px;
border-bottom: 2px solid #eee;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 4px;
}
.section-title {
font-size: 44px;
font-weight: 700;
color: #111;
}
.caret { width: 42px; height: 42px; }
.stars {
display: flex;
gap: 18px;
margin-left: 14px;
}
.share {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 110px;
width: 64px; height: 64px;
}
/* Utility */
.muted { color: #666; }
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div>9:43</div>
<div class="status-icons">
<div class="status-dot"></div>
<svg class="icon-btn" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="10" stroke="#111" stroke-width="2" fill="none"></circle>
<circle cx="12" cy="12" r="4" fill="#111"></circle>
</svg>
<div class="status-battery">
<div class="level"></div>
</div>
</div>
</div>
<!-- Header -->
<div class="header">
<div class="title-area">
<!-- Back Arrow -->
<svg class="icon-btn" viewBox="0 0 24 24">
<path d="M15 18l-6-6 6-6" stroke="#111" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
<div class="page-title">Nike Air Max 97</div>
</div>
<div class="header-icons">
<!-- Search -->
<svg class="icon-btn" viewBox="0 0 24 24">
<circle cx="11" cy="11" r="7" stroke="#111" stroke-width="2.2" fill="none"></circle>
<line x1="16.5" y1="16.5" x2="21" y2="21" stroke="#111" stroke-width="2.2" stroke-linecap="round"></line>
</svg>
<!-- Cart/Bag -->
<div class="cart-wrap">
<svg class="icon-btn" viewBox="0 0 24 24">
<path d="M7 8h10l-1 12H8L7 8z" stroke="#111" stroke-width="2" fill="none" stroke-linejoin="round"></path>
<path d="M9 8a3 3 0 0 1 6 0" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"></path>
</svg>
<div class="badge">3</div>
</div>
</div>
</div>
<!-- Content -->
<div class="content">
<div class="subtitle">
the running world and adding fresh colours and crisp details, it lets you ride in first‑class comfort.
</div>
<div class="bullets">
• Shown: Black/Anthracite/Picante Red<br>
• Style: 921826‑018<br>
• Country/Region of Origin: Vietnam
</div>
<div class="link">View Product Details</div>
<div class="pill">
<div>Size UK 7</div>
<div class="right">
<svg class="caret" viewBox="0 0 24 24">
<path d="M6 9l6 6 6-6" stroke="#111" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
</div>
<div class="bag-btn">Add to Bag</div>
<div class="pill-light">
<div>Favorited</div>
<svg class="icon-btn" viewBox="0 0 24 24">
<path d="M12 21s-7-4.5-7-9.5A4.5 4.5 0 0 1 9.5 7a4.5 4.5 0 0 1 2.5 1 4.5 4.5 0 0 1 2.5-1A4.5 4.5 0 0 1 19 11.5C19 16.5 12 21 12 21z" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
<div class="section">
<div class="section-row">
<div class="section-title">Size & Fit</div>
<svg class="caret" viewBox="0 0 24 24">
<path d="M6 9l6 6 6-6" stroke="#333" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
<div class="section-row">
<div class="section-title" style="display:flex; align-items:center;">
Reviews (150)
<div class="stars">
<!-- 4.5 stars -->
<svg width="42" height="42" viewBox="0 0 24 24">
<path d="M12 17.3l-5.4 3.2 1.4-6L3 9.8l6.2-.5L12 3l2.8 6.3 6.2.5-5 4.7 1.4 6z" fill="#111"></path>
</svg>
<svg width="42" height="42" viewBox="0 0 24 24">
<path d="M12 17.3l-5.4 3.2 1.4-6L3 9.8l6.2-.5L12 3l2.8 6.3 6.2.5-5 4.7 1.4 6z" fill="#111"></path>
</svg>
<svg width="42" height="42" viewBox="0 0 24 24">
<path d="M12 17.3l-5.4 3.2 1.4-6L3 9.8l6.2-.5L12 3l2.8 6.3 6.2.5-5 4.7 1.4 6z" fill="#111"></path>
</svg>
<svg width="42" height="42" viewBox="0 0 24 24">
<path d="M12 17.3l-5.4 3.2 1.4-6L3 9.8l6.2-.5L12 3l2.8 6.3 6.2.5-5 4.7 1.4 6z" fill="#111"></path>
</svg>
<svg width="42" height="42" viewBox="0 0 24 24">
<defs>
<clipPath id="half">
<rect x="0" y="0" width="12" height="24"></rect>
</clipPath>
</defs>
<path d="M12 17.3l-5.4 3.2 1.4-6L3 9.8l6.2-.5L12 3l2.8 6.3 6.2.5-5 4.7 1.4 6z" fill="#111" clip-path="url(#half)"></path>
<path d="M12 17.3l-5.4 3.2 1.4-6L3 9.8l6.2-.5L12 3l2.8 6.3 6.2.5-5 4.7 1.4 6z" fill="none" stroke="#111" stroke-width="1.6"></path>
</svg>
</div>
</div>
<svg class="caret" viewBox="0 0 24 24">
<path d="M6 9l6 6 6-6" stroke="#333" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
<div class="section-row">
<div class="section-title">Product Information</div>
<svg class="caret" viewBox="0 0 24 24">
<path d="M6 9l6 6 6-6" stroke="#333" stroke-width="2.2" fill="none" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
</div>
</div>
<!-- Bottom Share Icon -->
<svg class="share" viewBox="0 0 24 24">
<circle cx="6" cy="12" r="2.7" fill="#111"></circle>
<circle cx="18" cy="6" r="2.7" fill="#111"></circle>
<circle cx="18" cy="18" r="2.7" fill="#111"></circle>
<path d="M8.7 12L15.3 7.8M8.7 12l6.6 4.2" stroke="#111" stroke-width="2" fill="none" stroke-linecap="round"></path>
</svg>
</div>
</body>
</html> |