/*css reset*/
/*根据《信息服务部UI设计规范V1.0》对样式进行规范*/
/*web安全字体设置，参考：http://caibaojian.com/webfont.html*/
@font-face{
    font-family: 'Klavika';
    src: url(../fonts/Klavika-Regular.otf);
}
body {
    font-family: "Klavika", "Source Han Sans CN", "Microsoft YaHei", "微软雅黑", SimSun, "宋体", Helvetica, Arial, sans-serif;
    color: #333333;
}
/*字号*/
/*浏览器默认字号16px=>1rem*/
h1 {
    font-size: 2rem;
    line-height: 2.375rem;
    text-align: left;
}
h2 {
    font-size: 1.75rem;
    line-height: 2.125rem;
    text-align: left;
}
h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    text-align: left;
}
p {
    font-size: 1rem;
    line-height: 26px;
    text-align: left;
}
.title {
    font-size: 1.125rem;
}
a {
    color: #333333;
}
a:visited {
    color: #333333;
    outline: none;
}
a:hover {
    color: #333333;
    outline: none;
}
a:active {
    outline: none;
}