File size: 6,269 Bytes
79228d9 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=1080, initial-scale=1.0">
<title>UI Mock</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;
}
/* Top system bar */
.status-bar {
position: absolute; top: 0; left: 0; right: 0;
height: 70px; background: #000;
}
/* Header */
.header {
position: absolute; top: 70px; left: 0; right: 0;
height: 170px; background: #ffffff;
border-bottom: 1px solid #e5e5e5;
}
.header .title {
position: absolute; top: 20px; left: 0; right: 0;
text-align: center; font-weight: 700; font-size: 48px; color: #222;
}
.header .cancel, .header .select-all {
position: absolute; top: 22px; font-size: 40px; color: #6A5AE0;
}
.header .cancel { left: 30px; }
.header .select-all { right: 30px; }
.tabs {
position: absolute; bottom: 12px; left: 30px; right: 30px; height: 70px;
display: flex; align-items: flex-end; gap: 40px;
}
.tab {
font-size: 36px; color: #666; padding-bottom: 12px;
}
.tab.active { color: #3F51B5; border-bottom: 4px solid #3F51B5; }
.sort-row {
position: absolute; top: 240px; left: 30px; right: 30px;
height: 70px; color: #777; display: flex; align-items: center; gap: 16px;
font-size: 34px;
}
.sort-icon {
width: 36px; height: 36px;
}
/* TeraBox banner */
.terabox-banner {
position: absolute; top: 280px; left: 40px; width: 1000px; height: 160px;
background: #ffffff; border-radius: 24px; box-shadow: 0 8px 18px rgba(0,0,0,0.12);
display: flex; align-items: center; padding: 20px 28px; gap: 24px;
border: 1px solid #e6e6e6;
}
.img-placeholder {
background: #E0E0E0; border: 1px solid #BDBDBD; color: #757575;
display: flex; justify-content: center; align-items: center;
font-size: 28px; text-align: center;
}
.terabox-icon { width: 96px; height: 96px; border-radius: 20px; }
.banner-texts { flex: 1; }
.banner-title { font-size: 34px; color: #333; }
.banner-sub { font-size: 40px; font-weight: 700; color: #111; margin-top: 8px; }
.chevron {
width: 40px; height: 40px;
}
/* Advertisement section */
.ad-label {
position: absolute; top: 460px; left: 0; right: 0;
text-align: center; color: #666; font-size: 36px;
}
.ad-card {
position: absolute; top: 520px; left: 30px; width: 1020px; height: 1640px;
background: #ffffff; border-radius: 36px; box-shadow: 0 10px 20px rgba(0,0,0,0.08);
border: 1px solid #eaeaea;
}
.ad-banner {
position: absolute; top: 22px; left: 22px; right: 22px; height: 420px;
}
.center-area {
position: absolute; top: 500px; left: 0; right: 0;
display: flex; flex-direction: column; align-items: center;
}
.app-icon {
width: 220px; height: 220px; border-radius: 44px;
}
.app-name {
margin-top: 60px; font-size: 110px; font-weight: 700; color: #111;
}
.rating-row {
margin-top: 40px; display: flex; align-items: center; gap: 26px;
color: #8E8E93; font-size: 52px;
}
.star {
width: 44px; height: 44px;
}
.installed-row {
margin-top: 36px; display: flex; align-items: center; gap: 18px;
color: #2E7D32; font-size: 46px; font-weight: 600;
}
.check {
width: 52px; height: 52px;
}
.open-btn {
margin-top: 90px; width: 900px; height: 120px; border-radius: 60px;
background: #2E7D32; color: #fff; font-size: 52px; font-weight: 700;
display: flex; justify-content: center; align-items: center;
box-shadow: 0 8px 16px rgba(46,125,50,0.35);
}
/* Bottom area */
.info-icon-wrap {
position: absolute; bottom: 130px; left: 38px;
}
.info-icon { width: 44px; height: 44px; }
.gesture-bar {
position: absolute; bottom: 46px; left: 50%; transform: translateX(-50%);
width: 320px; height: 12px; background: #000; border-radius: 24px;
}
</style>
</head>
<body>
<div id="render-target">
<div class="status-bar"></div>
<div class="header">
<div class="title">1 file(s) selected</div>
<div class="cancel">Cancel</div>
<div class="select-all">Select All</div>
<div class="tabs">
<div class="tab active">All</div>
<div class="tab">Offline</div>
</div>
</div>
<div class="sort-row">
<svg class="sort-icon" viewBox="0 0 24 24">
<path d="M3 6h14v2H3V6zm0 5h10v2H3v-2zm0 5h6v2H3v-2z" fill="#777"/>
</svg>
<span>Sort by time</span>
</div>
<!-- TeraBox banner -->
<div class="terabox-banner">
<div class="img-placeholder terabox-icon">[IMG: TeraBox Icon]</div>
<div class="banner-texts">
<div class="banner-title">Continue to app</div>
<div class="banner-sub">TeraBox</div>
</div>
<svg class="chevron" viewBox="0 0 24 24">
<path d="M9 6l6 6-6 6" stroke="#5E6EFF" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>
<!-- Advertisement -->
<div class="ad-label">Advertisement</div>
<div class="ad-card">
<div class="img-placeholder ad-banner">[IMG: Booking.com promotional banner]</div>
<div class="center-area">
<div class="img-placeholder app-icon">[IMG: Booking app icon]</div>
<div class="app-name">Booking.com</div>
<div class="rating-row">
<span style="color:#333;">4.7</span>
<svg class="star" viewBox="0 0 24 24">
<path d="M12 2l3 6 6 .9-4.5 4.2 1.2 6-5.7-3.2-5.7 3.2 1.2-6L3 8.9 9 8l3-6z" fill="#FFB300"/>
</svg>
<span>FREE</span>
</div>
<div class="installed-row">
<svg class="check" viewBox="0 0 24 24">
<path d="M9 16.2l-3.5-3.5-1.4 1.4L9 19 20 8l-1.4-1.4z" fill="#2E7D32"/>
</svg>
<span>Installed</span>
</div>
<div class="open-btn">Open</div>
</div>
</div>
<div class="info-icon-wrap">
<svg class="info-icon" viewBox="0 0 24 24">
<circle cx="12" cy="12" r="10" fill="#7F8C8D"/>
<rect x="11" y="10" width="2" height="7" fill="#fff"/>
<circle cx="12" cy="7" r="1.5" fill="#fff"/>
</svg>
</div>
<div class="gesture-bar"></div>
</div>
</body>
</html> |