21 lines
316 B
Plaintext
21 lines
316 B
Plaintext
.tabs {
|
|
display: inline-flex;
|
|
margin-bottom: 32rpx;
|
|
border-radius: 12rpx;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.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;
|
|
}
|