60 lines
942 B
Plaintext
60 lines
942 B
Plaintext
/* packageE/headline/headline.wxss */
|
|
.component-wrapper {
|
|
width: 100vw;
|
|
text-align: left;
|
|
}
|
|
|
|
.headline {
|
|
display: flex;
|
|
align-items: center;
|
|
/* padding: 4px 0; */
|
|
}
|
|
|
|
.headline .headline_img {
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.headline .headline_img .img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.headline .fixright {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
justify-content: center;
|
|
}
|
|
|
|
.headline .fixright .right:nth-child(2) {
|
|
margin-top: 5px;
|
|
}
|
|
|
|
.headline .right {
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
height: 100%;
|
|
}
|
|
|
|
.headline .right .headline_tag {
|
|
margin-left: 9px;
|
|
border-radius: 5px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: hidden;
|
|
padding: 3.5px 6.5px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.headline .right .headline_title {
|
|
margin-left: 9px;
|
|
flex: 0 0 67%;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|