index.scss 633 B

123456789101112131415161718192021222324252627282930313233
  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. font-size: 28rpx;
  12. color: #333333;
  13. padding: 20rpx 0 10rpx;
  14. font-weight: 700;
  15. }
  16. .exp {
  17. line-height: 34rpx;
  18. font-size: 24rpx;
  19. margin-bottom: 8rpx;
  20. color: #999999;
  21. }
  22. }
  23. }
  24. /* 文本行数限制 */
  25. .line-1 {
  26. overflow: hidden;
  27. white-space: nowrap;
  28. text-overflow: ellipsis;
  29. }