123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <template>
- <el-header class="MainHeader">
- <div class="title">通用侦察平台任务模拟系统</div>
- </el-header>
- </template>
- <script>
- export default {
- data(){
- return{
-
- }
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .MainHeader {
- position: relative;
- padding: 0px;
- display: flex;
- justify-content: space-between;
- height: 70px !important;
- .title{
- color: white;
- position: absolute;
- font-size: 30px;
- font-weight: 700;
- left: 50%;
- top: 15px;
- transform: translateX(-50%);
- }
- .header-left-decoration {
- width: 25%;
- height: 60px;
- }
- .header-right-decoration {
- width: 25%;
- height: 60PX;
- }
- .header-center-decoration {
- width: 40%;
- margin-top: 20px;
- }
-
- }
- </style>
|