dengjunjie
2025-03-12 f43b7df8400f4fcffc9f19dca0888d61e2b33d5f
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
/* H5的时候,隐藏滚动条 */
::-webkit-scrollbar {
    display: none;  
    width: 0 !important;  
    height: 0 !important;  
    -webkit-appearance: none;  
    background: transparent;  
}
 
/* 双标签 start*/
.capsule {
  display: inline-flex;
  vertical-align: middle;
  width: 20%;
  min-width: 136rpx;
  height: 45rpx;
  
  .capsule-tag {
    margin: 0;
    
    &:first-child {
      border-top-right-radius: 0rpx;
      border-bottom-right-radius: 0rpx;
    }
    
    &:last-child {
      
      &::after {
        border-top-left-radius: 0rpx;
        border-bottom-left-radius: 0rpx;
      }
    }
  }
}
/* 双标签 end*/