`
<div class="container">
<div class="header">
<div>
<el-image :src="title" style="width: 415px; height: 65px"></el-image>
<el-input placeholder="请输入内容">
<el-button slot="append" icon="el-icon-search"></el-button>
</el-input>
</div>
<div class="menu">
<el-menu mode="horizontal" background-color="transparent" text-color="#fff">
<el-menu-item index="1">首页</el-menu-item>
<el-menu-item index="1">园区概况</el-menu-item>
<el-menu-item index="1">政务公开</el-menu-item>
<el-menu-item index="1">新闻中心</el-menu-item>
</el-menu>
</div>
</div>
</div>
`
`
.container {
width: 100%;
height: 225px;
background-image: url("../../../assets/images/top_bg.png");
background-repeat: no-repeat;
background-position: center;
background-size: 100% 100%;
}
.menu {
width: 100%;
}
.header {
width: 100%;
margin: 0 auto;
}
.el-menu.el-menu--horizontal {
border-bottom: none;
}
.el-menu-item:hover {
background: #024ba4 !important;
}
.el-menu--horizontal > .el-menu-item {
height: 40px;
line-height: 40px;
border-radius: 10px;
margin: 0 10px;
}
`
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…