重写复选框样式
/* 未选中的 背景样式 */checkbox .wx-checkbox-input { // border-radius: 50%;/* 圆角 */ width: 28rpx; /* 背景的宽 */ height: 28rpx; /* 背景的高 */}/* 选中后的 背景样式 (红色背景 无边框 可根据UI需求自己修改) */checkbox .wx-checkbox-input.wx-checkbox-input-checked { background: #776dff; border: 1rpx solid #776dff;}/* 选中后的 对勾样式 (白色对勾 可根据UI需求自己修改) */checkbox .wx-checkbox-input.wx-checkbox-input-checked::before { width: 28rpx; /* 选中后对勾大小,不要超过背景的尺寸 */ height: 28rpx; /* 选中后对勾大小,不要超过背景的尺寸 */ line-height: 28rpx; text-align: center; font-size: 24rpx; /* 对勾大小 */ background: transparent; color: #fff; transform: translate(-50%, -50%) scale(1); -webkit-transform: translate(-50%, -50%) scale(1);}
重写单选框样式
radio .wx-radio-input { border-radius: 8rpx; /* 圆角 */ width: 28rpx; /* 背景的宽 */ height: 28rpx; /* 背景的高 */}/* 选中后的 背景样式 (红色背景 无边框 可根据UI需求自己修改) */radio .wx-radio-input.wx-radio-input-checked { border: 1rpx solid #776dff; background: #776dff; width: 28rpx; /* 背景的宽 */ height: 28rpx; /* 背景的高 */}/* 选中后的 对勾样式 (白色对勾 可根据UI需求自己修改) */radio .wx-radio-input.wx-radio-input-checked::before { width: 28rpx; /* 选中后对勾大小,不要超过背景的尺寸 */ height: 28rpx; /* 选中后对勾大小,不要超过背景的尺寸 */ border: 1rpx solid #776dff; color: #fff; line-height: 28rpx; border-radius: 8rpx; /* 圆角 */ text-align: center; font-size: 24rpx; /* 对勾大小 */ background: #776dff; transform: translate(-50%, -50%) scale(1); -webkit-transform: translate(-50%, -50%) scale(1);}