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
| /* component/switchtab/switchtab.wxss */
| .swiper-tab{
| width: 100%;
| text-align: start;
| line-height: 80rpx;
| white-space: nowrap;
| z-index: 2;
| /* background-color: #65EAD2; */
| /* background-color: #70ea65; */
| /* padding: 2px; */
| }
|
| .swiper-tab_view{
| /* background-color: blueviolet; */
| }
|
| .swiper-tab-list{
| position: relative;
| font-size: 30rpx;
| text-align: center;
| display: inline-block;
| min-width: 18%;
| padding: 0 4px;
| color: rgba(0, 0, 0, 0.658);
| }
|
| .swiper-tab-list__tag{
| position: absolute;
| top: 2px;
| right: 4px;
| font-size: 10px;
| line-height: 16px;
| width: 16px;
| background-color: brown;
| border-radius: 50%;
| color: white;
| }
|
| .on{
| color: #57E4CB;
| font-weight: bold;
| border-bottom: 4rpx solid #57E4CB;
| }
|
| .swiper-box{
| display: block;
| /* top: 80rpx; */
| width: 100%;
| /* height: 70px; */
| margin-top: 1px;
| background-color: white;
| }
|
|