第一次打包失败

This commit is contained in:
2026-07-02 18:01:56 +08:00
parent 3544208baa
commit 879d2e350a
75 changed files with 7499 additions and 2267 deletions

View File

@@ -850,4 +850,91 @@
color: #999;
margin-bottom: 20rpx;
text-align: center;
}
/* ===== 加载动画 ===== */
.loading-area {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60rpx 0;
gap: 16rpx;
}
.loading-spinner {
width: 56rpx;
height: 56rpx;
border: 4rpx solid #e8e8e8;
border-top-color: #3b86ff;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.loading-text {
font-size: 24rpx;
color: #999;
}
/* ===== 数据库标签 ===== */
.db-tag {
display: inline-block;
font-size: 20rpx;
font-weight: 500;
padding: 2rpx 12rpx;
border-radius: 8rpx;
margin-left: 10rpx;
vertical-align: middle;
}
.db-tag.tag-personal {
color: #3b86ff;
background: rgba(59, 134, 255, 0.08);
border: 1rpx solid rgba(59, 134, 255, 0.2);
}
.db-tag.tag-team {
color: #67c23a;
background: rgba(103, 194, 58, 0.08);
border: 1rpx solid rgba(103, 194, 58, 0.2);
}
/* ===== 上传数据库弹窗 ===== */
.upload-db-hint {
font-size: 22rpx;
color: #999;
margin-bottom: 20rpx;
text-align: center;
}
.upload-file-area {
padding: 40rpx;
border: 2rpx dashed #d0d0d0;
border-radius: 16rpx;
background: #f9fafb;
text-align: center;
margin-bottom: 20rpx;
}
.upload-file-area:active {
border-color: #3b86ff;
background: rgba(59, 134, 255, 0.03);
}
.selected-file {
font-size: 26rpx;
color: #3b86ff;
font-weight: 500;
word-break: break-all;
}
.upload-hint {
font-size: 24rpx;
color: #bbb;
}