2025-04-25 18:20:19 +08:00

64 lines
919 B
CSS

.dialog {
position: fixed;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 6;
display: flex;
justify-content: center;
align-items: center;
}
.dialog-main {
min-width: 368px;
border-radius: 10px;
padding: 20px 30px;
}
.dialog-main-header {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 16px;
line-height: 30px;
}
.dialog-main-title {
font-size: 16px;
line-height: 30px;
}
.dialog-main-content {
font-size: 14px;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
.dialog-main-footer {
display: flex;
justify-content: flex-end;
}
.btn {
padding: 8px 20px;
margin: 0 6px;
border-radius: 4px;
border: none;
font-size: 14px;
text-align: center;
line-height: 20px;
display: flex;
align-items: center;
}
.btn:disabled {
opacity: 0.3;
}
.btn:last-child {
margin-right: 0;
}