﻿body {
    font-size: 14px;
    background-color: #f9f9f9;
}

main {
    min-width: 1200px !important;
    margin: auto;
    min-height: calc(100vh - 100px);
}

.navbar-light .navbar-nav .active > .nav-link {
    color: #fff;
}

.navbar-light .navbar-nav .nav-link {
    color: #999;
}

.navbar-brands a {
    color: #fff;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
}

a:hover {
    text-decoration: none;
}

.card-head {
    height: 60px;
    line-height: 60px;
}

.nav-user a {
    color: #999;
}

    .nav-user a:hover {
        color: #fff;
    }

.innerbox {
    overflow-y: auto;
    background-color: #f8f8f8;
    height: 200px;
    padding: 10px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 16px;
    background-color: #F5F5F5;
    border-radius: 4px;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #e1e1e1;
}

.submit_loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    text-align: center;
    opacity: 0.3;
    z-index: 99999;
}

.loading_show {
    margin-top: 15%;
}

.loading_context {
    color: #fff;
}

.list-group a:hover {
    color: #777;
}

.form-control:focus {
    border-color: #fc7502;
    box-shadow: 0 !important;
}

.btn-login {
    color: #fff;
    background-color: #fc7502;
    border-color: #fc7502;
}

    .btn-login:hover {
        color: #fff;
        background-color: #e71f29;
        border-color: #e71f29;
    }

/* 返回顶部 开始 */
#back-top {
    position: fixed; /*相对于浏览器窗口进行绝对定位*/
    z-index: 99;
    background-color: #777;
    color: #eee;
    font-size: 40px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    bottom: 20px;
    right: 40px;
    overflow: hidden;
    width: 46px;
    height: 46px;
    border: none;
    opacity: .8;
}

    #back-top i {
        font-size: 1.5rem;
        position: relative;
        top: -5px;
        color: #fff;
    }

    #back-top a {
        outline: none; /*突出元素*/
    }
/* 返回顶部 结束 */