AndroidCode / code /10007 /10007_4.html
yhzheng1031's picture
Add files using upload-large-folder tool
98687c3 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Weather Depth Preference</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #213F4A; /* deep blue-green */
color: #EAF3F6;
}
/* Status bar */
.status-bar {
height: 110px;
padding: 0 40px;
display: flex;
align-items: center;
justify-content: space-between;
color: #ffffff;
opacity: 0.95;
font-weight: 600;
letter-spacing: 0.5px;
}
.status-left {
font-size: 40px;
}
.status-right {
display: flex;
align-items: center;
gap: 28px;
}
.icon {
width: 40px;
height: 40px;
}
/* Title */
.title {
text-align: center;
font-weight: 800;
font-size: 64px;
line-height: 78px;
margin: 40px 80px 30px 80px;
}
/* Cards */
.cards {
padding: 20px 60px;
}
.card {
background: #2B4B57;
border-radius: 28px;
padding: 40px;
margin-bottom: 36px;
display: flex;
align-items: center;
justify-content: space-between;
box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.card.active {
border: 4px solid #1EECC7;
box-shadow: 0 0 0 4px rgba(30,236,199,0.18) inset;
}
.card .text {
width: 58%;
}
.card .title-line {
font-size: 40px;
font-weight: 800;
margin-bottom: 20px;
}
.card .desc {
font-size: 34px;
line-height: 44px;
color: #C4D2D7;
}
.card .img {
width: 360px;
height: 180px;
background: #E0E0E0;
border: 1px solid #BDBDBD;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: #757575;
font-size: 30px;
}
/* Button */
.confirm-wrap {
position: absolute;
left: 60px;
right: 60px;
bottom: 190px;
}
.btn {
width: 100%;
height: 120px;
background: #1EF0C8;
border-radius: 32px;
color: #0E2C33;
font-size: 44px;
font-weight: 800;
letter-spacing: 0.3px;
display: flex;
align-items: center;
justify-content: center;
}
/* Home indicator */
.home-indicator {
position: absolute;
bottom: 72px;
left: 50%;
transform: translateX(-50%);
width: 280px;
height: 12px;
background: #E6EBED;
border-radius: 12px;
opacity: 0.9;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">10:07</div>
<div class="status-right">
<!-- simple glyphs -->
<svg class="icon" viewBox="0 0 24 24" fill="none">
<path d="M3 9l9-6 9 6v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9z" stroke="#fff" stroke-width="2"/>
<circle cx="12" cy="14" r="3" stroke="#fff" stroke-width="2"/>
</svg>
<svg class="icon" viewBox="0 0 24 24" fill="none">
<path d="M2 18c5-6 15-6 20 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
<path d="M6 14c3-4 9-4 12 0" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
<circle cx="12" cy="8" r="1.5" fill="#fff"/>
</svg>
<svg class="icon" viewBox="0 0 24 24" fill="none">
<path d="M7 14l5-5 5 5" stroke="#fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<svg class="icon" viewBox="0 0 24 24" fill="none">
<circle cx="12" cy="12" r="2" fill="#fff"/>
</svg>
<svg class="icon" viewBox="0 0 24 24" fill="none">
<path d="M3 7h18" stroke="#fff" stroke-width="2" stroke-linecap="round"/>
<path d="M6 7v11a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7" stroke="#fff" stroke-width="2"/>
<rect x="9" y="4" width="6" height="3" fill="#fff"/>
</svg>
</div>
</div>
<!-- Title -->
<div class="title">
How deep do you go when you check the weather?
</div>
<!-- Cards -->
<div class="cards">
<div class="card active">
<div class="text">
<div class="title-line" style="color:#1EECC7;">General</div>
<div class="desc">I quickly check the essential parameters</div>
</div>
<div class="img">[IMG: Chart Illustration]</div>
</div>
<div class="card">
<div class="text">
<div class="title-line" style="color:#1EECC7;">Intermediate</div>
<div class="desc">I review forecasts from several models</div>
</div>
<div class="img">[IMG: Multiple Model Waves]</div>
</div>
<div class="card" style="background:#2F505C;">
<div class="text">
<div class="title-line" style="color:#FFA64D;">Advanced</div>
<div class="desc">Compare multiple weather sources and hyperlocal forecasts</div>
</div>
<div class="img">[IMG: Advanced Multi-Source Lines]</div>
</div>
</div>
<!-- Confirm Button -->
<div class="confirm-wrap">
<div class="btn">Confirm</div>
</div>
<!-- Home Indicator -->
<div class="home-indicator"></div>
</div>
</body>
</html>