微信小程序设置radio样式,更改选择状态颜色

// 大小设置
radio .wx-radio-input {
    border-radius: 50%;
    width: 24px;
    height: 24px;
  }
  // 边框颜色
  radio .wx-radio-input {
    border-color: #87858a;
  }
  // 选中状态设置
  radio .wx-radio-input.wx-radio-input-checked {
    border-color: #0073ff !important;
    background: white !important;
   }
   
  radio .wx-radio-input.wx-radio-input-checked::before {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    content: "";
    background-color: #0073ff;
  }

 

你可能感兴趣的