/* b-checkbox普通样式 */
.n-checkbox {
    user-select: none;
    color: #606266;
}

.n-checkbox input:checked {
    border: 5px solid #52bede;
}

.n-checkbox input:checked + span {
    color: #52bede;
}

.n-checkbox input {
    /*-webkit-appearance: none;*/
    /*-moz-appearance: none;*/
    /*appearance: none;*/
    /*border-radius: 50%;*/
    width: 16px;
    height: 16px;
    border: 1px solid #dcdfe6;
    transition: 0.2s all linear;
    outline: none;
    margin-right: 5px;
    position: relative;
    top: 3px;
}

.n-checkbox:hover, .n-checkbox input:hover {
    cursor: pointer;
}

.n-checkbox .checkbox-text {
    color: #606266;
}

.n-checkbox.n-checkbox-disabled {
    cursor: not-allowed;
}

.n-checkbox .checkbox-text:hover {
    cursor: pointer;
}

/* 多项选择器带边框 */
.n-checkbox-border {
    padding: 10px;
    border: 1px solid #52bede;
    border-radius: 4px;
}
