| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=1080, initial-scale=1.0"> |
| <title>Help & Contact Screen</title> |
| <style> |
| body { margin: 0; padding: 0; background: transparent; font-family: system-ui, -apple-system, Roboto, Arial, sans-serif; } |
| #render-target { |
| width: 1080px; |
| height: 2400px; |
| position: relative; |
| overflow: hidden; |
| background: #FFFFFF; |
| } |
| |
| |
| .status-bar { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 120px; |
| padding: 30px 40px; |
| display: flex; |
| align-items: center; |
| justify-content: space-between; |
| color: #333; |
| box-sizing: border-box; |
| font-weight: 600; |
| } |
| .sb-left, .sb-right { |
| display: flex; |
| align-items: center; |
| gap: 22px; |
| } |
| .sb-time { |
| font-size: 44px; |
| letter-spacing: 0.5px; |
| } |
| .sb-icon { |
| width: 36px; |
| height: 36px; |
| } |
| |
| |
| .header { |
| position: absolute; |
| top: 160px; |
| left: 40px; |
| right: 40px; |
| display: flex; |
| align-items: center; |
| gap: 28px; |
| } |
| .close-btn { |
| width: 112px; |
| height: 112px; |
| border-radius: 56px; |
| background: #F5F6F7; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| .title { |
| font-size: 64px; |
| font-weight: 800; |
| color: #111; |
| letter-spacing: 0.2px; |
| } |
| |
| |
| .spinner { |
| position: absolute; |
| top: 1200px; |
| left: 480px; |
| width: 120px; |
| height: 120px; |
| border-radius: 50%; |
| border: 16px solid #3366FF; |
| border-left-color: transparent; |
| animation: spin 1.2s linear infinite; |
| } |
| @keyframes spin { |
| to { transform: rotate(360deg); } |
| } |
| |
| |
| .home-indicator { |
| position: absolute; |
| bottom: 60px; |
| left: 50%; |
| transform: translateX(-50%); |
| width: 500px; |
| height: 14px; |
| background: #8E8E8E; |
| border-radius: 8px; |
| opacity: 0.7; |
| } |
| </style> |
| </head> |
| <body> |
| <div id="render-target"> |
| |
| <div class="status-bar"> |
| <div class="sb-left"> |
| <div class="sb-time">10:48</div> |
| |
| <svg class="sb-icon" viewBox="0 0 24 24"> |
| <circle cx="12" cy="12" r="4" fill="#666"/> |
| <g stroke="#666" stroke-width="2" stroke-linecap="round"> |
| <line x1="12" y1="1.5" x2="12" y2="5.5"/> |
| <line x1="12" y1="18.5" x2="12" y2="22.5"/> |
| <line x1="1.5" y1="12" x2="5.5" y2="12"/> |
| <line x1="18.5" y1="12" x2="22.5" y2="12"/> |
| <line x1="4.2" y1="4.2" x2="6.8" y2="6.8"/> |
| <line x1="17.2" y1="17.2" x2="19.8" y2="19.8"/> |
| <line x1="17.2" y1="6.8" x2="19.8" y2="4.2"/> |
| <line x1="4.2" y1="19.8" x2="6.8" y2="17.2"/> |
| </g> |
| </svg> |
| </div> |
| <div class="sb-right"> |
| |
| <svg class="sb-icon" viewBox="0 0 24 24"> |
| <path d="M2 9c5.5-5.5 14.5-5.5 20 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/> |
| <path d="M5 12c3.8-3.8 10.2-3.8 14 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/> |
| <path d="M8 15c2.2-2.2 5.8-2.2 8 0" fill="none" stroke="#555" stroke-width="2" stroke-linecap="round"/> |
| <circle cx="12" cy="18" r="1.8" fill="#555"/> |
| </svg> |
| |
| <svg class="sb-icon" viewBox="0 0 28 24"> |
| <rect x="2" y="6" width="20" height="12" rx="2" ry="2" fill="none" stroke="#555" stroke-width="2"/> |
| <rect x="4" y="8" width="16" height="8" fill="#555"/> |
| <rect x="22.5" y="9" width="3" height="6" rx="1" ry="1" fill="#555"/> |
| </svg> |
| </div> |
| </div> |
|
|
| |
| <div class="header"> |
| <div class="close-btn"> |
| <svg width="44" height="44" viewBox="0 0 24 24"> |
| <g stroke="#222" stroke-width="2.6" stroke-linecap="round"> |
| <line x1="5" y1="5" x2="19" y2="19"/> |
| <line x1="19" y1="5" x2="5" y2="19"/> |
| </g> |
| </svg> |
| </div> |
| <div class="title">Help & Contact</div> |
| </div> |
|
|
| |
| <div class="spinner"></div> |
|
|
| |
| <div class="home-indicator"></div> |
| </div> |
| </body> |
| </html> |