微信小程序radio样式的颜色及大小设置

image.png

布局wxml


    主机
    电极
  

样式wxss

radio-group text {
  font-size: 25rpx;
  // color: #666666;
}
radio .wx-radio-input {
  border-radius: 50%; /* 圆角 */
  width: 24rpx;
  border: 2rpx solid #5e5e5f;
  height: 24rpx;
}
radio .wx-radio-input.wx-radio-input-checked {
  border: none;
  background: #07c160;
}
radio .wx-radio-input.wx-radio-input-checked::before {
  border-radius: 50%; /* 圆角 */
  width: 28rpx; /* 选中后对勾大小,不要超过背景的尺寸 */
  height: 28rpx; /* 选中后对勾大小,不要超过背景的尺寸 */
  line-height: 28rpx;
  text-align: center;
  font-size: 20rpx; /* 对勾大小 30rpx */
  color: #fff; /* 对勾颜色 白色 */
  background: #07c160;
  transform: translate(-50%, -50%) scale(1);
}

你可能感兴趣的:(微信小程序radio样式的颜色及大小设置)