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.
37 lines
817 B
37 lines
817 B
<template>
|
|
<footer class="page-footer clear">
|
|
<div class="center">山西农业大学农业科学研究院</div>
|
|
<div class="right">山西传控电子科技有限公司技术支持 <span style="margin-left: 16rem">400 668 1386</span><span style="margin-left: 16rem">181 3510 0170</span></div>
|
|
</footer>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "Footer"
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.page-footer {
|
|
position:relative;
|
|
width: 100%;
|
|
height: 34rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.center {
|
|
font-size: 16rem;
|
|
color: #fff;
|
|
}
|
|
.right {
|
|
position: absolute;
|
|
right: 10rem;
|
|
height: 34rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
font-size: 14rem;
|
|
color: rgba(255, 255, 255, .3);
|
|
}
|
|
</style>
|
|
|