.input-checks {
position: relative;
width: 16px;
height: 16px;
background-clip: border-box;
appearance: none;
margin: -0.15px 0.6px 0 0;
vertical-align: text-bottom;
border-radius: 50%;
background-color: #fff;
border: 1px solid #d7d7d7;
}
https://www.runoob.com/cssref/css3-pr-appearance.html
直接用 对应的标签不行吗
这样可以修改噢
input[type='checkbox'] {
width: 16px;
height: 16px;
vertical-align: middle;
-webkit-appearance: none; /*清除默认样式*/
border: 1px solid #14d32f;
}