topTenTitle.vue 417 B

12345678910111213141516171819202122232425
  1. <template>
  2. <div class="topTenTitle">
  3. <div class="inner">
  4. <img src="../../static/image/Group1503.png" alt="">
  5. </div>
  6. </div>
  7. </template>
  8. <script setup>
  9. // defineProps(['logoSrc'])
  10. </script>
  11. <style lang="less">
  12. // 十强称号logo
  13. .topTenTitle {
  14. width: 100%;
  15. height: 90px;
  16. margin: 34px 0 33px;
  17. img {
  18. width: 1200px;
  19. height: 90px;
  20. }
  21. }
  22. </style>