@charset "UTF-8";
/*定义公共部分通用css，默认所有页面都需要加载*/
* {
    box-sizing: border-box; }

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent; }

html {
    height: 100%; }

body {
    overflow-x: hidden;
    overflow-y: auto;
    min-width: 320px;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
    font-family: Helvetica,Microsoft YaHei,Lucida Grande,Arial;
    font-size: 12px;
    -webkit-font-smoothing: antialiased;
    height: 100%;
}

input,
select,
textarea,
button {
    font-family: heiti SC,Helvetica,Microsoft YaHei,Lucida Grande,Arial;
    vertical-align: middle;
    outline: none; }

h1,
h2,
h3,
h4,
h5,
h6,
i,
b {
    font-weight: normal; }

i {
    font-style: normal; }

ul,
ol,
li {
    list-style-type: none; }

img {
    border: 0;
    vertical-align: middle;
    max-width: 100%; }

table {
    border-collapse: collapse;
    border-spacing: 0; }

iframe {
    border: none; }

a {
    -webkit-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    display: block; }

a:link,
a:visited {
    color: inherit;
    text-decoration: none; }

a:hover,
a:active {
    color: inherit;
    text-decoration: none; }
/*定义公共部分通用css，默认所有页面都需要加载*/