File size: 4,224 Bytes
67530d2 | 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 | <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 */
.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 with close and title */
.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 */
.spinner {
position: absolute;
top: 1200px;
left: 480px; /* centered: (1080 - 120)/2 */
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 */
.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">
<!-- Status Bar -->
<div class="status-bar">
<div class="sb-left">
<div class="sb-time">10:48</div>
<!-- small status icon (sun/brightness style) -->
<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">
<!-- WiFi icon -->
<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>
<!-- Battery icon -->
<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>
<!-- Header -->
<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>
<!-- Loading Spinner -->
<div class="spinner"></div>
<!-- Home Indicator -->
<div class="home-indicator"></div>
</div>
</body>
</html> |