Blame view

src/views/resume/style/style.scss 3.74 KB
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
  .page {
5d0caf8d   yangzhi   简历分析
33
      min-height: 100vh;
589726c7   yangzhi   修改简历分析背景图
34
      background-image: url(/static/resume/male/page_bg.jpg);
4ebb3d66   yangzhi   简历界面
35
      background-repeat: no-repeat;
5d0caf8d   yangzhi   简历分析
36
      background-size: 100% 100%;
76f8396d   yangzhi   简历分析页面(女)
37
      padding: 5% 20px 10px;
4ebb3d66   yangzhi   简历界面
38
39
40
      color: #fff;
      display: flex;
      flex-direction: column;
97c13b13   yangzhi   简历分析样式修改
41
      font-size: 10rem;
4ebb3d66   yangzhi   简历界面
42
43
44
45
46
47
48
  }
  
  .flex {
      display: flex;
  }
  
  .star-progress {
97c13b13   yangzhi   简历分析样式修改
49
50
      width: 70rem;
      height: 10rem;
4ebb3d66   yangzhi   简历界面
51
52
      background-image: url(/static/resume/male/resume7.png);
      background-repeat: repeat-x;
97c13b13   yangzhi   简历分析样式修改
53
      background-size: 10rem 10rem;
4ebb3d66   yangzhi   简历界面
54
55
56
      .star-progress-bar {
          background-image: url(/static/resume/male/resume10.png);
          background-repeat: repeat-x;
97c13b13   yangzhi   简历分析样式修改
57
58
          background-size: 10rem 10rem;
          height: 10rem;
4ebb3d66   yangzhi   简历界面
59
60
61
62
63
64
      }
  }
  
  .top-panel {
      background-image: url(/static/resume/male/resume6.png);
      background-size: 100% 100%;
709bad86   yangzhi   兼容工作经历的数据
65
      padding: 30px 30px 10px;
5d0caf8d   yangzhi   简历分析
66
      min-height: 70vh;
4ebb3d66   yangzhi   简历界面
67
68
69
70
71
72
      .top-panel-content {
          display: flex;
          align-items: center;
          margin-bottom: 20px;
      }
      .user-head {
97c13b13   yangzhi   简历分析样式修改
73
74
          width: 87rem;
          height: 87rem;
4ebb3d66   yangzhi   简历界面
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
          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;
97c13b13   yangzhi   简历分析样式修改
92
          max-width: 80%;
4ebb3d66   yangzhi   简历界面
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
          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 {
709bad86   yangzhi   兼容工作经历的数据
130
          padding: 20px 0 10px;
4ebb3d66   yangzhi   简历界面
131
132
133
134
135
136
137
138
          ul {
              li {
                  margin-bottom: 10px;
                  h3 {
                      margin-bottom: 10px;
                  }
                  p {
                      color: #ccc;
4ebb3d66   yangzhi   简历界面
139
140
141
142
143
144
145
146
147
                      line-height: 1.5em;
                  }
              }
          }
      }
  }
  
  .bottom-panel {
      display: flex;
76f8396d   yangzhi   简历分析页面(女)
148
      margin-top: 10px;
5d0caf8d   yangzhi   简历分析
149
      min-height: 30vh;
4ebb3d66   yangzhi   简历界面
150
151
152
153
154
155
      .panel {
          flex: 1;
          background: rgba(9, 65, 110, 0.32);
          border: 1px solid #51D2FF;
          margin-right: 20px;
          padding: 15px;
ab9848ab   yangzhi   简历界面
156
157
          display: flex;
          flex-direction: column;
4ebb3d66   yangzhi   简历界面
158
159
160
161
162
163
          &:last-child {
              margin-right: 0;
          }
          .panel-title {
              display: flex;
              align-items: center;
97c13b13   yangzhi   简历分析样式修改
164
              font-size: 10rem;
4ebb3d66   yangzhi   简历界面
165
166
167
168
169
              img {
                  height: 20px;
                  margin-left: 10px;
              }
          }
ab9848ab   yangzhi   简历界面
170
171
172
173
174
175
          .panel-body {
              flex: 1;
          }
          [id^=echarts] {
              height: 100%;
          }
4ebb3d66   yangzhi   简历界面
176
177
      }
  }