47 lines
876 B
Plaintext
47 lines
876 B
Plaintext
.custom-modal-view{
|
|
border-radius: 20px;
|
|
}
|
|
.custom-modal-view .title{
|
|
font-size: 34rpx;
|
|
font-weight: 500;
|
|
line-height: 50rpx;
|
|
}
|
|
.custom-modal-view .title.center{
|
|
text-align: center;
|
|
}
|
|
.modal-view-main{
|
|
border-radius: 24rpx;
|
|
background-color: #fff;
|
|
padding:32rpx;
|
|
}
|
|
.modal-view-main .content .text{
|
|
color: #666666;
|
|
font-size: 28rpx;
|
|
text-align: center;
|
|
margin:16rpx 0 40rpx 0;
|
|
}
|
|
.custom-modal-view .textarea{
|
|
|
|
}
|
|
|
|
.modal-view-main .btns{
|
|
margin-top:32rpx;
|
|
display: flex;
|
|
gap: 20rpx;
|
|
}
|
|
.modal-view-main .btns .button{
|
|
flex:1;
|
|
font-size: 32rpx;
|
|
padding:32rpx;
|
|
line-height: 1;
|
|
font-weight: 500;
|
|
border-width: 2rpx;
|
|
}
|
|
.modal-view-main .btns .button.cancel{
|
|
border-color:rgba(153, 153, 153, 0.5);
|
|
background-color: rgba(153, 153, 153, 0.1);
|
|
color:var(--main-font-color);
|
|
}
|
|
.modal-view-main .btns .button.confirm{
|
|
font-weight: bold;
|
|
} |