58 lines
870 B
Plaintext
58 lines
870 B
Plaintext
.popup-mask {
|
|
position: fixed;
|
|
top: 0; left: 0; right: 0; bottom: 0;
|
|
background: rgba(0, 0, 0, 0.4);
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.popup-container {
|
|
width: 80%;
|
|
background: #fff;
|
|
border-radius: 10px;
|
|
padding: 20rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.popup-title {
|
|
display: block;
|
|
font-size: 32rpx;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.popup-input {
|
|
width: 100%;
|
|
border: 1px solid #ddd;
|
|
border-radius: 6rpx;
|
|
padding: 10rpx;
|
|
box-sizing: border-box;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.popup-btns {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.btn {
|
|
flex: 1;
|
|
margin: 0 10rpx;
|
|
padding: 12rpx 0;
|
|
border-radius: 6rpx;
|
|
}
|
|
|
|
.cancel-btn {
|
|
background: #f5f5f5;
|
|
color: #333;
|
|
}
|
|
|
|
.confirm-btn {
|
|
background: #f5f5f5;
|
|
color: #ff8d1a;
|
|
}
|