@import url(\'https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap\');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: \'Inter\', -apple-system, BlinkMacSystemFont, sans-serif;
}
body {
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
padding: 2rem;
color: #333;
}
.phone-frame {
width: 360px;
height: 700px;
background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
border-radius: 42px;
padding: 12px;
position: relative;
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6),
0 0 0 1px rgba(255, 255, 255, 0.05) inset,
0 8px 32px rgba(0, 0, 0, 0.4);
overflow: hidden;
}
.screen {
width: 100%;
height: 100%;
background: white;
border-radius: 36px;
overflow: hidden;
position: relative;
transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.status-bar {
height: 44px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
font-size: 14px;
font-weight: 600;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.home-indicator {
width: 120px;
height: 5px;
background: #000;
border-radius: 3px;
position: absolute;
bottom: 12px;
left: 50%;
transform: translateX(-50%);
transition: all 0.3s ease;
}
.home-indicator:hover {
height: 7px;
background: #333;
}
.app-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
padding: 24px;
margin-top: 10px;
}
.app-icon {
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
position: relative;
}
.app-icon:hover {
transform: translateY(-5px);
}
.app-icon .icon {
width: 64px;
height: 64px;
border-radius: 16px;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 8px;
font-size: 24px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.app-icon:hover .icon {
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.app-name {
font-size: 12px;
font-weight: 500;
color: #000;
}
.nav-bar {
height: 80px;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(20px);
border-top: 1px solid rgba(0, 0, 0, 0.05);
display: flex;
align-items: center;
justify-content: space-around;
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding-bottom: 10px;
}
.nav-item {
display: flex;
flex-direction: column;
align-items: center;
cursor: pointer;
transition: all 0.2s ease;
}
.nav-item:hover {
transform: translateY(-2px);
}
.nav-icon {
font-size: 20px;
margin-bottom: 4px;
}
.nav-label {
font-size: 10px;
font-weight: 500;
}
.tab-active {
color: #000;
}
.tab-inactive {
color: #8e8e93;
}
.app-header {
padding: 16px 20px;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(10px);
position: sticky;
top: 0;
z-index: 10;
}
.back-btn {
cursor: pointer;
transition: all 0.2s ease;
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
}
.back-btn:hover {
background: rgba(0, 0, 0, 0.05);
transform: scale(1.05);
}
.card {
background: white;
border-radius: 16px;
padding: 18px;
margin-bottom: 16px;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.03);
transition: all 0.3s ease;
}
.card:hover {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
transform: translateY(-2px);
}
.chat-bubble {
max-width: 75%;
border-radius: 18px;
padding: 12px 16px;
margin-bottom: 12px;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
position: relative;
animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: translateY(0); }
}
.chat-left {
background: #f1f1f1;
align-self: flex-start;
border-bottom-left-radius: 4px;
}
.chat-right {
background: #000;
color: white;
align-self: flex-end;
border-bottom-right-radius: 4px;
}
.chat-container {
display: flex;
flex-direction: column;
padding: 16px;
height: calc(100% - 140px);
overflow-y: auto;
}
.photo-item {
width: 100%;
height: 110px;
object-fit: cover;
border-radius: 12px;
cursor: pointer;
transition: all 0.3s ease;
}
.photo-item:hover {
transform: scale(1.03);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.photo-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px;
padding: 16px;
}
.memo-item {
display: flex;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
transition: all 0.2s ease;
}
.memo-item:hover {
background: rgba(0, 0, 0, 0.02);
border-radius: 8px;
padding-left: 8px;
padding-right: 8px;
}
.hidden {
display: none;
}
.screen.active {
display: flex;
flex-direction: column;
}
.app-content {
flex: 1;
overflow-y: auto;
}
.contact-item {
display: flex;
align-items: center;
padding: 16px;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
cursor: pointer;
transition: all 0.2s ease;
}
.contact-item:hover {
background: rgba(0, 0, 0, 0.02);
}
.contact-avatar {
width: 48px;
height: 48px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 16px;
font-weight: 600;
font-size: 18px;
}
.call-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.time-display-large {
font-size: 64px;
font-weight: 300;
text-align: center;
margin: 40px 0 20px;
letter-spacing: -2px;
}
.photo-viewer {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.95);
display: flex;
align-items: center;
justify-content: center;
z-index: 100;
opacity: 0;
pointer-events: none;
transition: opacity 0.3s ease;
}
.photo-viewer.active {
opacity: 1;
pointer-events: all;
}
.viewer-content {
max-width: 90%;
max-height: 80%;
position: relative;
}
.viewer-img {
max-width: 100%;
max-height: 100%;
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.close-viewer {
position: absolute;
top: 20px;
right: 20px;
width: 44px;
height: 44px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 20px;
cursor: pointer;
transition: all 0.2s ease;
}
.close-viewer:hover {
background: rgba(255, 255, 255, 0.2);
transform: scale(1.1);
}
.app-title {
font-size: 1.25rem;
font-weight: 700;
}
.product-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
margin-top: 12px;
}
.product-item {
text-align: center;
}
.product-icon {
height: 80px;
background: #f8f8f8;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 8px;
font-size: 24px;
color: #555;
}
.calculator {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
padding: 20px;
}
.calc-btn {
height: 70px;
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
}
.calc-btn:hover {
transform: scale(0.95);
}
.calc-number {
background: #f8f8f8;
}
.calc-operator {
background: #000;
color: white;
}
.calc-display {
height: 120px;
display: flex;
align-items: flex-end;
justify-content: flex-end;
padding: 20px;
font-size: 48px;
font-weight: 300;
overflow: hidden;
}
.page-title {
font-size: 2rem;
font-weight: 700;
margin-bottom: 2rem;
color: white;
text-align: center;
}
李司青的手机
微信
宿
宿谦
15:30
周末来看看我新车试车?
岁
岁拂月
昨天
芒果好甜呀,下次还买这家~
宿
宿谦
周末有空吗?来看看我新车试车
可以
好嘞!周六上午10点,老地方见
嗯
到时候带你体验下加速,超爽的!
哦
岁
岁拂月
今天买的芒果超甜!????
喜欢就多买点
可是吃多了会上火呀~ 对了,你上次说的那本计算机书买到了吗?
买到了,看完给你看
好呀好呀!周末要不要一起去吃草莓蛋糕?
好
淘宝
收藏夹
拂月喜欢的零食
芒果干
草莓冻干
西瓜软糖
计算机相关书籍
Python编程:从入门到实践
¥89.00
数据结构与算法分析
¥108.00
日常用品
樱花香味沐浴露
¥59.90
备忘录
拂月的习惯和爱好
喜欢吃:芒果、草莓、西瓜
讨厌吃:无花果、梨
不喜欢:香菜、肥肉
酒量差,只能喝一点点
衣服习惯两天一换
喜欢晴天,讨厌下雨天
喜欢看治愈系电影
时钟
闹钟
时钟
秒表
当前时间
起床闹钟
每天 7:30
睡觉闹钟
每天 22:00
通讯录
岁拂月
女朋友
通话
消息
视频
通话记录
全部
已接
未接
岁
岁拂月
昨天 19:45
宿
宿谦
3天前 14:20
岁
岁拂月
1周前 21:10
相册
所有照片
// 实时时间更新
function updateTime() {
const now = new Date();
const hours = String(now.getHours()).padStart(2, \'0\');
const minutes = String(now.getMinutes()).padStart(2, \'0\');
document.querySelectorAll(\'.time-display\').forEach(el => el.textContent = `${hours}:${minutes}`);
}
setInterval(updateTime, 1000);
// 应用切换逻辑
let currentApp = \'home\';
function openApp(appName) {
document.querySelectorAll(\'.screen\').forEach(screen => {
screen.classList.remove(\'active\');
screen.classList.add(\'hidden\');
});
document.getElementById(`${appName}-app`).classList.remove(\'hidden\');
document.getElementById(`${appName}-app`).classList.add(\'active\');
currentApp = appName;
updateTime();
}
function backToHome() {
document.querySelectorAll(\'.screen\').forEach(screen => {
screen.classList.remove(\'active\');
screen.classList.add(\'hidden\');
});
document.getElementById(\'home-screen\').classList.remove(\'hidden\');
document.getElementById(\'home-screen\').classList.add(\'active\');
currentApp = \'home\';
}
function openChat(person) {
document.querySelectorAll(\'.screen\').forEach(screen => {
screen.classList.remove(\'active\');
screen.classList.add(\'hidden\');
});
document.getElementById(`chat-${person}`).classList.remove(\'hidden\');
document.getElementById(`chat-${person}`).classList.add(\'active\');
updateTime();
}
function openPhoto(src) {
const photoViewer = document.getElementById(\'photo-viewer\');
document.getElementById(\'viewer-img\').src = src;
photoViewer.classList.add(\'active\');
}
function closePhoto() {
document.getElementById(\'photo-viewer\').classList.remove(\'active\');
}
// 初始化时间
updateTime();











