[<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, viewport-fit=cover">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<title>星云手机系统 XinGYun OS</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
user-select: none;
}
html, body {
width: 100vw;
height: 100vh;
overflow: hidden;
font-family: "微软雅黑", sans-serif;
background: #000;
}
.os-root {
width: 100vw;
height: 100vh;
position: relative;
overflow: hidden;
}
.status-bar {
height: 32px;
background: rgba(20,24,32,0.75);
backdrop-filter: blur(8px);
color: #fff;
font-size: 12px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 16px;
z-index: 10;
position: relative;
}
.desktop-scroll {
width: 100%;
height: calc(100% - 32px - 60px);
overflow-x: auto;
overflow-y: hidden;
scroll-behavior: smooth;
}
.desktop-scroll::-webkit-scrollbar {
display: none;
}
.desktop-pages {
display: flex;
height: 100%;
}
.page {
min-width: 100vw;
height: 100%;
background: linear-gradient(160deg,
#2c313f, #1a1e29);
padding: 20px;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}
.app-icon {
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
transition: transform 0.2s ease;
}
.app-icon:active {
transform: scale(0.92);
}
.app-icon .icon {
width: 56px;
height: 56px;
border-radius: 14px;
display: grid;
place-items: center;
font-size: 24px;
margin-bottom: 4px;
}
.app-icon .name {
font-size: 11px;
color: #cbd5e1;
}
.bottom-bar {
height: 60px;
background: rgba(30,34,42,0.8);
backdrop-filter: blur(10px);
display: flex;
justify-content: space-a