/* 清除内外边距 */
body, 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 elements 表单元素 */
th, td { /* table elements 表格元素 */
    margin: 0;
    padding: 0;
}


/* 设置默认字体 */
body,
button, input, select, textarea { /* for ie */
    font: 14px "PingFang SC"; /* 用 ascii 字符表示，使得在任何编码下都无问题 */
}

h1{
    font-size:20px;
}
h2{
    font-size:18px;
}

h3{
    font-size:16px;
}

h4{
    font-size:14px;
}

small { font-size: 12px; } /* 小于 12px 的中文很难阅读，让 small 正常化 */

/* 重置列表元素 */
ul, ol { list-style: none; }

/* 重置文本格式元素 */
a { text-decoration: none; }
a:hover { text-decoration: none; }

abbr[title], acronym[title] { /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
    border-bottom: 1px dotted;
    cursor: help;
}

q:before, q:after { content: ''; }

/* 重置表单元素 */
legend { color: #000; } /* for ie6 */
fieldset, img { border: none; } /* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button, input, select, textarea {
    font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
    outline: none;/* 谷歌去边框 */
}

/* 重置表格元素 */
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

/* 重置 hr */
hr {
    border: none;
    height: 1px;
}

/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
html { overflow-y: auto; font-size: 10vw;overflow-x: hidden;}

body{
    margin: 0;
    width: 100vw;
    min-height: 100vh;
    overflow-y: hidden;
    background:#f9fafa;
    overflow-x:auto;
    font-family: Helvetica Neue,Helvetica,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Arial,sans-serif;
}
/*滚动条样式*/
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
}
::-webkit-scrollbar-track {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
    background: transparent;
}

#pages {
    padding: 44px 0 60px 0;
    border-top: 1px solid #E2E5E5;
    text-align: right;
    font-family: FZLTHJW--GB1, FZLTHJW--GB1;
}
#pages a {
    display: inline-block;
    padding: 12px 15px;
    background: #F6F7F8;
    border-radius: 6px;
    margin-right: 6px;
    color: #222222;
}
#pages a:first-child {
    cursor: auto;
    background: transparent;
    display: none;
}
#pages span {
    padding: 11px 15px;
    background: #008B3E;
    border-radius: 6px;
    color: #FFFFFF;
    font-size: 14px;
    margin-right: 6px;
}
#pages .total-page {
    background: transparent;
    font-size: 14px;
    color: #222222;
}