index.scss 518 B

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