/* radio 选中后的样式 */
/deep/ uni-radio .uni-radio-input.uni-radio-input-checked {
background-color: #65D9CD !important;
border-color: #65D9CD !important;
background-clip: content-box !important;
padding: 7rpx !important;
box-sizing: border-box;
height: 50rpx !important;
width: 50rpx !important;
}
/* radio 选中后的图标样式*/
/deep/ uni-radio .uni-radio-input.uni-radio-input-checked::before {
display: none !important;
}
//微信小程序
/* 选中后的 背景样式 (红色背景 无边框 可根据UI需求自己修改) */
radio .wx-radio-input.wx-radio-input-checked {
background-color: #65D9CD !important;
border-color: #65D9CD !important;
background-clip: content-box !important;
padding: 7rpx !important;
box-sizing: border-box;
height: 50rpx !important;
width: 50rpx !important;
}
/* 选中后的 对勾样式 (白色对勾 可根据UI需求自己修改) */
radio .wx-radio-input.wx-radio-input-checked::before {
/* 去除对号 */
content: '';
width: 36rpx;
height: 36rpx;
border-radius: 50%;
background-color: #65D9CD;
}
|