feat: 修复wiki样式问题

This commit is contained in:
Blizzard
2026-02-05 10:45:45 +08:00
parent 6ceda92e9d
commit d42471e1d5
17 changed files with 1076 additions and 91 deletions
+47
View File
@@ -714,3 +714,50 @@ page {
box-shadow: 0 0 0 6rpx rgba(85, 139, 47, 0.1);
}
/* Record Image Upload */
.record-image-upload {
display: flex;
flex-wrap: wrap;
gap: 20rpx;
margin-top: 8rpx;
}
.upload-add-btn {
width: 160rpx;
height: 160rpx;
background: #FAFAFA;
border: 2rpx dashed #d9d9d9;
border-radius: 20rpx;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s;
}
.upload-add-btn:active {
background: #F0F0F0;
border-color: #558B2F;
}
.uploaded-image-box {
position: relative;
width: 160rpx;
height: 160rpx;
}
.remove-img-btn {
position: absolute;
top: -12rpx;
right: -12rpx;
width: 36rpx;
height: 36rpx;
background: rgba(0, 0, 0, 0.5);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
backdrop-filter: blur(4rpx);
}