19 lines
272 B
Plaintext
19 lines
272 B
Plaintext
|
|
.tabs {
|
||
|
|
display: inline-flex;
|
||
|
|
margin-bottom: 32rpx;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tabs-item {
|
||
|
|
display: inline-flex;
|
||
|
|
height: 64rpx;
|
||
|
|
align-items: center;
|
||
|
|
padding: 0 24rpx;
|
||
|
|
background-color: #f5f5f5;
|
||
|
|
line-height: 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tabs-item.active {
|
||
|
|
background-color: #0052d9;
|
||
|
|
color: #fff;
|
||
|
|
}
|