闫增涛
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
54
55
56
57
58
59
60
61
62
63
.c-tabbar-more {
  width: 100%;
  height: calc(100% - var(--tabbar-height, 100rpx));
  position: absolute;
  top: var(--tabbar-height, 100rpx);
}
.c-tabbar-more__btn {
  position: absolute;
  top: calc(0rpx - var(--tabbar-height, 100rpx));
  right: 0;
  width: 80rpx;
  height: var(--tabbar-height, 100rpx);
  line-height: var(--tabbar-height, 100rpx);
  background-color: var(--tabbar-background-color, white);
  box-shadow: -20rpx 0 20rpx -10rpx var(--tabbar-background-color, white);
  text-align: center;
}
.c-tabbar-more__btn .market {
  font-size: 20rpx;
}
.t-tabbar-more__boardwrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.t-tabbar-more__mask {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.c-tabbar-more__board {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
}
.c-tabbar-more__boardinner {
  padding: 20rpx 0 20rpx 20rpx;
  background-color: var(--tabbar-background-color, white);
  display: flex;
  flex-flow: row wrap;
}
.c-tabbar-more__item {
  margin: 0 20rpx 20rpx 0;
  flex: 0 0 calc((100% - 60rpx) / 3);
  box-sizing: border-box;
  padding: 0 10rpx;
  border-radius: 30rpx;
  height: 60rpx;
  line-height: 60rpx;
  text-align: center;
  font-size: 22rpx;
  color: #5d5d5d;
  background-color: #eee;
}
.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}