.li:nth-child(odd)::before {
content: "";
position: absolute;
top: 12px;
right: 0;
width: 1px;
height: 70px;
background-color: rgba(0, 0, 0, 0.1);
}
.li:nth-child(odd)::after {
content: "";
position: absolute;
bottom: 0;
left: 2%;
width: 196%;
height: 1px;
background-color: rgba(0, 0, 0, 0.1);
}