/* 清除内外边距 */
* { 
    margin: 0;
    padding: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing:border-box;
    box-sizing: border-box;
}

input:focus,select:focus{
    outline:none;
}

/*重置表格边框之间的空隙和合并*/
table{border-spacing: 0; border-collapse: 0}
/* 重置列表元素 */
ul, ol { list-style: none; }

/* 重置表单元素 */
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0 none; } /* img 搭车：让链接里的 img 无边框 */

/*将字体和字体大小设为正常*/
address,caption,cite,code,dfn,em,strong,th,var {
	font-style:normal;
	font-weight:normal;
}

h1,h2,h3,h4,h5,h6{font-size: 100%; font-weight: normal;}

button, input, select, textarea {
    font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
}

a{
	text-decoration: none;
}

/* theme */
.base-bk{
    background-color: #f3b33a;
}