body,
html{
    height: 100%;
    margin: 0;
    padding: 0;
}
.page{
    height: 100%;
}
.flex{
    display: flex;
}
.flex-column{
    flex-direction: column;
}
.justify-content-spacebetween{
    justify-content: space-between;
}
.justify-content-flexend{
    justify-content: flex-end
}
.justify-content-center{
    justify-content: center;
}
.align-items-center{
    align-items: center;
}
.header{
    padding: 20px 10px;
}
.header .info{
    text-align: center;
}
.header .lab .lab_img{
    width: 100px;
}
.header .lab .lab_img2{
    width: 80px;
}
.header .logo .logo_img{
    width: 90px;
}
.navbar{
    padding: 30px 20px;
}
.navbar a{
    color: #337ab7;
    padding: 0 20px;
}

.navbar a:hover{
    text-decoration: underline;
    color: #337ab7;
}
.inner{
    padding: 20px 10px;
}
.chart{
    height: 1200px;
}
.table-box{
}
.table-box .table-box-title{
    padding: 20px;
    border-radius: 10px 10px 0 0;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
}
.table-box .table-box-title .title{
    margin-right: 20px;
}
.table-box .table-box-content{
    padding: 20px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
}
.table-box .table-bd{
    padding: 10px 0;
}

.info-layer{
    display: none;
    padding: 20px;
    font-size: 16px;
}

.chart_detail{
    padding: 20px;
}
.chart_detail .chart_label{
    margin-bottom: 40px;
    border: 1px solid #eee;
}
.chart_detail .chart_label .chart_item{
    display: flex;
    flex-direction: flex-start;
    /* border-bottom: 1px solid #eee; */
}
.chart_detail .chart_label .chart_item:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.chart_detail .chart_label .chart_item span{
    width: 300px;
    text-align: right;
    padding-right: 10px;
    /* border-right: 1px solid #eee; */
    display: block;
    color: #666;
}
.chart_detail .chart_label .chart_item strong{
    padding-left: 10px;
    flex: 1;
}
.chart_detail .chart_label .chart_item span,
.chart_detail .chart_label .chart_item strong{
    line-height: 40px;
}
.chart_detail .chart_label .bt{
    border-top: 1px solid #eee;
    line-height: 40px;
    text-align: right;
    display: flex;
    flex-direction: column;
    padding-right: 40px;
    box-sizing: border-box;
}
.chart_detail .chart_label .bt span,
.chart_detail .chart_label .bt strong{
    display: block;
}
.chart_detail .chart_label .bt span{
    width: 100%;
}
.titlebar{
    position: relative;
}
.titlebar .lang{
    position: absolute;
    right: 10px;
    top: 10px;
}
.titlebar .lang a{
    font-size: 14px;
    color: #666;
    margin: 0 30px;
    display: inline-block;
    font-weight: normal;
}
.titlebar .lang a:hover{
    text-decoration: underline;
}
.titlebar .lang a.on{
    color: #337ab7;
}