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
<template>
<div class="app-container home">
<div class="home-right">
<div class="home-right-top">
<p class="title">隧道介绍</p>
<p class="cont">隧道名称:隧道结构系统</p>
<p class="cont">隧道工程安全等级:高级</p>
<p class="cont">隧道危害等级:低级</p>
<p class="cont">边皮设计稳定系数:高</p>
<p class="cont">项目概况:</p>
</div>
<div class="home-right-bottom">
<p class="title">隧道介绍</p>
<p class="cont">GB50778-2012 露天煤矿岩土工程勘察规范</p>
<p class="cont">GB51289-2018煤炭工业露天矿隧道工程设计标准</p>
<p class="cont">GB 51214-2017 煤炭工业露天矿隧道工程监测规范</p>
<p class="cont">GB∕T 37697-2019 露天煤矿隧道变形监测技术规范</p>
<p class="cont">MT∕T 1183-2020 露天矿隧道分析及岩移监测方法</p>
<p class="cont">GB 51016-2014 非煤露天矿隧道工程技术规范</p>
<p class="cont">GB 16423-2020 金属非金属矿山安全规程</p>
<p class="cont">
AQ T 2063-2018 金属非金属露天矿山高陡隧道安全监测技术规范
</p>
</div>
</div>
</div>
</template>
<script>
export default {
name: "Index",
data() {
return {
// 版本号
version: "3.8.5",
};
},
methods: {
goTarget(href) {
window.open(href, "_blank");
},
},
};
</script>
<style scoped lang="scss">
.app-main{
padding-top: 0 !important;
}
.home.app-container {
width: 100%;
height: 100vh;
background: url("~@/assets/images/index.png") no-repeat center;
background-size: 100%;
padding:0;
.home-right {
width: 30%;
height: 100%;
float: right;
.title {
width: 199px;
height: 46px;
border: 4px solid #04f4f7;
border-radius: 59px;
font-size: 24px;
font-family: Source Han Sans CN;
font-weight: 500;
color: #04f4f7;
line-height: 37px;
text-align: center;
box-sizing: border-box;
margin: 10px 0;
}
.home-right-top {
.cont {
margin: 0;
line-height: 48px;
font-size: 28px;
font-family: Source Han Sans CN;
font-weight: 400;
color: #ffffff;
text-shadow: 0px 5px 2px rgba(255, 255, 255, 0.2);
background: linear-gradient(0deg, #7ed7fb 0%, #ffffff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
}
.home-right-bottom {
.cont {
margin: 0;
line-height: 48px;
font-size: 22px;
font-family: Source Han Sans CN;
font-weight: 500;
color: #ffffff;
}
}
}
}
</style>