uni-app开发小程序修改checkbox和radio样式

/* checkbox */
        checkbox .wx-checkbox-input.wx-checkbox-input-checked {
            background: #CA5F4B;
            border: 1px solid #CA5F4B;
        }
        checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
            color: #ffffff;
        }
    /* radio */
        /* 选中后的 背景样式 (红色背景 无边框 可根据UI需求自己修改) */
        radio .wx-radio-input.wx-radio-input-checked{
            background: #CA5F4B;
            border: 1px solid #CA5F4B;
        }
        /* 选中后的 对勾样式 (白色对勾 可根据UI需求自己修改) */
        radio .wx-radio-input.wx-radio-input-checked::before{
            color: #ffffff;
        }

你可能感兴趣的:(uni-app)