/* 格式化样式开始 */
@font-face {
    font-family: 'myFont';
    src: url('http://zjjcmspublic.oss-cn-hangzhou-zwynet-d01-a.internet.cloud.zj.gov.cn/jcms_files/jcms1/web2761/site/attach/0/PingFang%20SC.ttf');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    /* 字体设置为微软雅黑 */
    font-family: "微软雅黑", myFont;
    /* font-family: myFont; */
    /* 设置为怪异盒模型 */
    box-sizing: border-box;
}

/* 无障碍边框效果 */
.ariabodytopfiexed a:focus,
.ariabodytopfiexed *:focus {
    outline: 2px solid #fcff00 !important;
}

/* 清除浮动 */
.cf {
    /* 清除浮动：zoom是IE的专属属性，可以在IE6以下清除浮动 */
    zoom: 1;
}

.cf:after {
    /* after伪元素清除浮动 */
    content: "020";
    height: 0px;
    display: block;
    overflow: hidden;
    clear: both;
}