.check-input {
    width: 16px !important;
    height: 16px !important;
}

/* 设置默认的checkbox样式 */
input.check-input[type="checkbox"] {
    -webkit-appearance: none;
    outline: none;
    border-radius: 4px;
    border: 1px solid #3F414B;
    background: transparent;
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 5px;
}

input.check-input[type="checkbox"]:focus{
    border-color: #3F414B !important;
    box-shadow: unset;
}

/* 设置选中状态下的checkbox样式 */
input.check-input[type="checkbox"]:checked {
    background-color: var(--primary);
    border-color: transparent;
}

/* 显示对勾 */
input.check-input[type="checkbox"]:checked::after {
    content: "";
    display: block;
    margin-top: 1px;
    margin-left: 1px;
    width: 12px;
    height: 12px;
    position: absolute;
    background: var(--primary);
    background-image: url('/images/common/checkbox_j.svg?v=1');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
}

/* 不能选中样式 */
input.not-checked[type="checkbox"]:checked {
    /* background-color: unset !important; */
    background: var(--primary) !important;
    border: 1px solid var(--primary) !important;
}


input.not-checked[type="checkbox"] {
    border: 1px solid #F0F0F0 !important;
    background: #F0F0F0 !important;
}

/* checkbox */