@charset "utf-8";
/* 重置样式 */
body{
    margin:0;
    -webkit-user-select:none;
    user-select:none;
    /* 可以根据页面中大部分文字的字体，字号先统一规定字体字号行高 */
    /* font:14px/1 "微软雅黑",Arial,"宋体"; */
}
h1,h2,h3,h4,h5,h6{
    margin:0;
    font-size:100%;
    font-weight: normal;
}
p,dl,dd{
    margin:0;
}
ol,ul{
    margin:0;
    padding:0;
    /* 清除列表样式 */
    list-style: none;
}

table{
    border-spacing: 0;
    border-collapse: collapse;
}

th,b,strong{
    font-weight: normal;
}

img{
    vertical-align: middle;
    -webkit-user-drag:none;
    /* 清除IE中图片链接的蓝色外框 */
    border:none;
}
i,em{
    font-style: normal;
}

a,del{
   text-decoration: none;
}
a:hover{
    text-decoration: none;
    color: #333;
}
/* 根据设计稿定义大多数超链接的颜色 */
a{color:#333;}
input,textarea{
   margin:0;
   padding:0;
   background:none;
   border:none;
   font-family: inherit;
   font-size: inherit;
}
textarea{
   resize: none;
}
.clearfix{
    *zoom:1;
}
.clearfix:after{
    content:"";
    display: block;
    clear: both;
}
input,textarea,select,[contenteditable="true"],[role="textbox"]{
   -webkit-user-select:text;
   user-select:text;
}
