| | |
| | | <template> |
| | | <div class="wrapper"> |
| | | <div class="main-header"> |
| | | <div class="title">社区警务平台</div> |
| | | <!-- <div class="title">社区警务平台</div> --> |
| | | <div class="title"> |
| | | <img src="../../../public/img/logo.png" /> |
| | | </div> |
| | | |
| | | <!-- 菜单导航 --> |
| | | <div class="menu-list"> |
| | |
| | | </div> |
| | | |
| | | <!-- 用户登录展示的 --> |
| | | <div class="user-infor"></div> |
| | | <!-- <div class="user-infor"></div> --> |
| | | </div> |
| | | |
| | | <div class="main-container"> |
| | |
| | | |
| | | .main-header { |
| | | display: flex; |
| | | justify-content: space-between; |
| | | position: absolute; |
| | | width: 100%; |
| | | height: 80px; |
| | |
| | | z-index: 99; |
| | | |
| | | .title { |
| | | width: 300px; |
| | | width: 400px; |
| | | text-align: center; |
| | | overflow: hidden; |
| | | & > img { |
| | | // width: 100%; |
| | | height: 120%; |
| | | margin-top: -5px; |
| | | } |
| | | } |
| | | |
| | | .menu-list { |
| | | width: 800px; |
| | | display: flex; |
| | | align-items: center; |
| | | |
| | |
| | | justify-content: space-between; |
| | | height: 60px; |
| | | font-size: 32px; |
| | | font-weight: 400; |
| | | cursor: pointer; |
| | | border-bottom: 3px solid transparent; |
| | | } |
| | | |
| | | .nav.on { |
| | | color: rgba(32, 106, 181, 1); |
| | | // color: rgba(32, 106, 181, 1); |
| | | border-bottom: 3px solid #409eff; |
| | | box-sizing: border-box; |
| | | } |
| | | |
| | | .nav:hover { |
| | | color: rgba(32, 106, 181, 1); |
| | | font-weight: bold; |
| | | // color: rgba(32, 106, 181, 1); |
| | | // font-weight: bold; |
| | | } |
| | | } |
| | | |