index.scss 692 B

1234567891011121314151617181920212223242526272829303132333435
  1. .item {
  2. width: 100vw;
  3. margin-bottom: 20rpx;
  4. background-color: #ffffff;
  5. .content {
  6. position: relative;
  7. padding: 20rpx 30rpx;
  8. padding-top: 0;
  9. box-sizing: border-box;
  10. .num {
  11. height: 40rpx;
  12. line-height: 40rpx;
  13. font-size: 28rpx;
  14. color: #333333;
  15. padding: 20rpx 0 10rpx;
  16. font-weight: 700;
  17. }
  18. .exp {
  19. line-height: 34rpx;
  20. font-size: 24rpx;
  21. margin-bottom: 8rpx;
  22. color: #999999;
  23. }
  24. }
  25. }
  26. /* 文本行数限制 */
  27. .line-1 {
  28. overflow: hidden;
  29. white-space: nowrap;
  30. text-overflow: ellipsis;
  31. }