1
YM
2024-09-10 e38c14de9637d22d0a35ae06bede82dcf31b64ec
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
.custom-tab-bar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
 
 
.custom-tab-bar-wrapper .text {
  font-size: 20rpx;
  margin-top: 10rpx;
}
 
.tabBarBox {
  display: flex;
  padding-bottom: env(safe-area-inset-bottom);
  background-color: #fff;
  /* opacity: 1; */
  z-index: 1100;
}
 
.tabItem {
  flex: 1;
  height: var(--td-tab-bar-height, 88rpx);
  box-sizing: border-box;
  user-select: none;
  position: relative;
  margin-bottom: 24rpx;
  background-color: var(--td-tab-bar-bg-color, var(--td-bg-color-container, var(--td-font-white-1, #ffffff)));
  padding: 0 24rpx;
  padding-top: 20rpx;
}
 
.tabItem:nth-child(1) .tab-images {
  width: 52rpx;
  height: 44rpx;
}
 
.tabItem:nth-child(2) .tab-images {
  width: 38rpx;
  height: 44rpx;
}
 
.tabItem:nth-child(3) .tab-images {
  width: 57rpx;
  height: 44rpx;
}
 
.tabItem:nth-child(4) .tab-images {
  width: 45rpx;
  height: 44rpx;
}
 
.tabItem:nth-child(5) .tab-images {
  width: 43rpx;
  height: 44rpx;
}
 
.tab-images .tabImg {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
 
.text {
  font-size: 20rpx;
  text-align: center;
  color: #9D9D9D;
}
 
.activeText {
  color: #ff6d00;
}
 
.tabImg {
  text-align: center;
}
 
.roleIcon {
  position: relative;
  bottom: 30px;
  z-index: 999;
}