/*选项卡*/
.zUI-bar{
    width: 100%;
    height: 100%;
    color: #3a3a3a;
}
.zUI-bar *{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.tabs-line a{
	float: right;
}
.zUI-bar .bar-box{
    width: 100%;
    height: 30px;
    display: flex;
    flex-direction: row;
    line-height: 30px;
}
.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: 10px 5px 0 0;
    background: white;
}

.zUI-bar .bar-box .tabs{
    padding: 0 15px;
    text-align: center;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    transition: all .2s;
    -webkit-transition: all .2s;
}
.zUI-bar .bar-box .tabs.disable{
    color: lightgrey!important;
    background-color: #eee!important;
    cursor: not-allowed;
}

.zUI-bar.line .bar-box .tabs{
    border: 2px solid white;
    float: left;
}
.zUI-bar .bar-box .tabs.disable{
    background-color: white!important;
}
.zUI-bar.line .bar-box .tabs.active{
    border-bottom-color: #3b97d7;
    color: #3b97d7;
}


.zUI-bar.card .bar-box{
    position: relative;font-size: inherit;
}
.zUI-bar.card .bar-box .tabs-line{
    border-bottom: 1px solid lightgrey;
    position: absolute;
    width: 100%;
    height: 31px;
}
.zUI-bar.card .bar-box .tabs{
    border: 0px solid lightgrey;
    color: #000;
    font-weight: bold;
    float: left;
    position: relative;
    bottom: 0px;
    border-radius: 3px 3px 0 0;
}
.zUI-bar.card .bar-box .tabs:not(:first-child):not(:last-child){
    margin: 0 5px;
}
.zUI-bar.card .bar-box .tabs:first-child{
    margin-right: 10px;
}
.zUI-bar.card .bar-box .tabs:last-child{
    margin-left: 5px;
}
.zUI-bar.card .bar-box .tabs.active{
    border-bottom-color: white;
    color: #fff;
    background-color: #C53862;
}
.zUI-bar.card .bar-box .tabs:not(.active){
    background-color: #eee;
}
.zUI-bar.card .content .wrap{
    border: 0px solid lightgrey;
    border-top: 0;
    border-radius: 0 0 4px 4px;
}



.zUI-bar.sm .bar-box{
    height: 30px;
    line-height: 30px;
}
.zUI-bar.sm .bar-box .tabs{
    width: 85px;
    height: 30px;
    line-height: 30px;
}
.zUI-bar.sm .content{
    height: calc(100% - 30px);
}
.zUI-bar.md .bar-box{
    height: 40px;
    line-height: 40px;
}
.zUI-bar.md .bar-box .tabs{
    min-width: 100px;
    max-width: 150px;
}
.zUI-bar.md .content{
    height: calc(100% - 40px);
}
.zUI-bar.lg .bar-box{
    height: 50px;
    line-height: 50px;
}
.zUI-bar.lg .bar-box .tabs{
    min-width: 120px;
    max-width: 150px;
}
.zUI-bar.lg .content{
    height: calc(100% - 50px);
}
.zUI-show{
    display: block!important;
}