Header.vue 612 Bytes
<template>
    <div class="self-header">
        <h2 class="self_header_label">新一代银行国际结算系统</h2>
    </div>
</template>

<script>
export default {

}
</script>

<style>
 
    .self-header{
        height: 100%;
        /* background-color: #eeeeee; */
        /* margin-bottom: 5px; */
        background-image: url("../../assets/head_bg.png");
    }
    .self-header h2{
        margin: 0;
        padding: 0;
    }
    .self_header_label{
        color: antiquewhite;
        /* margin-top: 10px !important; */
        position: relative;
        top:15px;
        left:2em;
    }
</style>