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
| <template>
| <div class="scoreContainer">
| <p class="score">98</p>
| <p class="name">评估得分</p>
| <img src="@/assets/img/lifeline/riskMonitoring/score.png"/>
| </div>
| </template>
|
| <script>
| export default {
| name: 'score',
| components: {},
| data() {
| return {}
| },
| mounted() {},
| methods: {}
| }
| </script>
|
| <style lang="scss" scoped>
| .scoreContainer {
| height: 60%;
| position: relative;
| display: flex;
| flex-direction: column;
| justify-content: center;
| align-items: center;
| .score{
| font-size: 36px;
| font-family: YouSheBiaoTiHei, YouSheBiaoTiHei-Regular;
| font-weight: 400;
| text-align: center;
| color: #fefefe;
| letter-spacing: 1.82px;
| text-shadow: 0px 1.5px 12px 0px rgba(0,29,45,0.53);
| z-index: 100;
| position: absolute;
| top: 5px;
| background: linear-gradient(0deg,rgba(62,242,255,1) 0%, rgba(222,222,222,1) 100%);
| -webkit-text-fill-color: transparent;
| -webkit-background-clip: text;
| }
| .name{
| font-size: 19px;
| font-family: Source Han Sans CN, Source Han Sans CN-Regular;
| font-weight: 400;
| text-align: center;
| color: #ffffff;
| letter-spacing: 1.9px;
| text-shadow: 0px 1.5px 0.98px 0.03px rgba(0,14,17,0.19);
| z-index: 100;
| position: absolute;
| top: 45px;
| }
| img{
| position: absolute;
| top: 10px;
| z-index: 10;
| }
| }
| </style>
|
|