25 lines
458 B
Plaintext
25 lines
458 B
Plaintext
/* pages/council/council.wxss */
|
|
page{
|
|
padding-bottom: 20px;
|
|
background-color: #f5f5f5;
|
|
padding: 15px;
|
|
box-sizing: border-box;
|
|
}
|
|
.item{
|
|
box-sizing: border-box;
|
|
padding: 0 15px;
|
|
width: 100%;
|
|
height: 80px;
|
|
line-height: 40px;
|
|
background-color: #fff;
|
|
border-radius: 10px;
|
|
color: #333;
|
|
font-size: 14px;
|
|
margin-bottom: 10px;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
.item:last-child{
|
|
margin-bottom: 0;
|
|
} |