48 lines
1.1 KiB
Vue
48 lines
1.1 KiB
Vue
|
|
<template>
|
|
<view class="copyright-section">
|
|
<view class="copyright-content">
|
|
<text style="color: #ddd;padding-right: 20rpx;">——</text>
|
|
<image src="/static/imgs/index/logo.png" class="logo" mode="aspectFit"></image>
|
|
<text class="copyright-text">
|
|
提供技术支持
|
|
</text>
|
|
<text style="color: #ddd;padding-left: 20rpx;">——</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'gx-copyright',
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.copyright-section {
|
|
position: relative; /* 改为相对定位 */
|
|
width: 100%;
|
|
padding: 20rpx 0;
|
|
background-color: transparent;
|
|
opacity: 0.6;
|
|
margin-top: 40rpx; /* 增加一些顶部间距 */
|
|
|
|
.copyright-content {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.logo {
|
|
width: 150rpx;
|
|
height: 50rpx;
|
|
margin-right: 0rpx;
|
|
}
|
|
|
|
.copyright-text {
|
|
font-size: 24rpx;
|
|
color: #999;
|
|
padding-left: 20rpx;
|
|
}
|
|
}
|
|
}
|
|
</style> |