4ebb3d66
yangzhi
简历界面
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
* {
box-sizing: border-box;
padding: 0;
margin: 0;
position: relative;
}
li {
list-style: none;
}
.flex {
display: flex;
}
.flex1 {
flex: 1;
}
.flex-between {
justify-content: space-between;
align-items: center;
}
|
ab9848ab
yangzhi
简历界面
|
25
26
27
28
29
30
31
|
.text-overflow2 {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
}
|
4ebb3d66
yangzhi
简历界面
|
32
33
34
35
36
37
|
.page {
height: 100vh;
background-image: url(/static/resume/male/page_bg.png);
background-repeat: no-repeat;
background-size: cover;
overflow: hidden;
|
76f8396d
yangzhi
简历分析页面(女)
|
38
|
padding: 5% 20px 10px;
|
4ebb3d66
yangzhi
简历界面
|
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
|
color: #fff;
display: flex;
flex-direction: column;
}
.flex {
display: flex;
}
.star-progress {
width: 140px;
height: 20px;
background-image: url(/static/resume/male/resume7.png);
background-repeat: repeat-x;
background-size: 20px 20px;
.star-progress-bar {
background-image: url(/static/resume/male/resume10.png);
background-repeat: repeat-x;
background-size: 20px 20px;
height: 20px;
}
}
.top-panel {
background-image: url(/static/resume/male/resume6.png);
background-size: 100% 100%;
padding: 30px;
.top-panel-content {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.user-head {
width: 120px;
height: 120px;
border-radius: 20px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
-ms-border-radius: 20px;
-o-border-radius: 20px;
margin-right: 20px;
border: 2px solid rgba(81, 210, 255, 0.42);
}
.user-info {
display: flex;
align-items: center;
}
.user-items {
display: flex;
flex-wrap: wrap;
padding: 0;
margin: 0;
max-width: 1000px;
li {
margin: 10px 20px 10px 0;
display: flex;
align-items: center;
min-width: 150px;
img {
width: 20px;
height: 20px;
margin-right: 5px;
}
}
}
}
.info-panel {
.info-title {
height: 35px;
background: rgba(81, 210, 255, 0.23);
border-radius: 20px 0 0 0;
-webkit-border-radius: 20px 0 0 0;
-moz-border-radius: 20px 0 0 0;
-ms-border-radius: 20px 0 0 0;
-o-border-radius: 20px 0 0 0;
span {
position: absolute;
left: -2px;
top: -5px;
height: 45px;
line-height: 45px;
width: 150px;
text-align: center;
background-image: url(/static/resume/male/resume15.png);
background-size: 100% 100%;
font-size: 20px;
}
}
.info-content {
padding: 20px 0;
ul {
li {
margin-bottom: 10px;
h3 {
margin-bottom: 10px;
}
p {
color: #ccc;
|
4ebb3d66
yangzhi
简历界面
|
138
139
140
141
142
143
144
145
146
|
line-height: 1.5em;
}
}
}
}
}
.bottom-panel {
display: flex;
|
76f8396d
yangzhi
简历分析页面(女)
|
147
|
margin-top: 10px;
|
4ebb3d66
yangzhi
简历界面
|
148
149
150
151
152
153
|
.panel {
flex: 1;
background: rgba(9, 65, 110, 0.32);
border: 1px solid #51D2FF;
margin-right: 20px;
padding: 15px;
|
ab9848ab
yangzhi
简历界面
|
154
155
|
display: flex;
flex-direction: column;
|
4ebb3d66
yangzhi
简历界面
|
156
157
158
159
160
161
162
163
164
165
166
167
|
&:last-child {
margin-right: 0;
}
.panel-title {
display: flex;
align-items: center;
font-size: 18px;
img {
height: 20px;
margin-left: 10px;
}
}
|
ab9848ab
yangzhi
简历界面
|
168
169
170
171
172
173
|
.panel-body {
flex: 1;
}
[id^=echarts] {
height: 100%;
}
|
4ebb3d66
yangzhi
简历界面
|
174
175
|
}
}
|