v-tab.less
653 字节
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
@import '../../utils/less/global.less';
.v-tab {
width: 100%;
height: 80rpx;
background: #fff;
border-bottom: 1rpx solid @splitLine-color;
position: relative;
}
.v-tabList {
width: 100%;
height: 100%;
display: flex;
align-items: center;
position: relative;
}
.v-tab{
flex: 1;
color: @title-color;
font-size: 28rpx;
display: flex;
align-items: center;
justify-content: center;
}
.v-tab-select {
font-size: 32rpx;
font-weight: 500;
}
.v-tab-slider{
position: absolute;
left: 0;
bottom: 0;
width: 65px;
height: 5rpx;
background-color: @default-color;
transition: transform .3s;
border-radius: 3px;
}