/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote,dl, dt, dd, ul, ol, li,pre,form, fieldset, legend, button, input, textarea,th, td {
    margin: 0;
    padding: 0;
}
/** 设置默认字体 **/
body,button, input, select, textarea {
    font: 14px/1.5 tahoma, \5b8b\4f53, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
   font-size: 100%; 
}
address, cite, dfn, em, var { 
  font-style: normal; 
} 
small {
   font-size: 12px; 
} /* 小于 12px 的中文很难阅读, 让 small 正常化 */
/** 重置列表元素 **/
ul, ol { 
  list-style: none; 
}
/** 重置文本格式元素 **/
a { 
  text-decoration: none; 
}
a:hover { 
  text-decoration: underline; 
}