这版是公共号授权版

This commit is contained in:
cao123
2026-08-12 11:47:51 +08:00
parent d0776f9676
commit e47df01af9
18 changed files with 365 additions and 378 deletions
+25
View File
@@ -5,6 +5,31 @@ page {
height: 100%;
}
/* loading 遮罩:未登录时显示,防止页面内容一闪 */
.fullscreen-loading {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #f9f9f9;
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}
.fullscreen-loading .loading-spinner {
width: 48rpx;
height: 48rpx;
border: 4rpx solid #e0e0e0;
border-top-color: #07c160;
border-radius: 50%;
animation: fullscreen-spin 0.8s linear infinite;
}
@keyframes fullscreen-spin {
to { transform: rotate(360deg); }
}
.scrollarea {
height: 90vh;
display: flex;