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
| /* pages/notice/notice.wxss */
| .swiper-tab{
| position: fixed;
| width: 100%;
| text-align: center;
| line-height: 80rpx;
| white-space: nowrap;
| z-index: 2;
| background-color: #EAFFF1;
| padding: 2px;
| }
|
| .swiper-tab-list{
| font-size: 30rpx;
| display: inline-block;
| min-width: 30%;
| padding: 0 1%;
| color: black;
| }
|
| .on{
| color: #6BD9B9;
| font-weight: bold;
| border-bottom: 4rpx solid #6BD9B9;
| }
|
| .swiper-box{
| position: absolute;
| display: block;
| top: 80rpx;
| width: 100%;
| margin-top: 10px;
| background-color: var(--fyui-BG_1);
| }
|
|