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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
| .change-user-page {
| min-height: 100vh;
| background: #fafafa;
| box-sizing: border-box;
| padding: 24px 0 32px;
| }
|
| .list {
| width: 686rpx;
| margin: auto;
| min-height: 80vh;
| }
|
| .list-item {
| margin-bottom: 20px;
| }
|
| .title {
| font-size: 14px;
| font-family: PingFang SC;
| font-weight: bold;
| color: #999999;
| margin-bottom: 10px;
| }
|
| .store {
| width: 100%;
| background: #fff;
| box-sizing: border-box;
| padding: 0 12px;
| }
|
| .store-item {
| height: 72px;
| width: 100%;
| display: flex;
| justify-content: space-between;
| align-items: center;
| border-bottom: 1px solid #EEEEEE;
| }
|
| .left-top {
| margin-bottom: 12px;
| }
|
| .name-text {
| font-size: 16px;
| font-family: PingFang SC;
| font-weight: 500;
| color: #333333;
| margin-left: 9px;
| }
|
| .store-item:last-child {
| border: 0;
| }
|
| .radio-box {
| width: 20px;
| height: 20px;
| border-radius: 50%;
| border: 1px #CCCCCC solid;
| }
|
| .active {
| width: 20px;
| height: 20px;
| border-radius: 50%;
| border: 1px #1677FF solid;
| }
| .btn-box{
| width: 100%;
| text-align: center;
| padding-top: 30px;
| }
| .btn {
| width: 640rpx;
| height: 44px;
| line-height: 44px;
| color: #fff;
| border-radius: 22px;
| border: 0;
| margin: auto;
| }
|
|