
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,legend,button
form,fieldset,input,textarea,p,blockquote,th,td {   
  padding: 0;   
  margin: 0; 
  border:0;
  box-sizing: border-box;
}
 
 
 
/* 设置网页统一的字体大小、行高、字体系列相关属性 */
body {
  font: 16px/1.5 "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei",
    "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
  color: #333;
}
 
 
/* 去除默认的倾斜效果 */
em,
i {
  font-style: normal;
}
 
 
 
/* 清除列表样式 */
 
ol,ul {list-style: none;}
 
img {
    /* 取消图片底侧有空白缝隙的问题 */
    vertical-align: middle;
}
 
button,input {
    /* 当我们鼠标经过button 按钮的时候，鼠标变成小手，并且去除轮廓线，设置文字颜色 */
    cursor: pointer;
    outline: none;
    color: #333;
}
 
/* 左浮动 */
.fl {
  float: left;
}
 
/* 右浮动 */
.fr {
  float: right;
}
 
 
a {
    text-decoration: none;
    color: #333;
}
 
/* 双伪元素清除法 */
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}
 
.clearfix::after {
  clear: both;
}
 
 
 .w {
    width: 1200px;
    margin: 0 auto;
}
 
/* 设置表格的边框被合并为一个单一的边框, 指定分隔边框模型中单元格边界之间的距离为0*/
table {   
  border-collapse: collapse;   
  border-spacing: 0;   
}
