闫增涛
2024-02-23 fdfb3ca757ecd6c396632ed276ff354671d3a7e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
.c-tabbar {
  width: 100%;
  height: 100%;
  position: relative;
  --tabbar-height: 100rpx;
  --tabbar-fontsize: 28rpx;
  --tabbar-background-color: white;
}
.c-tabbar__inner {
  display: flex;
  flex-flow: row nowrap;
}
.c-tabbar__scroll {
  position: relative;
}
.c-tabbar__scroll::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -1px;
  height: 1px;
  background-color: #eee;
  z-index: 1;
}
.c-tabbar__inner.c-tabbar__inner_more::after {
  content: '';
  display: block;
  width: 100rpx;
  height: 100rpx;
  flex: none;
}
.c-tabbar-item {
  flex: none;
  height: 100rpx;
  color: #282828;
  font-size: 28rpx;
  padding: 0 20rpx;
}
.c-tabbar-item.active:not(.disabled) {
  color: #0071ce;
  position: relative;
}
.c-tabbar-item.disabled {
  color: #ccc;
}
.c-tabbar-item__text {
  width: 100%;
  text-align: center;
  height: 100rpx;
  line-height: 100rpx;
}