AndroidCode / code /10198 /10198_2.html
yhzheng1031's picture
Add files using upload-large-folder tool
5501681 verified
raw
history blame
7 kB
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Product Suggestions 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: #0A0A0A;
color: #FFFFFF;
}
/* Status bar */
.status-bar {
height: 80px;
padding: 0 28px;
display: flex;
align-items: center;
justify-content: space-between;
color: #EDEDED;
font-size: 32px;
letter-spacing: .5px;
}
.status-icons {
display: flex;
align-items: center;
gap: 22px;
}
.icon {
width: 36px; height: 36px;
}
.battery {
width: 52px; height: 24px;
}
/* Accordion section */
.accordion {
margin-top: 6px;
border-top: 1px solid #222;
border-bottom: 1px solid #222;
}
.accordion-item {
height: 140px;
padding: 0 36px;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #222;
}
.accordion-item:last-child { border-bottom: none; }
.accordion-title {
font-size: 44px;
font-weight: 700;
letter-spacing: 0.5px;
}
.plus {
position: relative;
width: 46px; height: 46px;
}
.plus:before, .plus:after {
content: "";
position: absolute;
background: #FFFFFF;
left: 50%; top: 50%;
transform: translate(-50%, -50%);
}
.plus:before { width: 34px; height: 6px; border-radius: 3px; }
.plus:after { width: 6px; height: 34px; border-radius: 3px; }
/* Section headers */
.section-header {
display: flex;
align-items: baseline;
justify-content: space-between;
padding: 36px;
margin-top: 16px;
}
.section-title {
font-size: 44px;
font-weight: 800;
letter-spacing: 2px;
}
.section-count {
font-size: 34px;
color: #9E9E9E;
}
/* Cards grid */
.grid {
display: flex;
gap: 30px;
padding: 0 30px;
}
.card {
width: 500px;
background: #111;
border-radius: 8px;
}
.img {
width: 500px;
height: 620px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 28px;
text-align: center;
}
.price-row {
display: flex;
align-items: center;
justify-content: space-between;
padding: 26px 22px 6px 22px;
}
.price {
font-size: 44px;
font-weight: 800;
}
.heart {
width: 48px; height: 48px;
}
.card-text {
padding: 12px 24px 28px 24px;
color: #CFCFCF;
font-size: 34px;
line-height: 1.3;
}
.pill {
position: absolute;
bottom: 18px;
left: 50%;
transform: translateX(-50%);
background: #FFFFFF;
color: #111;
padding: 10px 18px;
border-radius: 22px;
font-size: 26px;
font-weight: 700;
letter-spacing: .5px;
}
.relative { position: relative; }
/* People also bought */
.people-grid {
display: flex;
gap: 30px;
padding: 0 30px;
margin-top: 22px;
}
.person-card {
width: 500px;
background: #111;
border-radius: 8px;
padding-bottom: 24px;
}
.person-img {
width: 500px;
height: 540px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 28px;
text-align: center;
}
/* Bottom home indicator */
.home-indicator {
position: absolute;
bottom: 26px;
left: 50%;
transform: translateX(-50%);
width: 520px;
height: 12px;
border-radius: 6px;
background: #3A3A3A;
opacity: .9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status bar -->
<div class="status-bar">
<div>7:49</div>
<div class="status-icons">
<!-- Wi-Fi icon -->
<svg class="icon" viewBox="0 0 24 24">
<path fill="#EDEDED" d="M12 18c.8 0 1.5.7 1.5 1.5S12.8 21 12 21s-1.5-.7-1.5-1.5S11.2 18 12 18zm-5-4c3.9-3.1 8.1-3.1 12 0l-1.4 1.4c-2.9-2.3-6.3-2.3-9.2 0L7 14zM2 10c6.6-5.2 13.4-5.2 20 0l-1.4 1.4C15 7 9 7 3.4 11.4L2 10z"/>
</svg>
<!-- Signal icon -->
<svg class="icon" viewBox="0 0 24 24">
<path fill="#EDEDED" d="M4 20h2V8H4v12zm4 0h2V4H8v16zm4 0h2V12h-2v8zm4 0h2V16h-2v4z"/>
</svg>
<!-- Battery icon -->
<svg class="battery" viewBox="0 0 26 14">
<rect x="1" y="2" width="22" height="10" rx="2" fill="none" stroke="#EDEDED" stroke-width="2"/>
<rect x="3" y="4" width="14" height="6" fill="#EDEDED"/>
<rect x="23" y="5" width="3" height="4" rx="1" fill="#EDEDED"/>
</svg>
<div style="font-size:28px;">72%</div>
</div>
</div>
<!-- Accordion (collapsed sections) -->
<div class="accordion">
<div class="accordion-item">
<div class="accordion-title">Brand</div>
<div class="plus"></div>
</div>
<div class="accordion-item">
<div class="accordion-title">Look after me</div>
<div class="plus"></div>
</div>
<div class="accordion-item">
<div class="accordion-title">About me</div>
<div class="plus"></div>
</div>
</div>
<!-- You might also like -->
<div class="section-header">
<div class="section-title">YOU MIGHT ALSO LIKE</div>
<div class="section-count">16 items</div>
</div>
<div class="grid">
<!-- Left product card -->
<div class="card">
<div class="img">[IMG: Brown leather lace-up boot being tied]</div>
<div class="price-row">
<div class="price">£180.00</div>
<svg class="heart" viewBox="0 0 24 24">
<path fill="none" stroke="#FFFFFF" stroke-width="2" d="M12 21s-6.5-4.6-8.7-7.1C1.3 11.7 2 8.8 4.3 7.5c2-1.2 4.1-.6 5.7 1.1 1.6-1.7 3.7-2.3 5.7-1.1 2.3 1.3 3 4.2 1 6.4C18.5 16.4 12 21 12 21z"/>
</svg>
</div>
<div class="card-text">
Tommy Hilfiger american<br/>
warm leather boots in winte...
</div>
</div>
<!-- Right product card -->
<div class="card">
<div class="img relative">[IMG: Black chunky studded shoes]
<div class="pill">WIDE FIT AVAILABLE</div>
</div>
<div class="price-row">
<div class="price">£59.00</div>
<div style="width:48px; height:48px;"></div>
</div>
<div class="card-text">
ASOS DESIGN chunky lace-up shoes in black with studs
</div>
</div>
</div>
<!-- People also bought -->
<div class="section-header" style="margin-top: 34px;">
<div class="section-title">PEOPLE ALSO BOUGHT</div>
<div class="section-count">7 items</div>
</div>
<div class="people-grid">
<div class="person-card">
<div class="person-img">[IMG: Person in a bold blue suit with black tie]</div>
</div>
<div class="person-card">
<div class="person-img">[IMG: Person wearing black fleece vest over white tee]</div>
</div>
</div>
<div class="home-indicator"></div>
</div>
</body>
</html>