cash.css 638 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. body{
  2. background:#f5f5f5;
  3. }
  4. .list{
  5. background:#fff;
  6. }
  7. .list ul{}
  8. .list ul li{
  9. padding:0 0.4rem 0 0.2rem;
  10. height:1.2rem;
  11. border-bottom:1px solid #f5f5f5;
  12. }
  13. .list ul li p{
  14. line-height:0.6rem;
  15. white-space: nowrap;
  16. overflow: hidden;
  17. text-overflow: ellipsis;
  18. }
  19. .list ul li .list_l{
  20. float:left;
  21. width:60%;
  22. }
  23. .list ul li .list_l p.money{
  24. color:#646464;
  25. }
  26. .list ul li .list_l p span{
  27. display:inline-block;
  28. margin-right:0.2rem;
  29. width:0.8rem;
  30. text-align:right;
  31. }
  32. .list ul li .list_r{
  33. float:right;
  34. width:40%;
  35. }
  36. .list ul li .list_r p{
  37. text-align:right;
  38. color:#969696;
  39. }