

.show_animation_block {
    width: 100%;
    overflow: hidden;
}
.animate__animated {
    animation-duration: 300ms;
}
.show_animation_set {
    /*transform: scaleX(0);*/
}
.show_animation_0_100 {
    /*获取dom：show_animation_set 添加该类名*/
    animation-name: Animation0_100;
    animation-fill-mode:forwards;
    animation-timing-function: ease-in-out;
    animation-duration: 500ms;
    transform-origin:0 0;
}

@keyframes Animation0_100 {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}