/* 未选中的 背景样式 */
checkbox .wx-checkbox-input {
  border-radius: 50%;/* 圆角 */
  width: 30rpx; /* 背景的宽 */
  height: 30rpx; /* 背景的高 */
}
/* 选中后的 背景样式 (红色背景 无边框 可根据UI需求自己修改) */
checkbox .wx-checkbox-input.wx-checkbox-input-checked {
  background: #fd9e7d;
  border: 1rpx solid #fd9e7d;
  color: #fff;
  font-size: 24rpx;
}
/* 选中后的 对勾样式 (白色对勾 可根据UI需求自己修改) */
checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
  width: 30rpx; /* 选中后对勾大小,不要超过背景的尺寸 */
  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);
}

相关文章:

  • 2021-11-27
  • 2021-08-12
  • 2022-12-23
  • 2021-12-06
  • 2021-12-28
  • 2021-11-04
  • 2021-08-03
猜你喜欢
  • 2021-11-06
  • 2021-12-07
  • 2021-04-03
  • 2022-12-23
  • 2021-11-13
  • 2022-01-08
相关资源
相似解决方案