tj
2025-04-30 5a30c92533a87bd5c93ab8620e6de695a66a3b3a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<template>
    <div class="footer footer-content ">
        <!-- <div class="footer-content">
            版权所有© Copyright 2014-2025 &nbsp;&nbsp;&nbsp;&nbsp; 苏州云游四方信息科技有限公司 苏ICP备16047984号
        </div> -->
        <div class="row  d-flex justify-content-center">
            <div class="col-12 col-md-auto text-center text-md-left">
                版权所有© Copyright 2014-2025
            </div>
            <div class="col-12 col-md-auto text-center text-md-left">
                苏州云游四方信息科技有限公司
            </div>
            <div class="col-12 col-md-auto text-center text-md-left">
                苏ICP备16047984号
            </div>
        </div>
    </div>
</template>
 
<script setup>
import { ref } from 'vue';
 
</script>
<style scoped>
.footer {
    width: 100%;
    /* padding: 15px; */
    overflow-x: hidden; /* 防止出现横向滚动条 */
    /* margin: 10px 0px; */
    margin-top: 10px;
}
 
.footer-content {
    font-size: 12px;
    color: #333;
}
</style>