You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
860 B
44 lines
860 B
<template>
|
|
<section class="footer">
|
|
<div class="footer__copyright">版权所有 @ 苏州卫生职业技术学院 地址: 苏州国际教育园北区科华路28号</div>
|
|
<div class="footer__filings">苏ICP备10022524号 苏公网安备32050502000249号</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {},
|
|
computed: {},
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.footer {
|
|
color: #fff;
|
|
text-align: center;
|
|
width: 100%;
|
|
height: 91px;
|
|
background: url("../../assets/reception/footer-bkg.png");
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: cover;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
|
|
|
|
|
|
&__copyright {
|
|
font-size: 13px;
|
|
line-height: 20px;
|
|
}
|
|
&__filings {
|
|
font-size: 13px;
|
|
line-height: 20px;
|
|
}
|
|
}
|
|
</style>
|