Files
2026-08-12 11:47:51 +08:00

62 lines
1007 B
Plaintext

/* pages/webview-auth/index.wxss */
.container {
width: 100%;
height: 100vh;
overflow: hidden;
position: relative;
}
.loading {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: #fff;
z-index: 10;
}
.loading-spinner {
width: 40rpx;
height: 40rpx;
border: 4rpx solid #e5e5e5;
border-top-color: #07c160;
border-radius: 50%;
animation: spin 0.8s linear infinite;
}
.loading-text {
margin-top: 20rpx;
font-size: 28rpx;
color: #999;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
.cancel-btn {
position: fixed;
bottom: 40rpx;
left: 50%;
transform: translateX(-50%);
width: 300rpx;
height: 72rpx;
line-height: 72rpx;
text-align: center;
background: #e64340;
color: #fff;
font-size: 28rpx;
border-radius: 36rpx;
z-index: 999;
box-shadow: 0 4rpx 12rpx rgba(230, 67, 64, 0.3);
}
.cancel-btn:active {
opacity: 0.8;
}