project.less 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. .car-message-container {
  2. display: flex;
  3. justify-content: flex-start;
  4. flex-wrap: wrap;
  5. .car-message-item{
  6. width: 429px;
  7. height:92px;
  8. border-radius:5px;
  9. border:1px solid rgba(238,238,238,1);
  10. margin: 10px 5px;
  11. padding: 15px;
  12. .car-message-item-header{
  13. position: relative;
  14. .car-message-item-header-right-box{
  15. position: absolute;
  16. top: 0;
  17. right: 0;
  18. .right-button{
  19. border-radius:3px;
  20. border:1px solid rgba(221,221,221,1);
  21. margin-left: 5px;
  22. width:34px;
  23. height:20px;
  24. border-radius:3px;
  25. font-size:12px;
  26. font-family:PingFangSC-Regular,PingFang SC;
  27. font-weight:400;
  28. padding: 3px 5px;
  29. background:rgba(246,246,246,1);
  30. color:rgba(102,102,102,1);
  31. text-decoration: none;
  32. &.button-edit{
  33. color:rgba(255,255,255,1);
  34. background:rgba(38,150,92,1);
  35. border: none;
  36. }
  37. }
  38. }
  39. >span{
  40. height:20px;
  41. border-radius:3px;
  42. font-size:12px;
  43. padding: 3px;
  44. margin-left: 5px;
  45. font-family:PingFangSC-Regular,PingFang SC;
  46. font-weight:400;
  47. line-height: 20px;
  48. &.gray{
  49. background:rgba(246,246,246,1);
  50. color:rgba(102,102,102,1);
  51. }
  52. &.pink{
  53. color:rgba(249,109,39,1);
  54. background:rgba(254,227,213,1);
  55. }
  56. }
  57. .car-message-item-header-number{
  58. transform: translateY(1px);
  59. height:22px;
  60. font-size:16px;
  61. font-family:PingFangSC-Medium,PingFang SC;
  62. font-weight:500;
  63. color:rgba(51,51,51,1);
  64. line-height:22px;
  65. display: inline-block;
  66. }
  67. }
  68. .car-message-item-info{
  69. margin-top: 15px;
  70. width:420px;
  71. height:17px;
  72. font-size:12px;
  73. font-family:PingFangSC-Regular,PingFang SC;
  74. font-weight:400;
  75. color:rgba(102,102,102,1);
  76. line-height:17px;
  77. text-overflow: ellipsis;
  78. overflow: hidden;
  79. white-space: nowrap;
  80. }
  81. .car-message-item-tips{
  82. margin-top: 15px;
  83. .car-message-item-tips-item{
  84. margin-right: 5px;
  85. border-radius:3px;
  86. border:1px solid rgba(221,221,221,1);
  87. font-size:12px;
  88. font-family:PingFangSC-Regular,PingFang SC;
  89. font-weight:400;
  90. color:rgba(102,102,102,1);
  91. display: inline-block;
  92. padding: 4px;
  93. max-width: 94px;
  94. text-overflow: ellipsis;
  95. white-space: nowrap;
  96. overflow: hidden;
  97. &.item-vin{
  98. color:rgba(241,157,1,1);
  99. border:1px solid rgba(241,157,1,1);
  100. max-width: none;
  101. }
  102. .icon-fadongji{
  103. width:15px;
  104. height:10px;
  105. display: inline-block;
  106. background: url("../c_image/icon-fadongji.png");
  107. background-size: contain;
  108. margin-right: 3px;
  109. }
  110. .icon-bao{
  111. width:13px;
  112. height:13px;
  113. transform: translateY(2px);
  114. display: inline-block;
  115. background: url("../c_image/icon-bao.png") no-repeat;
  116. background-size: contain;
  117. margin-right: 3px;
  118. }
  119. }
  120. }
  121. }
  122. }