67 lines
890 B
CSS
67 lines
890 B
CSS
view {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.cover {
|
|
background-color: rgba(0, 0, 0, 0.5);
|
|
z-index: 99;
|
|
top: 0;
|
|
left: 0;
|
|
position: fixed;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.a-c {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
}
|
|
|
|
.d-c {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.row-ver-center {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.overflow_1 {
|
|
width: 100%;
|
|
word-break: break-all;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.emo-image {
|
|
height: 40rpx;
|
|
width: 40rpx;
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
}
|