更新首页
This commit is contained in:
76
app/components/PortalFooter.vue
Normal file
76
app/components/PortalFooter.vue
Normal file
@@ -0,0 +1,76 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user