page3.vue 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <template>
  2. <skeleton title="" titleLine="">
  3. <div class="bg bg3 animate__animated animate__backInUp">
  4. <p class="duanluo shouh">指导单位</p>
  5. </div>
  6. <p class="line-item">省商务厅</p>
  7. <br />
  8. <div class="bg bg3 animate__animated animate__backInUp">
  9. <p class="duanluo shouh">主办单位</p>
  10. </div>
  11. <p class="line-item">西安市投资合作局</p>
  12. <p class="line-item">西安市阎良区人民政府</p>
  13. <p class="line-item">西安阎良国家航空高技术产业基地管理委员会</p>
  14. <p class="line-item">西安国家民用航天产业基地管理委员会</p>
  15. <p class="line-item">富阎产业合作园区管理委员会</p>
  16. </skeleton>
  17. </template>
  18. <script setup>
  19. import skeleton from './skeleton.vue';
  20. </script>
  21. <style lang="scss">
  22. // 动画库
  23. @import url(./sass/animation.scss);
  24. @import url(./sass/base.scss);
  25. h2 {
  26. margin-bottom: 10px;
  27. }
  28. .bg3 {
  29. margin-top: 7px;
  30. margin-bottom: 7px;
  31. padding-top: 7px !important;
  32. padding-bottom: 7px !important;
  33. .shouh {
  34. text-indent: 0 !important;
  35. }
  36. }
  37. .line-item {
  38. padding: 7px 0px 7px 11px;
  39. font-size: 18px;
  40. }
  41. </style>