| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Audio Select UI</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: Arial, Helvetica, sans-serif; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #111314; |
| border-radius: 0; |
| box-shadow: none; |
| color: #EDEDED; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 110px; |
| padding: 0 40px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #ffffff; |
| font-size: 42px; |
| letter-spacing: 0.5px; |
| } |
| .status-icons { |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| } |
| .icon { |
| width: 48px; |
| height: 48px; |
| } |
| |
| |
| .app-bar { |
| position: absolute; |
| top: 110px; |
| left: 0; |
| width: 1080px; |
| height: 140px; |
| display: flex; |
| align-items: center; |
| padding: 0 24px; |
| color: #DADADA; |
| } |
| .app-bar .left { |
| width: 140px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .app-bar .right { |
| flex: 1; |
| display: flex; |
| justify-content: flex-end; |
| gap: 34px; |
| padding-right: 24px; |
| } |
| |
| |
| .content-card { |
| position: absolute; |
| top: 280px; |
| left: 40px; |
| width: 1000px; |
| height: 460px; |
| background: #171a1c; |
| border-radius: 42px; |
| box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05); |
| padding: 48px; |
| color: #bdbdbd; |
| } |
| .content-card .title { |
| font-size: 64px; |
| font-weight: 600; |
| color: #BDBDBD; |
| margin-bottom: 16px; |
| } |
| .content-card .subtitle { |
| font-size: 34px; |
| color: #889096; |
| } |
| |
| |
| .wave-area { |
| position: absolute; |
| top: 860px; |
| left: 40px; |
| width: 1000px; |
| height: 520px; |
| border-radius: 40px; |
| background: #141618; |
| overflow: hidden; |
| } |
| .wave-center-line { |
| position: absolute; |
| left: 380px; |
| top: 90px; |
| width: 4px; |
| height: 340px; |
| background: #30363b; |
| border-radius: 2px; |
| } |
| .wave-bars { |
| position: absolute; |
| bottom: 70px; |
| left: 120px; |
| display: flex; |
| gap: 22px; |
| align-items: flex-end; |
| } |
| .wave-bars span { |
| width: 16px; |
| height: 10px; |
| background: #2f363b; |
| border-radius: 6px; |
| } |
| .wave-bars span.mid { height: 46px; background: #3a4248; } |
| .wave-bars span.tall { height: 86px; background: #3f474e; } |
| .wave-bars span.dot { |
| width: 8px; height: 8px; border-radius: 50%; background: #2f363b; margin-bottom: 6px; |
| } |
| |
| |
| .bottom-sheet { |
| position: absolute; |
| bottom: 0; |
| left: 0; |
| width: 1080px; |
| height: 980px; |
| background: #252b30; |
| border-top-left-radius: 48px; |
| border-top-right-radius: 48px; |
| box-shadow: 0 -6px 16px rgba(0,0,0,0.4); |
| } |
| .sheet-header { |
| height: 160px; |
| display: flex; |
| align-items: center; |
| padding: 0 36px; |
| color: #EDEDED; |
| font-size: 56px; |
| font-weight: 600; |
| gap: 24px; |
| } |
| .sheet-body { |
| padding: 10px 40px 160px; |
| } |
| .option { |
| display: flex; |
| align-items: flex-start; |
| gap: 28px; |
| padding: 34px 0; |
| color: #EDEDED; |
| } |
| .radio { |
| width: 48px; height: 48px; border-radius: 50%; |
| border: 4px solid #8AB4F8; |
| display: inline-flex; align-items: center; justify-content: center; |
| box-sizing: border-box; |
| } |
| .radio .dot { |
| width: 22px; height: 22px; background: #8AB4F8; border-radius: 50%; |
| } |
| .radio.unchecked { |
| border-color: #7a848b; |
| } |
| .radio.unchecked .dot { display: none; } |
| .option .texts { display: flex; flex-direction: column; } |
| .option .label { font-size: 46px; line-height: 1.2; } |
| .option .helper { font-size: 34px; color: #9aa3aa; margin-top: 6px; } |
| |
| .next-btn { |
| position: absolute; |
| right: 40px; |
| bottom: 120px; |
| width: 180px; |
| height: 110px; |
| background: #8AB4F8; |
| color: #0a0d10; |
| border-radius: 26px; |
| display: flex; align-items: center; justify-content: center; |
| font-size: 46px; font-weight: 600; |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 26px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 320px; |
| height: 14px; |
| background: #ffffff; |
| opacity: 0.9; |
| border-radius: 7px; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="status-bar"> |
| <div>8:48</div> |
| <div class="status-icons"> |
| |
| <svg class="icon" viewBox="0 0 48 48"> |
| <path d="M6 18 C18 10,30 10,42 18" stroke="#FFFFFF" stroke-width="4" fill="none"/> |
| <path d="M12 26 C20 21,28 21,36 26" stroke="#FFFFFF" stroke-width="4" fill="none"/> |
| <circle cx="24" cy="34" r="4" fill="#FFFFFF"></circle> |
| </svg> |
| |
| <svg class="icon" viewBox="0 0 48 48"> |
| <rect x="6" y="12" width="30" height="24" rx="4" ry="4" fill="none" stroke="#FFFFFF" stroke-width="4"></rect> |
| <rect x="10" y="16" width="22" height="16" rx="2" fill="#FFFFFF"></rect> |
| <rect x="38" y="18" width="4" height="12" rx="1" fill="#FFFFFF"></rect> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="app-bar"> |
| <div class="left"> |
| <svg class="icon" viewBox="0 0 48 48"> |
| <path d="M30 10 L14 24 L30 38" stroke="#DADADA" stroke-width="5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| </div> |
| <div class="right"> |
| |
| <svg class="icon" viewBox="0 0 48 48"> |
| <polygon points="24,6 29,18 42,18 31,26 35,38 24,30 13,38 17,26 6,18 19,18" fill="#DADADA"></polygon> |
| </svg> |
| |
| <svg class="icon" viewBox="0 0 48 48"> |
| <circle cx="10" cy="24" r="5" fill="#DADADA"></circle> |
| <circle cx="38" cy="12" r="5" fill="#DADADA"></circle> |
| <circle cx="38" cy="36" r="5" fill="#DADADA"></circle> |
| <path d="M14 24 L33 14" stroke="#DADADA" stroke-width="4" fill="none"></path> |
| <path d="M14 24 L33 34" stroke="#DADADA" stroke-width="4" fill="none"></path> |
| </svg> |
| |
| <svg class="icon" viewBox="0 0 48 48"> |
| <circle cx="14" cy="16" r="6" fill="#DADADA"></circle> |
| <circle cx="14" cy="32" r="6" fill="#DADADA"></circle> |
| <path d="M20 16 L40 28" stroke="#DADADA" stroke-width="4" fill="none"></path> |
| <path d="M20 32 L40 20" stroke="#DADADA" stroke-width="4" fill="none"></path> |
| </svg> |
| |
| <svg class="icon" viewBox="0 0 48 48"> |
| <circle cx="20" cy="20" r="12" stroke="#DADADA" stroke-width="4" fill="none"></circle> |
| <path d="M32 32 L44 44" stroke="#DADADA" stroke-width="4"></path> |
| </svg> |
| |
| <svg class="icon" viewBox="0 0 48 48"> |
| <circle cx="24" cy="10" r="4" fill="#DADADA"></circle> |
| <circle cx="24" cy="24" r="4" fill="#DADADA"></circle> |
| <circle cx="24" cy="38" r="4" fill="#DADADA"></circle> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="content-card"> |
| <div class="title">Birthday Song</div> |
| <div class="subtitle">Thu, Dec 14 · 7:56 AM</div> |
| </div> |
|
|
| |
| <div class="wave-area"> |
| <div class="wave-center-line"></div> |
| <div class="wave-bars"> |
| <span class="dot"></span> |
| <span></span> |
| <span class="mid"></span> |
| <span></span> |
| <span class="mid"></span> |
| <span class="tall"></span> |
| <span class="mid"></span> |
| <span></span> |
| <span class="dot"></span> |
| <span class="dot"></span> |
| <span class="dot"></span> |
| <span class="mid"></span> |
| <span class="tall"></span> |
| <span class="mid"></span> |
| <span class="dot"></span> |
| </div> |
| </div> |
|
|
| |
| <div class="bottom-sheet"> |
| <div class="sheet-header"> |
| <svg class="icon" viewBox="0 0 48 48"> |
| <path d="M30 10 L14 24 L30 38" stroke="#EDEDED" stroke-width="5" fill="none" stroke-linecap="round" stroke-linejoin="round"></path> |
| </svg> |
| <div>Select file</div> |
| </div> |
| <div class="sheet-body"> |
| <div class="option"> |
| <div class="radio"><div class="dot"></div></div> |
| <div class="texts"> |
| <div class="label">Audio (.m4a)</div> |
| <div class="helper">File size is 347 kB</div> |
| </div> |
| </div> |
| <div class="option"> |
| <div class="radio unchecked"><div class="dot"></div></div> |
| <div class="texts"> |
| <div class="label">Transcript (.txt)</div> |
| </div> |
| </div> |
| </div> |
| <div class="next-btn">Next</div> |
| </div> |
|
|
| |
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |