ConferenceService.vue 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <div class="autoBox box" style="min-height: 900px;position: relative;">
  3. <div class="crumbs">
  4. <el-breadcrumb separator="/">
  5. <el-breadcrumb-item :to="{ path: 'home' }">{{$t('common.Home')}}</el-breadcrumb-item>
  6. <el-breadcrumb-item>{{$t('common.ConferenceService')}}</el-breadcrumb-item>
  7. </el-breadcrumb>
  8. </div>
  9. <div style="position: absolute;left: 50%;top: 55%;transform: translate(-50%,-50%);">
  10. <div style="font-weight: 600;color: #2C558A;line-height: 45px;font-size: 30px;text-align: center;margin-bottom: 10px;">
  11. <span style="width: 331px;height: 1px;background:rgba(44, 85, 138,.3);display: inline-block;vertical-align: middle;"></span>
  12. {{$t('common.ConferenceService')}}
  13. <span style="width: 331px;height: 1px;background:rgba(44, 85, 138,.3);display: inline-block;vertical-align: middle;"></span>
  14. </div>
  15. <div style="margin-top: 2px;font-size: 20px;width: 780px;font-size: 14px;margin: auto;margin-top: 18px;
  16. font-family: PingFangSC-Regular, PingFang SC;font-weight: 400;color: #2C558A;line-height: 24px;">
  17. 国务院组成部门国家发展和改革委员会主管国家宏观调控,如拟订并组织实施国民经济和社会发展战略,
  18. 组织拟订国家总体规划和年度计划,参与拟订人口和计划生育、科学技术、教育、
  19. 文化、卫生、民政等发展政策,其职权之大,有“小国务院”之称。相较而言,国务院直属机构国家知识产权局只负责与知
  20. 识产权有关的专门事务。
  21. </div>
  22. <img src="@/assets/img/constructions.png" alt="" style=" width:977px;height:495px;margin-top: 50px;margin-left: -20px;">
  23. <div style="text-align: center;margin-bottom: 200px;color: #91ADE2;font-size: 20px;">{{$t('common.construction')}}</div>
  24. </div>
  25. </div>
  26. </template>
  27. <script>
  28. export default {
  29. name: "ConferenceService",
  30. data () {
  31. return {
  32. }
  33. },
  34. mounted() {
  35. },
  36. methods:{
  37. }
  38. }
  39. </script>
  40. <style scoped>
  41. .box {
  42. margin-top: 10px;
  43. background: #fff;
  44. /* height: 500px; */
  45. padding: 20px 0;
  46. }
  47. .crumbs {
  48. margin-left: 20px;
  49. }
  50. </style>