console
<div>
<span class="checkbox-name">
前端
</span>
<input type="checkbox" name="checkboxName" value="123" id="checkboxName1" hidden/>
<label for="checkboxName1" class="checkbox-beauty">
</label>
</div>
.checkbox-name {
vertical-align: middle;
font-size: 16px
}
.checkbox-beauty {
width: 16px;
height: 16px;
line-height: 16px;
text-align: center;
border: 1px solid #D9D9D9;
display: inline-block;
margin: 0 15px 0 3px;
vertical-align: middle;
}
input[type="checkbox"]:checked + .checkbox-beauty::after {
display: inline-block;
width: 16px;
height: 16px;
content: '✓';
font-size: 16px;
font-weight: normal;
background-color: #4EBD74;
color: #ffffff!important;
}