44 lines
794 B
Plaintext
44 lines
794 B
Plaintext
.custom-modal-view{
|
|
border-radius: 20px;
|
|
}
|
|
.custom-modal-view .title{
|
|
font-size: 34rpx;
|
|
font-weight: 500;
|
|
line-height: 50rpx;
|
|
padding:0 20rpx;
|
|
}
|
|
.custom-modal-view .title.center{
|
|
text-align: center;
|
|
}
|
|
.modal-view-main{
|
|
border-radius: 24rpx;
|
|
background-color: #fff;
|
|
padding:32rpx;
|
|
}
|
|
.custom-modal-view .textarea{
|
|
border: 1.2px solid rgba(85, 85, 85, 0.3);
|
|
border-radius: 18px;
|
|
margin:30rpx 0;
|
|
padding:24rpx 20rpx;
|
|
font-size: 34rpx;
|
|
width:100%;
|
|
box-sizing: border-box;
|
|
line-height:50rpx;
|
|
height: 248rpx;
|
|
}
|
|
.custom-modal-view .textarea.error{
|
|
border-color:red;
|
|
}
|
|
|
|
.modal-view-main .btns{
|
|
margin-top:32rpx;
|
|
display: flex;
|
|
gap: 18rpx;
|
|
}
|
|
.modal-view-main .btns .button{
|
|
flex:1;
|
|
font-size: 32rpx;
|
|
padding:32rpx;
|
|
line-height: 1;
|
|
font-weight: 500;
|
|
} |