You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1018 B
68 lines
1018 B
/* components/modal/modal.wxss */
|
|
.mask {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
z-index: 100;
|
|
}
|
|
|
|
.container {
|
|
width: 560rpx;
|
|
height: 290rpx;
|
|
background: white;
|
|
border-radius: 16rpx;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-items: center;
|
|
flex-direction: column;
|
|
color: #666666;
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
.container>view:nth-of-type(1) {
|
|
flex: 2;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
}
|
|
|
|
.container>view:nth-of-type(2) {
|
|
flex: 1;
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
border-top: 2rpx solid #E5E5E5;
|
|
}
|
|
|
|
.btn view+view{
|
|
border-left: 2rpx solid #E5E5E5;
|
|
}
|
|
|
|
.btn view{
|
|
flex: 1;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.btn view {
|
|
color: #666666;
|
|
}
|
|
|
|
.btn .confirm_fn {
|
|
color: #3476FE;
|
|
}
|