小程序radio样式修改

.city-radio-group-label .city-label-radio {    //label样式
  padding: 15rpx 50rpx;
  position: relative;
  font-size: 28rpx;
  margin-bottom: 30rpx;
  color: black;
  background: white;
  border-radius: 10rpx;
}

.city-label-style .wx-radio-input {    //radio未选中样式
  /* margin-right: 15rpx; */
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: none;
  border-radius: 10rpx;
  box-sizing: border-box;
  border: none;
}

.city-label-style .wx-radio-input.wx-radio-input-checked {  //radio选中后样式
  border: 1px solid red !important;
  background: white !important;
  background-color:transparent !important;
  box-sizing: border-box;
}

.city-label-style .wx-radio-input.wx-radio-input-checked::before {   //选中后打钩样式隐藏
  display: none;
}

猜你喜欢

转载自www.cnblogs.com/Ba-Li/p/9184064.html