<template>
|
<div class="app-container">
|
<div style="margin: 150px 100px;color: #3173ea" class="login-img">
|
<div >
|
<div style="font-size:50px">欢迎进入</div>
|
<div style="font-size: 35px;margin-top: 20px">纳米所安全责任书签署系统</div>
|
</div>
|
|
</div>
|
</div>
|
</template>
|
|
<script setup name="Index">
|
const version = ref('3.8.6')
|
|
function goTarget(url) {
|
window.open(url, '__blank')
|
}
|
</script>
|
|
<style scoped lang="scss">
|
|
.login-img{
|
//display: flex;
|
//justify-content: center;
|
//align-items: center;
|
font-family: 'AliMa';
|
color: #fff;
|
font-size: 3.2rem;
|
//text-align: center;
|
//line-height: 1.5;
|
//transform: translateY(-80px);
|
text-shadow: -10px 10px 20px rgba(0,0,0,.4);
|
}
|
.home {
|
font-size: 35px;
|
font-weight: 600;
|
text-align: center;
|
margin-top: 10%;
|
blockquote {
|
|
padding: 10px 20px;
|
margin: 0 0 20px;
|
//font-size: 17.5px;
|
border-left: 5px solid #eee;
|
}
|
hr {
|
margin-top: 20px;
|
margin-bottom: 20px;
|
border: 0;
|
border-top: 1px solid #eee;
|
}
|
.col-item {
|
margin-bottom: 20px;
|
}
|
|
ul {
|
padding: 0;
|
margin: 0;
|
}
|
|
font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
color: #676a6c;
|
overflow-x: hidden;
|
|
ul {
|
list-style-type: none;
|
}
|
|
h4 {
|
margin-top: 0px;
|
}
|
|
h2 {
|
margin-top: 10px;
|
font-size: 26px;
|
font-weight: 100;
|
}
|
|
p {
|
margin-top: 10px;
|
|
b {
|
font-weight: 700;
|
}
|
}
|
|
.update-log {
|
ol {
|
display: block;
|
list-style-type: decimal;
|
margin-block-start: 1em;
|
margin-block-end: 1em;
|
margin-inline-start: 0;
|
margin-inline-end: 0;
|
padding-inline-start: 40px;
|
}
|
}
|
}
|
</style>
|