/*
 * Author: luzhengran
 * description: 首页选项卡页签，动态选项卡功能
 * date: 2023-02-22
 */
.select-bar{
    width: 98%;
    height: auto;
    min-height: 880px;
    margin: 75px 2% 0 1%;
    background-color: white;
    box-shadow: 0 0 4px 2px #a7a7a7;
    border-radius: 5px 5px 0 0;
    display: none;
}
.pagebox-btn{
    width: auto;
    height: 36px;
    padding-top: 6px;
    background-color: #f3f3f3;
    border-bottom: solid 1px #3e3e3e;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    margin: 0;
}
.pagebox-btn-row{
    min-width: 100px;
    width: auto;
    max-width: 200px;
    height: 30px;
    line-height: 30px;
    padding: 0 7px;
    margin: 0 5px;
    color: #3e3e3e;
    border: solid 1px #3e3e3e;
    overflow: hidden;
    text-align: center;
    display: inline-block;
    border-radius: 5px 5px 0 0;
    background-color: white;
}
.close-nav{
    width: 20px;
    height: 20px;
    padding: 0 4px;
    font-size: 10px;
    border:  solid 1px #3e3e3e;
    border-radius: 10px;
}
.boxbtn-active{
    background-color: #5b5b5b;
    color: white;
}
.boxbtn-active .close-nav{
    border-color: white;
}
.pagebox-content{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
.pagebox-btn-page{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: none;
}
.boxpage-active{
    display: block;
}