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
| /* pages/component/nav/nav.wxss */
|
| .VerticalNav.nav {
| width: 280rpx;
| white-space: initial;
| }
|
| .VerticalNav.nav .cu-item {
| width: 100%;
| text-align: center;
| background-color: #fff;
| margin: 0;
| border: none;
| height: 50px;
| position: relative;
| }
|
| .VerticalNav.nav .cu-item.cur {
| background-color: #f1f1f1;
| }
|
| .VerticalNav.nav .cu-item.cur::after {
| content: "";
| width: 8rpx;
| height: 30rpx;
| border-radius: 10rpx 0 0 10rpx;
| position: absolute;
| background-color: currentColor;
| top: 0;
| right: 0rpx;
| bottom: 0;
| margin: auto;
| }
|
| .VerticalBox {
| display: flex;
| }
|
| .VerticalMain {
| background-color: #f1f1f1;
| }
|
| .VerticalNav-flex {
| width: 100%;
| }
|
| .VerticalNav-flex-t {
| display: flex;
| }
|
| .VerticalNav-flex-div {
| flex: 1;
| height: 78px;
| color: #fff;
| margin: 6px;
| text-align: center;
| line-height: 78px;
|
| background-color: #000;
| opacity: 0.2
| }
|
|