File size: 6,133 Bytes
98687c3 | 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 | <html>
<head>
<meta charset="UTF-8">
<title>Adidas Product UI</title>
<style>
body { margin:0; padding:0; background: transparent; font-family: Arial, Helvetica, sans-serif; }
#render-target {
width:1080px; height:2400px; position:relative; overflow:hidden;
background:#ffffff; color:#111;
}
/* Status bar */
.status-bar {
position:absolute; top:20px; left:20px; right:20px; height:60px; display:flex; align-items:center; justify-content:space-between; z-index:5; color:#111;
font-weight:600; font-size:34px;
}
.status-left { display:flex; align-items:center; gap:20px; }
.status-right { display:flex; align-items:center; gap:18px; }
.icon-box { width:34px; height:34px; border:2px solid #111; border-radius:6px; }
/* Close (X) button */
.close-btn {
position:absolute; top:160px; right:40px; width:74px; height:74px; border-radius:50%;
display:flex; align-items:center; justify-content:center; z-index:6;
}
.close-btn svg { width:54px; height:54px; stroke:#111; stroke-width:10; }
/* Top lifestyle banner */
.top-banner {
position:absolute; top:0; left:0; width:100%; height:620px;
background:#E0E0E0; border-bottom:1px solid #BDBDBD;
display:flex; align-items:center; justify-content:center; color:#757575; font-size:34px; letter-spacing:1px;
}
/* Product stage */
.product-stage {
position:absolute; top:620px; left:0; width:100%; height:920px; background:#f1f2f4;
border-top:1px solid #ddd; border-bottom:1px solid #ddd;
}
.shoe-image {
width:900px; height:420px; margin:220px auto 0;
background:#E0E0E0; border:1px solid #BDBDBD; color:#757575;
display:flex; align-items:center; justify-content:center; font-size:30px;
}
/* Right side dots */
.side-dots {
position:absolute; right:22px; top:120px; display:flex; flex-direction:column; gap:38px;
}
.side-dots span {
width:10px; height:10px; background:#111; border-radius:50%;
opacity:0.7;
}
/* Blue promo strip and carousel */
.promo-strip {
position:absolute; top:1540px; left:0; width:100%; height:360px; background:#5b7ba3;
display:flex; align-items:flex-start; justify-content:flex-start; color:#fff;
}
.best-seller {
margin:40px 0 0 48px; padding:18px 26px; border:2px solid #fff; border-radius:8px;
font-weight:700; letter-spacing:2px; font-size:28px; background:rgba(255,255,255,0.08);
}
.carousel {
position:absolute; top:1720px; left:0; width:100%; height:170px; background:#efefef; display:flex; align-items:center; gap:40px; padding:0 40px; border-top:1px solid #ddd;
}
.mini-shoe {
width:140px; height:90px; background:#E0E0E0; border:1px solid #BDBDBD; color:#757575; display:flex; align-items:center; justify-content:center; font-size:22px; border-radius:8px;
flex:0 0 auto;
}
/* Product details */
.details {
position:absolute; top:1890px; left:0; width:100%; height:510px; background:#fff; padding:0 48px;
}
.title {
font-size:64px; font-weight:800; letter-spacing:1px; margin-top:34px;
}
.price-row {
display:flex; align-items:center; gap:24px; margin-top:24px; font-size:34px; font-weight:700;
}
.subtext {
font-size:34px; color:#333; letter-spacing:2px; margin-top:8px;
}
.favorite {
position:absolute; right:48px; top:40px; width:72px; height:72px; display:flex; align-items:center; justify-content:center;
}
.favorite svg { width:56px; height:56px; fill:#000; }
.cta {
margin-top:60px; width:984px; height:120px; background:#000; color:#fff; font-size:40px; font-weight:800; letter-spacing:4px; border-radius:6px;
display:flex; align-items:center; justify-content:space-between; padding:0 40px;
}
.cta svg { width:44px; height:44px; fill:#fff; }
.scroll-indicator {
position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
width:420px; height:14px; background:#e5e5e5; border-radius:14px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div class="status-left">
<div>11:06</div>
<div class="icon-box"></div>
<div class="icon-box"></div>
<div class="icon-box"></div>
</div>
<div class="status-right">
<div class="icon-box"></div>
<div class="icon-box"></div>
</div>
</div>
<!-- Close X -->
<div class="close-btn">
<svg viewBox="0 0 64 64">
<line x1="8" y1="8" x2="56" y2="56"></line>
<line x1="56" y1="8" x2="8" y2="56"></line>
</svg>
</div>
<!-- Top banner image -->
<div class="top-banner">[IMG: Lifestyle Banner with table and shoe]</div>
<!-- Product area -->
<div class="product-stage">
<div class="shoe-image">[IMG: White Adidas Superstar Shoe]</div>
<!-- Right side dots -->
<div class="side-dots">
<span></span><span></span><span></span><span></span><span></span><span></span>
<span></span><span></span><span></span><span></span><span></span>
</div>
</div>
<!-- Blue promo strip -->
<div class="promo-strip">
<div class="best-seller">BEST SELLER</div>
</div>
<!-- Carousel thumbnails -->
<div class="carousel">
<div class="mini-shoe">[IMG]</div>
<div class="mini-shoe">[IMG]</div>
<div class="mini-shoe">[IMG]</div>
<div class="mini-shoe">[IMG]</div>
<div class="mini-shoe">[IMG]</div>
<div class="mini-shoe">[IMG]</div>
</div>
<!-- Product details -->
<div class="details">
<div class="favorite">
<svg viewBox="0 0 64 64">
<path d="M32 56s-4-3-10-8C12 41 6 35 6 26c0-8 6-14 14-14 6 0 10 4 12 7 2-3 6-7 12-7 8 0 14 6 14 14 0 9-6 15-16 22-6 5-10 8-10 8z"></path>
</svg>
</div>
<div class="title">SUPERSTAR SHOES</div>
<div class="price-row">
<div>$100.00</div>
<div class="subtext">MEN'S ORIGINALS</div>
</div>
<div class="cta">
<div>SELECT SIZE</div>
<svg viewBox="0 0 64 64">
<path d="M22 14 l20 18 -20 18" fill="none" stroke="#fff" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
</div>
<div class="scroll-indicator"></div>
</div>
</body>
</html> |