:root{
    --line:0;
}
.svgBox .path{
    stroke-dasharray: var(--line);
    stroke-dashoffset: var(--line);
    
}
.svgBox .news:hover .path{
    animation: stroke 1s forwards;
}
@keyframes stroke{
    to{
        stroke-dashoffset: 0;
    }
}