@font-face {
    font-family: "sourcehansans"; /* 这个名字可以自己定义 */
    src: url("../fonts/sourcehansans.eot"); /* IE9 Compat Modes */
    /*这里以及下面的src后面的地址填的都是自己本地的相对地址*/
    src: url("../fonts/sourcehansans.eot?#iefix") format("embedded-opentype"),
        /* IE6-IE8 */ url("../fonts/sourcehansans.woff") format("woff"),
        /* Modern Browsers */ url("../fonts/sourcehansans.ttf") format("truetype"),
        /* Safari, Android, iOS */ url("../fonts/sourcehansans.svg#YourWebFontName") format("svg"); /* Legacy iOS */
    font-weight: bold;
    font-style: normal;
}

.content{
    margin: 0;
    padding: 0;
    min-height: 400px;
}

.content img{
    width: 100%;
}

.content h3{
    margin-top: 400px;
    text-align: center;
    font-family: sourcehansans;
    font-size: 48px;
    color: #0b6cbc;
}