@charset "UTF-8";
/* reset.css - 重置所有浏览器默认样式 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 元素显示为块级元素 */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

/* 设置基本行高 */
body {
    line-height: 1;
}

/* 去除列表样式 */
ol, ul {
    list-style: none;
}

/* 引用块样式重置 */
blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* 表格边框合并 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 盒模型设置 */
* {
    box-sizing: border-box;
}

/* 图片最大宽度限制 */
img {
    max-width: 100%;
    height: auto;
}

/* 去除链接下划线 */
a {
    text-decoration: none;
    color: inherit;
}

/* 去除输入框焦点时的轮廓 */
input, textarea, button, select {
    outline: none;
}

/* 修正按钮在Firefox中的内边距异常问题 */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
} 