#contentid {
    display: none;
    position: absolute; /*这里一定要设置*/
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    box-shadow: darkgrey;
    width: 100%;
    height: 400px;
    z-index: 999999; /*这里是该元素与显示屏的距离，据说越大越好，因为没有它也是可以的*/
    -webkit-transition: .5s ease-in-out; /* css的transition允许css的属性值在一定的时间内从一个状态平滑的过渡到另一个状态 */
    -moz-transition: .5s ease-in-out; /*这里为了兼容其他浏览器*/
    -o-transition: .5s ease-in-out;
}

/*顶部 导航栏*/
.navbar-top {
    background-color: #fff;
    box-shadow: 0 .1rem .1rem rgba(0, 0, 0, .05) !important;
}

.navbar-top .navbar-brand a {
    color: #0E306B;
    text-decoration: none;
}

.navbar-top .navbar-brand a:hover {
    color: #0E306B;
}

.navbar-top .nav-item a {
    color: grey;
}

.navbar-top .nav-item a:hover {
    color: #0E306B;
}

.navbar-top .container-fluid .collapse .navbar-nav .nav-item .active {
    color: #0E306B;
}

/*顶部 副导航栏*/
.tab a {
    color: grey;
    text-decoration: none;
}

.tab .active {
    color: #0E306B;
    border-bottom: 2px #0E306B solid;
}

.tab a:hover {
    color: #0E306B;
    border-bottom: 2px #0E306B solid;
}

body {
    background-color: #f6f6f6 !important;
}

body .card {
    border: none;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

body .card a {
    text-decoration: none;
    color: black;
}

body .card .card-header {
    background-color: white;
}

body .card .card-footer {
    background-color: white;
}

body .list-group {
    border: none;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

body .table {
}


.pagelist a {
    border: 1px solid #e2e2e2;
    background-color: #fff;
    color: #555;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    outline: 0;
    -webkit-appearance: none;
    -webkit-transition: all .3s;
    box-sizing: border-box;
    vertical-align: middle;
    font-style: inherit;
    font-weight: inherit;
}

.pagelist a + a {
    margin-left: 5px
}

.pagelist a.active, .pagelist a:hover {
    background-color: #f0f0f0;
    color: #778087;
    border: 1px solid #e2e2e2;
    text-decoration: none
}


/*PC端 大于992px*/
@media (min-width: 992px) {
    .pc-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }
}

/*mobile端 小于992px*/
@media (max-width: 992px) {
    .pc-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }
}

/*底部 导航栏*/
.footer {
    margin-top: 120px;
    margin-bottom: 30px;
    text-align: center;
}

.nav-buttom {
    position: fixed;
    left: 0px;
    bottom: 0px;
    z-index: 1000;
    width: 100%;
    height: 70px;
    background-color: #fff;
    border-top: 1px solid #e5ebe4;
    padding-top: 8px;
    color: grey;
}

.nav-buttom .nav-block {
    color: grey;
    display: inline-block;
    width: 19%;
    text-align: center;
    background-color: transparent;
}

.nav-buttom .nav-block:hover {
    text-underline: none;

}

.nav-buttom > .row > .col > .active {
    color: #0E306B;
}