123456789101112131415161718192021222324252627282930313233 |
- .item {
- width: 100vw;
- margin-bottom: 20rpx;
- background-color: #ffffff;
- .content {
- position: relative;
- padding: 20rpx 30rpx;
- padding-top: 0;
- box-sizing: border-box;
- .num {
- font-size: 28rpx;
- color: #333333;
- padding: 20rpx 0 10rpx;
- font-weight: 700;
- }
- .exp {
- line-height: 34rpx;
- font-size: 24rpx;
- margin-bottom: 8rpx;
- color: #999999;
- }
- }
- }
- /* 文本行数限制 */
- .line-1 {
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
|