解决PrintJS字体大小无法设置问题
观察printJS源码好多font-size加了!important并使用font_size遍历估直接传入font_size为一个不存在的值使样式不生效

// An highlighted block
function print(selector, style = "") {
printJS({
printable: selector,
type: 'html',
css: '', // 如果有自定义CSS,请确保没有影响到打印区域
style: style, // 移除默认页边距
onPrintDialogClose: cb, // 打印对话框关闭时的回调
font_size: 'llllll' // 解决printJS无法设置字体大小
});
}