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
| @charset "UTF-8";
| /* 颜色变量 */
| .me-tabs {
| position: relative;
| font-size: 24rpx;
| background-color: #fff;
| box-sizing: border-box;
| overflow-y: hidden;
| }
| .me-tabs .top-line {
| height: 20rpx;
| }
| .me-tabs.tabs-fixed {
| z-index: 990;
| position: fixed;
| left: 0;
| width: 100%;
| }
| .me-tabs .tabs-item {
| position: relative;
| white-space: nowrap;
| box-sizing: border-box;
| border-bottom: 1px solid #E5E5E5;
| }
| .me-tabs .tabs-item .tab-item {
| position: relative;
| text-align: center;
| box-sizing: border-box;
| color: #666666;
| font-size: 28rpx;
| }
| .me-tabs .tabs-item .tab-item.active {
| font-weight: 500;
| color: #222222;
| }
| .me-tabs .tabs-flex {
| display: flex;
| }
| .me-tabs .tabs-flex .tab-item {
| flex: 1;
| }
| .me-tabs .tabs-scroll .tab-item {
| display: inline-block;
| }
| .me-tabs .tabs-line {
| z-index: 1;
| top: 50rpx;
| position: absolute;
| bottom: 30rpx;
| width: 40rpx;
| height: 4rpx;
| -webkit-transform: translateX(-50%);
| transform: translateX(-50%);
| border-radius: 4rpx;
| transition: left .3s;
| background: #D20A0A;
| }
|
|