82 lines
1.6 KiB
Plaintext
82 lines
1.6 KiB
Plaintext
/* components/dialog/dialog.wxss */
|
|
.wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
}
|
|
.dialogbox{
|
|
box-sizing: border-box;
|
|
padding:48rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 630rpx;
|
|
border-radius: 16rpx;
|
|
background-color: #fff;
|
|
}
|
|
.title{
|
|
height: 54rpx;
|
|
font-size: 36rpx;
|
|
font-weight: 500;
|
|
color: rgba(0,0,0,0.85);
|
|
line-height: 54rpx
|
|
}
|
|
.content{
|
|
padding:32rpx 0 48rpx;
|
|
font-size: 32rpx;
|
|
font-weight: 400;
|
|
text-align: center;
|
|
color: rgba(0,0,0,0.65);
|
|
line-height: 48rpx;
|
|
width:100%;
|
|
}
|
|
.msg{
|
|
word-break: break-all;
|
|
word-wrap: break-word;
|
|
}
|
|
.footer{
|
|
width:100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.cancelBtn{
|
|
flex:1;
|
|
margin-right: 24rpx;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
height: 88rpx;
|
|
background: #FFFFFF;
|
|
border-radius: 50rpx;
|
|
border: 2rpx solid rgba(0,0,0,0.15);
|
|
font-size: 32rpx;
|
|
font-weight: 500;
|
|
color: rgba(0,0,0,0.85);
|
|
}
|
|
.okBtn{
|
|
color:#fff;
|
|
flex:1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
height: 88rpx;
|
|
font-size: 32rpx;
|
|
font-weight: 500;
|
|
color: #FFFFFF;
|
|
background: linear-gradient(90deg, #377FF7 0%, #51AAFF 100%);
|
|
border-radius: 50rpx;
|
|
}
|
|
.tip{
|
|
font-size: 32rpx;
|
|
font-weight: 400;
|
|
color: #FF9C00;
|
|
}
|
|
.msgheight{
|
|
max-height:640rpx;
|
|
overflow-y: scroll;
|
|
-webkit-overflow-scrolling: touch;
|
|
} |