/* 提示弹窗样式 */
.prompt-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prompt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.prompt-content {
    position: relative;
    background: #FFFFFF;
    border-radius: 6px;
    width: 400px;
    max-width: 90%;
    z-index: 10001;
    padding: 24px;
    box-sizing: border-box;
}

.prompt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.prompt-title {
    font-family: 'SourceHanSansCN', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin: 0;
}

.prompt-close-button {
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prompt-close-button .close-icon {
    width: 16px;
    height: 16px;
}

.prompt-body {
    margin-bottom: 24px;
}

.prompt-message {
    font-family: 'SourceHanSansCN', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #AAAAAA;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

.prompt-footer {
    display: flex;
    justify-content: space-between;
    gap: 17px;
}

.prompt-cancel-btn, .prompt-confirm-btn {
    flex: 1;
    padding: 10px;
    /*border-radius: 4px;*/
    font-family: 'SourceHanSansCN', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    border: 1px solid #E6E6E6;
    border-radius: 33px;
}

.prompt-cancel-btn {
    color: #333333;
    background: #FFFFFF;
}

.prompt-confirm-btn {
    color: #FFFFFF;
    background: #E21C34;
    border-color: #E21C34;
}