/*
.end button{
background-color: #eee;
color: #ccc;
}
.end input[type=checkbox]{
cursor: pointer;
position: relative;
}
.end input[type=checkbox]::after{
position: absolute;
top: 0;
background-color: #eee;
color: #000;
width: 100%;
height: 100%;
display: inline-block;
visibility: visible;
text-align: center;
content: ' ';
border: 1px solid #ccc;
line-height: 100%;
font-size: 12px;
color: #ccc;
}
.end input[type=checkbox]:checked::after{
content: "✓";
font-weight: bold;
} */
网友评论