美化了样式

This commit is contained in:
2025-08-15 00:36:04 +08:00
parent 5fc1378051
commit 1b4d3e310b
63 changed files with 2735 additions and 2411 deletions

View File

@ -0,0 +1,57 @@
.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;
}