
/* display: flex弹性盒子，水平方向*/
.tab-head {
    /* display: flex; */
   
}
/* flex-grow生长为100%*/
.tab-head-div {
    flex-grow: 1;
    line-height: 40px;
}

.tab-body-div {
    display: none;
}
.tab-body-div.current {
    display: block;
}
