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.

55 lines
1.6 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<div class="home-page-bottom-style">
<div class="bottom-part-style">
<span class="title-span">长春市基础教育集优化发展管理服务平台</span>
</div>
<div class="bottom-part-style">
<div class="part-row-style">地址吉林省长春市自由大路696号</div>
<div class="part-row-style">电话0431-85616988</div>
<div class="part-row-style">邮编130000</div>
</div>
<div class="bottom-part-style">
<div class="part-row-style">EmailXXXXXX@168.com</div>
<div class="part-row-style">技术支持东北师大理想软件股份有限公司</div>
<div class="part-row-style">版权所有 Copright @ XXXX-XXXX</div>
</div>
</div>
</template>
<script>
export default{
data(){
return {}
}
}
</script>
<style scoped lang="scss">
.home-page-bottom-style{
width: 100%;
height: 8rem;
position: absolute;
bottom: 0;
background-color: #98acf8;
display: flex;
.bottom-part-style{
width: 33%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
.title-span{
font-size: 1rem;
font-weight: bolder;
position: relative;
top: -10px;
}
.part-row-style{
width: 100%;
}
}
}
.home-page-bottom-style:hover{
background-color: #394af8;
}
</style>