index.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .item {
  2. width: 100vw;
  3. padding-left: 30rpx;
  4. box-sizing: border-box;
  5. margin-bottom: 20rpx;
  6. background-color: #ffffff;
  7. .top {
  8. display: flex;
  9. align-items: center;
  10. justify-content: space-between;
  11. height: 80rpx;
  12. width: 100%;
  13. border-bottom: 1rpx solid #ddd;
  14. box-sizing: border-box;
  15. padding-right: 30rpx;
  16. font-size: 28rpx;
  17. }
  18. .content {
  19. position: relative;
  20. .num {
  21. height: 40rpx;
  22. line-height: 40rpx;
  23. font-size: 28rpx;
  24. color: #333333;
  25. padding: 20rpx 0;
  26. }
  27. .exp {
  28. height: 34rpx;
  29. font-size: 24rpx;
  30. margin-bottom: 8rpx;
  31. color: #999999;
  32. }
  33. .amount {
  34. position: absolute;
  35. font-size: 28rpx;
  36. color: #FF3B30;
  37. bottom: 0;
  38. right: 30rpx;
  39. }
  40. }
  41. .bottom {
  42. height: 72rpx;
  43. line-height: 72rpx;
  44. margin-top: 12rpx;
  45. border-top: 1rpx solid #ddd;
  46. box-sizing: border-box;
  47. padding-right: 30rpx;
  48. font-size: 24rpx;
  49. color: #666666;
  50. }
  51. }
  52. /* 文本行数限制 */
  53. .line-1 {
  54. overflow: hidden;
  55. white-space: nowrap;
  56. text-overflow: ellipsis;
  57. }