@charset "utf-8";



/* css 初始化 */

* {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -ms-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body,
div,
object,
iframe,
blockquote,
pre,
abbr,
hr,
br,
address,
big,
cite,
code,
del,
em,
ins,
kbd,
q,
samp,
small,
strike,
strong,
sub,
sup,
tt,
label,
caption,
tfoot,
ul,
ol,
dl,
dd,
dt,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
form,
input,
textarea,
fieldset,
legend,
button,
table,
tr,
td,
th,
thead,
tbody,
select,
option,
img,
video,
audio,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
section,
summary,
time,
mark,
a,
span,
i,
s,
b,
u,
{
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -ms-tap-highlight-color: rgba(0, 0, 0, 0);
    /* 去除移动端特有的点击高亮效果*/
}

html,
body {
    font-size: 16px;
    font-family: "Microsoft YaHei", "微软雅黑", "\5FAE\8F6F\96C5\9ED1", tahoma, arial, "Hiragino Sans GB", "宋体", Helvetica, sans-serif;
    width: 100%;
    height: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

ul,
ol,
dl {
    list-style: none;
}

input,
textarea {
    outline: none;
    border: none;
    resize: none;
}

select,
button {
    outline: none;
    border: none;
}

img {
    vertical-align: bottom;
    border: 0;
    /*消除图片底部3px像素*/
}

a,
a:hover {
    text-decoration: none;
}

.clearfix {
    *zoom: 1;
}

.clearfix::before,
.clearfix::after {
    content: "";
    display: block;
    height: 0;
    line-height: 0;
    overflow: hidden;
    visibility: hidden;
    clear: both;
}