/* CSS Document */
/* 内外边距通常让各个浏览器样式的表现位置不同 */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    margin: 0;
    padding: 0;
}
/* 去除默认样式 */
i, em {
    font-style: normal;
}
/* 表单元素的初始化 */
input, button {
    outline: none;
    border: none;
}
a, img {
    border: 0;
}
img {
    display: block;
}
body {
    font-size: 14px;
    font-family: Arial, "微软雅黑";
    color: #333;
}
.container {
    padding: 0;
    margin: 0 auto;
}
ol, ul {
    list-style: none;
}
a {
    color: #333;
    text-decoration: none;
    outline: none;
}
li {
    list-style: none;
}
/*链接*/
a:link {
    text-decoration: none;
    /*下划线*/
    color: #008cd6;
    /*颜色*/
}
/*被访问过链接*/
a:visited {
    text-decoration: none;
    /*下划线*/
    color: #008cd6;
    /*颜色*/
}
/*鼠标经过*/
a:hover {
    text-decoration: none;
    /*下划线*/
    color: #172c78;
    /*颜色*/
}
/*链接被按下*/
a:active {
    text-decoration: none;
    /*下划线*/
    color: #172c78;
    /*颜色*/
}
/* 浮动 */
.fl {
    float: left;
}
.fr {
    float: right;
}
.boxSize {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
.clearfix:after {
    clear: both;
    font-size: 0;
    height: 0;
    display: block;
    visibility: hidden;
    content: " ";
    line-height: 0
}
.clearfix {
    zoom: 1
}
/*14号字*/
.f14 {
    font-size: 14px;
    /*大小*/
}
/*16号字*/
.f16 {
    font-size: 16px;
    /*大小*/
}
/*18号字*/
.f18 {
    font-size: 18px;
    /*大小*/
}
/*20号字*/
.f20 {
    font-size: 20px;
    /*大小*/
}
/* margin 尺寸 */
/* 上*/
.mt5 {
    margin-top: 5px;
}
.mt10 {
    margin-top: 10px;
}
.mt15 {
    margin-top: 15px;
}
.mt20 {
    margin-top: 20px;
}
.mt25 {
    margin-top: 25px;
}
.mt30 {
    margin-top: 30px;
}
.mt35 {
    margin-top: 35px;
}
.mt40 {
    margin-top: 40px;
}
/* 下 */
.mb5 {
    margin-bottom: 5px;
}
.mb10 {
    margin-bottom: 10px;
}
.mb15 {
    margin-bottom: 15px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb25 {
    margin-bottom: 25px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb35 {
    margin-bottom: 35px;
}
.mb40 {
    margin-bottom: 40px;
}
/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}