AndroidCode / code /10071 /10071_1.html
yhzheng1031's picture
Add files using upload-large-folder tool
fa881a6 verified
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Stays Screen</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #222; }
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #FFFFFF;
}
/* Header */
.header {
height: 150px;
display: flex;
align-items: center;
padding: 0 36px;
border-bottom: 1px solid #ECEFF1;
}
.back-btn {
width: 88px;
height: 88px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 8px;
}
.header-title {
font-size: 54px;
font-weight: 700;
color: #1F2937;
}
/* Content */
.content {
padding: 36px;
}
.filled-row {
background: #EAF1F3;
border-radius: 28px;
padding: 34px 36px;
display: flex;
align-items: center;
margin: 26px 0;
}
.row-icon {
width: 72px;
height: 72px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 26px;
}
.row-text {
font-size: 42px;
color: #1F2937;
}
.section-label {
font-size: 40px;
color: #4B5563;
margin-top: 48px;
margin-bottom: 18px;
}
.outlined-row {
background: #FFFFFF;
border: 2px solid #D5DEE6;
border-radius: 30px;
padding: 30px 36px;
display: flex;
align-items: center;
margin: 20px 0;
width: 650px;
}
.outlined-row .row-text {
color: #374151;
}
/* Bottom primary button */
.bottom-cta {
position: absolute;
left: 36px;
right: 36px;
bottom: 170px;
height: 130px;
border-radius: 28px;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(90deg, #F66B1D 0%, #D84C12 100%);
color: #fff;
font-size: 44px;
font-weight: 700;
letter-spacing: 0.2px;
}
/* System navigation area (gesture bar) */
.sys-nav {
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 120px;
background: #000;
display: flex;
align-items: center;
justify-content: center;
}
.home-pill {
width: 220px;
height: 12px;
background: #E5E7EB;
border-radius: 8px;
opacity: 0.9;
}
/* Utility: thin icon stroke */
svg { display: block; }
.icon-stroke { stroke: #374151; stroke-width: 2; fill: none; }
.icon-fill { fill: #374151; }
</style>
</head>
<body>
<div id="render-target">
<!-- Header -->
<div class="header">
<div class="back-btn" aria-label="Back">
<svg width="44" height="44" viewBox="0 0 24 24">
<path class="icon-fill" d="M14.7 5.3a1 1 0 0 1 0 1.4L10.4 11l4.3 4.3a1 1 0 1 1-1.4 1.4l-5-5a1 1 0 0 1 0-1.4l5-5a1 1 0 0 1 1.4 0z"/>
</svg>
</div>
<div class="header-title">Stays</div>
</div>
<!-- Content -->
<div class="content">
<!-- Location -->
<div class="filled-row">
<div class="row-icon">
<svg width="56" height="56" viewBox="0 0 24 24">
<path class="icon-stroke" d="M12 2a7 7 0 0 1 7 7c0 5-7 13-7 13S5 14 5 9a7 7 0 0 1 7-7z"/>
<circle class="icon-stroke" cx="12" cy="9" r="2.5"/>
</svg>
</div>
<div class="row-text">Honolulu (HNL), O'ahu, HI</div>
</div>
<!-- Dates -->
<div class="filled-row">
<div class="row-icon">
<svg width="56" height="56" viewBox="0 0 24 24">
<rect class="icon-stroke" x="3" y="4" width="18" height="16" rx="2"/>
<path class="icon-stroke" d="M8 2v4M16 2v4M3 9h18"/>
</svg>
</div>
<div class="row-text">Mon, Jan 29 – Mon, Feb 5</div>
</div>
<div class="section-label">Options</div>
<!-- Options: guests -->
<div class="outlined-row">
<div class="row-icon" style="margin-right:22px;">
<svg width="56" height="56" viewBox="0 0 24 24">
<circle class="icon-stroke" cx="12" cy="7" r="3"/>
<path class="icon-stroke" d="M5 19a7 7 0 0 1 14 0"/>
</svg>
</div>
<div class="row-text">1 room, 1 guest</div>
</div>
<!-- Options: property types -->
<div class="outlined-row">
<div class="row-icon" style="margin-right:22px;">
<svg width="56" height="56" viewBox="0 0 24 24">
<path class="icon-stroke" d="M3 10l9-6 9 6"/>
<path class="icon-stroke" d="M5 10v10h14V10"/>
<path class="icon-stroke" d="M9 20v-6h6v6"/>
</svg>
</div>
<div class="row-text">All property types</div>
</div>
</div>
<!-- Bottom CTA -->
<div class="bottom-cta">Search stays</div>
<!-- System nav bar -->
<div class="sys-nav">
<div class="home-pill"></div>
</div>
</div>
</body>
</html>