
html
<div class="price_div"></div>
css
.price_div{
position: relative;
}
::after{
content: '';
position: absolute;
left: 0;
top: 50%;
width: 100%;
height: 2px;
background: #FF186B;
transform: rotate(-5deg);
}