| 123456789101112131415161718192021222324252627282930313233343536 | page {    font-family: PingFangSC-Medium, PingFang SC;    background-color: #F6F7F8;    padding-bottom: 80rpx;}/* 灰色矩形盒子 */.grey_rectangle{    display: flex;    align-items: center;    justify-content: space-between;    padding: 28rpx;    background-color: #F6F7F8;    border-radius: 10rpx;    box-sizing: border-box;    margin-bottom: 30rpx;}/* start--文本行数限制--start */.u-line-1 {    overflow: hidden;    white-space: nowrap;    text-overflow: ellipsis;  }    .u-line-2 {    -webkit-line-clamp: 2;  }    .u-line-2 {    overflow: hidden;    word-break: break-all;    text-overflow: ellipsis;    display: -webkit-box;    -webkit-box-orient: vertical;  }
 |