feat: 添加最新预约加载骨架屏状态

This commit is contained in:
ws
2026-04-24 18:00:24 +08:00
parent c46ffcf567
commit bc665a5d82
4 changed files with 40 additions and 3 deletions
+21
View File
@@ -285,3 +285,24 @@ page {
color: #b8c9db;
letter-spacing: 4rpx;
}
/* 骨架屏 */
.skeleton-row {
display: flex;
justify-content: flex-start;
align-items: center;
padding: 8rpx 0;
}
.skeleton-bar {
height: 24rpx;
border-radius: 8rpx;
background: linear-gradient(90deg, #e8eef5 25%, #dbeafe 50%, #e8eef5 75%);
background-size: 200% 100%;
animation: skeleton-pulse 1.5s ease-in-out infinite;
}
@keyframes skeleton-pulse {
0% { background-position: 200% 0; }
100% { background-position: -200% 0; }
}