File size: 7,825 Bytes
0e1717f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>Reviews Screen</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:#ffffff; color:#111;
  }

  /* Status bar */
  .status-bar{
    position:absolute; top:0; left:0; right:0; height:90px;
    display:flex; align-items:center; justify-content:space-between;
    padding:0 36px; font-size:34px; color:#222;
  }
  .sb-icons{ display:flex; align-items:center; gap:22px; }
  .dot, .square{
    width:22px; height:22px; background:#222; border-radius:50%;
  }
  .square{ border-radius:6px; }
  .tiny{ width:12px; height:12px; opacity:.6; }

  /* Close button */
  .close-btn{
    position:absolute; top:112px; right:36px; width:72px; height:72px;
    display:flex; align-items:center; justify-content:center;
    font-size:58px; color:#111; line-height:1;
  }

  /* Page header */
  .header{
    padding-top:150px;
    display:flex; flex-direction:column; align-items:center; gap:28px;
  }
  .header .title{
    font-weight:800; letter-spacing:1px; font-size:48px;
  }

  /* Stars */
  .stars{ display:flex; gap:28px; align-items:center; }
  .star{ width:80px; height:80px; }
  .star.small{ width:60px; height:60px; }
  .star svg{ width:100%; height:100%; display:block; }
  .divider{ height:1px; background:#ECECEC; margin:26px 0 6px; }

  /* Review list */
  .content{ padding:24px 48px 0 48px; }
  .review{ padding:24px 12px 32px 12px; }
  .review + .review{ border-top:1px solid #EFEFEF; }
  .rev-title{
    font-size:44px; font-weight:800; letter-spacing:.5px; text-transform:uppercase;
    margin:8px 0 16px 0;
  }
  .rev-text{
    font-size:36px; line-height:1.4; color:#6f6f6f;
  }
  .recommend{
    margin-top:24px; display:flex; align-items:center; gap:16px; font-weight:800;
    color:#111; font-size:34px;
  }
  .check{
    width:44px; height:44px; background:#4CAF50; border-radius:50%;
    display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700;
    font-size:28px;
  }
  .meta{
    margin-top:22px; display:flex; align-items:center; gap:14px; color:#111;
    font-size:34px; letter-spacing:.2px;
  }
  .dot-sep{
    width:8px; height:8px; background:#999; border-radius:50%;
  }

  /* Row with stars and date */
  .row{
    display:flex; align-items:center; justify-content:space-between; margin-top:8px;
  }
  .date{
    color:#5a5a5a; font-size:34px;
  }

  /* Bottom gesture bar */
  .home-indicator{
    position:absolute; bottom:22px; left:50%; transform:translateX(-50%);
    width:360px; height:10px; background:#111; border-radius:8px; opacity:.85;
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>5:15</div>
    <div class="sb-icons">
      <div class="square"></div>
      <div class="dot"></div>
      <div class="dot"></div>
      <div class="tiny"></div>
    </div>
  </div>

  <!-- Close button -->
  <div class="close-btn">×</div>

  <!-- Header with overall stars -->
  <div class="header">
    <div class="title">57 REVIEWS</div>
    <div class="stars">
      <div class="star">
        <svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg>
      </div>
      <div class="star">
        <svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg>
      </div>
      <div class="star">
        <svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg>
      </div>
      <div class="star">
        <svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg>
      </div>
      <div class="star">
        <svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg>
      </div>
    </div>
  </div>

  <div class="divider" style="margin:18px 0 0;"></div>

  <!-- Reviews content -->
  <div class="content">

    <!-- Review 1 -->
    <div class="review">
      <div class="rev-title">More comfortable than meets the eye.</div>
      <div class="rev-text">
        I'm very happy with my purchase. I've had ankle surgery, and these are so comfortable.
        Wish they had more colors!
      </div>
      <div class="recommend">
        <div class="check"></div>
        RECOMMENDS THIS PRODUCT
      </div>
      <div class="meta">
        <strong>SHOPPINGGURU</strong>
        <div class="dot-sep"></div>
        <span>VERIFIED PURCHASER</span>
      </div>
    </div>

    <!-- Review 2 -->
    <div class="review">
      <div class="row">
        <div class="stars">
          <div class="star small">
            <svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg>
          </div>
          <div class="star small"><svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg></div>
          <div class="star small"><svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg></div>
          <div class="star small"><svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg></div>
          <div class="star small"><svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg></div>
        </div>
        <div class="date">SEP 20, 2023</div>
      </div>

      <div class="rev-title">So comfy and cute</div>
      <div class="rev-text">
        Definitely recommend! They are comfortable and affordable
      </div>
      <div class="recommend">
        <div class="check"></div>
        RECOMMENDS THIS PRODUCT
      </div>
      <div class="meta">
        <strong>TTELLEZ</strong>
        <div class="dot-sep"></div>
        <span>VERIFIED PURCHASER</span>
      </div>
    </div>

    <!-- Review 3 -->
    <div class="review">
      <div class="row">
        <div class="stars">
          <div class="star small"><svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg></div>
          <div class="star small"><svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg></div>
          <div class="star small"><svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg></div>
          <div class="star small"><svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg></div>
          <div class="star small"><svg viewBox="0 0 24 24" fill="#111"><path d="M12 2l3.1 6.3 6.9 1-5 4.8 1.2 6.9L12 18l-6.2 3.3 1.2-6.9-5-4.8 6.9-1L12 2z"/></svg></div>
        </div>
        <div class="date">SEP 20, 2023</div>
      </div>

      <div class="rev-title">Awesome</div>
      <div class="rev-text">
        I love the design, the color, the comfort when you walk is amazing
      </div>
      <div class="recommend">
        <div class="check"></div>
        RECOMMENDS THIS PRODUCT
      </div>
      <div class="meta">
        <strong>ANALAURA</strong>
        <div class="dot-sep"></div>
        <span>VERIFIED PURCHASER</span>
      </div>
    </div>

  </div>

  <div class="home-indicator"></div>
</div>
</body>
</html>