68 lines
1.1 KiB
Plaintext
68 lines
1.1 KiB
Plaintext
/* component/confirmDialog/confirmDialog.wxss */
|
|
|
|
.box {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: rgba(0, 0, 0, 0.6);
|
|
z-index: 1001;
|
|
}
|
|
|
|
.box .body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 72%;
|
|
min-height: 300rpx;
|
|
border-radius: 20rpx;
|
|
text-align: center;
|
|
background: #252330;
|
|
}
|
|
|
|
.box .body .title {
|
|
margin: 40rpx 0;
|
|
font-size: 32rpx;
|
|
line-height: 32rpx;
|
|
font-weight: bold;
|
|
color: #fff;
|
|
}
|
|
|
|
.box .body .message {
|
|
flex: 1;
|
|
margin: 0 20rpx 60rpx 20rpx;
|
|
font-size: 26rpx;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
}
|
|
|
|
.box .body .btn-box {
|
|
display: flex;
|
|
width: 100%;
|
|
border-top: 2rpx solid #3d3b45;
|
|
}
|
|
|
|
.box .body .btn-box .line {
|
|
width: 2rpx;
|
|
height: 90rpx;
|
|
background: #3d3b45;
|
|
}
|
|
|
|
.box .body .btn-box>button {
|
|
flex: 1;
|
|
height: 90rpx;
|
|
background: none;
|
|
font-size: 32rpx;
|
|
color: #ffda2e;
|
|
line-height: 90rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.box .body .btn-box>button::after {
|
|
border: none;
|
|
}
|