﻿radioButton {
    cursor: pointer;
    display: flex;
    align-items: center; /*垂直居中*/
    /*justify-content: center;水平居中*/
}

    radioButton[checked="checked"]:before, radioButton[checked="true"]:before {
        content: "✔";
        margin-right: 10px;
    }