index.scss 479 B

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