https://developers.weixin.qq.com/community/develop/article/doc/000848be624280e0112a2c8bb56c13
checkbox {
width: 28rpx;
height: 28rpx;
}
/* 未选中的 背景样式 */
checkbox .wx-checkbox-input{
width: 28rpx;
height: 28rpx;
border-radius: 4rpx;
border: 1px solid rgba(0, 0, 0, 0.15);
}
/* 选中后的 背景样式*/
checkbox .wx-checkbox-input.wx-checkbox-input-checked{
border: 1rpx solid #FF6600;
background: #FF6600;
}
/* 选中后的 对勾样式 */
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{
width: 28rpx;
height: 28rpx;
line-height: 28rpx;
text-align: center;
font-size:30rpx;
color:#fff; /* 对勾颜色 白色 */
background: transparent;
transform:translate(-50%, -50%) scale(1);
-webkit-transform:translate(-50%, -50%) scale(1);
}