4 changed files with 77 additions and 3 deletions
@ -1 +1,13 @@
|
||||
<p>11111123</p> |
||||
<div class="content"> |
||||
<div><app-tabbar></app-tabbar></div> |
||||
<div class="cneter"> |
||||
|
||||
<div class="left"> |
||||
<div class="headerLeft"><div>单位列表</div><div style="text-align: right;">总分: <label style="color: #07CDCF;">120</label></div></div> |
||||
<div class="centerLeft" style="background: #F5FDFE;"><div>单位名称</div><div>总分</div></div> |
||||
<div class="centerLeft"><div>单位名称</div><div>总分</div></div> |
||||
</div> |
||||
<div class="right"></div> |
||||
|
||||
</div> |
||||
</div> |
||||
|
@ -0,0 +1,43 @@
|
||||
.content{ |
||||
width: 100%; |
||||
height: 100%; |
||||
overflow: hidden; |
||||
display: flex; |
||||
flex-direction: column; |
||||
box-sizing: border-box; |
||||
.cneter { |
||||
flex: 1; |
||||
overflow: hidden; |
||||
background-color: #F2F5F6; |
||||
display: flex; |
||||
box-sizing: border-box; |
||||
padding: 25px; |
||||
>div { background-color: #fff; border-radius: 10px; } |
||||
.left { |
||||
flex: 20%; |
||||
margin-right: 25px; |
||||
} |
||||
.right { |
||||
flex: 80%; |
||||
} |
||||
} |
||||
} |
||||
|
||||
//左侧 |
||||
.headerLeft{ |
||||
display: flex; |
||||
align-items: center; |
||||
>div {flex: 1;} |
||||
height: 36px; |
||||
padding: 0 25px; |
||||
} |
||||
.centerLeft { |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: center; |
||||
cursor: pointer; |
||||
>div {flex: 1; overflow: hidden; text-align: center;} |
||||
height: 36px; |
||||
padding: 0 25px; |
||||
margin: 0 30px; |
||||
} |
Loading…
Reference in new issue