/*-------------------------移动端清除默认样式------------------------*/
body {
    margin: 0;
    padding: 0;
    width: 100%;
    /*font-family: Helvetica;*/     /*设置默认字体*/
   position: relative;/*  2017年11月15日09:38:11        此时写此行代码的作用：mobile 中input输入时输入法影响布局准备  */
}

body * {
    -webkit-text-size-adjust: 100%; /*去除文字缩放*/
    /*-webkit-user-select: none; !*选中文字设置*!*/
}

a, input, button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);/*//清除点击阴影，设置点击颜色*/
    text-decoration: none;
    color: #000;
}

input, button {
    /*-webkit-appearance: none;*/ /*消除按钮圆角*/
    /*border-radius: 0;*/ /*彻底消除圆角按钮*/
}



/*-----------------------------------  通用清除默认样式  --------------------------------------*/
ul,ol{
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4,h5,h6,section,li{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    text-outline: none;
}