AndroidCode / code /10003 /10003_1.html
yhzheng1031's picture
Add files using upload-large-folder tool
98687c3 verified
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Mobile UI - Plan</title>
<style>
body {
margin: 0;
padding: 0;
background: transparent;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
color: #fff;
}
#render-target {
width: 1080px;
height: 2400px;
position: relative;
overflow: hidden;
background: #000;
}
/* Top red header area */
.topbar {
position: absolute;
top: 0;
left: 0;
width: 1080px;
height: 380px;
background: linear-gradient(#b31616, #c61d1d);
}
.status-row {
position: absolute;
top: 22px;
left: 36px;
right: 36px;
display: flex;
align-items: center;
justify-content: space-between;
color: #fff;
font-weight: 600;
font-size: 38px;
opacity: 0.95;
}
.status-icons {
display: flex;
gap: 24px;
align-items: center;
}
.status-dot {
width: 10px;
height: 10px;
background: #fff;
border-radius: 50%;
opacity: 0.85;
}
.icon-wifi, .icon-battery {
width: 42px;
height: 28px;
}
.icon-battery rect { fill: none; stroke: #fff; stroke-width: 3; }
.icon-battery line { stroke: #fff; stroke-width: 3; }
.icon-wifi path { fill: none; stroke: #fff; stroke-width: 3; }
.header-row {
position: absolute;
top: 110px;
left: 0;
width: 100%;
text-align: center;
font-size: 64px;
font-weight: 600;
color: #fff;
letter-spacing: 0.5px;
}
.swap-btn {
position: absolute;
top: 108px;
right: 38px;
width: 90px;
height: 66px;
display: flex;
align-items: center;
justify-content: center;
}
.swap-btn svg path { stroke: #fff; stroke-width: 6; fill: none; }
/* Tabs */
.tabs {
position: absolute;
top: 180px;
left: 36px;
right: 36px;
display: flex;
gap: 28px;
}
.tab {
flex: 1;
height: 120px;
border-radius: 60px;
display: flex;
align-items: center;
justify-content: center;
font-size: 48px;
font-weight: 600;
color: #fff;
background: rgba(255,255,255,0.12);
}
.tab.active {
background: rgba(255,255,255,0.22);
}
/* Search card */
.search-card {
position: absolute;
top: 340px;
left: 36px;
width: 1008px;
height: 330px;
background: #1c1c1c;
border-radius: 44px;
box-shadow: 0 14px 30px rgba(0,0,0,0.35);
padding: 40px 48px;
}
.route-rail {
position: absolute;
left: 40px;
top: 44px;
width: 18px;
height: 250px;
}
.route-rail .line {
position: absolute;
left: 8px;
top: 40px;
bottom: 40px;
width: 2px;
background: #e6e6e6;
opacity: 0.6;
}
.route-rail .dot {
position: absolute;
left: 0;
width: 18px;
height: 18px;
border-radius: 50%;
border: 3px solid #e6e6e6;
}
.route-rail .dot.start { top: 0; }
.route-rail .dot.end { bottom: 0; }
.input-row {
margin-left: 56px;
height: 120px;
border-bottom: 2px solid #303030;
display: flex;
align-items: center;
font-size: 46px;
color: #bfbfbf;
}
.input-row:last-child {
border-bottom: none;
color: #9f9f9f;
}
/* Main dark body area */
.content-area {
position: absolute;
top: 700px;
left: 0;
right: 0;
bottom: 180px;
background: #000;
}
/* Floating action button (list + plus) */
.fab {
position: absolute;
right: 42px;
bottom: 280px;
width: 152px;
height: 152px;
border-radius: 50%;
background: #262626;
box-shadow: 0 10px 24px rgba(0,0,0,0.45);
display: flex;
align-items: center;
justify-content: center;
}
.fab svg { width: 86px; height: 86px; }
.fab svg path, .fab svg rect, .fab svg line { stroke: #e6e6e6; stroke-width: 8; fill: none; }
/* Bottom navigation */
.bottom-nav {
position: absolute;
left: 0;
right: 0;
bottom: 0;
height: 180px;
background: #1a1a1a;
display: flex;
align-items: center;
justify-content: space-around;
padding: 0 24px;
}
.nav-item {
width: 160px;
height: 140px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #bfbfbf;
font-size: 34px;
gap: 12px;
}
.nav-item.active {
color: #ffffff;
}
.nav-icon {
width: 88px;
height: 88px;
}
.nav-icon path, .nav-icon rect, .nav-icon line, .nav-icon circle {
stroke: currentColor;
stroke-width: 6;
fill: none;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Top red bar -->
<div class="topbar">
<div class="status-row">
<div>10:36</div>
<div class="status-icons">
<!-- simple icons for status bar -->
<svg class="icon-wifi" viewBox="0 0 24 24">
<path d="M2 7c5-4 15-4 20 0"/>
<path d="M5 11c3-3 11-3 14 0"/>
<path d="M9 15c2-2 6-2 8 0"/>
<circle cx="12" cy="18" r="1.5" fill="#fff"></circle>
</svg>
<svg class="icon-battery" viewBox="0 0 28 18">
<rect x="1.5" y="1.5" width="20" height="15" rx="2"></rect>
<line x1="23" y1="6" x2="26" y2="6"></line>
<line x1="23" y1="12" x2="26" y2="12"></line>
<rect x="4" y="4" width="14" height="10" fill="#fff" stroke="none"></rect>
</svg>
</div>
</div>
<div class="header-row">Plan</div>
<div class="swap-btn">
<svg viewBox="0 0 80 60">
<path d="M10 45h45"></path>
<path d="M40 15h30"></path>
<path d="M55 33l10 12-10 12"></path>
<path d="M25 27L15 15 25 3"></path>
</svg>
</div>
<div class="tabs">
<div class="tab active">Timetable</div>
<div class="tab">Touch timetable</div>
<div class="tab">Map</div>
</div>
</div>
<!-- Search card -->
<div class="search-card">
<div class="route-rail">
<div class="dot start"></div>
<div class="line"></div>
<div class="dot end"></div>
</div>
<div class="input-row">From</div>
<div class="input-row">To</div>
</div>
<!-- Main black content area -->
<div class="content-area"></div>
<!-- Floating Action Button -->
<div class="fab">
<svg viewBox="0 0 100 100">
<!-- list icon -->
<line x1="14" y1="28" x2="70" y2="28"></line>
<line x1="14" y1="48" x2="70" y2="48"></line>
<line x1="14" y1="68" x2="70" y2="68"></line>
<!-- plus -->
<line x1="72" y1="40" x2="92" y2="40"></line>
<line x1="82" y1="30" x2="82" y2="50"></line>
</svg>
</div>
<!-- Bottom navigation -->
<div class="bottom-nav">
<div class="nav-item active">
<svg class="nav-icon" viewBox="0 0 48 48">
<line x1="8" y1="12" x2="40" y2="12"></line>
<line x1="8" y1="22" x2="30" y2="22"></line>
<circle cx="36" cy="22" r="6"></circle>
</svg>
<div>Plan</div>
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 48 48">
<rect x="8" y="16" width="32" height="16" rx="3"></rect>
<line x1="12" y1="32" x2="36" y2="32"></line>
<circle cx="16" cy="36" r="3"></circle>
</svg>
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 48 48">
<rect x="10" y="20" width="28" height="8" rx="4"></rect>
<circle cx="12" cy="24" r="3"></circle>
<circle cx="36" cy="24" r="3"></circle>
</svg>
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 48 48">
<rect x="10" y="10" width="28" height="28" rx="4"></rect>
<line x1="18" y1="18" x2="30" y2="18"></line>
<line x1="18" y1="24" x2="30" y2="24"></line>
<line x1="18" y1="30" x2="30" y2="30"></line>
</svg>
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 48 48">
<rect x="10" y="14" width="28" height="20" rx="4"></rect>
<path d="M10 14l8-8h12l8 8" stroke-linejoin="round"></path>
</svg>
</div>
<div class="nav-item">
<svg class="nav-icon" viewBox="0 0 48 48">
<circle cx="24" cy="18" r="8"></circle>
<path d="M8 40c4-8 28-8 32 0" stroke-linecap="round"></path>
</svg>
</div>
</div>
</div>
</body>
</html>