37 lines
623 B
Plaintext
37 lines
623 B
Plaintext
/* packageH/starMusic/starMusicEspNumber/starMusicEspNumber.wxss */
|
|
|
|
page {
|
|
background: #fff;
|
|
}
|
|
|
|
.items {
|
|
padding: 0 0.938rem;
|
|
}
|
|
|
|
.items .item {
|
|
height: 3.5rem;
|
|
text-align: left;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
border-bottom: 0.063rem solid #ebebeb;
|
|
}
|
|
|
|
.items .item .name {
|
|
font-size: 0.813rem;
|
|
color: #333;
|
|
|
|
/* 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 .desc {
|
|
font-size: 0.75rem;
|
|
color: #8c8c8c;
|
|
}
|