@keyframes slidein {
    from { 
        transform: translateY(-20px);
    }
    to{
        transform:translateY(0px);
    }
}

/* 目標模糊邊框動畫 */
@keyframes border-blur {
    0% {
        box-shadow: 0 0 0 0 rgba(169, 169, 169, 0.5);
    }

    50% {
        box-shadow: 0 0 10px 5px rgba(169, 169, 169, 0.5);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(169, 169, 169, 0.5);
    }
}

/* 套用模糊邊框效果的樣式 */
.border-blur-effect {
    animation: border-blur 1s linear;
}

/* Entrance animations used on News detail page */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease both;
}

.animate-fade-up {
    animation: fadeUp 0.6s ease both;
}