code/src/components/footView.vue

138 lines
2.5 KiB
Vue
Raw Normal View History

2025-03-21 15:38:59 +08:00
<template>
<div class="foot">
<div class="foot-box">
<div class="foot-1">
2025-04-03 14:27:13 +08:00
<div class="logo">
2025-04-02 17:30:05 +08:00
<img class="img" :src="imagePath.logo" alt="logo" />
2025-04-03 14:27:13 +08:00
<span class="sys-title-bt" title="辉擎科技">辉擎科技</span>
2025-04-02 17:30:05 +08:00
2025-03-21 15:38:59 +08:00
</div>
2025-04-02 17:30:05 +08:00
<div class="wb">致力于为企业提供专业的数字化转型解决方案助力企业实现智能化升级</div>
2025-03-21 15:38:59 +08:00
</div>
<div class="foot-2">
<span>解决方案</span>
<span> <a href="#">智慧办公</a></span>
<span><a href="#">智能制造</a> </span>
<span><a href="#">数据智能</a></span>
<span><a href="#">云服务</a></span>
</div>
<div class="foot-2">
<span>关于我们</span>
<span><a href="#">公司简介</a></span>
<span><a href="#">发展历程</a></span>
<span><a href="#">企业文化</a></span>
<span><a href="#">联系我们</a></span>
</div>
<div class="foot-2">
<span>联系我们</span>
<span>电话:400-888-8888</span>
<span>邮箱:huiqing@huiqing-cd.com</span>
<span>地址四川成都</span>
</div>
</div>
<hr />
<div class="foot-w">@2024 Company All rights reserved</div>
</div>
</template>
<script>
2025-04-02 17:30:05 +08:00
import logo from '@/assets/images/logo.png'
2025-03-21 15:38:59 +08:00
export default {
data() {
return {
imagePath: {
2025-04-02 17:30:05 +08:00
logo,
2025-03-21 15:38:59 +08:00
},
}
},
}
</script>
<style scoped>
2025-04-03 14:27:13 +08:00
.sys-title-bt {
font-size: 2vw;
font-weight: 600;
cursor: default;
z-index: 1;
position: relative;
top: -21px;
left: 15px;
color: #e7e5e5;
letter-spacing: 3px;
}
2025-04-02 17:30:05 +08:00
.wb {
letter-spacing: 1.5px;
line-height: 1.6;
margin-bottom: 10px;
}
2025-03-21 15:38:59 +08:00
hr {
border: 0;
height: 2px;
background-color: #333;
margin-bottom: 20px;
}
2025-04-02 17:30:05 +08:00
2025-03-21 15:38:59 +08:00
.foot-w {
color: #858484;
text-align: center;
}
2025-04-02 17:30:05 +08:00
2025-03-21 15:38:59 +08:00
.foot {
height: 400px;
background-color: #2e2e2e;
}
2025-04-02 17:30:05 +08:00
2025-03-21 15:38:59 +08:00
a {
text-decoration: none;
color: inherit;
}
2025-04-02 17:30:05 +08:00
2025-03-21 15:38:59 +08:00
.img {
width: 70px;
2025-04-02 17:30:05 +08:00
height: 70px;
2025-03-21 15:38:59 +08:00
}
2025-04-02 17:30:05 +08:00
2025-03-21 15:38:59 +08:00
.img-logo {
font-size: 20px;
color: #fff;
}
2025-04-02 17:30:05 +08:00
2025-03-21 15:38:59 +08:00
.foot-box {
width: 100%;
min-height: 200px;
background-color: #2e2e2e;
display: flex;
justify-content: space-around;
padding: 70px 0;
}
2025-04-02 17:30:05 +08:00
2025-03-21 15:38:59 +08:00
.foot-1 {
display: flex;
flex-direction: column;
justify-content: space-around;
}
2025-04-02 17:30:05 +08:00
2025-03-21 15:38:59 +08:00
.foot-1 div:nth-child(2) {
color: #858484;
width: 300px;
}
2025-04-02 17:30:05 +08:00
2025-03-21 15:38:59 +08:00
.foot-2 {
display: flex;
flex-direction: column;
justify-content: space-around;
color: #858484;
}
2025-04-02 17:30:05 +08:00
2025-03-21 15:38:59 +08:00
.foot-2 span:nth-child(1) {
font-size: 20px;
color: #fff;
}
</style>