
*{margin: 0;padding: 0;list-style: none;}
/*
KISSY CSS Reset
理想：1. reset 的主张不是断根浏览器的默认形状，这仅是部门工作。断根和沉置是缜密不成分的。
2. reset 的主张不是让默认形状在所有浏览器下一致，而是削减默认形状有可能带来的问题。
3. reset 进展提供一套普适通用的基础形状。但没有银弹，推荐凭据具体需要，裁剪和批改后再使用。
特色：1. 适应中文；2. 基于最新主流浏览器。
守护：玉伯<lifesinger@gmail.com>, 正淳<ragecarrier@gmail.com>
 */
 
/** 断根内表边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本体式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
  margin: 0;
  padding: 0;
}
 
/** 设置默认字体 **/
body,
button, input, select, textarea /* for ie */ {
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

 
/** 沉置列表元素 **/
ul, ol { list-style: none; }
 
/** 沉置文本体式元素 **/
a { text-decoration: none; }
a:hover { text-decoration: none; }
 
 
/** 沉置表单元素 **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img 乘车：让链接里的 img 无际框 */
button, input, select, textarea { font-size: 100%; } /* 使得表单元素在 ie 下能继承字体大幼 */
/* 注：optgroup 无法扶正 */
 
/** 沉置表格元素 **/
table { border-collapse: collapse; border-spacing: 0; }
 
/* 断根浮动 */
.ks-clearfix:after, .clearfix:after {
  content: '\20';
  display: block;
  height: 0;
  clear: both;
}
.ks-clear, .clearfix {
  *zoom: 1;
}
<!--耗时1780493207.0838秒-->