You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
717 B
43 lines
717 B
5 years ago
|
/* pages/user/myWhistle/index.wxss */
|
||
|
page{
|
||
|
background-color: #fafafa;
|
||
|
width:100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
.column{
|
||
|
width:100%;
|
||
|
height: 130px;
|
||
|
background-color: white;
|
||
|
margin-top:30rpx;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
justify-content:center;
|
||
|
}
|
||
|
|
||
|
.content{
|
||
|
width: 100%;
|
||
|
height:80%;
|
||
|
display: -webkit-box;
|
||
|
-webkit-line-clamp: 2;
|
||
|
overflow: hidden;
|
||
|
text-overflow: ellipsis;
|
||
|
-webkit-box-orient: vertical;
|
||
|
word-break: break-all;
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
.top{
|
||
|
width: 90%;
|
||
|
height: 70px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content:center;
|
||
|
}
|
||
|
.bottom{
|
||
|
width:90%;
|
||
|
height: 30px;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content:space-between;
|
||
|
}
|