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.
44 lines
669 B
44 lines
669 B
|
|
|
|
page {
|
|
background-color: #fff;
|
|
font-size: 32rpx;
|
|
font-family: -apple-system-font, Helvetica Neue, Helvetica, sans-serif;
|
|
}
|
|
view {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.oneRowText {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
.towRowText {
|
|
display: -webkit-box;
|
|
overflow: hidden;
|
|
white-space: normal;
|
|
text-overflow: ellipsis;
|
|
word-wrap: break-word;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.flex-b {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
.flex-c {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.padding {
|
|
padding: 0 20px;
|
|
}
|