/*樣式*/
.custom-radio .mark {
border: 2px solid #999999;
}
    .custom-radio .mark:after {
        background-color: #0258ae;
    }

    .custom-radio .mark:after {
        background: #0258ae;
    }


/*radio按鈕*/
.custom-radio {
    display: block;
    position: relative;
    padding-left: 24px;
    padding-bottom: 3px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 0;
    font-weight: normal;
}

.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  padding-left: 5px;
}

    .custom-radio .mark {
        position: absolute;
        top: 4px;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: #FFF;
        border-radius: 50%;
        border: 2px solid #999999;
    }
.custom-radio input:checked ~ .mark {
  margin-top: 0px;
}
  
.custom-radio .mark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-radio input:checked ~ .mark:after {
  display: block;
}

.custom-radio .mark:after {
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}