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.
86 lines
1.5 KiB
86 lines
1.5 KiB
.tip-dialog {
|
|
width:100%;
|
|
height: 100vh;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
background: rgba(0,0,0, 0.6);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center
|
|
}
|
|
|
|
.tip-dialog .content {
|
|
width: 530rpx;
|
|
border-radius: 16rpx;
|
|
background: #fff;
|
|
box-sizing: border-box;
|
|
padding: 0 20rpx;
|
|
}
|
|
|
|
.tip-dialog .content .close-dialog {
|
|
width: 100%;
|
|
height: 60rpx;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
align-items: center;
|
|
}
|
|
.tip-dialog .content .close-dialog cover-image {
|
|
width:24rpx;
|
|
height: 24rpx;
|
|
}
|
|
|
|
.tip-dialog .content .title {
|
|
color: #333;
|
|
font-size: 40rpx;
|
|
width:100%;
|
|
line-height: 62rpx;
|
|
height: 62rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.tip-dialog .content .tip-content {
|
|
width:100%;
|
|
margin: 28rpx 0 37rpx;
|
|
}
|
|
.tip-dialog .content .tip-content .content-item {
|
|
font-size: 32rpx;
|
|
color: #666;
|
|
line-height: 48rpx;
|
|
height: 48rpx;
|
|
width:100%;
|
|
text-align: center;
|
|
}
|
|
|
|
.tip-dialog .content .line {
|
|
height: 1rpx;
|
|
width: 100%;
|
|
background: #eaeaea;
|
|
}
|
|
|
|
.tip-dialog .content .operation {
|
|
width: 100%;
|
|
height: 105rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-around;
|
|
}
|
|
.tip-dialog .content .operation .cancel {
|
|
color: #666;
|
|
font-size: 36rpx;
|
|
width: 100%;
|
|
height: 100%;
|
|
flex: 1;
|
|
text-align: center;
|
|
line-height: 105rpx;
|
|
}
|
|
.tip-dialog .content .operation .confirm {
|
|
color: #04BCA0;
|
|
font-size: 36rpx;
|
|
width: 100%;
|
|
flex: 1;
|
|
height: 100%;
|
|
text-align: center;
|
|
line-height: 105rpx;
|
|
}
|
|
|
|
|