/* 自定义 radio 样式 */
radio{
width: 46rpx;
}
radio .wx-radio-input{
border-radius: 50%;
width: 30rpx;
height: 30rpx;
}
/* 选中后的radio 解决选中后默认选中色–绿色*/
radio .wx-radio-input.wx-radio-input-checked{
border-color:#2facff !important;
background:#2facff !important;
}
/* 选中后的checked*/
radio .wx-radio-input.wx-radio-input-checked::before{
border-radius: 50%;
width: 44rpx;
height: 44rpx;
line-height: 44rpx;
font-size: 26rpx; /* 对勾大小 /
color:#fff; / 对勾颜色*/
background: #2facff;
border-color: #2facff;
text-align: center;
}