genderSwitcher.wxss
899 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
.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 {
color: #b0b0b0;
font-family: PingFang-SC-Regular;
font-size: 14px;
}
.gender-switcher-container .textSelected {
color: #444444;
font-family: PingFang-SC-Regular;
font-size: 17px;
}