tab.less 745 Bytes
.wev-tab-title{
	box-sizing: border-box;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-bottom: 1px solid #d9d9d9;
}

.wev-tab-title > ul{
	list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: table;
}

.wev-tab-title > ul > li{
	line-height: 34 * @hd;
    cursor: pointer;
    padding: 0 16px;
    display: table-cell;
    position: relative;
    color: #a8a8a8;
    text-align: center;
    border: 0;
    white-space: nowrap;
}

.wev-tab-title > ul > li.wev-tab-selected{
	border-bottom: 2px solid var(--themeColor);
    color: var(--themeColor);
    font-weight: normal;
}

.wev-tab-content{
	padding:15px 0;
}

.wev-tab-content .wev-tab-panel.wev-tabpanel-hidden{
	display:none;
}