<w:r>
	<w:t>中文ABC123</w:t>
	<w:rPr>
		<w:bdr/>
		<w:sz w:val="21"/>
		<w:rFonts w:ascii="Times New Roman" w:eastAsia="仿宋"/>
	</w:rPr> 
</w:r>

以上设置字体字号,有可能失败,打开word后还是显示其他字体

注意rPr最好是放在t之前改成这样:

<w:r>
	<w:rPr>
		<w:bdr/>
		<w:sz w:val="21"/>
		<w:rFonts w:ascii="Times New Roman" w:eastAsia="仿宋"/>
	</w:rPr> 
	<w:t>中文ABC123</w:t>
</w:r>