/*选项卡*/
.zUI-bar{
    width: 100%;
    height: 100%;
    color: #3a3a3a;
}
.zUI-bar *{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.zUI-bar .bar-box{
    width: 100%;
    display: flex;
    flex-direction: row;
    line-height: 40px;
}
.zUI-bar .content{
    width: 100%;
    height: calc(100% - 30px);
    overflow: hidden;

}
.zUI-bar .content .wrap{
    width: 100%;
    height: 100%;
    overflow-y: auto;
    display: none;
    padding: 3px;
    background: white;
}

.zUI-bar .bar-box .nav{
    padding: 0 15px;
    text-align: center;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all .2s;
    -webkit-transition: all .2s;
}
.zUI-bar .bar-box .nav.disable{
    color: lightgrey!important;
    background-color: #eee!important;
    cursor: not-allowed;
}


.zUI-bar .bar-box .nav.disable{
    background-color: white!important;
}
.zUI-bar.line .bar-box .nav.active{
    color: #3b97d7;
}


.zUI-bar.card .bar-box{
    position: relative;font-size: inherit;
    border-bottom: 1px #eee solid;
    margin-bottom: 40px;
}
.zUI-bar.card .bar-box .nav-line{
    
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    width: 40%;
    height: 100%;
}
.zUI-bar.card .bar-box .nav{
    color: #777;
    position: relative;
    bottom: -1px;
    border-radius: 3px 3px 0 0;
}
.zUI-bar.card .bar-box .nav:not(:first-child):not(:last-child){
    margin: 0 5px;
}


.zUI-bar.card .bar-box .nav.active{
    background:#0072ce ;
    color: #fff;
    line-height: 45px;
    font-size: 20px;
}
.zUI-bar.card .bar-box .nav:not(.active){
    background-color: #eee;
    font-size: 20px;
    line-height: 45px;
}
.zUI-bar.card .content .wrap{
    border-top: 0;
    border-radius: 0 0 4px 4px;
}


.zUI-bar.sm .bar-box .nav{
   width: 160px;height: 50px;
}
.zUI-bar.sm .content{
    height: calc(100% - 30px);
}
.zUI-bar.md .bar-box{
    height: 40px;
    line-height: 40px;
}

.zUI-bar.md .content{
    height: calc(100% - 40px);
}
.zUI-bar.lg .bar-box{
    height: 50px;
    line-height: 50px;
}

.zUI-bar.lg .content{
    height: calc(100% - 50px);
}
.zUI-show{
    display: block!important;
}