Files
JoyD/Claw/client/wechat_app/components/auth-prompt/auth-prompt.wxss
2026-04-21 13:46:20 +08:00

106 lines
1.6 KiB
Plaintext

.auth-prompt {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 9999;
display: flex;
align-items: center;
justify-content: center;
}
.auth-prompt-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
}
.auth-prompt-content {
position: relative;
width: 80%;
max-width: 400rpx;
background-color: #fff;
border-radius: 16rpx;
padding: 40rpx;
box-shadow: 0 4rpx 12rpx rgba(0, 0, 0, 0.15);
display: flex;
flex-direction: column;
align-items: center;
}
.auth-prompt-icon {
width: 120rpx;
height: 120rpx;
margin-bottom: 32rpx;
display: flex;
align-items: center;
justify-content: center;
}
.auth-prompt-icon image {
width: 100%;
height: 100%;
border-radius: 50%;
}
.auth-prompt-title {
font-size: 32rpx;
font-weight: 600;
color: #333;
margin-bottom: 16rpx;
}
.auth-prompt-desc {
font-size: 24rpx;
color: #666;
text-align: center;
line-height: 36rpx;
margin-bottom: 40rpx;
}
.auth-prompt-buttons {
width: 100%;
display: flex;
margin-bottom: 24rpx;
}
.auth-prompt-cancel {
flex: 1;
height: 80rpx;
line-height: 80rpx;
font-size: 28rpx;
color: #666;
background-color: #f5f5f5;
border-radius: 8rpx 0 0 8rpx;
border: none;
}
.auth-prompt-confirm {
flex: 1;
height: 80rpx;
line-height: 80rpx;
font-size: 28rpx;
color: #fff;
background-color: #07c160;
border-radius: 0 8rpx 8rpx 0;
border: none;
}
.auth-prompt-tip {
font-size: 20rpx;
color: #999;
text-align: center;
}
.auth-prompt-settings {
color: #07c160;
margin: 0 4rpx;
}
.auth-prompt-settings:active {
text-decoration: underline;
}