transactionFinanceGuide.vue
2.66 KB
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
<template>
<div class="transactionFinanceGuide">
<div class="box">
<div class="title">·交易融资指南</div>
<div class="content">
<div class="title">交易指南</div>
<hr class="line" />
<div class="text">
通过数据交易所进行合规的流通交易;在数据交易所挂牌的数据有数据经纪商去撮合,然后隐私加密计算进行交付。
</div>
<div class="guide1">
<img :src="guide1" alt="">
</div>
<div class="title">融资指南</div>
<hr class="line" />
<div class="text">
数据资产登记价值评估后,企业提出贷款申请,然后银行对该笔数据资产合法性、可靠性、稳定性等进行审核,审核后办理质押登记,发放相应贷款。
</div>
<div class="guide2">
<img :src="guide2" alt="">
</div>
</div>
</div>
</div>
</template>
<script setup name="transactionFinanceGuide">
import guide1 from "@/assets/images/guide1.png"
import guide2 from "@/assets/images/guide2.png"
</script>
<style lang="scss" scoped>
.transactionFinanceGuide {
width: 100%;
height: 100%;
background: rgb(242, 243, 248);
overflow: auto;
.box {
background: #fff;
padding-bottom: 20px;
padding: 0 16px;
padding-bottom: 16px;
.title {
font-size: 18px;
color: #212121;
letter-spacing: 0;
line-height: 27px;
font-weight: 600;
padding: 16px 0 8px 0;
}
.content {
border: 1px solid rgba(217, 217, 217, 1);
padding: 20px;
.title {
font-size: 20px;
color: #1161BF;
letter-spacing: 0;
line-height: 30px;
font-weight: 600;
}
.line {
width: 100%;
height: 1px;
background: #A4BFEC;
border: none;
}
.text {
margin-top: 20px;
font-size: 14px;
color: #666666;
letter-spacing: 0;
line-height: 21px;
font-weight: 400;
}
.guide1 {
width: 100%;
margin-top: 20px;
background: #FFFFFF;
border-right: none;
img {
width: 100%;
height: auto;
display: block;
}
}
.guide2 {
width: 100%;
margin-top: 20px;
background: #FFFFFF;
img {
width: 100%;
height: auto;
display: block;
}
}
}
}
.footer {
position: fixed;
width: 100%;
text-align: center;
.text1 {
font-size: 12px;
color: #4FA1A4;
letter-spacing: 0;
line-height: 18px;
font-weight: 400;
}
}
}
</style>