67 lines
955 B
CSS
67 lines
955 B
CSS
.container {
|
|
margin-top: 100rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.auditStatus {
|
|
width: 100px;
|
|
height: 100px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.title {
|
|
font-size: 40rpx;
|
|
font-weight: bold;
|
|
margin: 10rpx 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.content{
|
|
font-size: 26rpx;
|
|
margin-top: 40rpx;
|
|
text-align: center;
|
|
color: #a9a9a9;
|
|
}
|
|
|
|
.info{
|
|
margin-top: 70rpx;
|
|
width: 500rpx;
|
|
background-color: #f6f6fa;
|
|
padding: 20rpx 30rpx;
|
|
border-radius: 20rpx;
|
|
}
|
|
|
|
.info view{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 15rpx 0;
|
|
}
|
|
|
|
.info_text{
|
|
color: #999999;
|
|
}
|
|
|
|
.info_text2{
|
|
color: #faba5a;
|
|
}
|
|
|
|
.btn{
|
|
margin-top: 50rpx;
|
|
border: none;
|
|
background-color: #ff4218;
|
|
color: #ffffff;
|
|
border-radius: 50rpx;
|
|
}
|
|
|
|
.warning{
|
|
color: #ff4218;
|
|
font-size: 27rpx;
|
|
margin: 50rpx 0;
|
|
}
|
|
|
|
.warning_title{
|
|
font-size: 30rpx;
|
|
font-weight: bold;
|
|
margin-bottom: 20rpx;
|
|
} |