press-pix
Version:
基于 PixUI 的 Press 组件库
50 lines (47 loc) • 1.07 kB
text/less
/* 基础布局 */
.tabs-container {
display: inline-block;
margin-bottom: .1rem;
width: 100%;
position: relative;
z-index: 90;
}
/* 标签头样式 */
.tabs-header {
display: flex;
height: .34rem;
width: 100%;
font-size: .2rem;
border-radius: 4px 4px 0 0;
border-bottom: 1px solid #829DE9;
overflow: scroll;
scrollbar-color: transparent;
scrollbar-width: 0;
}
/* 单个标签项 */
.tab-item {
cursor: pointer;
transition: all 0.3s;
font-size: .22rem;
width: 1.48rem;
position: relative;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
background: none;
color: #6B89DF;
font-weight: 400;
font-family: GameFont;
flex-shrink: 0;
border-bottom: .06rem solid transparent;
}
.tab-item-active {
color: #060B19;
font-weight: 500;
border-bottom: .06rem solid #4168D3;
position: relative;
background: url(https://image-1251917893.cos.ap-guangzhou.myqcloud.com/Esports/pix/img/tab-icon.png) no-repeat;
background-size: .64rem .25rem;
background-position: .84rem .04rem;
}