42 lines
661 B
Plaintext
42 lines
661 B
Plaintext
/* components/my-result/my-result.wxss */
|
|
.my-result {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 20rpx;
|
|
}
|
|
|
|
.icon {
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.title {
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
margin-bottom: 10rpx;
|
|
}
|
|
|
|
.desc {
|
|
font-size: 28rpx;
|
|
color: #cccccc;
|
|
text-align: center;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.action-btn {
|
|
background-color: #07c160;
|
|
color: white;
|
|
padding: 10rpx 20rpx;
|
|
border-radius: 8rpx;
|
|
}
|
|
|
|
.desc-action-btn {
|
|
background-color: #eeeeee;
|
|
color: #000000;
|
|
padding: 10rpx 20rpx;
|
|
border-radius: 8rpx;
|
|
margin-top: 20rpx;
|
|
} |