File size: 13,516 Bytes
5501681 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>TeraBox UI Mock</title>
<style>
body { margin: 0; padding: 0; background: transparent; }
#render-target {
width: 1080px; height: 2400px;
position: relative; overflow: hidden;
background: #F3F3F5;
font-family: "Inter", Arial, sans-serif;
color: #222;
}
* { box-sizing: border-box; }
/* Status bar */
.status-bar {
height: 120px;
background: #F1F1F1;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 40px;
font-size: 36px;
color: #3A3A3A;
}
.status-left { display: flex; align-items: center; gap: 24px; }
.status-right { display: flex; align-items: center; gap: 20px; font-size: 32px; }
.dot { width: 10px; height: 10px; background: #777; border-radius: 50%; display: inline-block; }
/* Header / Search */
.header {
padding: 24px 36px 16px;
background: #F4F4F4;
}
.header-row {
display: flex; align-items: center; gap: 24px;
}
.avatar {
width: 92px; height: 92px; border-radius: 50%;
background: #5A463A; color: #fff;
display: flex; align-items: center; justify-content: center;
font-weight: 700; font-size: 44px; position: relative;
}
.badge-red {
position: absolute; right: -2px; top: -2px;
width: 22px; height: 22px; background: #E74A3B; border: 3px solid #F4F4F4; border-radius: 50%;
}
.badge-small {
position: absolute; left: -6px; bottom: -6px;
width: 32px; height: 32px; background: #DADADA; border-radius: 50%;
font-size: 20px; color: #7A7A7A; display: flex; align-items: center; justify-content: center;
}
.search {
flex: 1; height: 112px; border: 4px solid #000; border-radius: 56px; background: #fff;
display: flex; align-items: center; padding: 0 36px; justify-content: space-between;
}
.search .ph { color: #757575; font-size: 36px; }
.search svg { width: 48px; height: 48px; fill: none; stroke: #575757; stroke-width: 6; }
.header-icons { display: flex; align-items: center; gap: 22px; }
.gift {
width: 72px; height: 72px; border-radius: 18px; background: #FFE9D5;
border: 1px solid #E2B28C; display: flex; align-items: center; justify-content: center;
font-size: 22px; color: #B24D1A; font-weight: 700; position: relative;
}
.gift .tag {
position: absolute; right: -12px; top: -10px; background: #F04A4A; color: #fff;
font-size: 18px; padding: 2px 6px; border-radius: 10px;
}
.jicon { width: 52px; height: 52px; border-radius: 12px; background: #111; color: #fff; font-size: 28px;
display: flex; align-items: center; justify-content: center;
}
/* Cards and sections */
.card {
background: #fff; border-radius: 36px; box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}
.ad-card {
margin: 22px 36px 8px; height: 320px; padding: 20px; position: relative;
}
.ad-label {
position: absolute; left: 28px; top: 24px; font-size: 26px; color: #2E7D32;
border: 2px solid #2E7D32; border-radius: 10px; padding: 4px 8px; background: #fff;
}
.premium-row {
margin: 6px 36px 24px; color: #8A8A8A; font-size: 30px; display: flex; align-items: center; gap: 10px;
}
.premium-row svg { width: 24px; height: 24px; stroke: #8A8A8A; stroke-width: 6; fill: none; }
.grid {
display: flex; gap: 24px; padding: 0 36px; margin-bottom: 28px;
}
.promo-left { width: 498px; padding: 22px; }
.promo-img {
width: 100%; height: 220px; background: #E0E0E0; border: 1px solid #BDBDBD;
border-radius: 22px; display: flex; align-items: center; justify-content: center; color: #757575; font-size: 30px;
}
.promo-title { margin: 18px 6px 12px; font-size: 34px; color: #E74A3B; font-weight: 700; }
.promo-sub { margin: 0 6px 18px; font-size: 26px; color: #666; }
.promo-btn {
width: 220px; height: 76px; border-radius: 38px; background: #5E6BFF; color: #fff;
display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 28px;
}
.tools-right { width: 498px; padding: 22px; }
.tool-row { display: flex; align-items: center; gap: 22px; padding: 26px 8px; }
.tool-icon {
width: 70px; height: 70px; border-radius: 50%;
background: linear-gradient(135deg,#8F87FF,#628CFF); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.tool-icon.orange { background: linear-gradient(135deg,#FFB36C,#FF8B2D); }
.tool-text { font-size: 30px; color: #333; }
.divider { height: 1px; background: #EFEFEF; margin: 0 8px; }
/* Tabs */
.tabs {
margin: 28px 0 12px; padding: 24px 36px; display: flex; align-items: center; justify-content: space-between;
}
.tab-left { display: flex; align-items: baseline; gap: 40px; font-size: 44px; }
.tab { color: #5A5A5A; }
.tab.active { color: #222; position: relative; }
.tab.active::after {
content: ""; position: absolute; left: 12px; bottom: -16px; width: 90px; height: 8px; background: #677BFF; border-radius: 10px;
}
.menu-icon svg { width: 44px; height: 44px; stroke: #333; stroke-width: 8; fill: none; }
/* Picture section */
.section-card { margin: 0 36px 20px; padding: 20px; }
.section-header {
display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
}
.section-title { font-size: 38px; font-weight: 700; }
.section-right { display: flex; align-items: center; gap: 10px; color: #999; }
.section-right .x { width: 38px; height: 38px; border-radius: 50%; background: #EFEFEF; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.thumb-row { display: flex; gap: 18px; padding: 8px 2px 10px; }
.thumb {
width: 248px; height: 190px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 18px;
display: flex; align-items: center; justify-content: center; color: #757575; font-size: 26px;
}
/* Uploads section */
.upload-card { margin: 0 36px 24px; padding: 20px; position: relative; }
.upload-item { display: flex; gap: 20px; padding: 18px 6px; }
.cloud-thumb {
width: 120px; height: 120px; background: #E0E0E0; border: 1px solid #BDBDBD; border-radius: 18px;
display: flex; align-items: center; justify-content: center; color: #757575; font-size: 24px;
}
.file-info { display: flex; flex-direction: column; justify-content: center; }
.file-name { font-size: 34px; color: #333; }
.file-date { font-size: 26px; color: #888; margin-top: 6px; }
/* Toast overlay */
.toast {
position: absolute; left: 140px; top: 1530px;
background: #1C2530; color: #fff; border-radius: 42px;
padding: 24px 36px; display: flex; align-items: center; gap: 20px;
box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.toast::before {
content: ""; position: absolute; left: -18px; top: 0; bottom: 0; width: 18px; background: #29C3AF; border-radius: 12px 0 0 12px;
}
.toast svg { width: 44px; height: 44px; fill: none; stroke: #fff; stroke-width: 6; }
.toast-text { font-size: 30px; white-space: nowrap; }
/* FAB */
.fab {
position: absolute; right: 48px; bottom: 260px;
width: 116px; height: 116px; border-radius: 50%; background: #111; color: #fff;
display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}
.fab svg { width: 56px; height: 56px; fill: none; stroke: #fff; stroke-width: 10; }
/* Bottom nav */
.bottom-nav {
position: absolute; left: 0; right: 0; bottom: 0;
height: 170px; background: #fff; border-top: 1px solid #E8E8E8;
display: flex; align-items: center; justify-content: space-around;
}
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 12px; color: #000; }
.nav-item svg { width: 54px; height: 54px; stroke: #111; stroke-width: 8; fill: none; }
.nav-dot {
position: absolute; right: 110px; bottom: 140px; width: 16px; height: 16px; background: #E74A3B; border-radius: 50%;
}
</style>
</head>
<body>
<div id="render-target">
<!-- Status Bar -->
<div class="status-bar">
<div class="status-left">
<div>9:08</div>
<div class="dot"></div>
<div class="dot"></div>
<div class="dot"></div>
</div>
<div class="status-right">
<span>β</span>
<span>π 100%</span>
</div>
</div>
<!-- Header with search -->
<div class="header">
<div class="header-row">
<div class="avatar">
F
<div class="badge-red"></div>
<div class="badge-small">P</div>
</div>
<div class="search">
<div class="ph">Search files in TeraBox</div>
<svg viewBox="0 0 24 24"><circle cx="10" cy="10" r="7"></circle><line x1="16" y1="16" x2="22" y2="22"></line></svg>
</div>
<div class="header-icons">
<div class="gift">
π
<div class="tag">AD</div>
</div>
<div class="jicon">β©</div>
</div>
</div>
</div>
<!-- Ad Card -->
<div class="card ad-card">
<div class="ad-label">Ad</div>
<div style="width:100%; height:100%; display:flex; align-items:center; justify-content:center; color:#BBBBBB; font-size:32px;">
Sponsored content placeholder
</div>
</div>
<!-- Premium row -->
<div class="premium-row">
<span>Premium Ad-free</span>
<svg viewBox="0 0 24 24"><polyline points="8,4 16,12 8,20"></polyline></svg>
</div>
<!-- Grid cards -->
<div class="grid">
<div class="card promo-left">
<div class="promo-img">[IMG: TeraBox Sharing Challenge]</div>
<div class="promo-title">TeraBox Sharing Challenge</div>
<div class="promo-sub">Share to Win Cash</div>
<div class="promo-btn">View Now</div>
</div>
<div class="card tools-right">
<div class="tool-row">
<div class="tool-icon">π</div>
<div class="tool-text">Novels</div>
</div>
<div class="divider"></div>
<div class="tool-row">
<div class="tool-icon">π</div>
<div class="tool-text">Space Analyzer</div>
</div>
<div class="divider"></div>
<div class="tool-row">
<div class="tool-icon orange">π¦</div>
<div class="tool-text">Welfare Center</div>
</div>
</div>
</div>
<!-- Tabs -->
<div class="tabs">
<div class="tab-left">
<div class="tab">Welfare Center</div>
<div class="tab active">Recent</div>
<div class="tab">Offline</div>
</div>
<div class="menu-icon">
<svg viewBox="0 0 24 24"><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="18" x2="21" y2="18"></line></svg>
</div>
</div>
<!-- Pictures viewed -->
<div class="card section-card">
<div class="section-header">
<div class="section-title">Pictures viewed</div>
<div class="section-right">
<span>βΊ</span>
<div class="x">Γ</div>
</div>
</div>
<div class="thumb-row">
<div class="thumb">[IMG: Fitbit Walk Card]</div>
<div class="thumb">[IMG: Fitbit Walk Card]</div>
<div class="thumb">[IMG: Fitbit Walk Card]</div>
<div class="thumb">[IMG: Fitbit Walk Card]</div>
</div>
</div>
<!-- Uploads -->
<div class="card upload-card">
<div class="section-header">
<div class="section-title">9 file(s) uploaded recently</div>
<div class="section-right">
<span>βΊ</span>
<div class="x">Γ</div>
</div>
</div>
<div class="upload-item">
<div class="cloud-thumb">[IMG: Cloud]</div>
<div class="file-info">
<div class="file-name">Diy tool kit.bin</div>
<div class="file-date">2023-11-22</div>
</div>
</div>
<div class="upload-item">
<div class="cloud-thumb">[IMG: Cloud]</div>
<div class="file-info">
<div class="file-name">Diy tool kit.bin</div>
<div class="file-date">2023-11-22</div>
</div>
</div>
<div class="upload-item">
<div class="cloud-thumb">[IMG: Cloud]</div>
<div class="file-info">
<div class="file-name">MvfitShare.PNG</div>
<div class="file-date">β</div>
</div>
</div>
</div>
<!-- Toast overlay -->
<div class="toast">
<svg viewBox="0 0 24 24">
<path d="M12 2l9 5v5c0 6-4.5 8.5-9 10-4.5-1.5-9-4-9-10V7l9-5z"></path>
<path d="M8 12l3 3 5-6"></path>
</svg>
<div class="toast-text">Preparing for encrypted uploading...</div>
</div>
<!-- Floating Action Button -->
<div class="fab">
<svg viewBox="0 0 24 24"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>
</div>
<!-- Bottom Nav -->
<div class="bottom-nav">
<div class="nav-item">
<svg viewBox="0 0 24 24"><path d="M3 11l9-8 9 8"></path><path d="M5 10v10h14V10"></path></svg>
</div>
<div class="nav-item">
<svg viewBox="0 0 24 24"><rect x="3" y="4" width="18" height="16" rx="2"></rect><path d="M8 4v16"></path></svg>
</div>
<div class="nav-item">
<svg viewBox="0 0 24 24"><rect x="4" y="4" width="16" height="16" rx="3"></rect><circle cx="12" cy="12" r="4"></circle></svg>
</div>
<div class="nav-item">
<svg viewBox="0 0 24 24"><polygon points="5,4 19,12 5,20"></polygon></svg>
</div>
<div class="nav-item">
<svg viewBox="0 0 24 24"><circle cx="12" cy="12" r="8"></circle><circle cx="12" cy="12" r="3"></circle></svg>
</div>
</div>
<div class="nav-dot"></div>
</div>
</body>
</html> |