49 lines
690 B
Plaintext
49 lines
690 B
Plaintext
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
padding: 40rpx;
|
|
}
|
|
|
|
.title {
|
|
font-size: 36rpx;
|
|
font-weight: bold;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.desc {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
margin-bottom: 60rpx;
|
|
}
|
|
|
|
.result {
|
|
background: #f0f9ff;
|
|
border: 2rpx solid #0ea5e9;
|
|
border-radius: 16rpx;
|
|
padding: 40rpx 80rpx;
|
|
margin-bottom: 40rpx;
|
|
}
|
|
|
|
.value {
|
|
font-size: 48rpx;
|
|
font-weight: bold;
|
|
color: #0369a1;
|
|
}
|
|
|
|
.error {
|
|
color: #dc2626;
|
|
font-size: 28rpx;
|
|
margin-bottom: 40rpx;
|
|
}
|
|
|
|
.retry {
|
|
padding: 20rpx 40rpx;
|
|
background: #0ea5e9;
|
|
color: #fff;
|
|
border-radius: 8rpx;
|
|
font-size: 28rpx;
|
|
}
|