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