
/*
 * 2. BUTTONS
 */
 .btn {
    font-weight: 400;
    min-width: 82px;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 0.25rem;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.btn:focus, .btn.focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(121, 106, 238, 0);
    box-shadow: 0 0 0 0.2rem rgba(121, 106, 238, 0);
    text-decoration: none;
}

.btn.disabled, .btn:disabled {
    opacity: .65;
}

.btn:not([disabled]):not(.disabled):active, .btn:not([disabled]):not(.disabled).active {
    background-image: none;
}

.btn-primary {
    color: color-yiq(#1890FF);
    background-color: #1890FF;
    border-color: #1890FF;
}

.btn-primary:hover {
    color: color-yiq(#4AA5FF);
    background-color: #4AA5FF;
    border-color: #4AA5FF;
}

.btn-primary:focus, .btn-primary.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(121, 106, 238, 0);
    box-shadow: 0 0 0 0.2rem rgba(121, 106, 238, 0);
}

.btn-primary.disabled, .btn-primary:disabled {
    color: color-yiq(#4AA5FF);
    background-color: #4AA5FF;
    border-color: #4AA5FF;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    /* color: color-yiq(#503ce9); */
    background-color: #4AA5FF;
    color: #fff;
    border-color: #4AA5FF;

}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(121, 106, 238, 0);
    box-shadow: 0 0 0 0.2rem rgba(121, 106, 238, 0);
}

.no-radius{
    border-radius: 0;
}

.btn-secondary {
    color: #595959;
    background-color: #fff;
    border-color: #d9d9d9;
}

.btn-secondary:hover {
    color: #4AA5FF;
    background-color: #ffffff;
    border-color: #4AA5FF;
}

.btn-secondary:focus, .btn-secondary.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.0);
    box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.0);
}

.btn-secondary.disabled, .btn-secondary:disabled {
    color: color-yiq(#868e96);
    background-color: #868e96;
    border-color: #868e96;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #4AA5FF;
    border-color: #4AA5FF;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.0);
    box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.0);
}

.btn-success {
    color: color-yiq(#28a745);
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    color: color-yiq(#218838);
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
    color: color-yiq(#28a745);
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
    color: color-yiq(#1e7e34);
    background-color: #1e7e34;
    border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-info {
    color: color-yiq(#17a2b8);
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:hover {
    color: color-yiq(#138496);
    background-color: #138496;
    border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
    color: color-yiq(#17a2b8);
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
    color: color-yiq(#117a8b);
    background-color: #117a8b;
    border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
    color: color-yiq(#ffc107);
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    color: color-yiq(#e0a800);
    background-color: #e0a800;
    border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
    color: color-yiq(#ffc107);
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
    color: color-yiq(#d39e00);
    background-color: #d39e00;
    border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
    color: color-yiq(#dc3545);
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    color: color-yiq(#c82333);
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
    color: color-yiq(#dc3545);
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
    color: color-yiq(#bd2130);
    background-color: #bd2130;
    border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light {
    color: color-yiq(#f8f9fa);
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:hover {
    color: color-yiq(#e2e6ea);
    background-color: #e2e6ea;
    border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
    color: color-yiq(#f8f9fa);
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
    color: color-yiq(#dae0e5);
    background-color: #dae0e5;
    border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-dark {
    color: color-yiq(#343a40);
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:hover {
    color: color-yiq(#23272b);
    background-color: #23272b;
    border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
    color: color-yiq(#343a40);
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
    color: color-yiq(#1d2124);
    background-color: #1d2124;
    border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-default {
    border-color: #d9d9d9;
    background-color: #fff;
}

.btn-default:hover {
    color: #4AA5FF !important;
    border-color: #4AA5FF;
}

.btn-default:focus, .btn-default.focus {
    -webkit-box-shadow: 0 0 0 0.002rem rgba(206, 212, 218, 0);
    box-shadow: 0 0 0 0.002rem rgba(206, 212, 218, 0);
}

.btn-default.disabled, .btn-default:disabled {
    color: color-yiq(#ced4da);
    background-color: #ced4da;
    border-color: #d9d9d9;
}

.btn-default:not(:disabled):not(.disabled):active, .btn-default:not(:disabled):not(.disabled).active,
.show > .btn-default.dropdown-toggle {
    background-color: #1890FF;
    color: #fff !important;
}

.btn-default:not(:disabled):not(.disabled):active:focus, .btn-default:not(:disabled):not(.disabled).active:focus,
.show > .btn-default.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0);
    box-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0);
}

.btn-outline-primary {
    color: #875FED;
    background-color: transparent;
    background-image: none;
    border-color: #875FED;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #875FED;
    border-color: #875FED;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(121, 106, 238, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(121, 106, 238, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #875FED;
    background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
    color: color-yiq(#875FED);
    background-color: #875FED;
    border-color: #875FED;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(121, 106, 238, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(121, 106, 238, 0.5);
}

.btn-outline-secondary {
    color: #868e96;
    background-color: transparent;
    background-image: none;
    border-color: #868e96;
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #868e96;
    border-color: #868e96;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #868e96;
    background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
    color: color-yiq(#868e96);
    background-color: #868e96;
    border-color: #868e96;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(134, 142, 150, 0.5);
}

.btn-outline-success {
    color: #28a745;
    background-color: transparent;
    background-image: none;
    border-color: #28a745;
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:focus, .btn-outline-success.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
    color: color-yiq(#28a745);
    background-color: #28a745;
    border-color: #28a745;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-outline-info {
    color: #17a2b8;
    background-color: transparent;
    background-image: none;
    border-color: #17a2b8;
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
    color: color-yiq(#17a2b8);
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
    color: #ffc107;
    background-color: transparent;
    background-image: none;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    color: #fff;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
    color: color-yiq(#ffc107);
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
    color: #dc3545;
    background-color: transparent;
    background-image: none;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
    color: color-yiq(#dc3545);
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
    color: #f8f9fa;
    background-color: transparent;
    background-image: none;
    border-color: #f8f9fa;
}

.btn-outline-light:hover {
    color: #fff;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
    color: color-yiq(#f8f9fa);
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
    color: #343a40;
    background-color: transparent;
    background-image: none;
    border-color: #343a40;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
    color: color-yiq(#343a40);
    background-color: #343a40;
    border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

body {
    overflow-x: hidden;
    font-size: 14px;
    font-family: "Microsoft YaHei","Helvetica Neue", "Helvetica", "tahoma","Arial", "PingFang SC","Hiragino Sans GB","STHeiti","WenQuanYi Micro Hei","sans-serif";
}
*{
    margin: 0;
    padding: 0;
}
ul,ol,li{
    list-style: none;
    margin: 0;
    padding: 0;
}
a,
i,
span {
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover, a:focus,
i:hover,
i:focus,
span:hover,
span:focus {
    text-decoration: none;
}
/* 去除a标签的默认样式 */
/*包含以下四种的链接*/
a {
    text-decoration: none;
}
/*正常的未被访问过的链接*/
a:link {
    text-decoration: none;
}
/*已经访问过的链接*/
a:visited {
    text-decoration: none;
}
/*鼠标划过(停留)的链接*/
a:hover {
    text-decoration: none !important;
    color: #4AA5FF;
}
/* 正在点击的链接*/
a:active {
    text-decoration: none;
}

section {
    padding: 0px;
}

canvas {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

section .container-fluid {
    padding: 0 16px;
    margin: 16px 0px;
}
section .container {
    padding: 0;
    /* margin-top: 32px;
    margin-bottom: 32px; */
}
.display-flex {
    display: flex;
    flex-wrap: wrap;
}
.display-block{
    display: block !important;
}
.space-between {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 575px) {
    .container-fluid {
        padding: 0 15px;
    }
    .form-inline .form-group {
        margin-bottom: 16px;
    }
}

.h38{
    height: 38px;
    line-height: 38px;
}
.h32{
    height: 32px;
    line-height: 32px;
}
.h220 {
    height: 220px;
}
.h260 {
    height: 260px;
}
.h280 {
    height: 280px;
}
.height-group-15{
    height: 150px;
}
.wauto {
    width: auto !important;
}
.w16 {
    width: 16px !important;
}
.w32 {
    width: 32px !important;
}
.w42 {
    width: 42px !important;
}
.w60 {
    width: 60px !important;
}
.w82 {
    width: 82px !important;;
}
.w120 {
    width: 120px !important;
}
.w168 {
    width: 168px !important;
}
.w270 {
    width: 270px !important;
}
.w320 {
    width: 320px !important;
}
.w334 {
    width: 334px !important;
}
.w335 {
    width: 335px !important;
}
.w360 {
    width: 360px !important;
}
.w500{
    width: 500px !important;
}
.w570{
    width: 570px !important;
}
.w600{
    width: 600px !important;
}
.w230{
    width: 230px !important;
}
.w210{
    width: 210px !important;
}
.w280{
    width: 280px !important;
}
.w336{
    width: 336px !important;
}
.w440{
    width: 440px !important;
}
.w460{
    width: 460px !important;
}
.w470{
    width: 470px !important;
}
.w740{
    width: 740px !important;
}
.w-100 {
    width: 100%;
}
.mt8 {
    margin-top: 8px !important;
}
.mt16 {
    margin-top: 16px !important;
}
.mt24 {
    margin-top: 24px !important;
}
.mt32 {
    margin-top: 32px !important;
}
.mt40 {
    margin-top: 40px !important;
}
.mt56 {
    margin-top: 56px !important;
}
.mt0 {
    margin-top: 0px !important;
}
.mb0 {
    margin-bottom: 0px !important;
}
.mb8 {
    margin-bottom: 8px !important;
}
.mb16 {
    margin-bottom: 16px !important;
}
.mb24 {
    margin-bottom: 24px !important;
}
.mb32 {
    margin-bottom: 32px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.mb56 {
    margin-bottom: 56px !important;
}
.mb64 {
    margin-bottom: 64px !important;
}
.ml8 {
    margin-left: 8px !important;
}
.ml16 {
    margin-left: 16px !important;
}
.ml24 {
    margin-left: 24px !important;
}
.ml32 {
    margin-left: 32px !important;
}
.ml40 {
    margin-left: 40px !important;
}
.ml42 {
    margin-left: 42px !important;
}
.ml140 {
    margin-left: 140px !important;
}
.mr8 {
    margin-right: 8px !important;
}
.mr16 {
    margin-right: 16px !important;
}
.mr24 {
    margin-right: 24px !important;
}
.mr32 {
    margin-right: 32px !important;
}
.pb16 {
    padding-bottom: 16px !important;
}
.pt0 {
    padding-top: 0px !important;
}
.pt8 {
    padding-top: 8px !important;
}
.pb8 {
    padding-bottom: 8px !important;
}
.pb0 {
    padding-bottom: 0px !important;
}
.pr48 {
    padding-right: 48px !important;
}
.pl48 {
    padding-left: 48px !important;
}
.position-r {
    position: relative;
}
.no-before::before {
    display: none !important;
}

/*
*  头部底部
*/
.header{
    width: 100%;
    min-height: 60px;
    padding-top: 10px;
    /* box-shadow: 0px 2px 6px 0px rgba(102, 102, 102, 0.28); */
    background: linear-gradient(90deg, rgba(0,176,255,1) 0%,rgba(50,145,248,1) 48%,rgba(0,137,205,1) 99%);
}
.head-flex{
    align-items: center;
    min-height: 60px;
    justify-content: space-between;
}
.header .logo img{
    width: 260px;
    height: 38px;
}
.header .header-nav{
    margin-top: 10px;
    background: linear-gradient(180deg, rgba(0,123,211,1) 0%,rgba(3,67,115,1) 100%);
}
.header .navbar{
    padding: 0;
    width: 100%;
}
.header .navbar .nav a{
    display: block;
    color: #fff;
    font-size: 16px;
    width: 120px;
    height: 56px;
    line-height: 56px;
    text-align: center;
    transition: all 0.1s;
}
.header .navbar .nav a:hover{
    font-weight: bold;
}
.header .navbar .nav a.active{
    font-weight: bold;
    font-size: 20px;
}
.header .right-ercode{
    display: flex;
    align-items: center;
}
.header .right-ercode .back-btn{
    padding: 6px 20px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    border: 1px solid #007BD3;
    cursor: pointer;
    border-radius: 20px;
    background-color: #007BD3;
}
.header .right-ercode .ercode-group{
    position: relative;
}
.ercode-group .ercode-btn{
    padding: 6px 20px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    border: 1px solid #007BD3;
    cursor: pointer;
    border-radius: 20px;
    background-color: #007BD3;
}
.ercode-group .ercode-img{
    display: none;
    position: absolute;
    left: -34px;
    top: 40px;
    z-index: 999;
    width: 186px;
    text-align: center;
    background-color: #ffffff;
    padding: 16px;
}
.ercode-group .ercode-img img{
    width: 118px;
    height: 118px;
    margin: 8px 0;
}
.ercode-group .ercode-img p{
    color: #409EFF;
    margin: 0;
}
.header .right-entrance{
    margin-left: auto;
    display: flex;
    align-items: center;
}
.header .right-entrance a{
    font-size: 16px;
    color: #fff;
}
.header .right-entrance a:first-child{
    margin-right: 20px;
}
.header .right-entrance a:hover{
    font-weight: bold;
}
.right-entrance .entrance-line{
    width: 1px;
    height: 12px;
    margin: 0 4px;
    background-color: #bbbbbb;
}
/*.user-entrance .dropdown-menu {*/
/*    top: 0 !important;*/
/*}*/

/*头部导航自适应*/
@media (min-width: 768px){
    .header .navbar a {
        font-size: 13px;
    }
    .header .navbar .nav li a {
        width: 60px;
        font-size: 13px;
        overflow: hidden;
        white-space: nowrap;
    }
    .header .logo img {
        width: 160px;
        height: auto;
    }

    .header .navbar .nav .dropdown-menu a{
        color: #101010;
    }
}
@media (min-width: 992px){
    .header .navbar a {
        font-size: 14px;
    }
    .header .navbar .nav li a {
        width: 80px;
        font-size: 14px;
    }
    .header .logo img {
        width: 200px;
        height: auto;
    }

    .header .navbar .nav .dropdown-menu a{
        color: #101010;
    }
}
@media (min-width: 1200px){
    .header .navbar a {
        font-size: 15px;
    }
    .header .navbar .nav li a {
        width: 90px;
        font-size: 15px;
    }
    .header .logo img {
        width: 240px;
        height: 34px;
    }
    .header .right-entrance a {
        font-size: 15px;
    }

    .header .navbar .nav .dropdown-menu a{
        color: #101010;
    }
}
@media (min-width: 1500px){
    .header .navbar .nav li a {
        width: 100px;
    }

    .header .navbar .nav .dropdown-menu a{
        color: #101010;
    }
}

/*登录下拉*/
.user-entrance .dropdown{
    margin-left: auto;
}
.user-entrance .dropdown-toggle{
    display: flex;
    align-items: center;
}
.user-entrance .dropdown-toggle img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
}
.user-entrance .dropdown-toggle::after{
    border: none;
}
.user-entrance .dropdown-toggle i{
    font-size: 20px;
    cursor: pointer;
}
.user-entrance .dropdown-menu{
    border-radius: 0;
    padding: 0;
    font-size: 14px;
    min-width: 140px;
    transform: translate3d(-28px, 53px, 0px) !important;
    top: -6px;
}
.user-entrance .dropdown-menu li{
    border-bottom: 1px solid #f8f8f8;
}
.user-entrance .dropdown-menu li a{
    color: #101010;
    padding: 10px 24px;
}
.user-entrance .dropdown-menu li a i{
    font-size: 16px;
    margin-right: 8px;
}
.header .navbar .nav .dropdown-menu{
    border-radius: 0;
    padding: 0;
    font-size: 14px;
    min-width: 140px;
    left: 15px;
}
.header .navbar .nav .dropdown-toggle::after{
    border: none;
    display: none;
}
/*底部版权*/
.footer .foot{
    background-color: #409EFF;
    padding: 40px 0;
}
.foot-flex{
    justify-content: space-between;
}
.foot-list{
    color: #ffffff;
    max-width: 224px;
}
.foot-list .foot-title{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}
.foot-content .foot-item{
    font-size: 14px;
    margin-bottom: 8px;
    max-width: 224px;
}
.foot-content .foot-item a{
    color: #ffffff;
}
.foot-content .foot-ercode img{
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
}

.copyright .copyright-list{
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    color: #999999;
    text-align: center;
}
/*分页*/
.pagination{
    justify-content: center;
    padding: 40px;
}
.pagination li.disabled a{
    color: #cccccc;
    cursor: not-allowed;
}
.pagination li.disabled a:hover{
    color: #cccccc;
    cursor: not-allowed;
    background-color: #ffffff;
}
.pagination li{
    margin-right: 8px;
}
.pagination li a span{
    font-size: 12px;
    transition: all 0s;
}
.pagination li a{
    color: #101010;
    background-color: #ffffff;
    border: 1px solid #f8f8f8;
    border-radius: 4px;
    width: 30px;
    padding: 3px 0;
    text-align: center;
}
.pagination li a:hover{
    color: #ffffff;
    background-color: #409EFF;
}
.pagination li.active a{
    color: #ffffff;
    background-color: #409EFF;
}

/*
*  CARD
*/
.card {
    background-color: #fff;
    border: 0 solid #eee;
    border-radius: 0;
    font-size: 14px;
}

.card > .list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.card-body {
    padding: 16px;
}

.card-title {
    margin-bottom: 1rem;
}

.card-subtitle {
    margin-top: -0.5rem;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 16px;
    padding-bottom: 0px;
    background-color: #fff;
    border-bottom: none;
}

.card-header:first-child {
    border-radius: 0 0 0 0;
}

.card-header-transparent {
    background-color: rgba(0, 0, 0, 0.3);
    border-bottom: none;
}

.card-footer {
    padding: 1rem 1.25rem;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.card-footer:last-child {
    border-radius: 0 0 0 0;
}

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -1rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    padding: 1.25rem;
}

.card-img-overlay-opacity {
    background: rgba(0, 0, 0, 0.2);
}

.card-img {
    border-radius: 0;
}

.card-img-top {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.card-img-bottom {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.card-deck .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-deck {
        margin-right: -15px;
        margin-left: -15px;
    }
    .card-deck .card {
        margin-right: 15px;
        margin-left: 15px;
    }
}
/*
* ==========================================================
*     字体图标
* ==========================================================
*/
.iconfont{
    font-size: 14px;
}

/*
* ==========================================================
*     FORMS
* ==========================================================
*/
.form-control {
    height: 40px;
    line-height: 40px;
    border: 1px solid #D9D9D9;
    padding: 0 12px;
    font-size: 14px !important;
}
.form-control[value]{
    font-size: 14px !important;
    color: #595959 !important;
}

.form-control::-moz-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #bfbfbf;
}

.form-control::-webkit-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #bfbfbf;
}

.form-control:-ms-input-placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #bfbfbf;
}

/*禁止输入框样式*/
.form-control:disabled{
    cursor: not-allowed;
    background-color: #f8f8f8;
    color: #bfbfbf;
}
input:disabled, input[disabled]{
    cursor: not-allowed;
    background-color: #f8f8f8;
	color: #bfbfbf;
	opacity: 1;
	-webkit-text-fill-color: #bfbfbf;
    -webkit-opacity:1;
}

.form-control:focus {
    color: #595959;
    background-color: #fff;
    border-color: #1890FF;
    outline: none;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(121, 106, 238, 0);
    box-shadow: 0 0 0 0.2rem rgba(121, 106, 238, 0);
}

.form-control-sm {
    height: calc(1.8125rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.form-control-lg {
    height: calc(2.875rem + 2px);
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
}

textarea.form-control {
    height: auto;
    line-height: 26px;
    padding: 12px;
}

select.form-control[size], select.form-control[multiple] {
    height: auto;
}

select.form-control option {
    color: #595959;
}

.input-group .dropdown-menu {
    padding: 15px;
    color: #595959;
    border-radius: 0;
}

.input-group .dropdown-menu a {
    padding: 5px 0;
    color: inherit;
    text-decoration: none;
}

.input-group .dropdown-menu a:hover {
    color: #796AEE;
    background: none;
}

.input-group-text {
    color: #868e96;
    background: #f8f9fa;
    border-color: #dee2e6;
    border-radius: 0;
}

.input-group-text .checkbox-template, .input-group-text .radio-template {
    -webkit-transform: none;
    transform: none;
}

.form-control-label {
    font-size: 14px;
    color: #262626;
}

button, input[type='submit'] {
    cursor: pointer;
    font-family: inherit;
    font-weight: 400 !important;
}

.input-group .dropdown-toggle {
    background: #f5f5f5;
    color: #777;
}

.checkbox-template, .radio-template {
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    position: relative;
}

.checkbox-template + label, .radio-template + label {
    margin-left: 10px;
}

.checkbox-template::before, .radio-template::before {
    margin-right: 10px;
    content: '';
    display: inline-block;
    -webkit-transform: translate(-2px, -10px);
    transform: translate(-2px, -10px);
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    background: #dae2e7;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.checkbox-template::after, .radio-template::after {
    content: '\f00c';
    width: 12px;
    height: 12px;
    line-height: 12px;
    text-align: center;
    display: block;
    font-family: 'FontAwesome';
    position: absolute;
    top: -1px;
    left: 1px;
    font-size: 8px;
    opacity: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    color: #fff;
}

.checkbox-template:checked::before, .radio-template:checked::before {
    background: #875FED;
}

.checkbox-template:checked::after, .radio-template:checked::after {
    opacity: 1;
}

.radio-template::before {
    border-radius: 50%;
    -webkit-transform: translate(-3px, -3px);
    transform: translate(-3px, -3px);
}

.radio-template::after {
    width: 6px;
    height: 6px;
    line-height: 6px;
    text-align: center;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    content: '';
}

.radio-template:checked::after {
    background: #fff;
}

input.input-material {
    width: 100%;
    border: none;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

input.input-material.is-invalid {
    border-color: #dc3545 !important;
}

input.input-material:focus {
    border-color: #796AEE;
}

input.input-material ~ label {
    color: #aaa;
    position: absolute;
    top: 14px;
    left: 0;
    cursor: text;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-weight: 300;
}

input.input-material ~ label.active {
    font-size: 0.8rem;
    top: -10px;
    color: #796AEE;
}

input.input-material.is-invalid ~ label {
    color: #dc3545;
}

.form-group-material {
    position: relative;
    margin-bottom: 30px;
}

.modal-content {
    border-radius: 0;
    font-size: 14px;
}

.i-checks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.must::before{
    content: '*';
    color: #FC6D65;
}
/* 未选中状态 */
input[type="radio"] + label::before {
    content: "\a0"; /*不换行空格*/
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #3291F8;
    line-height: 1;
    margin-right: 3px;
}
/* 选中样式 */
input[type="radio"]:checked + label::before {
    background-color: #3291F8;
    background-clip: content-box;
    padding: 3px;

}
/* 隐藏原始radio */
input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}
.result-radio {
    user-select: none;
}
.tick-radio input[type="radio"] + label::before {
    content: "\a0"; /*不换行空格*/
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #3291F8;
    line-height: 1;
    margin-right: 3px; 
    vertical-align: baseline;
}
.tick-radio input[type="radio"]:checked + label::before {
    content: "\f00c";
    padding: 0;
    background-clip: border-box;
    background-color: #3291F8;
    color: #fff;
    vertical-align: baseline;
}

/* 下拉框样式 star. */
.option-box{
    display: none;
    position: absolute;
    top: 36px;
    max-height: 312px;
    width: 100%;
    background:rgba(255,255,255,1);
    box-shadow:0px 0px 8px 0px rgba(89,89,89,0.14);
    border-radius:4px;
    overflow: scroll;
    z-index: 5;
}
.option-box::-webkit-scrollbar {/*滚动条整体样式*/
    width: 3px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 0;
}
.option-box::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 2px #D9D9D9;
    background: #D9D9D9;
}
.option-box::-webkit-scrollbar-track {/*滚动条里面轨道*/
    -webkit-box-shadow: none;
    border-radius: 0px;
    /* background: #EDEDED; */
}
.option-box li{
    padding: 9px 12px;
    color: #595959;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.option-box li:hover{
    background-color: #4AA5FF;
    color: #fff;
    border-radius: 4px;
}
.selector{
    position: relative;
}
.selector-input{
    background-color: #ffffff !important;
}
.selector-input-box{
    position: relative;
}
.more-icon{
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    /* transform: translateY(-50%); */
    width: 9px;
    height: 9px;
    font-size: 9px !important;
    color: #bfbfbf;
    display: flex;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
}
/* 下拉框样式 end. */

/*当前位置*/
.page-name {
    padding: 8px;
}
.page-name .page-name-title{
    color: #999999;
}
.page-name .page-nav a{
    color: #999999;
}
.page-nav li{
    display: inline;
}
.page-nav a:hover{
    color: #409EFF;
}
.page-nav li::before{
    content: ">";
    color: #999999;
}
.page-nav li:first-child::before{
    content: "";
}

/*详情页当前位置*/
.details-header{
    align-items: center;
    border-bottom: 4px solid #409EFF;
    padding-bottom: 8px;
}
.details-nav a{
    color: #101010;
    font-size: 16px;
}
.details-nav li{
    display: inline;
}
.details-nav a:hover{
    color: #409EFF;
}
.details-nav li::before{
    content: ">";
    color: #101010;
}
.details-nav li:first-child::before{
    content: "";
}
.details-nav-icon i{
    font-size: 24px;
    margin-right: 16px;
}

.details-nav-icon>img{
    height: 24px;
    margin-right: 16px;
}

/*搜索暂无结果*/
.no-result{
    padding: 64px 0;
    text-align: center;
    width: 100%;
}
.no-result img{
    margin-bottom: 16px;
}

/*左侧导航*/
.left-nav{
    width: 18%;
}
.left-nav li{
    width: 200px;
    padding: 16px 0;
    border-bottom: 1px solid #E3E3E3;
}
.left-nav li a{
    color: #101010;
    padding: 0 8px;
    border-left: 3px solid #ffffff;
}
.left-nav .active a{
    border-color: #409EFF;
}

/*表单开始*/
.page-title{
    height: 60px;
    line-height: 60px;
    background-color: #409EFF;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
}
.card-body form{
    margin: 0 auto;
    margin-top: 24px;
}

.operating-button {
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: #fff;
}
.operating-button button {
    width: 460px;
    height: 44px;
    background-color: #409EFF;
}
/*隐藏显示*/
.hide{
    display: none;
}
.show{
    display: block;
}
/*已上传文件字体样式*/
.form-group .upload_tips{
    margin-bottom: 0;
    line-height: 32px;
    /*white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    max-width: 360px;*/
}
.form-group .upload_del{
    color: #409EFF;
    margin-left: 40px;
    cursor: pointer;
}
/* 修改layer弹层按钮样式 */
.layui-layer .layui-layer-title{
    font-size: 16px;
    border-color: #ffffff;
    background-color: #ffffff;
}
.layui-layer .layui-layer-content .small-title{
    font-size: 12px;
    color: #999999;
}
.layui-layer-btn .layui-layer-btn0{
    min-width: 76px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background-color: #1890FF !important;
    border-color: #1890FF !important;
    color: #fff !important;
    border-radius: 4px;
    font-size: 14px;
}
.layui-layer-btn .layui-layer-btn1{
    min-width: 76px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background-color: #fff;
    border-radius: 4px;
    font-size: 14px;
}
.layui-layer-btn .layui-layer-btn1:hover{
    border-color: #1890FF;
}
.layui-layer-prompt .layui-layer-input{
    width: 100% !important;
    height: 32px !important;
    line-height: 32px !important;
    box-shadow: none !important;
    outline: 0;
    border-radius: 4px;
}

/*暂无数据*/
.null-img{
    padding: 64px 0;
    text-align: center;
    width: 100%;
}

/*error404页面*/
.error-group{
    margin: 0 auto;
    text-align: center;
    margin-top: 134px;
}

/*input清除自动填入背景色样式*/
input:-webkit-autofill { 
    box-shadow: 0 0 0px 1000px white inset !important;
}

.upload_file_input{
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
   /* width: 100px;
    height: 31px;*/
    width: 100%;
    height: 100%;
    z-index: 999;
    overflow: hidden;
    cursor:pointer;
    font-size: 0;
}
.upload_father{
    position: relative;
    display: inline-block;
}

/*用户协议*/
.agreement-modal .modal-body{
    height: 600px;
    overflow-y: scroll;
}
.agreement-content{
    font-size: 14px;
    color: #666;
    line-height: 26px;
}

/* checkbox样式 */
.fa-checkbox {
    position: absolute;
    clip: rect(0,0,0,0);
}
.fa-checkbox+label {
    user-select: none;
    vertical-align: middle;
}
.fa-checkbox+label:hover::before {
    border-color: #3291F8;
}
.fa-checkbox+label::before {
    content: "\a0";
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    border: 1px solid #C1C2C5;
    vertical-align: middle;
    margin-right: 6px;
}
.fa-checkbox:checked+label::before {
    content: "\f00c";
    color: #3291F8;
    border-color: #3291F8;
}
.fa-checkbox:disabled+label::before {
    background-color: #eee;
}
.fa-checkbox:disabled+label:hover::before {
    border-color: #C1C2C5;
}

/*金额单位*/
.capital-group{
    display: flex;
    flex-wrap: nowrap;
}
.capital-group input.form-control{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.capital-group .capital-unit{
    width: 50px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #8d8d8d;
    background-color: #f8f8f8;
    border: 1px solid #D9D9D9;
    border-left: 0;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
.left-auto{
    margin-left: auto;
}

/*报名发送验证码*/
.captcha-group{
    display: flex;
    flex-wrap: nowrap;
}
.captcha-group input.form-control{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.captcha-group .captcha-btn {
    width: 140px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #8d8d8d;
    background-color: #f8f8f8;
    border: 1px solid #D9D9D9;
    border-left: 0;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    cursor: pointer;
}

.dropdown .dropdown-menu-default {
    padding: 0;
    font-size: 13px;
    min-width: 140px;
    box-shadow: 0 1px 4px 0 #dbdcdc;
    border-radius: 4px;
    transform: translate(-21%)!important;
}
.dropdown-menu-default>li>.dropdown-link-a {
    width: 100% !important;
    text-align: center;
    padding: 0!important;
    margin: 0!important;
    font-size: 14px;
    height: 36px;
    line-height: 36px;
    border-bottom: 1px solid #efefef;
}
@media (min-width: 1500px){
    .container {
        max-width: 1340px;
    }
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff !important;
}