


/* 開始:  PK.modal.showAlert('儲存完成', 'success');  顯示提示  使用  */
.alert-overlay {
    position: fixed;
    top:  -100px; /* 初始位置在視窗之外 */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    width: 50%;
}

.jexcel_filter{
    justify-content: flex-start ;
    text-align: left;    
}


.alert-slide-in {
    top: 20%; /* 最終位置 */
    animation: slideInDown 0.5s forwards; /* 使用 keyframes 定義的動畫 */
}
@keyframes slideInDown {
    0% {
        top:   -100px; /* 移出視窗 */
    }
    100% {
        top: 10%; 
    }
}
@keyframes slideOutUp {
    0% {
        top: 10%;
    }
    100% {
        top: -100px; /* 移出視窗 */
    }
}

.alert-slide-out {
    animation: slideOutUp 0.5s forwards; /* 使用 keyframes 定義的動畫 */
}

/* 結束:  PK.modal.showAlert('儲存完成', 'success');  顯示提示  使用  */



