PC 端样式留存
/*自己实现的选项卡*/
.tl-tab-bar {
display: flex;
justify-content: flex-start;
align-items: center;
height: 66px;
background: #fff;
text-align: center;
padding-left: 20px;
.tab-item {
min-width: 48px;
height: 26px;
line-height: 26px;
background: #F3F4F8;
border-radius: 4px;
margin-right: 20px;
padding: 0 8px;
&:hover {
cursor: pointer;
}
}
.active {
background: #0F8BFF;
color: #fff;
}
}
.search-box {
position: absolute;
top: 10px;
right: 60px;
}
.tl-bg-blue{
background: #0F8BFF !important;
color: #fff !important;
border-radius: 0 4px 4px 0;
}