/*radio未选中时样式 */
radio .wx-radio-input{
background: rgb(139, 48, 48) ;
}
/* 选中后的 背景样式 (红色背景 无边框 可根据UI需求自己修改) */
radio .wx-radio-input.wx-radio-input-checked {
background: rgb(139, 48, 48) ;
border-color: #2792ff!important;
}
/* 选中后的 对勾样式 (白色对勾 可根据UI需求自己修改) */
radio .wx-radio-input.wx-radio-input-checked::before {
/* 去除对号 */
content: '';
width: 36rpx;
height: 36rpx;
border-radius: 50%;
background-color: #2792ff;
}