引用格式

设置左侧竖线, 且字体楷体.

<style>
	.reference {
		position: relative;
		padding-left: 10px; /* 给容器留出空间显示竖线 */
		margin-top: 0.5em; /* 设置上外边距为0.5em */
		margin-bottom: 0.5em; /* 设置下外边距为0.5em */
		font-family: KaiTi, STKaiti, serif; /* 设置字体为楷体 */
	}
	.reference::before {
		content: "";
		position: absolute;
		left: 4px;
		top: 0;
		bottom: 0;
		width: 2px;
		background-color: #808080; /* 设置竖线的颜色为灰色 */
	}
</style>