feat: 任务和社区页面

This commit is contained in:
Blizzard
2026-02-06 17:27:35 +08:00
parent d42471e1d5
commit b800ea03b5
30 changed files with 1777 additions and 551 deletions
+58
View File
@@ -376,6 +376,35 @@ page {
color: #1B5E20;
}
.aic-extra-info {
margin-top: 40rpx;
padding-top: 32rpx;
border-top: 1rpx solid rgba(0, 0, 0, 0.05);
display: flex;
flex-direction: column;
gap: 16rpx;
text-align: left;
}
.aic-info-row {
display: flex;
align-items: flex-start;
font-size: 26rpx;
line-height: 1.5;
}
.aic-info-row .label {
color: #558B2F;
font-weight: 600;
width: 140rpx;
flex-shrink: 0;
}
.aic-info-row .value {
color: #455A64;
flex: 1;
}
/* Section Header */
.section-header {
display: flex;
@@ -761,3 +790,32 @@ page {
}
/* Empty State */
.plant-empty-state {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 64rpx 0;
gap: 32rpx;
background: white;
border-radius: 32rpx;
box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.04);
}
.plant-empty-img {
width: 200rpx;
height: 200rpx;
opacity: 0.8;
}
.plant-empty-text {
display: flex;
flex-direction: column;
align-items: center;
gap: 12rpx;
font-size: 28rpx;
font-weight: 500;
color: #90A4AE;
}