| <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; |
| } |
| |
| |
| .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 { |
| 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 { |
| 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; |
| } |
| |
| |
| .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; |
| } |
| |
| |
| .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; |
| } |
| |
| |
| .muted { color: #666; } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <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> |
|
|
| |
| <div class="header"> |
| <div class="title-area"> |
| |
| <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"> |
| |
| <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> |
| |
| <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> |
|
|
| |
| <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"> |
| |
| <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> |
|
|
| |
| <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> |