html,body{
    height: 100%;
    margin: 0;
}
html{
    font-size: 50px;
}
body{
    font-size: 0.28rem;
    /*-moz-user-select:none;*/
    /*-webkit-user-select: none;*/
    /*-ms-user-select: none;*/
}
ul,li{
    list-style: none;
    margin: 0;
    padding: 0;
}
.box{
    display: flex;
    height: 100%;
    background-color: #F2F2F2;
}
.box-left{
    width: 4.8rem;
    color: #FFFFFF;
}
.box-middle{
    flex: 5;
    border-left: 1px solid #C9C9C9;
    border-right: 1px solid #C9C9C9;
}
.box-right{
    flex: 4;
}
.box-header{
    height: 1rem;
    line-height: 1rem;
    background-color: #FFFFFF;
    position: relative;
}
.logo{
    background: url('../img/u486.png') 0.1rem center no-repeat;
    background-size: 0.6rem 0.6rem;
}
.header-btn{
    line-height: 0.6rem;
    width: 1.4rem;
    margin: 0.2rem auto;
    cursor: pointer;
}
.header-btn.active{
    color: #6699FF;
    border-bottom: 1px solid #6699FF;
}
/*公共类名*/
.basic-btn{
    display: inline-block;
    line-height: 0.6rem;
    min-width:1.4rem;
    padding: 0 0.2rem;
    margin: 0 0.2rem;
    text-align: center;
    cursor: pointer;
    border: 1px solid #C9C9C9;
    border-radius: 0.08rem;
}
.btn-info {
    color: #fff;
    background-color: #3498db;
    border-color: #3498db;
}
.btn-success {
    color: #fff;
    background-color: #18bc9c;
    border-color: #18bc9c;
}
.btn-link{
    display: inline-block;
    line-height: 0.6rem;
    min-width:1.4rem;
    padding: 0 0.2rem;
    margin: 0 0.2rem;
    text-align: center;
    cursor: pointer;
    color: #6699FF;
}
.arrow-down{
    background: url('../img/u544.png') 0.2rem center no-repeat;
    background-size: 0.3rem 0.2rem;
}
.arrow-up{
    background: url('../img/u551.png') 0.2rem center no-repeat;
    background-size: 0.2rem 0.3rem;
}
.flex{
    display: flex;
}
.flex>div{
    flex: 1;
}
.flex2{
    display: flex;
}
.flex2>div:nth-child(1),.flex2>div:nth-child(4){
    flex: 1;
}
.flex2>div:nth-child(2),.flex2>div:nth-child(3){
    flex: 2;
}
.hide{
    display: none;
}
.text-r{
    text-align: right;
}
.text-c{
    text-align: center;
}
.relative{
    position: relative;
}
.filter{
    filter: blur(5px);
}
.ellipsis{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.title-h{
    height: 0.8rem;
    line-height: 0.8rem;
    padding-left: 0.2rem;
    border-bottom: 1px solid #ccc;
}
.select{
    display: inline-block;
    width: auto;
    min-width: 2.4rem;
    height: 0.6rem;
    line-height: 0.6rem;
    padding-left: 0.12rem;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/*修改滚动条样式*/
ul::-webkit-scrollbar,div::-webkit-scrollbar{
    /*滚动条整体样式*/
    width : 2px;  /*高宽分别对应横竖滚动条的尺寸*/
    height: 2px;
}
ul::-webkit-scrollbar-track,div::-webkit-scrollbar-track{
    /*滚动条里面轨道*/
    background: rgb(239, 239, 239);
    border-radius:2px;
}
ul::-webkit-scrollbar-thumb,div::-webkit-scrollbar-thumb{
    /*滚动条里面小方块*/
    background: #bfbfbf;
    border-radius:2px;
}
ul::-webkit-scrollbar-thumb:hover,div::-webkit-scrollbar-thumb:hover{
    background: #333;
}
ul::-webkit-scrollbar-corner,div::-webkit-scrollbar-corner{
    background: #179a16;
}
