12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <skeleton title="" titleLine="">
- <div class="bg bg3 animate__animated animate__backInUp">
- <p class="duanluo shouh">指导单位</p>
- </div>
- <p class="line-item">省商务厅</p>
- <br />
- <div class="bg bg3 animate__animated animate__backInUp">
- <p class="duanluo shouh">主办单位</p>
- </div>
- <p class="line-item">西安市投资合作局</p>
- <p class="line-item">西安市阎良区人民政府</p>
- <p class="line-item">西安阎良国家航空高技术产业基地管理委员会</p>
- <p class="line-item">西安国家民用航天产业基地管理委员会</p>
- <p class="line-item">富阎产业合作园区管理委员会</p>
- </skeleton>
- </template>
- <script setup>
- import skeleton from './skeleton.vue';
- </script>
- <style lang="scss">
- // 动画库
- @import url(./sass/animation.scss);
- @import url(./sass/base.scss);
- h2 {
- margin-bottom: 10px;
- }
- .bg3 {
- margin-top: 7px;
- margin-bottom: 7px;
- padding-top: 7px !important;
- padding-bottom: 7px !important;
- .shouh {
- text-indent: 0 !important;
- }
- }
- .line-item {
- padding: 7px 0px 7px 11px;
- font-size: 18px;
- }
- </style>
|