update at 2026-02-08 18:28:39

This commit is contained in:
douboer
2026-02-08 18:28:39 +08:00
parent e2a46e413a
commit 0f5a7f0d85
97 changed files with 22029 additions and 59 deletions

58
miniprogram/app.wxss Normal file
View File

@@ -0,0 +1,58 @@
page {
background: #fff;
color: #1f2a37;
font-size: 28rpx;
height: 100vh;
overflow: hidden;
}
.container {
box-sizing: border-box;
width: 100%;
height: 100vh;
display: flex;
flex-direction: column;
padding: 16rpx 16rpx 40rpx 16rpx;
}
.card {
background: #ffffff;
border-radius: 20rpx;
box-shadow: 0 10rpx 30rpx rgba(15, 23, 42, 0.06);
padding: 24rpx;
margin-bottom: 20rpx;
}
.section-title {
font-size: 30rpx;
font-weight: 600;
margin-bottom: 16rpx;
}
.row {
display: flex;
flex-direction: row;
align-items: center;
}
.space-between {
justify-content: space-between;
}
.btn-primary {
background: #1677ff;
color: #ffffff;
border: none;
border-radius: 16rpx;
}
.btn-secondary {
background: #edf2ff;
color: #1f2a37;
border: none;
border-radius: 16rpx;
}
.mono {
font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
}