| <!DOCTYPE html> |
| <html> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>UI Render</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: #0E2C2C; |
| color: #FFFFFF; |
| } |
| |
| |
| .header { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 1080px; |
| height: 180px; |
| padding: 40px 36px 20px 36px; |
| box-sizing: border-box; |
| } |
| .header-row { |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| } |
| .icon-btn { |
| width: 68px; |
| height: 68px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| border-radius: 34px; |
| color: #D5E3E6; |
| } |
| .title { |
| font-size: 56px; |
| line-height: 64px; |
| font-weight: 600; |
| color: #E8F1F2; |
| flex: 1; |
| } |
| .divider { |
| position: absolute; |
| left: 0; |
| right: 0; |
| top: 180px; |
| height: 1px; |
| background: #264142; |
| } |
| |
| |
| .results { |
| position: absolute; |
| top: 190px; |
| left: 0; |
| right: 0; |
| padding-top: 20px; |
| } |
| .result-item { |
| display: flex; |
| align-items: center; |
| padding: 40px 36px; |
| gap: 32px; |
| } |
| .avatar { |
| width: 120px; |
| height: 120px; |
| border-radius: 60px; |
| background: #8E63F7; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| color: #0E2C2C; |
| font-size: 64px; |
| font-weight: 700; |
| } |
| .result-texts { |
| display: flex; |
| flex-direction: column; |
| gap: 14px; |
| } |
| .name { |
| font-size: 50px; |
| font-weight: 700; |
| color: #74E6B9; |
| } |
| .sub { |
| font-size: 40px; |
| color: #CFE7E5; |
| } |
| |
| |
| .gesture-bar { |
| position: absolute; |
| bottom: 60px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 320px; |
| height: 12px; |
| border-radius: 8px; |
| background: #EAEAEA; |
| opacity: 0.9; |
| } |
| |
| |
| svg { |
| width: 44px; |
| height: 44px; |
| } |
| .icon-muted { |
| color: #C7D4D6; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="header"> |
| <div class="header-row"> |
| <div class="icon-btn" aria-label="Back"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path fill="currentColor" d="M14.7 5.3L9 11l5.7 5.7-1.4 1.4L6.2 12l7.1-7.1 1.4 1.4z"/> |
| </svg> |
| </div> |
| <div class="title">Clara Wagner</div> |
| <div class="icon-btn icon-muted" aria-label="Clear"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path fill="currentColor" d="M6 6l12 12M18 6L6 18" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round"/> |
| </svg> |
| </div> |
| <div class="icon-btn icon-muted" aria-label="Voice Search"> |
| |
| <svg viewBox="0 0 24 24"> |
| <path fill="currentColor" d="M12 15a3 3 0 0 0 3-3V6a3 3 0 0 0-6 0v6a3 3 0 0 0 3 3zm-6-3a6 6 0 0 0 12 0h-2a4 4 0 0 1-8 0H6zm5 6v3h2v-3h-2z"/> |
| </svg> |
| </div> |
| </div> |
| </div> |
| <div class="divider"></div> |
|
|
| |
| <div class="results"> |
| <div class="result-item"> |
| <div class="avatar">C</div> |
| <div class="result-texts"> |
| <div class="name">Clara Wagner</div> |
| <div class="sub">Clara Wagner</div> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="gesture-bar"></div> |
| </div> |
| </body> |
| </html> |