@font-face {
    font-family: "belisa_plumilla";
    src: url(../fonts/belisa_plumilla.woff2) format("woff2"),
    url(../fonts/belisa_plumilla.woff) format("woff"),
    url(../fonts/belisa_plumilla.ttf) format("truetype"),
    url(../fonts/belisa_plumilla.eot) format("embedded-opentype"),
    url(../fonts/belisa_plumilla.svg) format("svg");
    font-weight: normal;
    font-size: 30px;
    font-style: normal;
}

body, h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p, .navbar, .alert, a, td, .tooltip-inner{
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: "Microsoft YaHei", Arial,Helvetica,sans-serif,"宋体";
    color: white;
}

/*字体大小设置 不设置会继承于浏览器默认字体大小*/
body {
    font-size: 14px;
}

h1, .h1 {
    font-size: 59px;
}

h2, .h2 {
    font-size: 43px;
}

h3, .h3 {
    font-size: 35px;
    margin: 20px 0 10px;
}

h4, .h4 {
    font-size: 28px;
    line-height: 30px;
}

h5, .h5 {
    font-size: 25px;
    margin-bottom: 15px;
}

h6, .h6 {
    font-size: 18px;
    font-weight: 600;
}

p{
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: .7rem;
}

a{
    font-size: 15px;
}

body{
    background: black;
}

a{
    transition: 0.3s;
    color: #C6D4DF;
}

a:hover{
    color: white;
}

#topnav{
    background: #171a21;
}

@media (min-width: 960px) {
    #topnav{
        padding: 15px 0;
    }
    #topnav .logo{
        margin-bottom: 10px;
    }
}

#topnav > div{
    /*水平居中*/
    margin: 0 auto;
    width: 960px;
}

/*鼠标移上去的时候显示下拉菜单*/
#topnavlist div.dropdown:hover div.dropdown-menu{
    display: block;
}

#topnavlist div.dropdown-menu{
    background: #000;
    padding: 0.3em 0.5em;
    top: 99%;
    min-width: 7em;
    box-shadow:2px 2px 1px black;
}

#topnavlist div.dropdown-menu .dropdown-item{
    margin-top: 0.3em;
    padding: 0.2em 0.2em;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    color: #b8b6b4;
}

#topnavlist div.dropdown-menu .dropdown-item:hover{
    background: royalblue;
}

#topnavlist div.dropdown-menu .dropdown-item:focus{
    background: royalblue;
}

@media (max-width: 960px){
    #topnavlist{
        display: none;
    }
    #topnav .logo img{
        max-width: 246px;
        max-height: 61px;
    }
    #topnav{
        position: fixed;
        height: 61px;
        z-index: 8;
    }
    #sidenav{
        margin-top: 61px;
        padding-left: 0;
        box-shadow: 0 0 7px 0 rgba( 0, 0, 0, 0.75 );
        position: fixed;
        width: 75%;
        max-width: 360px;
        background: linear-gradient(to right, #3f4047 , black, black);
        overflow-y: auto;
        left: 0;
        transition: left 0.2s;
        z-index: 10;
    }
    #sidenav ul{
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }
    #sidenav ul li{
        list-style: none;
        padding: 4px;
    }
    #sidenav ul li a.dropdown-item:hover{
        background: #23272b;
    }
    #sidenav ul li a.dropdown-item:focus{
        background: #1b1e21;
    }
    #sidenav>div{
        border-top: 1px solid #2f3138;
        border-bottom: 1px solid #000000;
        padding: 0.5em 0;
    }
    #sidenav ul{
        padding-left: 0;
    }
    #sidenav.sidenav-hide{
        left:-76%;
    }
}

@media (min-width: 960px) {
    .visible-max-lg{
        display: none;
    }
    #topnavlist{
        display: inline-block;
    }
    .navbar-toggler-icon {
        display: none;
    }
    #sidenav{
        display: none;
    }
}

.navbar-toggler-icon {
    background: url(../img/nav-icon.png);
    background-size: cover;
    height: 2em;
    width: 2em;
    color: white;
    opacity: .8;
    margin-left: 1em
}

/*无法被拖选选中*/
.no-select{
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

/*饥荒相关*/
.dst-dialog-bg{
    z-index: 666;
}

.dst-dialog-front{
    z-index: 667;
}

.dst-list-tabs-tab{
    z-index: 670;
    background: url(/static/img/dstui/list_tabs_normal_normal.png) center no-repeat;
    background-size: 100% 100%;
    text-align: center;
}

.dst-list-tabs-tab:hover{
    background-image: url(/static/img/dstui/list_tabs_normal_hover.png);
}

.dst-list-tabs-tab.dst-list-tabs-tab-select{
    background-image: url(/static/img/dstui/list_tabs_selected_normal.png);
    z-index: 671;
}

.dst-list-tabs-tab.dst-list-tabs-tab-select:hover{
    background-image: url(/static/img/dstui/list_tabs_selected_hover.png);
}

.dst-list-tabs-tab div{
    color: #D7D29D;
}

.dst-list-tabs-tab:hover div{
    color: #FBC15C;
}

.dst-list-tabs-tab.dst-list-tabs-tab-select div{
    color: black;
    font-weight: bold;
}

.dst-scroll-bar::-webkit-scrollbar {/*滚动条整体样式*/
    width: 10px;     /*高宽分别对应横竖滚动条的尺寸*/
    height: 10px;
}
.dst-scroll-bar::-webkit-scrollbar-thumb {/*滚动条里面小方块*/
    background: url(/static/img/dstui/scrollbar_handle.png) no-repeat center;
    background-size:100% 100%;
}
.dst-scroll-bar::-webkit-scrollbar-track {/*滚动条里面轨道*/
    background: url(/static/img/dstui/scrollbar_bar.png) no-repeat center;
    background-size:100% 100%;
}

[v-cloak]{
    display: none;
}

