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
|
| .diy-navbar {
| margin: 20rpx;
| padding: 20rpx 0;
| border-radius: 6rpx;
| background: #FFFFFF;
| display: flex;
| justify-content: flex-start;
| flex-wrap: wrap;
| }
| .diy-navbar .item {
| display: flex;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| width: 120rpx;
| box-sizing: border-box;
| }
| .diy-navbar .item:first-child {
| border: 0 !important;
| }
| .diy-navbar .item image {
| width: 70rpx;
| height: 70rpx;
| }
| .diy-navbar .item text {
| display: block;
| text-overflow: ellipsis;
| white-space: nowrap;
| width: 100%;
| overflow: hidden;
| line-height: 66rpx;
| font-size: 26rpx;
| text-align: center;
| }
|
|