This commit is contained in:
2025-09-28 17:07:09 +08:00
commit 888f8d9939
38 changed files with 1544 additions and 0 deletions

34
pages/index/index.wxss Normal file
View File

@@ -0,0 +1,34 @@
.starry-canvas {
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background-color: #0a0a1a; /* 深蓝色夜空 */
z-index: 0;
}
.content {
position: relative;
z-index: 1;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: #ffffff;
padding: 20rpx;
}
.title {
font-size: 60rpx;
font-weight: bold;
margin-bottom: 20rpx;
text-shadow: 0 0 10rpx rgba(255, 255, 255, 0.5);
}
.subtitle {
font-size: 32rpx;
opacity: 0.9;
}