改变checkbox的默认样式
input[type='checkbox']{
width: 18px;
height: 18px;
background-color: #fff;
-webkit-appearance:none;/*擦除默认样式 */
border: 1px solid #c9c9c9;
border-radius: 2px;
outline: none;
margin: 0;
}
input[type=checkbox]:checked{
background: url(../../static/img/checked.png);
}