gender-switcher.ttss
939 Bytes
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
.gender-switcher-container {
width: 100%;
height: 88rpx;
background-color: white;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
position: fixed;
z-index: 99;
}
.gender-switcher-container .row {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
width: 33.3%;
height: 88rpx;
background-color: white;
}
.gender-switcher-container .separator {
width: 1rpx;
height: 60rpx;
background-color: #e0e0e0;
}
.gender-switcher-container .bottomLine {
position: absolute;
top: 87rpx;
left: 0rpx;
width: 100%;
height: 1rpx;
background-color: #e0e0e0;
}
.gender-switcher-container .textNormal {
font-family: PingFang SC;
font-size: 28rpx;
color: #B0B0B0;
letter-spacing: -0.34px;
}
.gender-switcher-container .textSelected {
font-family: PingFang SC;
font-size: 34rpx;
color: #444444;
letter-spacing: -0.41px;
}