@charset "UTF-8";
/**
 * 文档的通用主CSS，如统一布局框架，文字大小、间距等
 单位100:1，即1px=0.01rem
 */
html {
    /* 禁用iPhone中Safari的字号自动调整 */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* 解决IOS默认滑动很卡的情况 */
    -webkit-overflow-scrolling : touch;
}
body,ul,li,p,h1,h2,h3,h4,h5,dt,dd,dl{margin:0;padding:0;font-family:Microsoft YaHei;}
    /* 禁止缩放表单 */
input[type="submit"], input[type="reset"], input[type="button"], input {
    -webkit-appearance: none;
    resize: none;
    border: none;
}
    /* 设置HTML5元素为块 */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
a {
    font-family:Microsoft YaHei;
    /* 移动端点击a链接出现蓝色背景问题解决 */
    background: none;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}
img {border:0;}
ul,li{list-style:none; }


/*布局*/
body{
    background: #fff;
}

header{
    width: 100%;
    margin: 0 auto;
}

section{
	position: relative;
    width: 100%;
    margin: 0 auto;
}
