AndroidCode / code /1011 /1011_0.html
yhzheng1031's picture
Add files using upload-large-folder tool
5501681 verified
raw
history blame
8.57 kB
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Switch FWD Running Shoes - UI Mock</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 {
height: 80px; padding: 0 32px;
display: flex; align-items: center; justify-content: space-between;
color: #222; font-weight: 600; font-size: 36px;
}
.status-icons { display: flex; align-items: center; gap: 22px; }
.dot {
width: 26px; height: 26px; border-radius: 50%; background: #D7D7D7;
}
.signal { width: 32px; height: 22px; background: #D7D7D7; border-radius: 4px; }
.battery { width: 26px; height: 40px; border: 3px solid #D7D7D7; border-radius: 6px; position: relative; }
.battery:after { content: ""; position: absolute; top: -8px; left: 8px; width: 10px; height: 6px; background: #D7D7D7; border-radius: 2px; }
/* Header */
.header {
padding: 10px 40px 20px 40px;
display: flex; align-items: center; justify-content: space-between;
}
.title {
font-size: 48px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
}
.header-actions { display: flex; align-items: center; gap: 28px; }
.pill {
padding: 14px 26px; border: 3px solid #111; border-radius: 40px;
font-size: 36px; font-weight: 700;
}
.icon-btn { width: 68px; height: 68px; display: flex; align-items: center; justify-content: center; }
.icon-btn svg { width: 48px; height: 48px; }
/* Thumbnails strip */
.thumb-strip {
display: flex; align-items: center; gap: 36px;
padding: 20px 40px;
overflow: hidden;
}
.thumb {
width: 160px; height: 100px;
background: #E0E0E0; border: 1px solid #BDBDBD;
display: flex; align-items: center; justify-content: center;
color: #757575; font-size: 26px; border-radius: 12px;
}
.thumb.active { outline: 6px solid #EDEDED; }
/* Accessory cards quick row (prices $20, $50, $65) */
.accessories {
display: flex; gap: 24px; padding: 10px 40px 26px 40px;
}
.acc-card {
flex: 1; min-width: 0;
background: #F6F6F6; border-radius: 16px; padding: 24px;
box-shadow: inset 0 0 0 1px #E0E0E0;
}
.acc-price {
display: inline-block; padding: 8px 16px; border: 2px solid #111; border-radius: 28px;
font-weight: 700; font-size: 28px; margin-bottom: 16px;
}
.acc-title { font-size: 32px; font-weight: 800; text-transform: uppercase; line-height: 1.1; }
.acc-sub { color: #6f6f6f; margin-top: 12px; font-size: 28px; }
/* Section title */
.section-title {
padding: 36px 40px 14px 40px;
font-size: 56px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
}
/* Product grid */
.product-grid {
display: flex; gap: 28px; padding: 0 40px;
}
.product-card {
flex: 1; background: #F4F4F4; border-radius: 16px; overflow: hidden;
box-shadow: inset 0 0 0 1px #E0E0E0;
position: relative;
}
.prod-img {
height: 380px; background: #E0E0E0; border-bottom: 1px solid #BDBDBD;
display: flex; align-items: center; justify-content: center; color: #757575; font-size: 28px;
}
.price-tag {
position: absolute; left: 24px; top: 24px;
background: #fff; border: 2px solid #111; border-radius: 28px;
padding: 10px 18px; font-weight: 800; font-size: 30px;
}
.prod-body { padding: 24px; }
.prod-name {
font-size: 38px; font-weight: 900; text-transform: uppercase; line-height: 1.15;
}
.prod-cat { color: #6f6f6f; font-size: 28px; margin-top: 12px; }
/* Questions section */
.questions { padding: 40px; margin-top: 36px; }
.questions h2 { font-size: 64px; font-weight: 900; letter-spacing: 2px; margin: 0 0 32px 0; }
.qa-row { display: flex; gap: 60px; }
.qa-card { flex: 1; }
.qa-title { font-size: 36px; margin-top: 18px; }
.cta { margin-top: 22px; font-weight: 900; font-size: 34px; display: inline-block; border-bottom: 6px solid #111; padding-bottom: 10px; }
.qa-icon {
width: 90px; height: 90px; border: 3px solid #111; border-radius: 14px;
display: flex; align-items: center; justify-content: center;
}
.qa-icon svg { width: 60px; height: 60px; }
/* Bottom bar mimic */
.bottom-handle {
position: absolute; bottom: 24px; left: 50%;
transform: translateX(-50%);
width: 420px; height: 12px; border-radius: 6px; background: #222;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div>5:12</div>
<div class="status-icons">
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
<div class="signal"></div>
<div class="battery"></div>
</div>
</div>
<!-- Header with title, price, close -->
<div class="header">
<div class="title">SWITCH FWD RUNNING SHOES</div>
<div class="header-actions">
<div class="pill">$140.00</div>
<div class="icon-btn" aria-label="Close">
<svg viewBox="0 0 24 24">
<path d="M4 4 L20 20 M20 4 L4 20" stroke="#111" stroke-width="2.5" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<!-- Thumbnail strip -->
<div class="thumb-strip">
<div class="thumb">[IMG: Shoe - Lime]</div>
<div class="thumb">[IMG: Shoe - Pink]</div>
<div class="thumb">[IMG: Shoe - Black]</div>
<div class="thumb">[IMG: Shoe - Beige]</div>
<div class="thumb active">[IMG: Shoe - Green]</div>
</div>
<!-- Accessories quick cards -->
<div class="accessories">
<div class="acc-card">
<div class="acc-price">$20.00</div>
<div class="acc-title">Multiple Width Training Headbands 3 Per...</div>
<div class="acc-sub">Performance</div>
</div>
<div class="acc-card">
<div class="acc-price">$50.00</div>
<div class="acc-title">Break the Norm Running Tank Top (Gender Neutral)</div>
<div class="acc-sub">Performance</div>
</div>
<div class="acc-card">
<div class="acc-price">$65.00</div>
<div class="acc-title">Break the Norm Graphic Sweat...</div>
<div class="acc-sub">Performance</div>
</div>
</div>
<!-- You may also like -->
<div class="section-title">YOU MAY ALSO LIKE</div>
<div class="product-grid">
<div class="product-card">
<div class="price-tag">$160.00</div>
<div class="prod-img">[IMG: Adizero Boston 12 - Lime/Grey]</div>
<div class="prod-body">
<div class="prod-name">Adizero Boston 12 Running Shoes</div>
<div class="prod-cat">Women's Performance</div>
</div>
</div>
<div class="product-card">
<div class="price-tag">$160.00</div>
<div class="prod-img">[IMG: Adizero Boston 12 - Grey]</div>
<div class="prod-body">
<div class="prod-name">Adizero Boston 12 Running Shoes</div>
<div class="prod-cat">Women's Performance</div>
</div>
</div>
<div class="product-card">
<div class="price-tag">$190.00</div>
<div class="prod-img">[IMG: Ultraboost - Blue/White]</div>
<div class="prod-body">
<div class="prod-name">Ultraboost Running Shoes</div>
<div class="prod-cat">Performance</div>
</div>
</div>
</div>
<!-- Questions section -->
<div class="questions">
<h2>QUESTIONS?</h2>
<div class="qa-row">
<div class="qa-card">
<div class="qa-icon" aria-hidden="true">
<svg viewBox="0 0 24 24">
<path d="M3 6h12v9H9l-3 3v-3H3z" fill="none" stroke="#111" stroke-width="2.2" stroke-linejoin="round"/>
<path d="M15 9h6v9h-4l-2 2v-2h-0" fill="none" stroke="#111" stroke-width="2.2" stroke-linejoin="round"/>
</svg>
</div>
<div class="qa-title">Chat with an agent</div>
<div class="cta">START CHAT</div>
</div>
<div class="qa-card">
<div class="qa-icon" aria-hidden="true">
<svg viewBox="0 0 24 24">
<circle cx="12" cy="12" r="9" fill="none" stroke="#111" stroke-width="2.2"/>
<path d="M12 7c2 0 3 1.2 3 2.6 0 1.8-2 2.5-3 3.4" fill="none" stroke="#111" stroke-width="2.2" stroke-linecap="round"/>
<circle cx="12" cy="17.2" r="1.2" fill="#111"/>
</svg>
</div>
<div class="qa-title">Visit our help section</div>
<div class="cta">FAQ & HELP</div>
</div>
</div>
</div>
<div class="bottom-handle"></div>
</div>
</body>
</html>