feat: 图形页开发

This commit is contained in:
2025-07-25 17:16:33 +08:00
parent 2e0bae3a64
commit 5ce211ee5a
14 changed files with 282 additions and 8 deletions
+13 -1
View File
@@ -12,7 +12,7 @@ page {
}
.wrapper {
background-color: #ffffff;
background-color: #fff;
border-radius: 20rpx;
padding: 24rpx;
box-shadow: 0 3rpx 4rpx rgba(0, 0, 0, 0.15);
@@ -34,4 +34,16 @@ page {
flex-direction: row;
justify-content: space-between;
}
.shape-list {
display: flex;
flex-wrap: wrap;
gap: 24rpx; // 卡片间距,可调整
shape-card {
width: calc(50% - 12rpx); // 两个一行,减去一半的gap
box-sizing: border-box;
margin-bottom: 24rpx;
}
}
}