Use a single div, and make the thicker portion .bar::before
.bar{
background: #AAA;
height: 3px;
margin-top: 40px;
position:relative;
}
.bar::before{
content: '';
display: block;
width: 30%;
background: #B5651D;
height: 10px;
position:absolute;
top:-10px;
}
<div class='bar'></div>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…