42 lines
714 B
Plaintext
42 lines
714 B
Plaintext
.records-container {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
background: #f5f7fb;
|
|
}
|
|
|
|
.loading-center, .error-center {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #64748b;
|
|
}
|
|
|
|
.loading-spinner {
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
border: 4rpx solid rgba(59, 130, 246, 0.2);
|
|
border-top-color: #3b82f6;
|
|
border-radius: 50%;
|
|
animation: spin 0.8s linear infinite;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
@keyframes spin {
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
.loading-text, .error-text {
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.retry-btn {
|
|
margin-top: 24rpx;
|
|
padding: 16rpx 48rpx;
|
|
background: #3b82f6;
|
|
color: #fff;
|
|
border-radius: 40rpx;
|
|
font-size: 28rpx;
|
|
}
|