.mz168_gourl_modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.mz168_gourl_modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.mz168_gourl_modal-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.mz168_gourl_modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.mz168_gourl_modal-button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.mz168_gourl_confirm-button {
    background-color: #e84700; /* 修改为指定的红色 */
    color: white;
}

.mz168_gourl_confirm-button:hover {
    background-color: #ff5c1a; /* 悬停时稍亮的红色 */
}

.mz168_gourl_cancel-button {
    background-color: #f5f5f5;
    color: #666;
}

.mz168_gourl_cancel-button:hover {
    background-color: #e8e8e8;
}