AndroidCode / code /10113 /10113_14.html
yhzheng1031's picture
Add files using upload-large-folder tool
0e1717f verified
raw
history blame
5.81 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Select passengers</title>
<style>
body { margin: 0; padding: 0; background: transparent; font-family: Roboto, Arial, sans-serif; }
#render-target {
width: 1080px; height: 2400px; position: relative; overflow: hidden;
background: #ffffff; border-radius: 0;
}
.appbar {
position: absolute; top: 0; left: 0; width: 100%; height: 200px;
background: #095a63; color: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.appbar-inner { position: absolute; bottom: 22px; left: 0; right: 0; height: 90px; display: flex; align-items: center; padding: 0 32px; }
.appbar-title { font-size: 56px; font-weight: 500; margin-left: 24px; flex: 1; }
.icon-btn { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; cursor: default; }
.content { position: absolute; top: 200px; left: 0; right: 0; bottom: 120px; overflow: hidden; }
.list { padding-top: 12px; }
.row {
display: flex; align-items: center; padding: 44px 40px; font-size: 44px; color: #333;
}
.row + .divider { margin: 0 40px; border-bottom: 1px solid #e9e9e9; }
.subtitle { font-size: 36px; color: #777; margin-top: 12px; }
.label { flex: 1; }
.stepper {
width: 320px; display: flex; align-items: center; justify-content: space-between;
}
.count { font-size: 52px; color: #616161; width: 80px; text-align: center; }
.svg-icon { width: 64px; height: 64px; }
.action { color: #0c5660; }
.action.disabled { color: #bdbdbd; }
.bottom-nav {
position: absolute; bottom: 0; left: 0; width: 100%; height: 120px; background: #000;
}
.pill {
position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%);
width: 240px; height: 12px; background: #d6d6d6; border-radius: 12px;
}
</style>
</head>
<body>
<div id="render-target">
<div class="appbar">
<div class="appbar-inner">
<div class="icon-btn">
<svg class="svg-icon" viewBox="0 0 48 48">
<path d="M28 10 L16 24 L28 38" fill="none" stroke="#ffffff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M16 24 H40" fill="none" stroke="#ffffff" stroke-width="4" stroke-linecap="round"/>
</svg>
</div>
<div class="appbar-title">Select passengers</div>
<div class="icon-btn">
<svg class="svg-icon" viewBox="0 0 48 48">
<path d="M10 26 L18 34 L38 14" fill="none" stroke="#ffffff" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
</div>
</div>
<div class="content">
<div class="list">
<div class="row">
<div class="label">Adult</div>
<div class="stepper">
<div class="action">
<svg class="svg-icon" viewBox="0 0 48 48">
<path d="M12 24 H36" fill="none" stroke="currentColor" stroke-width="4" stroke-linecap="round"/>
</svg>
</div>
<div class="count">3</div>
<div class="action">
<svg class="svg-icon" viewBox="0 0 48 48">
<path d="M24 12 V36 M12 24 H36" fill="none" stroke="currentColor" stroke-width="4" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<div class="divider"></div>
<div class="row">
<div class="label">Child (2-15)</div>
<div class="stepper">
<div class="action disabled">
<svg class="svg-icon" viewBox="0 0 48 48">
<path d="M12 24 H36" fill="none" stroke="currentColor" stroke-width="4" stroke-linecap="round"/>
</svg>
</div>
<div class="count">0</div>
<div class="action">
<svg class="svg-icon" viewBox="0 0 48 48">
<path d="M24 12 V36 M12 24 H36" fill="none" stroke="currentColor" stroke-width="4" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<div class="divider"></div>
<div class="row" style="padding-bottom: 36px;">
<div class="label">
<div>Bike</div>
<div class="subtitle">E-bikes are not allowed on buses.</div>
</div>
<div class="stepper" style="align-self: center;">
<div class="action disabled">
<svg class="svg-icon" viewBox="0 0 48 48">
<path d="M12 24 H36" fill="none" stroke="currentColor" stroke-width="4" stroke-linecap="round"/>
</svg>
</div>
<div class="count">0</div>
<div class="action">
<svg class="svg-icon" viewBox="0 0 48 48">
<path d="M24 12 V36 M12 24 H36" fill="none" stroke="currentColor" stroke-width="4" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<div class="divider"></div>
<div class="row" style="padding-bottom: 36px;">
<div class="label">
<div>Travel in your wheelchair</div>
<div class="subtitle">Please select passenger first</div>
</div>
<div class="stepper">
<div class="action disabled">
<svg class="svg-icon" viewBox="0 0 48 48">
<path d="M12 24 H36" fill="none" stroke="currentColor" stroke-width="4" stroke-linecap="round"/>
</svg>
</div>
<div class="count">0</div>
<div class="action">
<svg class="svg-icon" viewBox="0 0 48 48">
<path d="M24 12 V36 M12 24 H36" fill="none" stroke="currentColor" stroke-width="4" stroke-linecap="round"/>
</svg>
</div>
</div>
</div>
<div class="divider"></div>
</div>
</div>
<div class="bottom-nav"><div class="pill"></div></div>
</div>
</body>
</html>