radio选中背景颜色更改
/*单选框基本(未选中)的样式*/
input[type="radio"]{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
outline: none;
display: block;
width: 13px;
height: 13px;
border-radius: 50%;
background-size: 100% auto;
box-sizing:border-box;
border:solid 1px #b0d235;
}
/*单选按钮选中后增加的样式*/
input[type="radio"]:checked:before{
content:"";
display: block;
width: 9px;
height: 9px;
margin: 1px;
border-radius: 10px;
background-color: #b0d235;
}