| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Mobile Listing - iPhone 14 Pro Max</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: #0B0B0B; |
| color: #EDEDED; |
| } |
| |
| |
| .row { display: flex; align-items: center; } |
| .space-between { justify-content: space-between; } |
| .muted { color: #A0A0A0; } |
| .divider { height: 2px; background: #2A2A2A; margin: 28px 24px; } |
| |
| |
| .header { padding: 28px 24px 8px; } |
| .title-wrap { display: flex; align-items: center; gap: 22px; } |
| .circle-btn { |
| width: 96px; height: 96px; |
| background: #1A1A1A; |
| border-radius: 50%; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .title { |
| font-size: 56px; |
| font-weight: 800; |
| letter-spacing: -0.5px; |
| } |
| .header-actions { margin-left: auto; display: flex; align-items: center; gap: 18px; } |
| .svg-ic { width: 40px; height: 40px; fill: none; stroke: #EDEDED; stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; } |
| |
| |
| .action-row { padding: 8px 24px 0; display: flex; align-items: center; justify-content: space-between; } |
| .link-primary { color: #6BA5FF; font-weight: 600; font-size: 36px; } |
| .sort-filter { display: flex; align-items: center; gap: 36px; } |
| .sf { color: #6BA5FF; font-weight: 600; font-size: 36px; display: inline-flex; align-items: center; gap: 10px; } |
| |
| |
| .section { padding: 28px 24px 0; } |
| .section h2 { |
| margin: 0 0 18px 0; |
| font-size: 52px; |
| font-weight: 800; |
| } |
| |
| |
| .chips { display: flex; gap: 18px; padding: 8px 0 18px; flex-wrap: wrap; } |
| .chip { |
| padding: 18px 30px; |
| border: 2px solid #3B3B3B; |
| color: #EDEDED; |
| border-radius: 40px; |
| font-size: 34px; |
| background: #151515; |
| } |
| |
| |
| .card { |
| margin: 18px 16px 22px; |
| background: #1A1A1A; |
| border-radius: 18px; |
| padding: 24px; |
| display: flex; |
| gap: 24px; |
| } |
| .thumb { |
| position: relative; |
| width: 300px; height: 300px; |
| border-radius: 28px; |
| overflow: hidden; |
| flex: 0 0 300px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| display: flex; align-items: center; justify-content: center; |
| color: #555; |
| font-weight: 600; |
| text-align: center; |
| padding: 10px; |
| } |
| .wish { |
| position: absolute; |
| right: 12px; top: 12px; |
| width: 78px; height: 78px; |
| background: rgba(0,0,0,0.6); |
| border-radius: 50%; |
| display: flex; align-items: center; justify-content: center; |
| } |
| .heart { width: 36px; height: 36px; fill: #FFFFFF; } |
| |
| .card-body { flex: 1; min-width: 0; } |
| .card-title { |
| font-size: 40px; |
| font-weight: 700; |
| line-height: 1.2; |
| margin: 4px 0 10px; |
| } |
| .sub { color: #B9B9B9; font-size: 30px; margin-bottom: 8px; } |
| .stars { color: #FFFFFF; font-size: 36px; letter-spacing: 2px; margin: 8px 0; } |
| .price { font-size: 50px; font-weight: 800; margin: 6px 0; } |
| .note { color: #B9B9B9; font-size: 30px; line-height: 1.3; } |
| |
| .sponsored { color: #8C8C8C; font-size: 30px; padding: 8px 8px 6px 16px; } |
| |
| |
| .results-bar { |
| position: absolute; |
| left: 0; |
| right: 0; |
| bottom: 120px; |
| height: 96px; |
| background: rgba(18,18,18,0.95); |
| border-top: 2px solid #2A2A2A; |
| display: flex; align-items: center; justify-content: center; |
| font-size: 36px; font-weight: 700; |
| } |
| .home-indicator { |
| position: absolute; left: 50%; transform: translateX(-50%); |
| bottom: 40px; |
| width: 420px; height: 10px; |
| border-radius: 8px; |
| background: #6B6B6B; |
| opacity: 0.9; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="header"> |
| <div class="title-wrap" style="justify-content: space-between;"> |
| <div class="row" style="gap:22px; flex:1;"> |
| <div class="circle-btn" aria-label="Menu"> |
| <svg class="svg-ic" viewBox="0 0 24 24"> |
| <path d="M4 6h16M4 12h16M4 18h12"/> |
| </svg> |
| </div> |
| <div class="title">iPhone 14 Pro Max</div> |
| </div> |
| <div class="header-actions"> |
| <div class="circle-btn" aria-label="Search"> |
| <svg class="svg-ic" viewBox="0 0 24 24"> |
| <circle cx="11" cy="11" r="7"></circle> |
| <path d="M21 21l-4.5-4.5"></path> |
| </svg> |
| </div> |
| <div class="circle-btn" aria-label="Camera"> |
| <svg class="svg-ic" viewBox="0 0 24 24"> |
| <path d="M4 7h4l2-3h4l2 3h4v11H4z"></path> |
| <circle cx="12" cy="12" r="3.5"></circle> |
| </svg> |
| </div> |
| <div class="circle-btn" aria-label="Cart"> |
| <svg class="svg-ic" viewBox="0 0 24 24"> |
| <path d="M3 5h2l2 12h10l2-8H7"></path> |
| <circle cx="10" cy="19" r="1.5"></circle> |
| <circle cx="16" cy="19" r="1.5"></circle> |
| </svg> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="action-row"> |
| <div class="link-primary">β‘ Save this search</div> |
| <div class="sort-filter"> |
| <div class="sf">Sort ββ</div> |
| <div class="sf">Filter β·</div> |
| </div> |
| </div> |
|
|
| |
| <div class="section"> |
| <h2>Shop by Storage Capacity</h2> |
| <div class="chips"> |
| <div class="chip">256 GB</div> |
| <div class="chip">128 GB</div> |
| <div class="chip">512 GB</div> |
| <div class="chip">1 TB</div> |
| </div> |
| </div> |
|
|
| <div class="divider"></div> |
|
|
| |
| <div class="card"> |
| <div class="thumb"> |
| [IMG: iPhone 14 Pro Max product gallery] |
| <div class="wish" title="Wishlist"> |
| <svg class="heart" viewBox="0 0 24 24"> |
| <path d="M12 21s-7-4.35-9.5-7.5A5.5 5.5 0 1 1 12 6.7 5.5 5.5 0 1 1 21.5 13.5C19 16.65 12 21 12 21z"/> |
| </svg> |
| </div> |
| </div> |
| <div class="card-body"> |
| <div class="card-title">Apple iPhone 14 Pro Max A16 128GB 256GB 512GB 1TB Unlocked New Sealed</div> |
| <div class="sub">Brand New</div> |
| <div class="stars">β
β
β
β
β
<span class="muted">(3)</span></div> |
| <div class="price">$1,429.49 to $2,089.49</div> |
| <div class="note">+$18.49 shipping β’ from South Korea<br>40+ watchers</div> |
| </div> |
| </div> |
| <div class="sponsored">Sponsored</div> |
|
|
| <div class="divider"></div> |
|
|
| |
| <div class="card"> |
| <div class="thumb"> |
| [IMG: iPhone 14 Pro Max - Black front/back] |
| <div class="wish" title="Wishlist"> |
| <svg class="heart" viewBox="0 0 24 24"> |
| <path d="M12 21s-7-4.35-9.5-7.5A5.5 5.5 0 1 1 12 6.7 5.5 5.5 0 1 1 21.5 13.5C19 16.65 12 21 12 21z"/> |
| </svg> |
| </div> |
| </div> |
| <div class="card-body"> |
| <div class="card-title">iPhone 14 Pro Max - Unlocked - 128GB - Black - Excellent</div> |
| <div class="sub">Excellent - Refurbished Β· Apple iPhone 14 Pro Max Β· 128 GB</div> |
| <div class="stars">β
β
β
β
β
<span class="muted">(8)</span></div> |
| <div class="price">$975.00</div> |
| <div class="note">+$42.69 shipping β’ from United States<br>eBay Refurbished</div> |
| </div> |
| </div> |
| <div class="sponsored">Sponsored</div> |
|
|
| |
| <div class="divider"></div> |
| <div class="card" style="padding-bottom: 10px;"> |
| <div class="thumb">[IMG: iPhone 14 Pro Max in box]</div> |
| <div class="card-body"> |
| <div class="card-title">Apple iPhone 14 Pro Max Smartphone (A2651) Unlocked - 128GB Black OPEN BOX</div> |
| <div class="sub">Open Box Β· Apple iPhone 14 Pro Max</div> |
| </div> |
| </div> |
|
|
| |
| <div class="results-bar">863 results</div> |
| <div class="home-indicator"></div> |
|
|
| </div> |
| </body> |
| </html> |