微信小程序如何修改radio和checkbox的默认样式和图标

/* 默认背景样式*/

.radio-item .wx-radio-input {

  width: 32rpx;

  height: 32rpx;

  background-color: #ffffff !important;

  text-align: center;

  line-height: 32rpx;

}

/* 选中后的 背景样式 (红色背景 无边框 可根据UI需求自己修改) */

.radio-item .wx-radio-input.wx-radio-input-checked {

  border-color: #ffffff !important;

  /* opacity: 0.5; */

  background: #FF4D45 !important;

  border: node;

}

/* 选中后的 对勾样式 (白色对勾 可根据UI需求自己修改) */

.radio-item .wx-radio-input.wx-radio-input-checked::before {

  /* 去除对号 */

  content: '';

  /* content: '对';  */

  border-radius: 50%;

  background-color: #ffffff !important;

  opacity: 1;

  width: 20rpx;

  /* 选中后对勾大小,不要超过背景的尺寸 */

  height: 20rpx;

  /* 选中后对勾大小,不要超过背景的尺寸 */

  line-height: 20rpx;

  border: none;

  text-align: center;

  border: none;

}

你可能感兴趣的:(微信小程序如何修改radio和checkbox的默认样式和图标)