AndroidCode / code /10000 /10000_1.html
yhzheng1031's picture
Add files using upload-large-folder tool
98687c3 verified
<html>
<head>
<meta charset="UTF-8">
<title>Shop UI Mock</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: "Helvetica Neue", Arial, sans-serif;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #ffffff;
}
/* Status bar */
.status-bar {
height: 110px;
padding: 0 40px;
display: flex;
align-items: center;
justify-content: space-between;
color: #000;
font-size: 42px;
letter-spacing: 1px;
}
.status-icons {
display: flex;
align-items: center;
gap: 28px;
}
.status-icons svg {
width: 42px;
height: 42px;
}
/* Header */
.header {
position: relative;
padding: 20px 40px 10px 40px;
}
.title {
font-size: 76px;
font-weight: 800;
letter-spacing: 1px;
}
.profile-btn {
position: absolute;
right: 40px;
top: 10px;
width: 90px;
height: 90px;
border-radius: 46px;
display: flex;
align-items: center;
justify-content: center;
}
/* Search */
.search-row {
margin: 30px 40px 10px 40px;
height: 110px;
border: 2px solid #E0E0E0;
border-radius: 16px;
display: flex;
align-items: center;
padding: 0 24px;
gap: 20px;
}
.search-row svg {
width: 52px;
height: 52px;
stroke: #222;
}
.search-placeholder {
color: #B0B0B0;
font-size: 44px;
}
/* Tabs */
.tabs {
display: flex;
gap: 60px;
padding: 22px 40px 0 40px;
font-size: 40px;
font-weight: 700;
letter-spacing: 3px;
}
.tab {
padding-bottom: 20px;
color: #111;
}
.tab.active {
border-bottom: 8px solid #000;
}
/* Banner */
.banner {
margin-top: 26px;
background: #000;
color: #fff;
padding: 40px;
}
.banner h2 {
margin: 0 0 16px 0;
font-size: 46px;
font-weight: 800;
letter-spacing: 1px;
}
.banner p {
margin: 0;
font-size: 36px;
line-height: 1.4;
max-width: 900px;
color: #f0f0f0;
}
.login-btn {
margin-top: 28px;
display: inline-block;
border: 3px solid #fff;
border-radius: 4px;
padding: 18px 34px;
font-size: 40px;
font-weight: 800;
letter-spacing: 4px;
}
/* Section */
.section {
padding: 60px 40px 20px 40px;
}
.section .headline {
font-size: 40px;
font-weight: 800;
letter-spacing: 6px;
color: #111;
}
.section .sub {
margin-top: 22px;
font-size: 36px;
color: #666;
}
/* List links */
.list {
margin-top: 38px;
border-top: 1px solid #eee;
}
.list-item {
padding: 42px 40px;
font-size: 48px;
font-weight: 800;
letter-spacing: 2px;
border-bottom: 1px solid #eee;
background: #fff;
}
.only-exclusive {
display: flex;
align-items: center;
gap: 18px;
}
.exclusive-tag {
font-size: 34px;
font-weight: 900;
letter-spacing: 3px;
background: #111;
color: #fff;
padding: 8px 20px;
border-radius: 8px;
}
/* Bottom nav */
.bottom-nav {
position: absolute;
bottom: 0;
left: 0;
width: 1080px;
height: 160px;
background: #fff;
border-top: 1px solid #ddd;
display: flex;
align-items: center;
justify-content: space-around;
}
.nav-item {
width: 140px;
height: 120px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #333;
}
.nav-item svg {
width: 70px;
height: 70px;
stroke: #111;
}
/* small helper */
.spacer {
height: 360px;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>10:58</div>
<div class="status-icons">
<!-- Signal icon -->
<svg viewBox="0 0 24 24">
<path d="M2 20h2v2H2zm4-4h2v6H6zm4-4h2v10h-2zm4-4h2v14h-2zm4-6h2v20h-2" fill="#666"></path>
</svg>
<!-- Wi-Fi icon -->
<svg viewBox="0 0 24 24">
<path d="M2 8c6-6 14-6 20 0" stroke="#666" stroke-width="2" fill="none"/>
<path d="M5 11c4-4 10-4 14 0" stroke="#666" stroke-width="2" fill="none"/>
<path d="M8 14c2-2 6-2 8 0" stroke="#666" stroke-width="2" fill="none"/>
<circle cx="12" cy="18" r="2" fill="#666"/>
</svg>
<!-- Battery icon -->
<svg viewBox="0 0 26 24">
<rect x="1" y="5" width="20" height="14" rx="2" ry="2" fill="none" stroke="#666" stroke-width="2"/>
<rect x="4" y="8" width="14" height="8" fill="#666"/>
<rect x="22" y="9" width="3" height="6" fill="#666"/>
</svg>
</div>
</div>
<!-- Header and profile -->
<div class="header">
<div class="title">SHOP</div>
<div class="profile-btn">
<!-- Profile icon -->
<svg viewBox="0 0 24 24">
<circle cx="12" cy="8" r="4" fill="none" stroke="#000" stroke-width="2"/>
<path d="M4 22c0-4 4-7 8-7s8 3 8 7" fill="none" stroke="#000" stroke-width="2"/>
</svg>
</div>
</div>
<!-- Search -->
<div class="search-row">
<svg viewBox="0 0 24 24" fill="none">
<circle cx="11" cy="11" r="7" stroke="#222" stroke-width="2"/>
<path d="M16 16l6 6" stroke="#222" stroke-width="2"/>
</svg>
<div class="search-placeholder">Find products...</div>
</div>
<!-- Tabs -->
<div class="tabs">
<div class="tab active">MEN</div>
<div class="tab">WOMEN</div>
<div class="tab">KIDS</div>
</div>
<!-- Banner -->
<div class="banner">
<h2>Your personal shop</h2>
<p>Act fast! Explore a selection of products available for members only. Log in and shop your favorites.</p>
<div class="login-btn">LOGIN</div>
</div>
<!-- Spacer to mimic white area -->
<div class="spacer"></div>
<!-- Section -->
<div class="section">
<div class="headline">CELEBRATE WITH SAVINGS</div>
<div class="sub">Enjoy 30% off thousands of 3-Stripes styles.</div>
<div class="list">
<div class="list-item">SHOES</div>
<div class="list-item">CLOTHING</div>
<div class="list-item">ACCESSORIES</div>
<div class="list-item">BACK TO SCHOOL</div>
<div class="list-item">NEW &amp; TRENDING</div>
<div class="list-item only-exclusive">
<span>ONLY AT ADIDAS</span>
<span class="exclusive-tag">EXCLUSIVE</span>
</div>
</div>
</div>
<!-- Bottom Navigation -->
<div class="bottom-nav">
<div class="nav-item">
<!-- Flame icon -->
<svg viewBox="0 0 24 24" fill="none">
<path d="M12 2c2 3 1 5 3 6s3 3 3 6a6 6 0 1 1-12 0c0-3 2-5 4-6s0-3 2-6z" stroke="#111" stroke-width="2"/>
</svg>
</div>
<div class="nav-item">
<!-- Search icon -->
<svg viewBox="0 0 24 24" fill="none">
<circle cx="10" cy="10" r="7" stroke="#111" stroke-width="2"/>
<path d="M15 15l7 7" stroke="#111" stroke-width="2"/>
</svg>
</div>
<div class="nav-item">
<!-- Heart icon -->
<svg viewBox="0 0 24 24" fill="none">
<path d="M12 21s-7-4.7-9-8.3C1 9 3.5 6 6.8 6c2 0 3.5 1.2 5.2 3 1.7-1.8 3.2-3 5.2-3C20.5 6 23 9 21 12.7 19 16.3 12 21 12 21z" stroke="#111" stroke-width="2" fill="none"/>
</svg>
</div>
<div class="nav-item">
<!-- Bag icon -->
<svg viewBox="0 0 24 24" fill="none">
<rect x="3" y="7" width="18" height="14" rx="2" stroke="#111" stroke-width="2"/>
<path d="M8 7a4 4 0 0 1 8 0" stroke="#111" stroke-width="2"/>
</svg>
</div>
<div class="nav-item">
<!-- Target icon -->
<svg viewBox="0 0 24 24" fill="none">
<circle cx="12" cy="12" r="9" stroke="#111" stroke-width="2"/>
<circle cx="12" cy="12" r="5" stroke="#111" stroke-width="2"/>
<circle cx="12" cy="12" r="2" fill="#111"/>
</svg>
</div>
</div>
</div>
</body>
</html>