66 lines
1.2 KiB
Plaintext
66 lines
1.2 KiB
Plaintext
/* packageE/stationNotice/stationNoticeActivity/stationNoticeActivity.wxss */
|
|
|
|
page {
|
|
padding-bottom: 50px;
|
|
}
|
|
|
|
view,
|
|
text {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.items {
|
|
padding: 0 0.781rem;
|
|
}
|
|
|
|
.items .item .time {
|
|
height: 2.75rem;
|
|
line-height: 2.75rem;
|
|
letter-spacing: 0.019rem;
|
|
color: #666;
|
|
font-size: 0.75rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.items .item .wrapper {
|
|
background-color: #fff;
|
|
border-radius: 0.25rem;
|
|
width: 100%;
|
|
padding: 0.844rem 0.875rem 1.031rem 0.969rem;
|
|
}
|
|
|
|
.items .item .wrapper .face image {
|
|
width: 100%;
|
|
height: 8.281rem;
|
|
background-color: #eeecec;
|
|
}
|
|
|
|
.items .item .wrapper .name {
|
|
margin-top: 0.813rem;
|
|
color: #000;
|
|
font-size: 1rem;
|
|
|
|
/* text-overflow: -o-ellipsis-lastline; */
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 1;
|
|
line-clamp: 1;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
.items .item .wrapper .desc {
|
|
margin-top: 0.625rem;
|
|
font-size: 0.75rem;
|
|
letter-spacing: 0.019rem;
|
|
color: #333;
|
|
|
|
/* text-overflow: -o-ellipsis-lastline; */
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
}
|