2025-05-27 15:46:31 +08:00

80 lines
1.2 KiB
CSS

.hint-modal {
position: absolute;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.6);
}
.hint-container {
background: #fff;
border-radius: 15px;
box-sizing: border-box;
padding: 20px 24px;
font-size: 12px;
max-width: 500px;
}
.hint-title {
font-weight: 600;
font-size: 15px;
margin-bottom: 16px;
}
.hint-item {
display: flex;
align-items: center;
margin-bottom: 6px;
align-items: flex-start;
}
.hint-icon {
width: 16px;
height: 16px;
margin-right: 6px;
padding: 1px;
}
.hint-bold-text {
color: #8954fc;
font-weight: 600;
}
.hint-footer {
display: flex;
align-items: center;
justify-content: center;
gap: 20px;
}
.hint-btn {
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
border-radius: 20px;
padding: 8px 30px;
font-weight: 600;
margin-top: 20px;
}
.cancel-hint {
color: #ffffff;
background: #a3a3a3;
}
.confirm-hint {
color: #fff;
background: #8954fc;
}
.confirm-hint:hover {
background: #c1a4f3;
}
.confirm-hint:active {
background: #c1a4f3;
}
.cancel-hint:hover {
background: #dfdfdf;
}
.cancel-hint:active {
background: #dfdfdf;
}