Files
jczxw-pc/app/components/PortalFooter.vue
2026-04-29 10:05:55 +08:00

77 lines
1.3 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div class="container footer-main">
<div class="footer-left">
<p>扫一扫公众号</p>
<p>了解我们的动态</p>
<img src="/images/qrcode-mp-official.jpg" alt="公众号二维码" />
</div>
<div class="footer-center">
<h3>广西决策咨询网</h3>
<p>Guangxi Decision-Making Consulting Network</p>
<p>运营方广西决策咨询网有限公司</p>
<p>地址广西壮族自治区南宁市中柬路XX号 XX楼 XX号房</p>
</div>
</div>
</template>
<style scoped>
.container {
width: min(1200px, calc(100% - 32px));
margin: 0 auto;
}
.footer-main {
display: flex;
justify-content: space-between;
gap: 60px;
padding: 28px 0 52px;
}
.footer-left {
color: #4f5c67;
font-size: 13px;
}
.footer-left p {
margin: 0 0 8px;
}
.footer-left img {
width: 100px;
height: 100px;
margin-top: 10px;
object-fit: contain;
}
.footer-center {
padding-top: 10px;
color: #697680;
text-align: left;
}
.footer-center h3 {
margin: 0 0 8px;
color: #27313a;
font-size: 30px;
font-weight: 700;
}
.footer-center p {
margin: 0 0 8px;
font-size: 13px;
}
@media (max-width: 1100px) {
.footer-main {
flex-direction: column;
gap: 24px;
}
}
@media (max-width: 768px) {
.container {
width: min(100%, calc(100% - 24px));
}
}
</style>