12345678910111213141516171819202122232425 |
- <template>
- <div class="topTenTitle">
- <div class="inner">
- <img src="../../static/image/Group1503.png" alt="">
- </div>
- </div>
- </template>
- <script setup>
- // defineProps(['logoSrc'])
- </script>
- <style lang="less">
- // 十强称号logo
- .topTenTitle {
- width: 100%;
- height: 90px;
- margin: 34px 0 33px;
- img {
- width: 1200px;
- height: 90px;
- }
- }
- </style>
|