.portal-org-tip {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(17, 24, 39, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.24s ease, visibility 0.24s ease;
}

.portal-org-tip.is-show {
    opacity: 1;
    visibility: visible;
}

.portal-org-tip__panel {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.24s ease;
}

.portal-org-tip.is-show .portal-org-tip__panel {
    transform: translateY(0) scale(1);
}

.portal-org-tip__head {
    padding: 28px 28px 0;
    text-align: center;
}

.portal-org-tip__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff4eb 0%, #ffe8d6 100%);
    color: #f17930;
    font-size: 28px;
    line-height: 1;
}

.portal-org-tip__title {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #303133;
}

.portal-org-tip__text {
    margin: 0;
    padding: 0 28px;
    font-size: 15px;
    line-height: 1.8;
    color: #606266;
    text-align: center;
}

.portal-org-tip__actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 24px 28px 28px;
}

.portal-org-tip__btn {
    min-width: 108px;
    height: 40px;
    padding: 0 20px;
    border: none;
    border-radius: 20px;
    font-size: 15px;
    line-height: 40px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.portal-org-tip__btn--ghost {
    background: #fff;
    color: #606266;
    border: 1px solid #dcdfe6;
}

.portal-org-tip__btn--ghost:hover {
    color: #f17930;
    border-color: #f5c9a8;
}

.portal-org-tip__btn--primary {
    background: linear-gradient(135deg, #f89a4b 0%, #f17930 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(241, 121, 48, 0.28);
}

.portal-org-tip__btn--primary:hover {
    background: linear-gradient(135deg, #f17930 0%, #e56d22 100%);
}
