/**
 * tipDialog 样式文件
 */
#tipDialogOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}

#tipDialogBox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 300px;
    max-width: 500px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-align: center;
    padding: 30px 40px;
    animation: tipDialogFadeIn 0.3s ease-out;
}

@keyframes tipDialogFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

#tipDialogBox .tipDialog-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

#tipDialogBox .tipDialog-icon.success {
    color: #5cb85c;
}

#tipDialogBox .tipDialog-icon.error {
    color: #d9534f;
}

#tipDialogBox .tipDialog-icon.info {
    color: #5bc0de;
}

#tipDialogBox .tipDialog-message {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

#tipDialogBox .tipDialog-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

#tipDialogBox .tipDialog-btn:hover {
    background: #5568d3;
}
