@charset "utf-8";
.accordion-enter-active {
    animation: slideDown 0.5s;
}
.accordion-leave-active {
    animation: slideDown 0.5s reverse;
}

@keyframes slideDown{
    0% {
        max-height: 0;
    }
    100% {
        max-height: 900px;
    }
}