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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
| @import '@/styles/common.scss';
|
| .mine-page-bg {
| position: fixed;
| z-index: -1;
| top: 0;
| left: 0;
| width: 750px;
| height: 434px;
| object-fit: cover;
| }
|
| .mine-page-wrapper {
| .mine-avatar-wrapper {
| flex: 1;
| min-width: 0;
| display: flex;
|
| .mine-avatar {
| margin-right: 24px;
| }
|
| .user-info {
| flex: 1;
| min-width: 0;
| display: flex;
| flex-direction: column;
| padding: 12px 0;
| justify-content: space-between;
|
| .user-info-item {
| font-weight: 600;
| font-size: 32px;
| color: #ffffff;
| line-height: 44px;
| @include ellipsis;
| }
|
| .user-info-item2 {
| font-weight: 400;
| font-size: 24px;
| color: #ffffff;
| line-height: 34px;
| }
|
| .user-info-unCertified {
| display: inline-flex;
| align-items: center;
| height: 40px;
| background: #fffae0;
| border-radius: 4px;
| padding: 0 8px;
| width: fit-content;
|
| .user-info-unCertified-icon {
| width: 28px;
| height: 28px;
| }
|
| .user-info-unCertified-text {
| font-weight: 400;
| font-size: 22px;
| color: #a0541e;
| line-height: 24px;
| }
| }
| }
|
| .mine-go-login {
| font-size: 40px;
| color: #fff;
| line-height: 120px;
| }
| }
|
| .mine-content-scroll-view {
| padding-top: 26px;
|
| .mine-id-menu-wrapper {
| height: 124px;
| background: url('https://renliyuan.oss-cn-hangzhou.aliyuncs.com/12333/matchMakingMini/assets/mine/icon-id-bg.png')
| no-repeat;
| background-size: cover;
| display: flex;
| align-items: center;
| padding: 0 boleGetCssVar('size', 'body-padding-h');
| margin-bottom: 24px;
|
| .mine-id-menu-icon {
| width: 24px;
| height: 36px;
| margin-right: 16px;
| }
|
| .mine-id-menu-text {
| font-weight: 400;
| font-size: 28px;
| color: #ffffff;
| line-height: 40px;
| flex: 1;
| min-width: 0;
| }
|
| .mine-id-menu-btn {
| width: 152px;
| height: 52px;
| background: #ffffff;
| border-radius: 26px;
| font-weight: bold;
| font-size: 24px;
| color: #444444;
| line-height: 52px;
| text-align: center;
| }
| }
|
| .mine-menu-list {
| display: flex;
| gap: 30px;
| margin-bottom: 24px;
|
| .mine-menu-list-item {
| flex: 1;
| min-width: 0;
| display: flex;
| align-items: center;
| height: 152px;
| background: #ffffff;
| border-radius: 8px;
| padding-left: 48px;
|
| .mine-menu-list-item-icon {
| width: 72px;
| height: 72px;
| margin-right: 24px;
| }
|
| .mine-menu-list-item-text {
| font-weight: 400;
| font-size: 28px;
| color: #333333;
| line-height: 40px;
| }
| }
| }
|
| .mine-setting-list {
| border-radius: 8px;
| }
| }
| }
|
|