index.module.less 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. .list {
  2. padding: 12px 0 30px;
  3. }
  4. .expectedIncome {
  5. background: #ffffff;
  6. border-radius: 10px;
  7. margin: 12px 14px 0;
  8. overflow: hidden;
  9. .incomeTitle {
  10. display: flex;
  11. align-items: center;
  12. justify-content: space-between;
  13. padding: 15px 12px 12px;
  14. .title {
  15. display: flex;
  16. align-items: center;
  17. font-weight: 600;
  18. font-size: 15px;
  19. color: #333333;
  20. line-height: 20px;
  21. }
  22. img {
  23. width: 18px;
  24. height: 18px;
  25. margin-right: 6px;
  26. }
  27. .price {
  28. font-weight: bold;
  29. font-size: 16px;
  30. color: #333333;
  31. line-height: 16px;
  32. font-family: DINAlternate, DINAlternate;
  33. span {
  34. font-size: 14px;
  35. }
  36. }
  37. }
  38. .incomeTip {
  39. font-size: 13px;
  40. color: #ef8548;
  41. line-height: 18px;
  42. background: #fff9f0;
  43. box-shadow: 0px 2px 10px 0px rgba(229, 229, 229, 0.1);
  44. border-radius: 6px;
  45. border: 1px solid #ffefdf;
  46. padding: 5px 10px;
  47. margin: 0 12px 0;
  48. }
  49. .element {
  50. position: relative;
  51. height: 0;
  52. border-top: 1px dashed #dedede;
  53. margin: 16px 19px 0;
  54. &::before,
  55. &::after {
  56. content: '';
  57. position: absolute;
  58. z-index: 1;
  59. bottom: -6.5px;
  60. display: inline-block;
  61. width: 14px;
  62. height: 14px;
  63. background: #f6f7f8;
  64. border-radius: 50%;
  65. }
  66. &::before {
  67. left: -26px;
  68. }
  69. &::after {
  70. right: -26px;
  71. }
  72. }
  73. }