@charset "UTF-8";

.v-checkbox{
    white-space: nowrap;
    cursor: pointer;
    position: relative
}

.v-checkbox__input {
    white-space: nowrap;
    cursor: pointer;
    display: inline-block;
    position: relative
}

.v-checkbox {
    color: #1f2d3d;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.v-checkbox{
    margin-left: 5px;
    margin-right: 5px;

}

.v-checkbox__input {
    outline: 0;
    line-height: 1;
    vertical-align: middle
}

.v-checkbox__input.is-indeterminate .v-checkbox__inner {
    background-color: #ed4114;
    border-color: #ed4114
}

.v-checkbox__input.is-indeterminate .v-checkbox__inner::before {
    content: '';
    position: absolute;
    display: block;
    border: 1px solid #fff;
    margin-top: -1px;
    left: 3px;
    right: 3px;
    top: 50%
}

.v-checkbox__input.is-indeterminate .v-checkbox__inner::after {
    display: none
}

.v-checkbox__input.is-focus .v-checkbox__inner {
    border-color: #ed4114
}

.v-checkbox__input.is-checked .v-checkbox__inner {
    background-color: #ed4114;
    border-color: #ed4114
}

.v-checkbox__input.is-checked .v-checkbox__inner::after {
    -ms-transform: rotate(45deg) scaleY(1);
    transform: rotate(45deg) scaleY(1)
}

.v-checkbox__input.is-disabled .v-checkbox__inner {
    background-color: #eef1f6;
    border-color: #d1dbe5;
    cursor: not-allowed
}

.v-checkbox__input.is-disabled .v-checkbox__inner::after {
    cursor: not-allowed;
    border-color: #eef1f6
}

.v-checkbox__input.is-disabled .v-checkbox__inner + .v-checkbox__label {
    cursor: not-allowed
}

.v-checkbox__input.is-disabled.is-checked .v-checkbox__inner {
    background-color: #ffd4c9;
    border-color: #ffd4c9
}

.v-checkbox__input.is-disabled.is-checked .v-checkbox__inner::after {
    border-color: #fff
}

.v-checkbox__input.is-disabled.is-indeterminate .v-checkbox__inner {
    background-color: #d1dbe5;
    border-color: #d1dbe5
}

.v-checkbox__input.is-disabled.is-indeterminate .v-checkbox__inner::before {
    border-color: #fff
}

.v-checkbox__input.is-disabled + .v-checkbox__label {
    color: #bbb;
    cursor: not-allowed
}

.v-checkbox__inner {
    display: inline-block;
    position: relative;
    border: 1px solid #bfcbd9;
    border-radius: 4px;
    box-sizing: border-box;
    width: 18px;
    height: 18px;
    background-color: #fff;
    z-index: 1;
    transition: border-color .25s cubic-bezier(.71, -.46, .29, 1.46), background-color .25s cubic-bezier(.71, -.46, .29, 1.46)
}

.v-checkbox__inner:hover {
    border-color: #ed4114
}

.v-checkbox__inner::after {
    box-sizing: content-box;
    content: "";
    border: 2px solid #fff;
    border-left: 0;
    border-top: 0;
    height: 8px;
    left: 5px;
    position: absolute;
    top: 1px;
    /*-ms-transform: rotate(45deg) scaleY(0);*/
    /*transform: rotate(45deg) scaleY(0);*/

    transform:rotate(45deg);
    -ms-transform:rotate(45deg); 	/* IE 9 */
    -moz-transform:rotate(45deg); 	/* Firefox */
    -webkit-transform:rotate(45deg); /* Safari 和 Chrome */
    -o-transform:rotate(45deg);

    width: 4px;
    transition: transform .15s cubic-bezier(.71, -.46, .88, .6) .05s;
    -ms-transform-origin: center;
    transform-origin: center
}

.v-checkbox__original {
    opacity: 0;
    outline: 0;
    position: absolute;
    margin: 0;
    left: -999px
}

.v-checkbox__label {
    font-size: 14px;
    padding-left: 1px
}

.v-checkbox-hr-dotted{
    border:none;
    border-top:1px dotted #999;
    color:#fff;
    background-color:#fff;
    height:1px;
    width:95%;
}