/*内容上移*/
.animated-move-up {
    visibility: visible !important;
    animation-name: fadeInUpCustom;
    animation-duration:.8s; /* 调整动画时长，这里设置为2秒 */
    animation-fill-mode: both;
}

@keyframes fadeInUpCustom {
    from {
        opacity: 0;
        transform: translate3d(0, 10%, 0); /* 调整上移距离，这里设置为100% */
    }

    to {
        opacity: 1;
        transform: none;
    }
}
