/* 首行文字居中，字号为WordPress H4（1.5em） */
.tablepress-id-1 thead th {
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	vertical-align: middle;
}

/* 首列内容居中，字号为WordPress H5（1.25em） */
.tablepress-id-1 tbody td:first-child {
	text-align: center;
	font-size: 1.25em;
	font-weight: bold;
	vertical-align: middle;
}

/* 其余单元格为正文字号（一般WordPress正文为1em或1.1em），不宜太小，居中 */
.tablepress-id-1 tbody td:not(:first-child) {
	text-align: center;
	font-size: 1.1em;
	vertical-align: middle;
}