._article p {
	margin-bottom: .7rem;
}

._article ._title {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

._article ._brief {
	font-size: 22px;
	font-weight: bold;
}

._article ._content .table-wrapper {
	overflow-x: auto;
	width: 100%;
	margin-bottom: .5rem;
}

._article ._content table {
	border: 1px solid #dee2e6; /* 设置边框 */

	/* 或 display: flex; */
	display: grid; 
	max-height: 80vh;
	overflow: auto;
}

._article ._content th,td {
	border: 1px solid #dee2e6; /* 设置边框 */
	white-space: nowrap;
	padding: .2rem .5rem;
}

._article ._content th {
	text-align: center;
}

._article ._content td {
	text-align: left;
}

/* 对整个滚动条生效 */
::-webkit-scrollbar {
    width: 8px;               /* 滚动条的宽度 */
    height: 8px;              /* 滚动条的高度 */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
    /*background: #f1f1f1;       /* 轨道的颜色 */*/
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    background: #888;          /* 滑块的颜色 */
    border-radius: 10px;       /* 滑块的圆角 */
}

/* 滑块悬停时的颜色 */
::-webkit-scrollbar-thumb:hover {
    background: #555;         /* 滑块悬停时的颜色 */
}