index.scss 467 B

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