// 大小设置
radio .wx-radio-input {
border-radius: 50%;
width: 24px;
height: 24px;
}
// 边框颜色
radio .wx-radio-input {
border-color: #87858a;
}
// 选中状态设置
radio .wx-radio-input.wx-radio-input-checked {
border-color: #0073ff !important;
background: white !important;
}
radio .wx-radio-input.wx-radio-input-checked::before {
border-radius: 50%;
width: 20px;
height: 20px;
content: "";
background-color: #0073ff;
}