| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <title>UI Render</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; } |
| #render-target { |
| width: 1440px; |
| height: 3120px; |
| position: relative; |
| overflow: hidden; |
| background: #EAF1F4; |
| font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; |
| color: #111; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 120px; |
| background: #0E0E0E; |
| color: #ffffff; |
| display: flex; |
| align-items: center; |
| padding: 0 40px; |
| box-sizing: border-box; |
| letter-spacing: 0.5px; |
| } |
| .status-left { |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| font-size: 46px; |
| } |
| .status-icons-small { |
| display: flex; |
| align-items: center; |
| gap: 22px; |
| } |
| .dot, .circle { |
| width: 22px; |
| height: 22px; |
| border-radius: 50%; |
| background: #CFCFCF; |
| opacity: 0.9; |
| } |
| .status-right { |
| margin-left: auto; |
| display: flex; |
| align-items: center; |
| gap: 30px; |
| } |
| .wifi svg, .battery svg { |
| display: block; |
| } |
| |
| |
| .toolbar { |
| position: absolute; |
| top: 120px; |
| left: 0; |
| width: 100%; |
| height: 180px; |
| background: #121212; |
| color: #ffffff; |
| display: flex; |
| align-items: center; |
| padding: 0 40px; |
| box-sizing: border-box; |
| border-bottom: 1px solid #1e1e1e; |
| } |
| .toolbar-title { |
| font-size: 72px; |
| font-weight: 600; |
| } |
| .toolbar-icons { |
| margin-left: auto; |
| display: flex; |
| align-items: center; |
| gap: 56px; |
| } |
| .tool-icon svg { width: 70px; height: 70px; fill: none; stroke: #fff; stroke-width: 6; } |
| |
| |
| .list { |
| position: absolute; |
| top: 300px; |
| left: 0; |
| width: 100%; |
| } |
| .file-item { |
| display: flex; |
| align-items: center; |
| padding: 40px; |
| box-sizing: border-box; |
| height: 360px; |
| border-bottom: 1px solid #d7dee3; |
| background: #F5FAFC; |
| } |
| .file-item.selected { |
| background: #9EC3F1; |
| } |
| .file-thumb { |
| width: 150px; |
| height: 150px; |
| background: #E0E0E0; |
| border: 1px solid #BDBDBD; |
| border-radius: 14px; |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| color: #757575; |
| font-size: 34px; |
| margin-right: 42px; |
| } |
| .file-content { flex: 1; } |
| .file-title { |
| font-size: 58px; |
| font-weight: 700; |
| color: #0b0b0b; |
| white-space: nowrap; |
| overflow: hidden; |
| text-overflow: ellipsis; |
| margin-bottom: 14px; |
| } |
| .file-meta { |
| font-size: 40px; |
| color: #5e6b77; |
| display: flex; |
| justify-content: space-between; |
| align-items: center; |
| } |
| .duration { |
| color: #333; |
| font-weight: 600; |
| margin-left: 20px; |
| } |
| .checkbox { |
| width: 92px; |
| height: 92px; |
| border: 6px solid #111; |
| border-radius: 10px; |
| margin-left: 32px; |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| box-sizing: border-box; |
| background: transparent; |
| } |
| .file-item.selected .checkbox { |
| background: #0D47A1; |
| border-color: #0D47A1; |
| } |
| .checkbox svg { width: 68px; height: 68px; } |
| |
| |
| .content-spacer { |
| height: 1300px; |
| background: #EAF1F4; |
| } |
| |
| |
| .bottom-actions { |
| position: absolute; |
| bottom: 540px; |
| left: 0; |
| width: 100%; |
| height: 200px; |
| background: #8B8E92; |
| color: #fff; |
| display: flex; |
| align-items: center; |
| padding: 0 40px; |
| box-sizing: border-box; |
| } |
| .action-left { |
| display: flex; |
| align-items: center; |
| gap: 60px; |
| } |
| .badge { |
| width: 120px; |
| height: 120px; |
| background: #DFE2E6; |
| color: #111; |
| border-radius: 12px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 56px; |
| font-weight: 700; |
| } |
| .action-icon svg { width: 120px; height: 120px; stroke: #fff; stroke-width: 10; fill: none; } |
| .action-right { |
| margin-left: auto; |
| font-size: 58px; |
| } |
| |
| |
| .ad-banner { |
| position: absolute; |
| bottom: 360px; |
| left: 0; |
| width: 100%; |
| height: 180px; |
| background: #ffffff; |
| border-top: 1px solid #d9d9d9; |
| border-bottom: 1px solid #d9d9d9; |
| display: flex; |
| align-items: center; |
| padding: 0 40px; |
| box-sizing: border-box; |
| color: #000; |
| } |
| .ad-logo { |
| width: 150px; |
| height: 150px; |
| background: #1E56CF; |
| color: #fff; |
| border-radius: 12px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 46px; |
| font-weight: 700; |
| margin-right: 36px; |
| } |
| .ad-text { |
| font-size: 46px; |
| display: flex; |
| align-items: center; |
| gap: 16px; |
| } |
| .ad-pill { |
| font-size: 36px; |
| color: #666; |
| border: 1px solid #999; |
| padding: 6px 12px; |
| border-radius: 8px; |
| } |
| .ad-open { |
| margin-left: auto; |
| font-size: 50px; |
| color: #1E56CF; |
| font-weight: 700; |
| } |
| .ad-info { |
| margin-left: 18px; |
| width: 40px; |
| height: 40px; |
| border: 2px solid #87B5FF; |
| color: #87B5FF; |
| border-radius: 50%; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 28px; |
| } |
| |
| |
| .bottom-controls { |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| width: 100%; |
| height: 360px; |
| background: #0C0C0C; |
| border-top: 1px solid #1b1b1b; |
| box-sizing: border-box; |
| } |
| .controls-row { |
| height: 100%; |
| display: flex; |
| align-items: center; |
| justify-content: space-around; |
| padding: 0 120px; |
| } |
| .ctrl { |
| width: 180px; |
| height: 180px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .ctrl svg { width: 140px; height: 140px; } |
| .accent-line { |
| position: absolute; |
| left: 0; |
| bottom: 340px; |
| width: 420px; |
| height: 10px; |
| background: #D32222; |
| } |
| .home-indicator { |
| position: absolute; |
| bottom: 260px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 320px; |
| height: 18px; |
| background: #f2f2f2; |
| border-radius: 12px; |
| opacity: 0.9; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
|
|
| |
| <div class="status-bar"> |
| <div class="status-left"> |
| <div>3:51</div> |
| <div class="status-icons-small"> |
| <div class="circle"></div> |
| <div class="circle"></div> |
| <div class="dot"></div> |
| <div class="dot"></div> |
| </div> |
| </div> |
| <div class="status-right"> |
| <div class="wifi"> |
| <svg viewBox="0 0 64 64" stroke="#fff" stroke-width="5" fill="none"> |
| <path d="M8 24c16-12 32-12 48 0"/> |
| <path d="M16 32c12-8 20-8 32 0"/> |
| <path d="M28 44c4-3 8-3 12 0"/> |
| <circle cx="34" cy="52" r="3" fill="#fff"></circle> |
| </svg> |
| </div> |
| <div class="battery"> |
| <svg viewBox="0 0 80 40" fill="none" stroke="#fff" stroke-width="4"> |
| <rect x="4" y="6" width="60" height="28" rx="6"></rect> |
| <rect x="66" y="12" width="10" height="16" rx="3" fill="#fff"></rect> |
| <rect x="8" y="10" width="48" height="20" fill="#fff" stroke="none"></rect> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="toolbar"> |
| <div class="toolbar-title">(2)</div> |
| <div class="toolbar-icons"> |
| <div class="tool-icon" title="Search"> |
| <svg viewBox="0 0 64 64"> |
| <circle cx="28" cy="28" r="20"></circle> |
| <line x1="44" y1="44" x2="60" y2="60"></line> |
| </svg> |
| </div> |
| <div class="tool-icon" title="Cut"> |
| <svg viewBox="0 0 64 64"> |
| <circle cx="16" cy="20" r="10"></circle> |
| <circle cx="16" cy="44" r="10"></circle> |
| <line x1="28" y1="16" x2="60" y2="32"></line> |
| <line x1="28" y1="48" x2="60" y2="32"></line> |
| </svg> |
| </div> |
| <div class="tool-icon" title="Edit"> |
| <svg viewBox="0 0 64 64"> |
| <path d="M12 52l12-2 26-26-10-10-26 26-2 12z"></path> |
| </svg> |
| </div> |
| <div class="tool-icon" title="Menu"> |
| <svg viewBox="0 0 64 64"> |
| <line x1="8" y1="16" x2="56" y2="16"></line> |
| <line x1="8" y1="32" x2="56" y2="32"></line> |
| <line x1="8" y1="48" x2="56" y2="48"></line> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="list"> |
| <div class="file-item selected"> |
| <div class="file-thumb">[ICON: Music]</div> |
| <div class="file-content"> |
| <div class="file-title">2023_12_08_12_46_58_1_1....</div> |
| <div class="file-meta"> |
| <div>2023-12-08 13:31, 234.3 KB</div> |
| <div class="duration">00:14s</div> |
| </div> |
| </div> |
| <div class="checkbox"> |
| <svg viewBox="0 0 64 64"> |
| <polyline points="12,34 26,48 52,18" stroke="#fff" stroke-width="8" fill="none"></polyline> |
| </svg> |
| </div> |
| </div> |
|
|
| <div class="file-item"> |
| <div class="file-thumb">[ICON: Music]</div> |
| <div class="file-content"> |
| <div class="file-title">2023_12_08_12_46_58_1.mp3</div> |
| <div class="file-meta"> |
| <div>2023-12-08 12:47, 567.8 KB</div> |
| <div class="duration">00:36s</div> |
| </div> |
| </div> |
| <div class="checkbox"></div> |
| </div> |
|
|
| <div class="content-spacer"></div> |
| </div> |
|
|
| |
| <div class="bottom-actions"> |
| <div class="action-left"> |
| <div class="badge">1</div> |
| <div class="action-icon" title="Play"> |
| <svg viewBox="0 0 64 64"> |
| <polygon points="16,12 52,32 16,52" fill="#fff" stroke="none"></polygon> |
| </svg> |
| </div> |
| <div class="action-icon" title="Delete"> |
| <svg viewBox="0 0 64 64"> |
| <rect x="18" y="22" width="28" height="34" rx="4"></rect> |
| <line x1="14" y1="22" x2="50" y2="22"></line> |
| <rect x="26" y="10" width="12" height="8" rx="2"></rect> |
| </svg> |
| </div> |
| <div class="action-icon" title="Share"> |
| <svg viewBox="0 0 64 64"> |
| <circle cx="16" cy="32" r="8"></circle> |
| <circle cx="48" cy="16" r="8"></circle> |
| <circle cx="48" cy="48" r="8"></circle> |
| <line x1="24" y1="28" x2="40" y2="20"></line> |
| <line x1="24" y1="36" x2="40" y2="44"></line> |
| </svg> |
| </div> |
| </div> |
| <div class="action-right">Cancel</div> |
| </div> |
|
|
| |
| <div class="ad-banner"> |
| <div class="ad-logo">Booking</div> |
| <div class="ad-text"> |
| Booking.com: Hotels & Flights |
| <span class="ad-pill">AD</span> |
| </div> |
| <div class="ad-info">i</div> |
| <div class="ad-open">OPEN</div> |
| </div> |
|
|
| |
| <div class="bottom-controls"> |
| <div class="accent-line"></div> |
| <div class="home-indicator"></div> |
| <div class="controls-row"> |
| <div class="ctrl"> |
| <svg viewBox="0 0 64 64"> |
| <circle cx="32" cy="32" r="28" stroke="#D32222" stroke-width="6" fill="none"></circle> |
| <path d="M20 44c2-8 6-12 12-12s10 4 12 12" stroke="#D32222" stroke-width="6" fill="none"></path> |
| <circle cx="22" cy="28" r="4" fill="#D32222"></circle> |
| <circle cx="42" cy="28" r="4" fill="#D32222"></circle> |
| </svg> |
| </div> |
| <div class="ctrl"> |
| <svg viewBox="0 0 64 64"> |
| <circle cx="32" cy="24" r="10" stroke="#FFFFFF" stroke-width="6" fill="none"></circle> |
| <rect x="22" y="32" width="20" height="18" rx="6" stroke="#FFFFFF" stroke-width="6" fill="none"></rect> |
| </svg> |
| </div> |
| <div class="ctrl"> |
| <svg viewBox="0 0 64 64"> |
| <circle cx="32" cy="32" r="8" fill="#FFFFFF"></circle> |
| <path d="M12 32a20 20 0 0 1 4-12l8 4m24 8a20 20 0 0 1-4 12l-8-4" stroke="#FFFFFF" stroke-width="6" fill="none"></path> |
| </svg> |
| </div> |
| </div> |
| </div> |
|
|
| </div> |
| </body> |
| </html> |