File size: 9,607 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
<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; color:#111; }
  #render-target{
    width:1080px; height:2400px; position:relative; overflow:hidden;
    background:#ffffff;
  }

  /* Status bar */
  .status-bar{
    height:110px; padding:0 40px; display:flex; align-items:center; justify-content:space-between;
    color:#232323; font-weight:700; font-size:42px;
  }
  .status-icons{ display:flex; align-items:center; gap:26px; }
  .icon-dot{ width:16px; height:16px; background:#555; border-radius:50%; display:inline-block; }
  .icon-rect{ width:28px; height:22px; background:#777; border-radius:4px; display:inline-block; }
  .icon-signal{ width:34px; height:24px; border:3px solid #777; border-radius:5px; position:relative; }
  .icon-signal:after{ content:""; position:absolute; right:-10px; top:-6px; width:6px; height:6px; background:#777; border-radius:50%; }

  /* Header area */
  .close-btn{
    position:absolute; right:40px; top:120px; width:70px; height:70px; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
  }
  .title-area{ padding:10px 60px 0 60px; text-align:center; }
  .title-area h1{ margin:8px 0 16px 0; font-size:46px; letter-spacing:1px; }
  .big-stars{ display:flex; justify-content:center; gap:30px; margin:8px 0 24px 0; }
  .star{ width:86px; height:86px; fill:#121212; }

  /* Recommendation strip */
  .recommend-strip{
    display:flex; align-items:center; gap:18px; padding:24px 60px; border-top:1px solid #e6e6e6; border-bottom:1px solid #e6e6e6;
    font-weight:700; color:#1c1c1c; font-size:34px;
  }
  .check{ width:38px; height:38px; }

  /* Reviews */
  .content{ padding:10px 60px 120px; }
  .review{ padding:28px 0 46px 0; border-bottom:1px solid #efefef; }
  .review .user-row{ font-size:32px; color:#111; display:flex; align-items:center; gap:14px; font-weight:700; }
  .dot{ width:10px; height:10px; background:#888; border-radius:50%; display:inline-block; }
  .verified{ font-weight:600; color:#5a5a5a; }
  .stars-date{ display:flex; align-items:center; justify-content:space-between; margin:22px 0 12px 0; }
  .stars{ display:flex; gap:26px; }
  .star.small{ width:66px; height:66px; }
  .date{ color:#4f4f4f; font-size:32px; }
  .review h3{ margin:10px 0; font-size:42px; letter-spacing:0.5px; }
  .review p{ margin:10px 0; font-size:34px; line-height:1.5; color:#3a3a3a; }
  .recommend-inline{
    display:flex; align-items:center; gap:18px; margin:20px 0 10px 0; font-size:34px; font-weight:700; color:#1b1b1b;
  }
  .name-row{ display:flex; align-items:center; gap:14px; color:#222; font-weight:700; font-size:32px; margin-top:6px; }

  /* Bottom fading hint */
  .fade-bottom{
    position:absolute; left:0; bottom:0; width:100%; height:120px;
    background:linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1) 60%);
  }
</style>
</head>
<body>
<div id="render-target">

  <!-- Status bar -->
  <div class="status-bar">
    <div>5:15</div>
    <div class="status-icons">
      <span class="icon-rect"></span>
      <span class="icon-rect" style="border-radius:50%; width:28px; height:28px;"></span>
      <span class="icon-rect" style="width:28px; height:28px;"></span>
      <span class="icon-dot"></span>
      <div class="icon-signal"></div>
    </div>
  </div>

  <!-- Close button -->
  <div class="close-btn" aria-label="Close">
    <svg width="44" height="44" viewBox="0 0 24 24" fill="none" stroke="#111" stroke-width="3" stroke-linecap="round">
      <line x1="4" y1="4" x2="20" y2="20"></line>
      <line x1="20" y1="4" x2="4" y2="20"></line>
    </svg>
  </div>

  <!-- Title and big stars -->
  <div class="title-area">
    <h1>57 REVIEWS</h1>
    <div class="big-stars">
      <svg class="star" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
      <svg class="star" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
      <svg class="star" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
      <svg class="star" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
      <svg class="star" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
    </div>
  </div>

  <!-- Recommends strip -->
  <div class="recommend-strip">
    <svg class="check" viewBox="0 0 24 24" fill="#2ecc71"><path d="M12 2a10 10 0 100 20 10 10 0 000-20zm-1.1 14.2l-4.1-4.1 1.6-1.6 2.5 2.5 5.2-5.2 1.6 1.6-6.8 6.8z"/></svg>
    <span>RECOMMENDS THIS PRODUCT</span>
  </div>

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

    <!-- Review 1 -->
    <div class="review">
      <div class="user-row">
        <span>G00000000DZ</span>
        <span class="dot"></span>
        <span class="verified">VERIFIED PURCHASER</span>
      </div>

      <div class="stars-date">
        <div class="stars">
          <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
          <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
          <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
          <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
          <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
        </div>
        <div class="date">AUG 30, 2023</div>
      </div>

      <h3>THIS ONE DEFINITELY STOLE MY HEART</h3>
      <p>Omg I’m in love with my shoes. I was concern if i should get size 8.5 witches my normal size or 9. With adidas I usually get size 9 but reading the reviews make me decide to stay with size 8.5. Thank God I did. Fit perfectly, so comfortable, and look amazing. Adidas is the most comfortable shoes I ever tried. I have multiple different shoes from different brand and adidas always the most comfortable shoes.</p>

      <div class="recommend-inline">
        <svg class="check" viewBox="0 0 24 24" fill="#2ecc71"><path d="M12 2a10 10 0 100 20 10 10 0 000-20zm-1.1 14.2l-4.1-4.1 1.6-1.6 2.5 2.5 5.2-5.2 1.6 1.6-6.8 6.8z"/></svg>
        <span>RECOMMENDS THIS PRODUCT</span>
      </div>

      <div class="name-row">
        <span>CLAUDIA.N</span>
        <span class="dot"></span>
        <span class="verified">VERIFIED PURCHASER</span>
      </div>
    </div>

    <!-- Review 2 -->
    <div class="review">
      <div class="stars-date">
        <div class="stars">
          <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
          <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
          <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
          <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
          <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
        </div>
        <div class="date">AUG 29, 2023</div>
      </div>

      <h3>BEST RUNNING SHOES EVER!</h3>
      <p>I finally found the best pair of running shoes!!! I love the pink and they are so supportive in every step so happy!</p>

      <div class="recommend-inline">
        <svg class="check" viewBox="0 0 24 24" fill="#2ecc71"><path d="M12 2a10 10 0 100 20 10 10 0 000-20zm-1.1 14.2l-4.1-4.1 1.6-1.6 2.5 2.5 5.2-5.2 1.6 1.6-6.8 6.8z"/></svg>
        <span>RECOMMENDS THIS PRODUCT</span>
      </div>

      <div class="name-row">
        <span>KRAY</span>
        <span class="dot"></span>
        <span class="verified">VERIFIED PURCHASER</span>
      </div>
    </div>

    <!-- Start of next review hint -->
    <div class="stars" style="margin-top:34px;">
      <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
      <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
      <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
      <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
      <svg class="star small" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.62L12 2 9.19 8.62 2 9.24l5.46 4.73L5.82 21z"/></svg>
    </div>

  </div>

  <div class="fade-bottom"></div>
</div>
</body>
</html>