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
@import "../../template/avater/index.acss";
page {
background: #fff;
}
.column {
display: flex;
align-items: center;
width: 100%;
padding-left: 28rpx;
height: 112rpx;
box-sizing: border-box;
}
.avater {
width: 80rpx;
height: 80rpx;
line-height: 80rpx;
margin-left: 44rpx;
margin-right: 16rpx;
}
.radio {
width: 40rpx;
height: 40rpx;
border-radius: 50%;
text-align: center;
line-height: 40rpx;
box-sizing: border-box;
}
.radio-uncheck {
border: 2rpx solid rgba(10, 10, 10, 0.4);
}
.radio-checked {
background: #0F7DFF;
}
.radio-checked>.iconfont {
color: #fff;
font-size: 28rpx;
}
.name {
font-size: 34rpx;
color: #191F25;
border-bottom: 2rpx solid rgba(25, 31, 37, 0.12);
flex: 1;
height: 100%;
line-height: 112rpx;
}