获取 "font-weight" 的值
String get fontWeight => this._fontWeight;
设置 "font-weight" 的值
set fontWeight(String? value) { _fontWeight = value == null ? '' : value; }