/* 清除内外边距 */
body, div, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, form,/* form elements 表单元素 */
th, td { /* table elements 表格元素 */
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* 设置默认字体 */
body, button, input, select, textarea { /* for ie */
    color: #495d64;
    font:14px/1.42857143  "PingFangSC-light", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    outline:0;
}

code, kbd, pre, samp, tt {
    font-family: "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
}

/* 重置列表元素 */
ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6{
    font-size: 100%;
    font-weight: normal;
}

/* 重置表格元素 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    vertical-align: top;
    border: 0;
}

a {
    color: #2b98fc;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #2a6496;
    text-decoration: none;
    outline: none;
}