wujingjing
2024-07-30 f89c8e6a8941a4d074b3f098f5253246abf1bb75
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
.category-container {
  display: flex;
 
  // 左侧一级分类
  .category-left-view {
    width: 220rpx;
    height: 100vh;
    background: #fff !important;
 
    .left-view-item {
      line-height: 99rpx;
      text-align: center;
      font-size: 26rpx;
    }
 
    .active {
      background-color: #ffffff;
      position: relative;
      color: #f3514f;
 
      &::before {
        content: ' ';
        display: block;
        width: 6rpx;
        height: 66rpx;
        background-color: #f3514f;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
      }
    }
  }
 
  // 右侧二级分类
  .category-right-view {
    width: 100%;
    height: 100vh;
    flex-wrap: wrap;
    background: #fff !important;
    margin-left: 8rpx;
 
    .right-view-item {
      width: 33%;
      float: left;
      margin-top: 30rpx;
 
      .navigator {
        display: flex;
        flex-direction: column;
        align-items: center;
      }
 
      image {
        width: 90rpx;
        height: 90rpx;
      }
 
      text {
        font-size: 26rpx;
        margin-top: 18rpx;
      }
    }
  }
}