CSS:
.hr-wavy {
border: 0;
color: darkgray;
height: .5em;
padding-top: .5em;
text-align-last: justify;
}
.hr-wavy::before {
content: "\3000\3000";
text-decoration-style: wavy;
text-decoration-line: overline;
}
.hr-solid-content {
color: gray;
border: 0;
font-size: 12px;
padding: 1em 0;
position: relative;
}
.hr-solid-content::before {
content: attr(data-content);
position: absolute;
padding: 0 1ch;
line-height: 1px;
border: solid darkgray;
border-width: 0 99vw;
width: fit-content;
/* for 不支持fit-content浏览器 */
white-space: nowrap;
left: 50%;
transform: translateX(-50%);
}