设置字体的样式
    font-style: italic;
    font-style: normal(设置默认字体效果)

    设置字体加粗效果
    font-weight: bold;
    font-weight: bolder;
    font-weight: lighter;
    font-weight: normal

    设置字体
    可以写多个字体 当第一个字体不存在的时候就使用第二, 当第二不存在的时候就使用第三个
    *(电脑必须存在该字体)
    font-family: “卓帅”, “楷体”, “黑体”, “宋体”;

    text-transform: uppercase设置为大写
    text-transform: lowercase设置为小写