﻿form, select, input, textarea {
    box-sizing: border-box;
}

/*----form----*/
.admin-form {
    padding:1rem;
    overflow:hidden;
}
/*----button----*/
.admin-form-input-lg {
    width: 100%;
    height: 40px;
    padding: 0px 0px;
    text-indent:0.5rem;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
}
.admin-form-btn-default-sml {
    /*display: inline-block;*/
    line-height: 1.25rem;
    white-space: nowrap;
    cursor: pointer;
    background: #fff;
    border: 0px solid #dcdfe6;
    color: #606266;
    -webkit-appearance: none;
    text-align: center;
    outline: none;
    margin: 0;
    transition: .1s;
    font-weight: 500;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    padding: 2px 12px;
    font-size: 13px;
    border-radius: 2px;
    color: #fff;
    background-color: #0d7abd;
}
.admin-form-btn-default-lg {
    /*display: inline-block;*/
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    background: #fff;
    border: 0px solid #dcdfe6;
    color: #606266;
    -webkit-appearance: none;
    text-align: center;
    outline: none;
    margin: 0;
    transition: .1s;
    font-weight: 500;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    padding: 12px 30px;
    font-size: 15px;
    border-radius: 2px;
    color: #fff;
    background-color: #0d7abd;
}
.admin-form-btn-default {
    /*display: inline-block;*/
    height: 34px;
    line-height: 34px;
    padding: 0px 18px;
    white-space: nowrap;
    cursor: pointer;
    border: 0px solid #dcdfe6;
    text-align: center;
    margin: 0;
    font-weight: 500;
    border-radius: 2px;
    color: #fff;
    background-color: #0d7abd;
}
.admin-form-btn-default:hover {
    background-color: #409eff;
}
.admin-form-btn-default-lg:hover {
    background-color: #409eff;
}
/*----input----*/
.admin-form-input {
    display: inline-block;
    width: 100%;
    height: 34px;
    line-height: 34px;
    text-indent: 0.5rem;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-family: Arial;
}
/*------select------*/
.admin-form-select {
    width: 100%;
    height: 33px;
    padding: 0px 0px;
    text-indent: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 2px;
    color: #555;
    font-family: Arial;
}
/*------check------*/
.admin-form-check {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    border: 5px solid #dee2e6;
}

.admin-form-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

    .admin-form-checkbox + label {
        cursor: pointer;
        align-items: center;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        margin-left: 5px;
    }

        .admin-form-checkbox + label::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 20px;
            text-align: center;
            vertical-align: middle;
            line-height: 20px;
            margin-right: 5px;
            flex-shrink: 0;
            flex-grow: 0;
            border: 1px solid #c3c3c3;
            border-radius: 2px;
        }

    .admin-form-checkbox:checked + label::before {
        content: "\2714";
        display: inline-block;
        width: 20px;
        height: 20px;
        text-align: center;
        vertical-align: middle;
        line-height: 20px;
        margin-right: 5px;
        flex-shrink: 0;
        flex-grow: 0;
        border: 1px solid #c3c3c3;
        background-color: #eee;
        border-radius: 2px;
    }

    .admin-form-checkbox:focus + label::before {
        box-shadow: 0 0 0 0.2rem rgba(153, 153, 153, 0.2);
    }

/*------radio------*/
.admin-form-radio {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

    .admin-form-radio + label {
        cursor: pointer;
        align-items: center;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        margin-left: 5px;
    }

        .admin-form-radio + label::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 20px;
            text-align: center;
            vertical-align: middle;
            line-height: 20px;
            margin-right: 5px;
            flex-shrink: 0;
            flex-grow: 0;
            border: 1px solid #c3c3c3;
            border-radius: 11px;
        }

    .admin-form-radio:checked + label::before {
        content: "\2714";
        display: inline-block;
        width: 20px;
        height: 20px;
        text-align: center;
        vertical-align: middle;
        line-height: 20px;
        margin-right: 5px;
        flex-shrink: 0;
        flex-grow: 0;
        border: 1px solid #c3c3c3;
        background-color: #eee;
        border-radius: 11px;
    }
    .admin-form-radio:focus + label::before {
        box-shadow: 0 0 0 0.2rem rgba(153, 153, 153, 0.2);
    }


/*-----file upload----*/
.admin-form-file {
    color: gray;
    width: 100%;
    background-color: #fafafa;
    border-radius: 2px;
}
::file-selector-button {
    padding: 0px 0.75rem;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    color: #777;
    border-radius: .25rem;
    border: 1px solid #c3c3c3;
    background-color: #f4f4f4;
    font-family: inherit;
    cursor: pointer;
}
::-webkit-file-upload-button {
    padding: 0px 0.75rem;
    height: 34px;
    line-height: 34px;
    font-size: 14px;
    color: #777;
    border-radius: .25rem;
    border: 1px solid #c3c3c3;
    background-color: #f4f4f4;
    font-family: inherit;
    cursor: pointer;
}