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
| .c-sidebar-item {
| display: flex;
| justify-content: center;
| text-align: center;
| background-color: #f5f5f5;
| color: #222427;
| padding: 20rpx 0;
| font-size: 26rpx;
| }
|
| .c-sidebar-item.active {
| position: relative;
| background: white;
| }
|
| .c-sidebar-item.active::before {
| content: '';
| position: absolute;
| width: 6rpx;
| height: 48rpx;
| background-color: #fa4126;
| left: 0;
| top: 50%;
| transform: translate(0, -50%);
| border-radius: 64rpx;
| }
|
| .c-sidebar-item__text {
| width: 136rpx;
| height: 36rpx;
| padding: 8rpx 0;
| line-height: 36rpx;
| text-align: center;
| font-size: 28rpx;
| color: #666666;
| }
|
| .c-sidebar-item.active .c-sidebar-item__text {
| background-color: white;
| border-radius: 36rpx;
| color: #fa4126;
| }
|
| .text-overflow {
| overflow: hidden;
| text-overflow: ellipsis;
| white-space: nowrap;
| }
|
| .top-right-radius {
| border-top-right-radius: 16rpx;
| }
|
| .bottom-right-radius {
| border-bottom-right-radius: 16rpx;
| }
|
| .c-sidebar-item-container {
| background-color: white;
| }
|
|