detail-item.module.less 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. .itemWrap {
  2. background: #ffffff;
  3. border-radius: 10px;
  4. padding: 12px;
  5. margin: 0 0 12px;
  6. .itemTop {
  7. display: flex;
  8. flex-direction: row;
  9. justify-content: space-between;
  10. align-items: center;
  11. border-bottom: 1px solid #f2f2f2;
  12. padding-bottom: 12px;
  13. .itemTopLeft {
  14. .nameSection {
  15. display: flex;
  16. align-items: center;
  17. margin-bottom: 6px;
  18. }
  19. .itemTopMain {
  20. height: 22px;
  21. font-size: 16px;
  22. font-weight: 500;
  23. color: #333333;
  24. line-height: 22px;
  25. max-width: 130px;
  26. overflow: hidden;
  27. text-overflow: ellipsis;
  28. white-space: nowrap;
  29. }
  30. .tagWork {
  31. font-weight: 500;
  32. font-size: 12px;
  33. color: #2eaafe;
  34. border-radius: 3px;
  35. border: 1px solid rgba(46, 170, 254, 0.37);
  36. padding: 0 4px;
  37. margin-left: 4px;
  38. }
  39. .itemTopSub {
  40. font-size: 12px !important;
  41. font-weight: 400;
  42. color: #777777;
  43. line-height: 17px;
  44. }
  45. }
  46. .itemTopRight {
  47. display: flex;
  48. flex-direction: row;
  49. align-items: center;
  50. .imgWrap {
  51. width: 98px;
  52. height: 29px;
  53. background: #e9e3ff;
  54. border-radius: 19px;
  55. img {
  56. width: 100%;
  57. height: 100%;
  58. }
  59. }
  60. .imgIcon {
  61. font-size: 14px;
  62. color: #d8d8d8;
  63. font-weight: bold;
  64. margin-left: 6px;
  65. }
  66. }
  67. }
  68. .itemBottom {
  69. margin-top: 15px;
  70. display: flex;
  71. flex-direction: row;
  72. align-items: center;
  73. justify-content: space-around;
  74. text-align: center;
  75. .itemBottomDot {
  76. width: 25%;
  77. .dotMain {
  78. font-size: 22px;
  79. color: #333333;
  80. line-height: 30px;
  81. margin-bottom: 4px;
  82. font-family: 'DIN';
  83. // font-weight: bold;
  84. span {
  85. margin-left: 1px;
  86. font-size: 12px;
  87. font-weight: 400;
  88. color: #333333;
  89. line-height: 17px;
  90. }
  91. }
  92. .dotSub {
  93. font-size: 12px;
  94. font-weight: 400;
  95. color: #777777;
  96. line-height: 17px;
  97. }
  98. }
  99. }
  100. }